Note
Go to the end to download the full example code
Radionuclides
from opendrift.readers import reader_netCDF_CF_generic, reader_ROMS_native
from opendrift.models.radionuclides import RadionuclideDrift
from datetime import timedelta, datetime
import numpy as np
o = RadionuclideDrift(loglevel=0, seed=0) # Set loglevel to 0 for debug information
# Norkyst
#reader_norkyst = reader_netCDF_CF_generic.Reader(o.test_data_folder() + '/14Jan2016_NorKyst_z_3d/NorKyst-800m_ZDEPTHS_his_00_3Dsubset.nc')
reader_norkyst = reader_netCDF_CF_generic.Reader('https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be')
o.add_reader([reader_norkyst])
# Adjusting some configuration
o.set_config('drift:vertical_mixing', True)
#o.set_config('environment:constant:ocean_vertical_diffusivity', 0)
#o.set_config('vertical_mixing:diffusivitymodel','constant') # include settling without vertical turbulent mixing
o.set_config('vertical_mixing:diffusivitymodel','environment') # include settling without vertical turbulent mixing
# Vertical mixing requires fast time step
o.set_config('vertical_mixing:timestep', 600.) # seconds
o.set_config('drift:horizontal_diffusivity', 10)
14:02:19 DEBUG opendrift.models.basemodel:625: Adding 18 config items from basemodel
14:02:19 DEBUG opendrift.models.basemodel:625: Adding 9 config items from basemodel
14:02:19 DEBUG opendrift.models.basemodel:625: Adding 24 config items from basemodel
14:02:19 INFO opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-119-g1da5bec)
14:02:19 DEBUG opendrift.models.basemodel:625: Adding 15 config items from oceandrift
14:02:19 DEBUG opendrift.models.basemodel:637: Overwriting config item seed:z
14:02:19 DEBUG opendrift.models.basemodel:625: Adding 36 config items from radionuclides
14:02:19 INFO opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:109: Finding coordinate variables.
14:02:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:122: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
proj = self._crs.to_proj4(version=version)
14:02:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:310: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
14:02:20 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
14:02:20 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:02:20 DEBUG opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
14:02:20 DEBUG opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
14:02:20 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 7 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
14:02:20 DEBUG opendrift.models.basemodel:952: Added reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
Activate the desired species o.set_config(‘radionuclide:species:LMM’, True) o.set_config(‘radionuclide:species:LMMcation’, True) o.set_config(‘radionuclide:species:LMManion’, True) o.set_config(‘radionuclide:species:Colloid’, True) o.set_config(‘radionuclide:species:Humic_colloid’, True) o.set_config(‘radionuclide:species:Polymer’, True) o.set_config(‘radionuclide:species:Particle_reversible’, True) o.set_config(‘radionuclide:species:Particle_irreversible’, True) o.set_config(‘radionuclide:species:Particle_slowly_reversible’, True)
#o.set_config('radionuclide:species:Sediment_reversible', True)
#o.set_config('radionuclide:species:Sediment_irreversible', True)
#o.set_config('radionuclide:species:Sediment_slowly_reversible', True)
o.set_config('radionuclide:particle_diameter',5.e-6) # m
#o.set_config('radionuclide:particle_diameter_uncertainty',1.e-7) # m
o.set_config('radionuclide:transformations:Kd',2.e0) # (m3/kg)
#o.set_config('radionuclide:transformations:slow_coeff',1.e-6)
o.set_config('radionuclide:sediment:resuspension_depth',2.)
o.set_config('radionuclide:sediment:resuspension_depth_uncert',0.1)
o.set_config('radionuclide:sediment:resuspension_critvel',0.15)
#
#o.set_config('radionuclide:transfer_setup','custom')
o.set_config('radionuclide:transfer_setup','Bokna_137Cs')
#o.set_config('radionuclide:transfer_setup','137Cs_rev')
#o.set_config('radionuclide:transfer_setup','Sandnesfj_Al')
# By default, radionuclides do not strand towards coastline
o.set_config('general:coastline_action', 'previous')
o.set_config('general:seafloor_action','lift_to_seafloor')
#o.set_config('general:seafloor_action','previous')
#o.set_config('general:use_auto_landmask',False)
o.set_config('seed:LMM_fraction',.45)
o.set_config('seed:particle_fraction',.55)
o.list_configspec()
# SEEDING
td=datetime.today()
time = datetime(td.year, td.month, td.day, 0)
#latseed= 61.2; lonseed= 4.3 # Sognesjen
#latseed= 59.0; lonseed= 10.75 # Hvaler/Koster
#latseed= 57.5; lonseed= 9.3 # Kattegat
latseed= 60.0; lonseed= 4.5 # Bergen (?)
ntraj=5000
iniz=np.random.rand(ntraj) * -10. # seeding the radionuclides in the upper 10m
o.seed_elements(lonseed, latseed, z=iniz, radius=1000,number=ntraj,
time=time,
# LMM_fraction=0.25,
# particle_fraction=0.75
# diameter=99.e-6#diam,
#specie=init_speciation
)
general:use_auto_landmask [True] bool A built-in GSHHG glo...
general:coastline_action [previous] enum ['none', 'stranding', 'previous'] None means that obje...
general:time_step_minutes [60] float min: 0.01, max: 1440 [minutes] Calculation time ste...
general:time_step_output_minutes [None] float min: 1, max: 1440 [minutes] Output time step, i....
seed:ocean_only [True] bool If True, elements se...
seed:number [1] int min: 1, max: 100000000 [1] The number of elemen...
drift:max_age_seconds [None] float min: 0, max: inf [seconds] Elements will be dea...
drift:advection_scheme [euler] enum ['euler', 'runge-kutta', 'runge-kutta4'] Numerical advection ...
drift:current_uncertainty [0] float min: 0, max: 5 [m/s] Add gaussian perturb...
drift:current_uncertainty_uniform [0] float min: 0, max: 5 [m/s] Add gaussian perturb...
drift:horizontal_diffusivity [10.0] float min: 0, max: 100000 [m2/s] Add horizontal diffu...
drift:wind_uncertainty [0] float min: 0, max: 5 [m/s] Add gaussian perturb...
drift:relative_wind [False] bool If True, wind drift ...
drift:deactivate_north_of [None] float min: -90, max: 90 [degrees] Elements are deactiv...
drift:deactivate_south_of [None] float min: -90, max: 90 [degrees] Elements are deactiv...
drift:deactivate_east_of [None] float min: -360, max: 360 [degrees] Elements are deactiv...
drift:deactivate_west_of [None] float min: -360, max: 360 [degrees] Elements are deactiv...
readers:max_number_of_fails [1] int min: 0, max: 1000000.0 [number] Readers are discarde...
seed:origin_marker [0] float min: None, max: None [None] An integer kept cons...
seed:z [0] float min: -10000, max: 0 [m] Depth below sea leve...
seed:wind_drift_factor [0.02] float min: None, max: None [1] Elements at surface ...
seed:current_drift_factor [1] float min: None, max: None [1] Elements are moved w...
seed:terminal_velocity [0.0] float min: None, max: None [m/s] Terminal rise/sinkin...
seed:diameter [0.0] float min: None, max: None [m] Seeding value of dia...
seed:neutral_buoyancy_salinity [31.25] float min: None, max: None [[]] Seeding value of neu...
seed:density [2650.0] float min: None, max: None [kg/m^3] Seeding value of den...
seed:specie [0] float min: None, max: None [] Seeding value of spe...
environment:constant:x_sea_water_velocity [None] float min: -15, max: 15 [m/s] Component of ocean c...
environment:fallback:x_sea_water_velocity [None] float min: -15, max: 15 [m/s] Component of ocean c...
environment:constant:y_sea_water_velocity [None] float min: -15, max: 15 [m/s] Component of ocean c...
environment:fallback:y_sea_water_velocity [None] float min: -15, max: 15 [m/s] Component of ocean c...
environment:constant:x_wind [None] float min: -50, max: 50 [m/s] Component of wind al...
environment:fallback:x_wind [0] float min: -50, max: 50 [m/s] Component of wind al...
environment:constant:y_wind [None] float min: -50, max: 50 [m/s] Component of wind al...
environment:fallback:y_wind [0] float min: -50, max: 50 [m/s] Component of wind al...
environment:constant:land_binary_mask [None] float min: 0, max: 1 [None] 1 is land, 0 is sea...
environment:fallback:land_binary_mask [None] float min: 0, max: 1 [None] 1 is land, 0 is sea...
environment:constant:sea_floor_depth_below_sea_level [None] float min: 0, max: 12000 [None] Depth of seafloor...
environment:fallback:sea_floor_depth_below_sea_level [None] float min: 0, max: 12000 [None] Depth of seafloor...
environment:constant:ocean_vertical_diffusivity [None] float min: 0, max: 1 [None] Use constant value f...
environment:fallback:ocean_vertical_diffusivity [0.0001] float min: 0, max: 1 [None] Fallback value for o...
environment:constant:ocean_mixed_layer_thickness [None] float min: None, max: None [None] Use constant value f...
environment:fallback:ocean_mixed_layer_thickness [50] float min: None, max: None [None] Fallback value for o...
environment:constant:sea_water_temperature [None] float min: None, max: None [None] Use constant value f...
environment:fallback:sea_water_temperature [10] float min: None, max: None [None] Fallback value for s...
environment:constant:sea_water_salinity [None] float min: None, max: None [None] Use constant value f...
environment:fallback:sea_water_salinity [34] float min: None, max: None [None] Fallback value for s...
environment:constant:upward_sea_water_velocity [None] float min: None, max: None [None] Use constant value f...
environment:fallback:upward_sea_water_velocity [0] float min: None, max: None [None] Fallback value for u...
environment:constant:conc3 [None] float min: None, max: None [None] Use constant value f...
environment:fallback:conc3 [0.001] float min: None, max: None [None] Fallback value for c...
drift:vertical_advection [True] bool Advect elements with...
drift:vertical_mixing [True] bool Activate vertical mi...
vertical_mixing:timestep [600.0] float min: 0.1, max: 3600 [seconds] Time step used for i...
vertical_mixing:diffusivitymodel [environment] enum ['environment', 'stepfunction', 'windspeed_Sundby1983', 'windspeed_Large1994', 'gls_tke', 'constant'] Algorithm/source use...
vertical_mixing:background_diffusivity [1.2e-05] float min: 0, max: 1 [m2s-1] Background diffusivi...
vertical_mixing:TSprofiles [False] bool Update T and S profi...
drift:wind_drift_depth [0.1] float min: 0, max: 10 [meters] The direct wind drif...
drift:stokes_drift [True] bool Advection elements w...
drift:stokes_drift_profile [Phillips] enum ['monochromatic', 'exponential', 'Phillips', 'windsea_swell'] Algorithm to calcula...
drift:use_tabularised_stokes_drift [False] bool If True, Stokes drif...
drift:tabularised_stokes_drift_fetch [25000] enum ['5000', '25000', '50000'] The fetch length whe...
general:seafloor_action [lift_to_seafloor] enum ['none', 'lift_to_seafloor', 'deactivate', 'previous'] "deactivate": elemen...
drift:truncate_ocean_model_below_m [None] float min: 0, max: 10000 [m] Ocean model data are...
seed:seafloor [False] bool Elements are seeded ...
radionuclide:transfer_setup [Bokna_137Cs] enum ['Sandnesfj_Al', 'Bokna_137Cs', '137Cs_rev', 'custom'] ...
radionuclide:slowly_fraction [False] bool ...
radionuclide:irreversible_fraction [False] bool ...
radionuclide:dissolved_diameter [0] float min: 0, max: 0.0001 [m] ...
radionuclide:particle_diameter [5e-06] float min: 4.5e-07, max: 6.3e-05 [m] Mean particle diamet...
radionuclide:particle_diameter_uncertainty [1e-07] float min: 0, max: 0.0001 [m] Standard deviation o...
radionuclide:particlesize_distribution [normal] enum ['normal', 'lognormal'] Distribution of part...
seed:LMM_fraction [0.45] float min: 0, max: 1 [1] Fraction of initial ...
seed:particle_fraction [0.55] float min: 0, max: 1 [1] Fraction of initial ...
seed:total_release [100000000000.0] float min: 0, max: 1e+36 [Bq] Total release (Bq)...
radionuclide:species:LMM [True] bool Toggle LMM species...
radionuclide:species:LMMcation [False] bool ...
radionuclide:species:LMManion [False] bool ...
radionuclide:species:Colloid [False] bool ...
radionuclide:species:Humic_colloid [False] bool ...
radionuclide:species:Polymer [False] bool ...
radionuclide:species:Particle_reversible [True] bool ...
radionuclide:species:Particle_slowly_reversible [False] bool ...
radionuclide:species:Particle_irreversible [False] bool ...
radionuclide:species:Sediment_reversible [True] bool ...
radionuclide:species:Sediment_slowly_reversible [False] bool ...
radionuclide:species:Sediment_irreversible [False] bool ...
radionuclide:transformations:Kd [2.0] float min: 0, max: 1000000000.0 [m3/kg] ...
radionuclide:transformations:Dc [1.16e-05] float min: 0, max: 1000000.0 [] ...
radionuclide:transformations:slow_coeff [1.2e-07] float min: 0, max: 1000000.0 [] ...
radionuclide:sediment:sedmixdepth [1] float min: 0, max: 100 [m] ...
radionuclide:sediment:sediment_density [2600] float min: 0, max: 10000 [kg/m3] ...
radionuclide:sediment:effective_fraction [0.9] float min: 0, max: 1 [] ...
radionuclide:sediment:corr_factor [0.1] float min: 0, max: 10 [] ...
radionuclide:sediment:porosity [0.6] float min: 0, max: 1 [] ...
radionuclide:sediment:layer_thick [1] float min: 0, max: 100 [m] ...
radionuclide:sediment:desorption_depth [1] float min: 0, max: 100 [m] ...
radionuclide:sediment:desorption_depth_uncert [0.5] float min: 0, max: 100 [m] ...
radionuclide:sediment:resuspension_depth [2.0] float min: 0, max: 100 [m] ...
radionuclide:sediment:resuspension_depth_uncert [0.1] float min: 0, max: 100 [m] ...
radionuclide:sediment:resuspension_critvel [0.15] float min: 0, max: 1 [m/s] ...
14:02:20 INFO opendrift.models.radionuclides:362: Initial speciation:
14:02:20 INFO opendrift.models.radionuclides:364: 2250 0 LMM
14:02:20 INFO opendrift.models.radionuclides:364: 2750 1 Particle reversible
14:02:20 INFO opendrift.models.radionuclides:364: 0 2 Particle slowly reversible
14:02:20 INFO opendrift.models.radionuclides:364: 0 3 Sediment reversible
14:02:20 INFO opendrift.models.radionuclides:364: 0 4 Sediment slowly reversible
14:02:20 INFO opendrift.models.radionuclides:401: Min: 4.70e-06, Max: 5.30e-06, Numer of particles seeded: 2750, at normal distribution
Running model
o.run(steps=24*2, time_step=1800, time_step_output=3600)
14:02:20 DEBUG opendrift.models.basemodel:2545:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.10.7
Platform: Linux, 5.15.0-1039-aws
68.56807327270508 GB memory
36 processors (x86_64)
NumPy version 1.25.2
SciPy version 1.11.2
Matplotlib version 3.7.2
NetCDF4 version 1.6.1
Xarray version 2023.8.0
Python version 3.11.4 | packaged by conda-forge | (main, Jun 10 2023, 18:08:17) [GCC 12.2.0]
------------------------------------------------------
14:02:20 DEBUG opendrift.models.basemodel:2562: No output file is specified, neglecting export_buffer_length
14:02:20 INFO opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
14:02:20 INFO opendrift.models.basemodel:2594: ocean_vertical_diffusivity: 0.000100
14:02:20 INFO opendrift.models.basemodel:2594: ocean_mixed_layer_thickness: 50.000000
14:02:20 INFO opendrift.models.basemodel:2594: conc3: 0.001000
14:02:20 DEBUG opendrift.models.basemodel:2718: Preparing readers for simulation coverage ([2.878754149195549, 59.188460458291544, 6.119318475010994, 60.81067360542916]) and time (2023-09-01 00:00:00 to 2023-09-02 00:00:00)
14:02:20 DEBUG opendrift.models.basemodel:2722: Preparing https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:20 DEBUG opendrift.readers.basereader.structured:119: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
14:02:20 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:20 INFO opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1 m/s. Adding a customised landmask may be faster...
14:02:20 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:02:26 DEBUG opendrift.models.basemodel:952: Added reader global_landmask
14:02:26 INFO opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
14:02:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:26 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:26 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:26 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:26 DEBUG opendrift.models.basemodel:1527: 0 active elements
14:02:26 INFO opendrift.models.basemodel:1713: All points are in ocean
14:02:26 INFO opendrift.models.radionuclides:217: Number of species: 5
14:02:26 INFO opendrift.models.radionuclides:219: 0 LMM
14:02:26 INFO opendrift.models.radionuclides:219: 1 Particle reversible
14:02:26 INFO opendrift.models.radionuclides:219: 2 Particle slowly reversible
14:02:26 INFO opendrift.models.radionuclides:219: 3 Sediment reversible
14:02:26 INFO opendrift.models.radionuclides:219: 4 Sediment slowly reversible
14:02:26 INFO opendrift.models.radionuclides:222: transfer setup: Bokna_137Cs
14:02:26 INFO opendrift.models.radionuclides:224: nspecies: 5
14:02:26 INFO opendrift.models.radionuclides:225: Transfer rates:
[[0.00000e+00 2.32000e-08 0.00000e+00 2.17152e-03 0.00000e+00]
[1.16000e-05 0.00000e+00 1.20000e-07 0.00000e+00 0.00000e+00]
[0.00000e+00 1.20000e-08 0.00000e+00 0.00000e+00 0.00000e+00]
[1.16000e-06 0.00000e+00 0.00000e+00 0.00000e+00 1.20000e-07]
[0.00000e+00 0.00000e+00 0.00000e+00 1.20000e-08 0.00000e+00]]
14:02:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 5000, already seeded 0
14:02:27 DEBUG opendrift.models.basemodel:1676: Released 5000 new elements.
14:02:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:02:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 00:00:00 (before)
2023-09-01 01:00:00 (after)
14:02:27 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:27 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 23x23x2) for time before (2023-09-01 00:00:00)
14:02:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 00:00:00) in space (linearNDFast)
14:02:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.569 (min) 299.876 (max)
14:02:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:27 DEBUG opendrift.models.basemodel:1538: 59.96684 <- latitude -> 60.032295
14:02:27 DEBUG opendrift.models.basemodel:1543: 4.4355206 <- longitude -> 4.562552
14:02:27 DEBUG opendrift.models.basemodel:1548: -9.99964 <- z -> -0.0007244964
14:02:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:27 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:27 INFO opendrift.models.basemodel:2882: 2023-09-01 00:00:00 - step 1 of 48 - 5000 active elements (0 deactivated)
14:02:27 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:27 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 00:00:00 (before)
2023-09-01 01:00:00 (after)
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:28 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 23x23x6) for time before (2023-09-01 00:00:00)
14:02:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 00:00:00) in space (linearNDFast)
14:02:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.56449456040374 and -65.43746514569631 degrees.
14:02:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.56449456040374 and -65.43746514569631 degrees.
14:02:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:28 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:28 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:28 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:28 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:28 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:28 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.113297 (min) -0.0843863 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0797094 (min) 0.0995109 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: x_wind: 0.385474 (min) 0.673353 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: y_wind: -7.3698 (min) -6.77257 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.569 (min) 299.876 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 15.6263 (min) 15.8495 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8341 (min) 32.9044 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.36167e-05 (min) 0.000166954 (max)
14:02:28 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:28 DEBUG opendrift.models.basemodel:1538: 59.96684 <- latitude -> 60.032295
14:02:28 DEBUG opendrift.models.basemodel:1543: 4.4355206 <- longitude -> 4.562552
14:02:28 DEBUG opendrift.models.basemodel:1548: -9.99964 <- z -> -0.0007244964
14:02:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:28 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:28 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:28 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:28 INFO opendrift.models.radionuclides:717: Number of transformations: 70
14:02:28 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:28 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:28 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[70. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:28 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:28 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:28 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:28 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:28 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.049207471604661934
14:02:28 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:28 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:28 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:28 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:28 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:28 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:28 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:28 INFO opendrift.models.radionuclides:959: Speciation: [2320, 2680, 0, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:28 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0014875396859242013 and 0.4229819357348072 m/s
14:02:28 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:28 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:28 INFO opendrift.models.basemodel:2882: 2023-09-01 00:30:00 - step 2 of 48 - 5000 active elements (0 deactivated)
14:02:28 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:28 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 00:00:00 (before)
2023-09-01 01:00:00 (after)
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x7) for time after (2023-09-01 01:00:00)
14:02:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 00:00:00) in space (linearNDFast)
14:02:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 01:00:00) in space (linearNDFast)
14:02:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 00:00:00, weight 0.50) and
after (2023-09-01 01:00:00, weight 0.50) in time
14:02:30 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.57141126643937 and -65.43488870714802 degrees.
14:02:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.57141126643937 and -65.43488870714802 degrees.
14:02:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:30 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:30 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:30 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.1181 (min) 0.00845717 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0977662 (min) 0.0571836 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: x_wind: 0.265502 (min) 0.498428 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: y_wind: -7.52373 (min) -7.04628 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.367 (min) 299.845 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 11.7269 (min) 15.8163 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8397 (min) 33.719 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000159255 (min) 0.000125329 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:30 DEBUG opendrift.models.basemodel:1538: 59.96590493098127 <- latitude -> 60.033531481708465
14:02:30 DEBUG opendrift.models.basemodel:1543: 4.428599667514341 <- longitude -> 4.565122202217123
14:02:30 DEBUG opendrift.models.basemodel:1548: -38.376635217618215 <- z -> 0.0
14:02:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:30 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:30 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:30 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:30 INFO opendrift.models.radionuclides:717: Number of transformations: 58
14:02:30 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:30 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:30 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[127. 0. 1. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:30 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:30 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:30 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05120797097929
14:02:30 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:30 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:30 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:30 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:30 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:30 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:30 INFO opendrift.models.radionuclides:959: Speciation: [2377, 2622, 1, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:30 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0032255815500148726 and 0.46762726229464435 m/s
14:02:30 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:30 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:30 INFO opendrift.models.basemodel:2882: 2023-09-01 01:00:00 - step 3 of 48 - 5000 active elements (0 deactivated)
14:02:30 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 01:00:00 (before)
2023-09-01 02:00:00 (after)
14:02:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 01:00:00) in space (linearNDFast)
14:02:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58261985886108 and -65.43745172944709 degrees.
14:02:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58261985886108 and -65.43745172944709 degrees.
14:02:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:30 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:30 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:30 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.126805 (min) -0.00231507 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.122452 (min) 0.0445402 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: x_wind: 0.137656 (min) 0.333307 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: y_wind: -7.69446 (min) -7.30309 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.999 (min) 299.809 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.6685 (min) 15.8223 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.834 (min) 33.9321 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000213598 (min) 0.000106765 (max)
14:02:30 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:30 DEBUG opendrift.models.basemodel:1538: 59.96311700594953 <- latitude -> 60.03526107645039
14:02:30 DEBUG opendrift.models.basemodel:1543: 4.417391078161529 <- longitude -> 4.562559185277556
14:02:30 DEBUG opendrift.models.basemodel:1548: -47.96879907169007 <- z -> 0.0
14:02:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:30 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:30 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:30 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:30 INFO opendrift.models.radionuclides:717: Number of transformations: 40
14:02:30 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1]
14:02:30 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0]
14:02:30 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[166. 0. 2. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:30 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:30 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:30 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05350871762068748
14:02:30 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:30 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:30 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:30 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:30 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:30 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:30 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:30 INFO opendrift.models.radionuclides:959: Speciation: [2416, 2582, 2, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:30 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001419066978377214 and 0.42902772162987146 m/s
14:02:30 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:30 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:30 INFO opendrift.models.basemodel:2882: 2023-09-01 01:30:00 - step 4 of 48 - 5000 active elements (0 deactivated)
14:02:30 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:30 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 01:00:00 (before)
2023-09-01 02:00:00 (after)
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x7) for time after (2023-09-01 02:00:00)
14:02:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 01:00:00) in space (linearNDFast)
14:02:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 02:00:00) in space (linearNDFast)
14:02:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 01:00:00, weight 0.50) and
after (2023-09-01 02:00:00, weight 0.50) in time
14:02:31 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58358701780011 and -65.43549360049718 degrees.
14:02:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58358701780011 and -65.43549360049718 degrees.
14:02:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:31 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:31 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:31 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.140396 (min) -0.0184919 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.127374 (min) 0.0322393 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: x_wind: 0.142495 (min) 0.311454 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: y_wind: -7.95613 (min) -7.60922 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.956 (min) 299.845 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.6511 (min) 15.7936 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8342 (min) 33.9368 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000231855 (min) 0.000130152 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:31 DEBUG opendrift.models.basemodel:1538: 59.96255488128884 <- latitude -> 60.037691766002084
14:02:31 DEBUG opendrift.models.basemodel:1543: 4.416423909354926 <- longitude -> 4.5645173023955845
14:02:31 DEBUG opendrift.models.basemodel:1548: -48.51591334008819 <- z -> -0.017751972533696918
14:02:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:31 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:31 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:31 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:31 INFO opendrift.models.radionuclides:717: Number of transformations: 62
14:02:31 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:31 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:31 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[227. 0. 3. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:31 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:31 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:31 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:31 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:31 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05721043132098197
14:02:31 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:31 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:31 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:31 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:31 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:31 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:31 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:31 INFO opendrift.models.radionuclides:959: Speciation: [2477, 2520, 3, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:31 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0005648256634564243 and 0.48242692354339534 m/s
14:02:31 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:31 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:31 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:31 INFO opendrift.models.basemodel:2882: 2023-09-01 02:00:00 - step 5 of 48 - 5000 active elements (0 deactivated)
14:02:31 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:31 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 02:00:00 (before)
2023-09-01 03:00:00 (after)
14:02:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 02:00:00) in space (linearNDFast)
14:02:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:31 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58826476036025 and -65.43661974019395 degrees.
14:02:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58826476036025 and -65.43661974019395 degrees.
14:02:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:31 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:31 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:31 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:31 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:31 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.145302 (min) -0.032339 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.131085 (min) 0.0217026 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: x_wind: 0.139747 (min) 0.2919 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: y_wind: -8.23022 (min) -7.90867 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.619 (min) 299.863 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.4848 (min) 15.7794 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8421 (min) 33.9685 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000259294 (min) 0.000160591 (max)
14:02:31 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:31 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:31 DEBUG opendrift.models.basemodel:1538: 59.96072623106778 <- latitude -> 60.03628554071577
14:02:31 DEBUG opendrift.models.basemodel:1543: 4.411746178733941 <- longitude -> 4.563391164585837
14:02:31 DEBUG opendrift.models.basemodel:1548: -49.03532662611022 <- z -> -0.08430592698566386
14:02:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:31 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:31 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:31 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:31 INFO opendrift.models.radionuclides:717: Number of transformations: 44
14:02:31 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1]
14:02:31 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0]
14:02:31 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[271. 0. 3. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:31 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:32 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:32 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:32 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:32 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06121725634320258
14:02:32 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:32 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:32 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:32 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:32 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:32 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:32 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:32 INFO opendrift.models.radionuclides:959: Speciation: [2521, 2476, 3, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:32 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0027704729242657793 and 0.39970369084031787 m/s
14:02:32 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:32 INFO opendrift.models.basemodel:2882: 2023-09-01 02:30:00 - step 6 of 48 - 5000 active elements (0 deactivated)
14:02:32 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:32 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 02:00:00 (before)
2023-09-01 03:00:00 (after)
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x7) for time after (2023-09-01 03:00:00)
14:02:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 02:00:00) in space (linearNDFast)
14:02:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 03:00:00) in space (linearNDFast)
14:02:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 02:00:00, weight 0.50) and
after (2023-09-01 03:00:00, weight 0.50) in time
14:02:33 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58876078465704 and -65.43823617128731 degrees.
14:02:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58876078465704 and -65.43823617128731 degrees.
14:02:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:33 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:33 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:33 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.156179 (min) -0.0449899 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.102578 (min) 0.056309 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: x_wind: -0.0640839 (min) 0.0173931 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: y_wind: -8.47332 (min) -8.1889 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.437 (min) 299.865 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.5743 (min) 15.7739 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8391 (min) 33.9504 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000229038 (min) 0.00015446 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:33 DEBUG opendrift.models.basemodel:1538: 59.958639813037664 <- latitude -> 60.03426375282572
14:02:33 DEBUG opendrift.models.basemodel:1543: 4.411250137823579 <- longitude -> 4.5617747376155275
14:02:33 DEBUG opendrift.models.basemodel:1548: -49.42952003615786 <- z -> 0.0
14:02:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:33 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:33 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:33 INFO opendrift.models.radionuclides:717: Number of transformations: 55
14:02:33 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:33 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:33 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[325. 0. 4. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:33 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:33 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06487168454177857
14:02:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:33 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:33 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:33 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:33 INFO opendrift.models.radionuclides:959: Speciation: [2575, 2421, 4, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:33 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00444034204168884 and 0.5261660881313243 m/s
14:02:33 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:33 INFO opendrift.models.basemodel:2882: 2023-09-01 03:00:00 - step 7 of 48 - 5000 active elements (0 deactivated)
14:02:33 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 03:00:00 (before)
2023-09-01 04:00:00 (after)
14:02:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 03:00:00) in space (linearNDFast)
14:02:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.59214422257092 and -65.44073896747318 degrees.
14:02:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.59214422257092 and -65.44073896747318 degrees.
14:02:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:33 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:33 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:33 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.183211 (min) -0.0492168 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0803873 (min) 0.0730648 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: x_wind: -0.281267 (min) -0.215041 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: y_wind: -8.72007 (min) -8.45864 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.345 (min) 299.855 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.4009 (min) 15.7543 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.843 (min) 33.982 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000221284 (min) 0.00020962 (max)
14:02:33 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:33 DEBUG opendrift.models.basemodel:1538: 59.95768477612198 <- latitude -> 60.0348093075032
14:02:33 DEBUG opendrift.models.basemodel:1543: 4.40786670977694 <- longitude -> 4.55927194658018
14:02:33 DEBUG opendrift.models.basemodel:1548: -49.855881870051846 <- z -> -0.07809561188125258
14:02:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:33 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:33 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:33 INFO opendrift.models.radionuclides:717: Number of transformations: 52
14:02:33 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:33 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 2 0 0 0 0]
14:02:33 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[376. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:33 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:33 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06876465447981835
14:02:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:33 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:33 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:33 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:33 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:33 INFO opendrift.models.radionuclides:959: Speciation: [2626, 2369, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:33 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0008780397860256072 and 0.48469273570214455 m/s
14:02:33 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:33 INFO opendrift.models.basemodel:2882: 2023-09-01 03:30:00 - step 8 of 48 - 5000 active elements (0 deactivated)
14:02:33 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:33 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 03:00:00 (before)
2023-09-01 04:00:00 (after)
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x7) for time after (2023-09-01 04:00:00)
14:02:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 03:00:00) in space (linearNDFast)
14:02:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 04:00:00) in space (linearNDFast)
14:02:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 03:00:00, weight 0.50) and
after (2023-09-01 04:00:00, weight 0.50) in time
14:02:35 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58920028109725 and -65.44824384462221 degrees.
14:02:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.58920028109725 and -65.44824384462221 degrees.
14:02:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:35 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:35 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:35 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.189149 (min) -0.0537211 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0505063 (min) 0.115562 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: x_wind: -0.345646 (min) -0.275021 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: y_wind: -8.7631 (min) -8.51213 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.311 (min) 299.779 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.4737 (min) 15.7394 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8438 (min) 33.9678 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000161005 (min) 0.00023672 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:35 DEBUG opendrift.models.basemodel:1538: 59.957185444462645 <- latitude -> 60.03504490352789
14:02:35 DEBUG opendrift.models.basemodel:1543: 4.41081065309199 <- longitude -> 4.551767051709084
14:02:35 DEBUG opendrift.models.basemodel:1548: -49.90278358855874 <- z -> 0.0
14:02:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:35 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:35 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:35 INFO opendrift.models.radionuclides:717: Number of transformations: 47
14:02:35 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1]
14:02:35 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0]
14:02:35 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[423. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:35 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:35 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0694788760960865
14:02:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:35 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:35 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:35 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:35 INFO opendrift.models.radionuclides:959: Speciation: [2673, 2322, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:35 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013143757117245628 and 0.4326928151585528 m/s
14:02:35 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:35 INFO opendrift.models.basemodel:2882: 2023-09-01 04:00:00 - step 9 of 48 - 5000 active elements (0 deactivated)
14:02:35 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 04:00:00 (before)
2023-09-01 05:00:00 (after)
14:02:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 04:00:00) in space (linearNDFast)
14:02:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.59654687958044 and -65.4465955790466 degrees.
14:02:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.59654687958044 and -65.4465955790466 degrees.
14:02:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:35 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:35 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:35 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.204629 (min) -0.0565945 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0195614 (min) 0.162875 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: x_wind: -0.426384 (min) -0.325005 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: y_wind: -8.81223 (min) -8.56929 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.427 (min) 299.799 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.3733 (min) 15.7274 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8446 (min) 33.9865 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000164706 (min) 0.00037907 (max)
14:02:35 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:35 DEBUG opendrift.models.basemodel:1538: 59.95784181018438 <- latitude -> 60.0385515871604
14:02:35 DEBUG opendrift.models.basemodel:1543: 4.403464053129362 <- longitude -> 4.5534153311013394
14:02:35 DEBUG opendrift.models.basemodel:1548: -49.96502021052255 <- z -> 0.0
14:02:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:35 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:35 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:35 INFO opendrift.models.radionuclides:717: Number of transformations: 49
14:02:35 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1]
14:02:35 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0]
14:02:35 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[472. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:35 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:35 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07030257867796898
14:02:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:35 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:35 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:35 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:35 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:35 INFO opendrift.models.radionuclides:959: Speciation: [2722, 2273, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:35 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0024013779448601538 and 0.44180948865733816 m/s
14:02:35 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:35 INFO opendrift.models.basemodel:2882: 2023-09-01 04:30:00 - step 10 of 48 - 5000 active elements (0 deactivated)
14:02:35 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:35 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 04:00:00 (before)
2023-09-01 05:00:00 (after)
14:02:36 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x7) for time after (2023-09-01 05:00:00)
14:02:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 04:00:00) in space (linearNDFast)
14:02:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 05:00:00) in space (linearNDFast)
14:02:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 04:00:00, weight 0.50) and
after (2023-09-01 05:00:00, weight 0.50) in time
14:02:36 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.60480439461062 and -65.45016367706535 degrees.
14:02:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.60480439461062 and -65.45016367706535 degrees.
14:02:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:37 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:37 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:37 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.201596 (min) -0.0601951 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0327701 (min) 0.197523 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: x_wind: -0.368474 (min) -0.290166 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: y_wind: -8.87818 (min) -8.66297 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.245 (min) 299.793 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.3303 (min) 15.7136 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8449 (min) 33.9918 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.96488e-05 (min) 0.000315996 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:37 DEBUG opendrift.models.basemodel:1538: 59.95545175643339 <- latitude -> 60.039285885888134
14:02:37 DEBUG opendrift.models.basemodel:1543: 4.39520654086391 <- longitude -> 4.549847237104256
14:02:37 DEBUG opendrift.models.basemodel:1548: -49.62188202439952 <- z -> 0.0
14:02:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:37 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:37 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:37 INFO opendrift.models.radionuclides:717: Number of transformations: 62
14:02:37 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:37 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:37 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 0. 0. 0. 0.]
[534. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:37 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:37 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07130613654072761
14:02:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:37 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:37 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:37 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:37 INFO opendrift.models.radionuclides:959: Speciation: [2784, 2211, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:37 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0038512228059705642 and 0.4700586064939339 m/s
14:02:37 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:37 INFO opendrift.models.basemodel:2882: 2023-09-01 05:00:00 - step 11 of 48 - 5000 active elements (0 deactivated)
14:02:37 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 05:00:00 (before)
2023-09-01 06:00:00 (after)
14:02:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 05:00:00) in space (linearNDFast)
14:02:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.60888641384368 and -65.45444517060248 degrees.
14:02:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.60888641384368 and -65.45444517060248 degrees.
14:02:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:37 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:37 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:37 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.228574 (min) -0.0594159 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0822515 (min) 0.231136 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: x_wind: -0.305148 (min) -0.256645 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: y_wind: -8.94115 (min) -8.76148 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.427 (min) 299.755 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.3666 (min) 15.694 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8476 (min) 33.9921 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000126858 (min) 0.000352838 (max)
14:02:37 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:37 DEBUG opendrift.models.basemodel:1538: 59.95754077284033 <- latitude -> 60.040333238925996
14:02:37 DEBUG opendrift.models.basemodel:1543: 4.391124523614942 <- longitude -> 4.545565737161574
14:02:37 DEBUG opendrift.models.basemodel:1548: -49.52401008393705 <- z -> 0.0
14:02:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:37 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:37 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:37 INFO opendrift.models.radionuclides:717: Number of transformations: 45
14:02:37 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1]
14:02:37 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0]
14:02:37 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 1. 0. 0. 0.]
[578. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:37 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:37 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07229421505554198
14:02:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:37 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:37 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:37 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:37 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:37 INFO opendrift.models.radionuclides:959: Speciation: [2827, 2168, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:37 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 8.53818247495373e-05 and 0.4538173309941261 m/s
14:02:37 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:37 INFO opendrift.models.basemodel:2882: 2023-09-01 05:30:00 - step 12 of 48 - 5000 active elements (0 deactivated)
14:02:37 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:37 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 05:00:00 (before)
2023-09-01 06:00:00 (after)
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x7) for time after (2023-09-01 06:00:00)
14:02:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 05:00:00) in space (linearNDFast)
14:02:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 06:00:00) in space (linearNDFast)
14:02:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 05:00:00, weight 0.50) and
after (2023-09-01 06:00:00, weight 0.50) in time
14:02:38 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.61672945583561 and -65.45096926882896 degrees.
14:02:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.61672945583561 and -65.45096926882896 degrees.
14:02:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:38 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:38 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:38 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.220359 (min) -0.0602788 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.112903 (min) 0.269554 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: x_wind: -0.148459 (min) -0.0883296 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: y_wind: -9.10066 (min) -8.93105 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.444 (min) 299.811 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.3604 (min) 15.6946 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8456 (min) 33.9958 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.49626e-05 (min) 0.000330621 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:38 DEBUG opendrift.models.basemodel:1538: 59.958042684387294 <- latitude -> 60.0440940794324
14:02:38 DEBUG opendrift.models.basemodel:1543: 4.383281479589982 <- longitude -> 4.549041633734362
14:02:38 DEBUG opendrift.models.basemodel:1548: -49.48966411828114 <- z -> 0.0
14:02:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:38 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:38 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:38 INFO opendrift.models.radionuclides:717: Number of transformations: 46
14:02:38 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1]
14:02:38 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0]
14:02:38 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 1. 0. 0. 0.]
[624. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:38 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:38 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:38 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07483545876892089
14:02:38 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:38 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:38 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:38 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:38 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:38 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:38 INFO opendrift.models.radionuclides:959: Speciation: [2873, 2122, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:38 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0029248378642942256 and 0.43737760331997905 m/s
14:02:38 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:38 INFO opendrift.models.basemodel:2882: 2023-09-01 06:00:00 - step 13 of 48 - 5000 active elements (0 deactivated)
14:02:38 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 06:00:00 (before)
2023-09-01 07:00:00 (after)
14:02:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 06:00:00) in space (linearNDFast)
14:02:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.62234245041113 and -65.45320564977449 degrees.
14:02:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.62234245041113 and -65.45320564977449 degrees.
14:02:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:38 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:38 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:38 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:38 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:38 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.213441 (min) -0.0551031 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.141112 (min) 0.302573 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: x_wind: -0.00804399 (min) 0.0943296 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: y_wind: -9.26491 (min) -9.10347 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.547 (min) 299.786 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.3047 (min) 15.6827 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8469 (min) 34.0029 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.84593e-05 (min) 0.000355851 (max)
14:02:38 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:38 DEBUG opendrift.models.basemodel:1538: 59.959678615129505 <- latitude -> 60.04739674954354
14:02:38 DEBUG opendrift.models.basemodel:1543: 4.3776684833737125 <- longitude -> 4.54680526620677
14:02:38 DEBUG opendrift.models.basemodel:1548: -49.3091216189808 <- z -> 0.0
14:02:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:38 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:38 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:38 INFO opendrift.models.radionuclides:717: Number of transformations: 37
14:02:38 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:38 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:38 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 1. 0. 0. 0.]
[661. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:38 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:38 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:38 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07755729928882599
14:02:38 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:38 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:38 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:38 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:38 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:38 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:38 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:38 INFO opendrift.models.radionuclides:959: Speciation: [2910, 2085, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:38 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0032171789961740666 and 0.418753817283316 m/s
14:02:38 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:38 INFO opendrift.models.basemodel:2882: 2023-09-01 06:30:00 - step 14 of 48 - 5000 active elements (0 deactivated)
14:02:38 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:38 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 06:00:00 (before)
2023-09-01 07:00:00 (after)
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x7) for time after (2023-09-01 07:00:00)
14:02:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 06:00:00) in space (linearNDFast)
14:02:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 07:00:00) in space (linearNDFast)
14:02:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 06:00:00, weight 0.50) and
after (2023-09-01 07:00:00, weight 0.50) in time
14:02:40 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6279923482216 and -65.45624131933378 degrees.
14:02:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6279923482216 and -65.45624131933378 degrees.
14:02:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:40 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:40 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:40 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.199929 (min) -0.0499995 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.148033 (min) 0.31716 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: x_wind: 0.0338411 (min) 0.126208 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: y_wind: -9.31502 (min) -9.20666 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.747 (min) 299.784 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.2389 (min) 15.683 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8446 (min) 34.0147 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00011202 (min) 0.00031204 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:40 DEBUG opendrift.models.basemodel:1538: 59.962492816576656 <- latitude -> 60.05351669743241
14:02:40 DEBUG opendrift.models.basemodel:1543: 4.372018591565558 <- longitude -> 4.543769599522949
14:02:40 DEBUG opendrift.models.basemodel:1548: -49.36050976140321 <- z -> 0.0
14:02:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:40 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:40 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:40 INFO opendrift.models.radionuclides:717: Number of transformations: 40
14:02:40 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1]
14:02:40 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0]
14:02:40 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 1. 0. 0. 0.]
[701. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:40 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:40 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0784033359170723
14:02:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:40 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:40 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:40 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:40 INFO opendrift.models.radionuclides:959: Speciation: [2950, 2045, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:40 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013052133778795058 and 0.4156972582523754 m/s
14:02:40 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:40 INFO opendrift.models.basemodel:2882: 2023-09-01 07:00:00 - step 15 of 48 - 5000 active elements (0 deactivated)
14:02:40 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 07:00:00 (before)
2023-09-01 08:00:00 (after)
14:02:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 07:00:00) in space (linearNDFast)
14:02:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6312369142994 and -65.45829798747174 degrees.
14:02:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6312369142994 and -65.45829798747174 degrees.
14:02:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:40 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:40 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:40 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.199853 (min) -0.0417196 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.152643 (min) 0.350755 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: x_wind: 0.0647739 (min) 0.160052 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: y_wind: -9.36815 (min) -9.2344 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.156 (min) 299.786 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.133 (min) 15.6747 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.848 (min) 34.0321 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00020145 (min) 0.000335759 (max)
14:02:40 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:40 DEBUG opendrift.models.basemodel:1538: 59.96776364275421 <- latitude -> 60.05781684976078
14:02:40 DEBUG opendrift.models.basemodel:1543: 4.368774014236987 <- longitude -> 4.541712920679706
14:02:40 DEBUG opendrift.models.basemodel:1548: -49.66979068476668 <- z -> 0.0
14:02:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:40 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:40 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:40 INFO opendrift.models.radionuclides:717: Number of transformations: 50
14:02:40 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:40 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:40 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 1. 0. 0. 0.]
[751. 0. 5. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:40 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:40 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07929660949476242
14:02:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:40 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:40 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:40 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:40 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:40 INFO opendrift.models.radionuclides:959: Speciation: [3000, 1995, 5, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:40 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003588163404143902 and 0.4444213015207039 m/s
14:02:40 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:40 INFO opendrift.models.basemodel:2882: 2023-09-01 07:30:00 - step 16 of 48 - 5000 active elements (0 deactivated)
14:02:40 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:40 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 07:00:00 (before)
2023-09-01 08:00:00 (after)
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x24x7) for time after (2023-09-01 08:00:00)
14:02:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 07:00:00) in space (linearNDFast)
14:02:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 08:00:00) in space (linearNDFast)
14:02:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 07:00:00, weight 0.50) and
after (2023-09-01 08:00:00, weight 0.50) in time
14:02:42 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.64032009151236 and -65.45971952015248 degrees.
14:02:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.64032009151236 and -65.45971952015248 degrees.
14:02:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:42 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:42 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:42 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.206228 (min) -0.0374848 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.14691 (min) 0.352165 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: x_wind: 0.173808 (min) 0.255282 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: y_wind: -9.37712 (min) -9.23347 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.358 (min) 299.78 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1686 (min) 15.665 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8499 (min) 34.0275 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000161453 (min) 0.000283313 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:42 DEBUG opendrift.models.basemodel:1538: 59.970782118611424 <- latitude -> 60.06456800809801
14:02:42 DEBUG opendrift.models.basemodel:1543: 4.3596908409588595 <- longitude -> 4.5402913845274355
14:02:42 DEBUG opendrift.models.basemodel:1548: -49.31005750045858 <- z -> 0.0
14:02:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:42 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:42 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:42 INFO opendrift.models.radionuclides:717: Number of transformations: 46
14:02:42 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1]
14:02:42 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0
0 0 0 0 0 0 0 0 0]
14:02:42 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[795. 0. 6. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:42 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:42 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07948820559843063
14:02:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:42 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:42 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:42 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:42 INFO opendrift.models.radionuclides:959: Speciation: [3043, 1951, 6, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:42 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001176353614300966 and 0.47968256171783985 m/s
14:02:42 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:42 INFO opendrift.models.basemodel:2882: 2023-09-01 08:00:00 - step 17 of 48 - 5000 active elements (0 deactivated)
14:02:42 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 08:00:00 (before)
2023-09-01 09:00:00 (after)
14:02:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 08:00:00) in space (linearNDFast)
14:02:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.63909134505614 and -65.46922659811224 degrees.
14:02:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.63909134505614 and -65.46922659811224 degrees.
14:02:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:42 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:42 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:42 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.214087 (min) -0.0288239 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.126598 (min) 0.333598 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: x_wind: 0.245688 (min) 0.359295 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: y_wind: -9.39064 (min) -9.24836 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.567 (min) 299.617 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1099 (min) 15.6595 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8544 (min) 34.0478 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00031766 (min) 0.000297746 (max)
14:02:42 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:42 DEBUG opendrift.models.basemodel:1538: 59.97405440491637 <- latitude -> 60.0707354495308
14:02:42 DEBUG opendrift.models.basemodel:1543: 4.360919583479033 <- longitude -> 4.530784313266357
14:02:42 DEBUG opendrift.models.basemodel:1548: -49.789683964475856 <- z -> 0.0
14:02:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:42 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:42 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:42 INFO opendrift.models.radionuclides:717: Number of transformations: 38
14:02:42 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1]
14:02:42 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0]
14:02:42 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[833. 0. 6. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:42 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:42 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07978207044799804
14:02:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:42 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:42 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:42 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:42 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:42 INFO opendrift.models.radionuclides:959: Speciation: [3081, 1913, 6, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:42 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0007794844741947214 and 0.4654918507260202 m/s
14:02:42 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:42 INFO opendrift.models.basemodel:2882: 2023-09-01 08:30:00 - step 18 of 48 - 5000 active elements (0 deactivated)
14:02:42 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:42 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 08:00:00 (before)
2023-09-01 09:00:00 (after)
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 29x26x8) for time after (2023-09-01 09:00:00)
14:02:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 08:00:00) in space (linearNDFast)
14:02:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 09:00:00) in space (linearNDFast)
14:02:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 08:00:00, weight 0.50) and
after (2023-09-01 09:00:00, weight 0.50) in time
14:02:43 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.63939012574917 and -65.46929922136914 degrees.
14:02:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.63939012574917 and -65.46929922136914 degrees.
14:02:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:43 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:43 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:43 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.201015 (min) -0.0199774 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0909132 (min) 0.295191 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: x_wind: 0.453276 (min) 0.538788 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: y_wind: -9.27079 (min) -9.07074 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.995 (min) 299.555 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1003 (min) 15.6677 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8471 (min) 34.0436 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000294064 (min) 0.000250753 (max)
14:02:43 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:43 DEBUG opendrift.models.basemodel:1538: 59.98129540803065 <- latitude -> 60.07622760164402
14:02:43 DEBUG opendrift.models.basemodel:1543: 4.360620796340271 <- longitude -> 4.530711694809024
14:02:43 DEBUG opendrift.models.basemodel:1548: -50.4640398327418 <- z -> 0.0
14:02:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:43 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:43 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:43 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:43 INFO opendrift.models.radionuclides:717: Number of transformations: 37
14:02:43 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:43 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:43 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[870. 0. 6. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:43 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:43 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:43 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:43 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:43 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07788572453029632
14:02:43 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:43 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:43 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:43 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:43 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:43 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:43 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:43 INFO opendrift.models.radionuclides:959: Speciation: [3118, 1876, 6, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:43 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020903796543358098 and 0.4729741597532667 m/s
14:02:43 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:43 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:43 INFO opendrift.models.basemodel:2882: 2023-09-01 09:00:00 - step 19 of 48 - 5000 active elements (0 deactivated)
14:02:43 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:43 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 09:00:00 (before)
2023-09-01 10:00:00 (after)
14:02:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 09:00:00) in space (linearNDFast)
14:02:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.64225095628123 and -65.47411181542184 degrees.
14:02:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.64225095628123 and -65.47411181542184 degrees.
14:02:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:44 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:44 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:44 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:44 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:44 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.19682 (min) -0.0032108 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0675504 (min) 0.270292 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: x_wind: 0.655743 (min) 0.727109 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: y_wind: -9.14948 (min) -8.88383 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.656 (min) 299.534 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1729 (min) 15.6808 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8494 (min) 34.0295 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000614853 (min) 0.000306114 (max)
14:02:44 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:44 DEBUG opendrift.models.basemodel:1538: 59.9849853575302 <- latitude -> 60.08087118901747
14:02:44 DEBUG opendrift.models.basemodel:1543: 4.3577599642753215 <- longitude -> 4.525899075535788
14:02:44 DEBUG opendrift.models.basemodel:1548: -51.06423966441353 <- z -> 0.0
14:02:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:44 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:44 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:44 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:44 INFO opendrift.models.radionuclides:717: Number of transformations: 43
14:02:44 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1]
14:02:44 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0]
14:02:44 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[913. 0. 6. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:44 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:44 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:44 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:44 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:44 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07609917737491607
14:02:44 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:44 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:44 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:44 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:44 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:44 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:44 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:44 INFO opendrift.models.radionuclides:959: Speciation: [3161, 1833, 6, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:44 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0005210422148844722 and 0.46630289714711914 m/s
14:02:44 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:44 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:44 INFO opendrift.models.basemodel:2882: 2023-09-01 09:30:00 - step 20 of 48 - 5000 active elements (0 deactivated)
14:02:44 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:44 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 09:00:00 (before)
2023-09-01 10:00:00 (after)
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 29x24x8) for time after (2023-09-01 10:00:00)
14:02:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 09:00:00) in space (linearNDFast)
14:02:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 10:00:00) in space (linearNDFast)
14:02:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 09:00:00, weight 0.50) and
after (2023-09-01 10:00:00, weight 0.50) in time
14:02:45 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.65000041120224 and -65.47136186828027 degrees.
14:02:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.65000041120224 and -65.47136186828027 degrees.
14:02:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:45 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:45 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:45 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.172284 (min) 0.0128783 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.00452194 (min) 0.249062 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: x_wind: 0.692144 (min) 0.768008 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: y_wind: -9.10329 (min) -8.86148 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.453 (min) 299.528 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1303 (min) 15.6916 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8476 (min) 34.0279 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000318661 (min) 0.000247908 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:45 DEBUG opendrift.models.basemodel:1538: 59.98623161900828 <- latitude -> 60.08487605720526
14:02:45 DEBUG opendrift.models.basemodel:1543: 4.3500105289391815 <- longitude -> 4.528649027063145
14:02:45 DEBUG opendrift.models.basemodel:1548: -51.36206307796788 <- z -> 0.0
14:02:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:45 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:45 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:45 INFO opendrift.models.radionuclides:717: Number of transformations: 34
14:02:45 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:45 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:45 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[947. 0. 6. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:45 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:45 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07533891937454223
14:02:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:45 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:45 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:45 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:45 INFO opendrift.models.radionuclides:959: Speciation: [3195, 1799, 6, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:45 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018487049064487176 and 0.4709653320788875 m/s
14:02:45 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:45 INFO opendrift.models.basemodel:2882: 2023-09-01 10:00:00 - step 21 of 48 - 5000 active elements (0 deactivated)
14:02:45 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 10:00:00 (before)
2023-09-01 11:00:00 (after)
14:02:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 10:00:00) in space (linearNDFast)
14:02:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.65482341714498 and -65.47536394805628 degrees.
14:02:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.65482341714498 and -65.47536394805628 degrees.
14:02:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:45 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:45 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:45 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.153317 (min) 0.0278676 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0258312 (min) 0.210092 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: x_wind: 0.684584 (min) 0.819582 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: y_wind: -9.0628 (min) -8.8427 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 296.16 (min) 299.521 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.1338 (min) 15.6881 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8558 (min) 34.0309 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000420808 (min) 0.000254368 (max)
14:02:45 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:45 DEBUG opendrift.models.basemodel:1538: 59.98400100998951 <- latitude -> 60.089378865560334
14:02:45 DEBUG opendrift.models.basemodel:1543: 4.34518751339878 <- longitude -> 4.524646961372097
14:02:45 DEBUG opendrift.models.basemodel:1548: -51.9790615504146 <- z -> 0.0
14:02:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:45 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:45 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:45 INFO opendrift.models.radionuclides:717: Number of transformations: 45
14:02:45 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1]
14:02:45 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0]
14:02:45 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[990. 0. 8. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:45 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:45 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07475059822042465
14:02:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:45 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:45 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:45 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:45 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:45 INFO opendrift.models.radionuclides:959: Speciation: [3238, 1754, 8, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:45 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011585798414354659 and 0.47770057069032473 m/s
14:02:45 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:45 INFO opendrift.models.basemodel:2882: 2023-09-01 10:30:00 - step 22 of 48 - 5000 active elements (0 deactivated)
14:02:45 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 10:00:00 (before)
2023-09-01 11:00:00 (after)
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 30x25x8) for time after (2023-09-01 11:00:00)
14:02:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 10:00:00) in space (linearNDFast)
14:02:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 11:00:00) in space (linearNDFast)
14:02:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 10:00:00, weight 0.50) and
after (2023-09-01 11:00:00, weight 0.50) in time
14:02:47 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.66154194212797 and -65.47740600349792 degrees.
14:02:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.66154194212797 and -65.47740600349792 degrees.
14:02:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:47 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:47 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:47 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.157109 (min) 0.0300465 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0540075 (min) 0.163776 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: x_wind: 0.658419 (min) 0.801697 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: y_wind: -8.91579 (min) -8.66182 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.875 (min) 299.434 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.123 (min) 15.7018 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8567 (min) 34.036 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000336176 (min) 0.000241958 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:47 DEBUG opendrift.models.basemodel:1538: 59.98640913900568 <- latitude -> 60.09059470907322
14:02:47 DEBUG opendrift.models.basemodel:1543: 4.338468990416599 <- longitude -> 4.5226048850723055
14:02:47 DEBUG opendrift.models.basemodel:1548: -52.246626296682976 <- z -> 0.0
14:02:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:47 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:47 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:47 INFO opendrift.models.radionuclides:717: Number of transformations: 46
14:02:47 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1]
14:02:47 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0]
14:02:47 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[1036. 0. 8. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:47 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:47 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07228597441037178
14:02:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:47 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:47 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:47 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:47 INFO opendrift.models.radionuclides:959: Speciation: [3284, 1708, 8, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:47 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016397103468777092 and 0.4761214997698652 m/s
14:02:47 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:47 INFO opendrift.models.basemodel:2882: 2023-09-01 11:00:00 - step 23 of 48 - 5000 active elements (0 deactivated)
14:02:47 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 11:00:00 (before)
2023-09-01 12:00:00 (after)
14:02:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 11:00:00) in space (linearNDFast)
14:02:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.66826885521054 and -65.47273933369956 degrees.
14:02:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.66826885521054 and -65.47273933369956 degrees.
14:02:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:47 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:47 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:47 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:47 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:47 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.160229 (min) 0.0412646 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0849734 (min) 0.125937 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: x_wind: 0.571905 (min) 0.815143 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: y_wind: -8.77559 (min) -8.47081 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.946 (min) 299.473 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0538 (min) 15.7104 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8618 (min) 34.0518 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000501052 (min) 0.000421662 (max)
14:02:47 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:47 DEBUG opendrift.models.basemodel:1538: 59.987044459082995 <- latitude -> 60.09320151057277
14:02:47 DEBUG opendrift.models.basemodel:1543: 4.331742071843426 <- longitude -> 4.527271566150443
14:02:47 DEBUG opendrift.models.basemodel:1548: -52.15997516397454 <- z -> 0.0
14:02:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:47 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:47 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:47 INFO opendrift.models.radionuclides:717: Number of transformations: 33
14:02:47 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:47 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:47 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[1069. 0. 8. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:47 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:47 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06995113965828895
14:02:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:47 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:47 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:47 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:47 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:47 INFO opendrift.models.radionuclides:959: Speciation: [3317, 1675, 8, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:47 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018887049783624056 and 0.4221588490444767 m/s
14:02:47 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:47 INFO opendrift.models.basemodel:2882: 2023-09-01 11:30:00 - step 24 of 48 - 5000 active elements (0 deactivated)
14:02:47 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 11:00:00 (before)
2023-09-01 12:00:00 (after)
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 30x26x8) for time after (2023-09-01 12:00:00)
14:02:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 11:00:00) in space (linearNDFast)
14:02:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 12:00:00) in space (linearNDFast)
14:02:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 11:00:00, weight 0.50) and
after (2023-09-01 12:00:00, weight 0.50) in time
14:02:49 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.67235510545875 and -65.47263037175178 degrees.
14:02:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.67235510545875 and -65.47263037175178 degrees.
14:02:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:49 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:49 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:49 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.152981 (min) 0.028743 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.118708 (min) 0.0875206 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: x_wind: 0.678415 (min) 0.83448 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: y_wind: -8.85716 (min) -8.41887 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.768 (min) 299.558 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0572 (min) 15.7256 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8521 (min) 34.0533 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000342439 (min) 0.000289728 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:49 DEBUG opendrift.models.basemodel:1538: 59.98539776197198 <- latitude -> 60.094622871086685
14:02:49 DEBUG opendrift.models.basemodel:1543: 4.327655815524935 <- longitude -> 4.527380540749931
14:02:49 DEBUG opendrift.models.basemodel:1548: -52.20093051453154 <- z -> 0.0
14:02:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:49 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:49 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:49 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:49 INFO opendrift.models.radionuclides:717: Number of transformations: 30
14:02:49 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:49 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:49 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[1099. 0. 8. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:49 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:49 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07140490952284813
14:02:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:49 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:49 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:49 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:49 INFO opendrift.models.radionuclides:959: Speciation: [3347, 1645, 8, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:49 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019759963184003905 and 0.4404861012621264 m/s
14:02:49 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:49 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:49 INFO opendrift.models.basemodel:2882: 2023-09-01 12:00:00 - step 25 of 48 - 5000 active elements (0 deactivated)
14:02:49 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 12:00:00 (before)
2023-09-01 13:00:00 (after)
14:02:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 12:00:00) in space (linearNDFast)
14:02:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6754820539968 and -65.4724439192459 degrees.
14:02:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6754820539968 and -65.4724439192459 degrees.
14:02:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:49 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:49 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:49 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.153858 (min) 0.0259809 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.14578 (min) 0.0781696 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: x_wind: 0.708606 (min) 0.923097 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: y_wind: -8.95548 (min) -8.34681 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.674 (min) 299.481 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0439 (min) 15.7319 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.851 (min) 34.0561 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00031184 (min) 0.000279513 (max)
14:02:49 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:49 DEBUG opendrift.models.basemodel:1538: 59.98493688756136 <- latitude -> 60.09614361529738
14:02:49 DEBUG opendrift.models.basemodel:1543: 4.324528880335828 <- longitude -> 4.5275669702517956
14:02:49 DEBUG opendrift.models.basemodel:1548: -52.27800214748606 <- z -> 0.0
14:02:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:49 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:49 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:49 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:49 INFO opendrift.models.radionuclides:717: Number of transformations: 34
14:02:49 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:49 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:49 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[1133. 0. 8. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:49 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:49 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0732054220779705
14:02:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:49 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:49 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:49 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:49 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:49 INFO opendrift.models.radionuclides:959: Speciation: [3381, 1611, 8, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:49 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0006086777209306666 and 0.45847361248014384 m/s
14:02:49 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:49 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:49 INFO opendrift.models.basemodel:2882: 2023-09-01 12:30:00 - step 26 of 48 - 5000 active elements (0 deactivated)
14:02:49 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 12:00:00 (before)
2023-09-01 13:00:00 (after)
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 31x26x8) for time after (2023-09-01 13:00:00)
14:02:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 12:00:00) in space (linearNDFast)
14:02:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 13:00:00) in space (linearNDFast)
14:02:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 12:00:00, weight 0.50) and
after (2023-09-01 13:00:00, weight 0.50) in time
14:02:51 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6787655124763 and -65.4743401315745 degrees.
14:02:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6787655124763 and -65.4743401315745 degrees.
14:02:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:51 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:51 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:51 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.152321 (min) 0.00466071 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.157978 (min) 0.0274987 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: x_wind: 0.671051 (min) 0.964911 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: y_wind: -9.02681 (min) -8.58412 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.535 (min) 299.492 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0462 (min) 15.7535 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8582 (min) 34.0569 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000214444 (min) 0.000316468 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:51 DEBUG opendrift.models.basemodel:1538: 59.983472433691894 <- latitude -> 60.09595944786561
14:02:51 DEBUG opendrift.models.basemodel:1543: 4.321245411550029 <- longitude -> 4.525670762260185
14:02:51 DEBUG opendrift.models.basemodel:1548: -51.68592672448058 <- z -> 0.0
14:02:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:51 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:51 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:51 INFO opendrift.models.radionuclides:717: Number of transformations: 30
14:02:51 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:51 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:51 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 2. 0. 0. 0.]
[1162. 0. 9. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:51 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:51 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07432038975580216
14:02:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:51 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:51 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:51 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:51 INFO opendrift.models.radionuclides:959: Speciation: [3410, 1581, 9, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:51 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0032108671565359115 and 0.45230905279289424 m/s
14:02:51 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:51 INFO opendrift.models.basemodel:2882: 2023-09-01 13:00:00 - step 27 of 48 - 5000 active elements (0 deactivated)
14:02:51 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 13:00:00 (before)
2023-09-01 14:00:00 (after)
14:02:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 13:00:00) in space (linearNDFast)
14:02:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.68685559998332 and -65.47510389886517 degrees.
14:02:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.68685559998332 and -65.47510389886517 degrees.
14:02:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:51 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:51 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:51 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.155361 (min) -0.0144786 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.187726 (min) 0.0191266 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: x_wind: 0.597359 (min) 1.01292 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: y_wind: -9.11976 (min) -8.81693 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 295.063 (min) 299.485 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0022 (min) 15.7574 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8583 (min) 34.0656 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000371339 (min) 0.000401529 (max)
14:02:51 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:51 DEBUG opendrift.models.basemodel:1538: 59.979364611746334 <- latitude -> 60.095090149919514
14:02:51 DEBUG opendrift.models.basemodel:1543: 4.313155323754357 <- longitude -> 4.524906998752347
14:02:51 DEBUG opendrift.models.basemodel:1548: -51.759244407291696 <- z -> 0.0
14:02:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:51 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:51 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:51 INFO opendrift.models.radionuclides:717: Number of transformations: 30
14:02:51 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:51 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0]
14:02:51 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 3. 0. 0. 0.]
[1189. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:51 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:51 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07590786375720977
14:02:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:51 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:51 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:51 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:51 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:51 INFO opendrift.models.radionuclides:959: Speciation: [3436, 1553, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:51 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0015040681450470199 and 0.4169994987792402 m/s
14:02:51 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:51 INFO opendrift.models.basemodel:2882: 2023-09-01 13:30:00 - step 28 of 48 - 5000 active elements (0 deactivated)
14:02:51 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 13:00:00 (before)
2023-09-01 14:00:00 (after)
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 32x27x8) for time after (2023-09-01 14:00:00)
14:02:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 13:00:00) in space (linearNDFast)
14:02:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 14:00:00) in space (linearNDFast)
14:02:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 13:00:00, weight 0.50) and
after (2023-09-01 14:00:00, weight 0.50) in time
14:02:52 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6984450350234 and -65.47695287696241 degrees.
14:02:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.6984450350234 and -65.47695287696241 degrees.
14:02:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:52 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:52 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:52 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:52 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:52 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.171908 (min) -0.0322873 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.168716 (min) 0.0341429 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: x_wind: 0.482008 (min) 0.830005 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: y_wind: -9.27468 (min) -8.78891 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 294.791 (min) 299.426 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0234 (min) 15.769 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8414 (min) 34.0588 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000357452 (min) 0.000322691 (max)
14:02:52 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:52 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:52 DEBUG opendrift.models.basemodel:1538: 59.975433492785626 <- latitude -> 60.09390910957038
14:02:52 DEBUG opendrift.models.basemodel:1543: 4.301565907705356 <- longitude -> 4.523058023013389
14:02:52 DEBUG opendrift.models.basemodel:1548: -51.65066513480072 <- z -> 0.0
14:02:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:52 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:52 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:52 INFO opendrift.models.radionuclides:717: Number of transformations: 36
14:02:52 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:52 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:52 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 3. 0. 0. 0.]
[1225. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:52 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:52 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:52 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:52 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:52 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07825370663412094
14:02:52 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:52 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:52 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:53 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:53 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:53 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:53 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:53 INFO opendrift.models.radionuclides:959: Speciation: [3472, 1517, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:53 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020864984171642133 and 0.4118046429568968 m/s
14:02:53 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:53 INFO opendrift.models.basemodel:2882: 2023-09-01 14:00:00 - step 29 of 48 - 5000 active elements (0 deactivated)
14:02:53 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:02:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:02:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.70007851250813 and -65.47753610293591 degrees.
14:02:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.70007851250813 and -65.47753610293591 degrees.
14:02:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:53 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:53 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:53 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.195731 (min) -0.0432816 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.176371 (min) 0.0683123 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: x_wind: 0.361707 (min) 0.667038 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: y_wind: -9.44602 (min) -8.76852 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 294.35 (min) 299.429 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.91239 (min) 15.779 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.837 (min) 34.0879 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000404943 (min) 0.00030393 (max)
14:02:53 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:53 DEBUG opendrift.models.basemodel:1538: 59.97436085839567 <- latitude -> 60.094959292284635
14:02:53 DEBUG opendrift.models.basemodel:1543: 4.29993242578872 <- longitude -> 4.522474796482221
14:02:53 DEBUG opendrift.models.basemodel:1548: -51.498197828355934 <- z -> 0.0
14:02:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:53 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:53 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:53 INFO opendrift.models.radionuclides:717: Number of transformations: 41
14:02:53 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1]
14:02:53 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0]
14:02:53 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 4. 0. 0. 0.]
[1265. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:53 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:53 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:53 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:53 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0809909867773819
14:02:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:53 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:53 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:53 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:53 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:53 INFO opendrift.models.radionuclides:959: Speciation: [3511, 1478, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:53 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019855243759120595 and 0.4029837321897783 m/s
14:02:53 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:53 INFO opendrift.models.basemodel:2882: 2023-09-01 14:30:00 - step 30 of 48 - 5000 active elements (0 deactivated)
14:02:53 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 33x27x8) for time after (2023-09-01 15:00:00)
14:02:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:02:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:02:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.50) and
after (2023-09-01 15:00:00, weight 0.50) in time
14:02:54 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.70651435653967 and -65.47529875657185 degrees.
14:02:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.70651435653967 and -65.47529875657185 degrees.
14:02:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:54 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:54 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:54 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.195046 (min) -0.047312 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.194938 (min) 0.0582164 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: x_wind: 0.556012 (min) 0.946082 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: y_wind: -9.33162 (min) -8.80981 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 294.119 (min) 299.482 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 10.0339 (min) 15.7679 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8433 (min) 34.0654 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000294852 (min) 0.000235192 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:54 DEBUG opendrift.models.basemodel:1538: 59.9762017468108 <- latitude -> 60.09778430988747
14:02:54 DEBUG opendrift.models.basemodel:1543: 4.293496580991261 <- longitude -> 4.524712148321192
14:02:54 DEBUG opendrift.models.basemodel:1548: -51.7272827383343 <- z -> -0.06045135976581406
14:02:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:54 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:54 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:54 INFO opendrift.models.radionuclides:717: Number of transformations: 31
14:02:54 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:54 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:54 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 4. 0. 0. 0.]
[1296. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:54 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:54 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07947626173885346
14:02:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:54 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:54 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:54 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:54 INFO opendrift.models.radionuclides:959: Speciation: [3542, 1447, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:54 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.000508552907792149 and 0.42925117930245926 m/s
14:02:54 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:54 INFO opendrift.models.basemodel:2882: 2023-09-01 15:00:00 - step 31 of 48 - 5000 active elements (0 deactivated)
14:02:54 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:02:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:02:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71408520474141 and -65.47684333227494 degrees.
14:02:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71408520474141 and -65.47684333227494 degrees.
14:02:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:54 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:54 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:54 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.212781 (min) -0.0562094 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.165211 (min) 0.0769221 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: x_wind: 0.701791 (min) 1.24063 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: y_wind: -9.24446 (min) -8.86247 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 294.408 (min) 299.445 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.99818 (min) 15.7978 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8306 (min) 34.0687 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000225012 (min) 0.000185493 (max)
14:02:54 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:54 DEBUG opendrift.models.basemodel:1538: 59.97406221398934 <- latitude -> 60.1002070912283
14:02:54 DEBUG opendrift.models.basemodel:1543: 4.285925733552787 <- longitude -> 4.523167568607262
14:02:54 DEBUG opendrift.models.basemodel:1548: -51.66412106498772 <- z -> -0.008269590157464285
14:02:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:54 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:54 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:54 INFO opendrift.models.radionuclides:717: Number of transformations: 30
14:02:54 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:54 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:54 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 4. 0. 0. 0.]
[1326. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:54 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:54 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07855788222129821
14:02:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:54 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:54 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:54 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:54 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:54 INFO opendrift.models.radionuclides:959: Speciation: [3572, 1417, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:54 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004134116894828571 and 0.4370576208617335 m/s
14:02:54 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:54 INFO opendrift.models.basemodel:2882: 2023-09-01 15:30:00 - step 32 of 48 - 5000 active elements (0 deactivated)
14:02:54 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 33x26x8) for time after (2023-09-01 16:00:00)
14:02:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:02:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:02:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.50) and
after (2023-09-01 16:00:00, weight 0.50) in time
14:02:56 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71199778156766 and -65.48004128923861 degrees.
14:02:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71199778156766 and -65.48004128923861 degrees.
14:02:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:56 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:56 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:56 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.218577 (min) -0.0533521 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.115206 (min) 0.144562 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: x_wind: 1.00928 (min) 1.655 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: y_wind: -9.14158 (min) -8.86206 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 293.917 (min) 299.375 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.98696 (min) 15.7958 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8217 (min) 34.076 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000219478 (min) 0.000125829 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:56 DEBUG opendrift.models.basemodel:1538: 59.97168457157241 <- latitude -> 60.09537750977877
14:02:56 DEBUG opendrift.models.basemodel:1543: 4.288013161823733 <- longitude -> 4.5199696135891765
14:02:56 DEBUG opendrift.models.basemodel:1548: -51.7540052077582 <- z -> -0.017118948887782676
14:02:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:56 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:56 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:56 INFO opendrift.models.radionuclides:717: Number of transformations: 25
14:02:56 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:56 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:56 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 4. 0. 0. 0.]
[1351. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:56 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:56 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07781573863323211
14:02:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:56 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:56 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:56 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:56 INFO opendrift.models.radionuclides:959: Speciation: [3597, 1392, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:56 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013312583615975697 and 0.44277868633392464 m/s
14:02:56 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:56 INFO opendrift.models.basemodel:2882: 2023-09-01 16:00:00 - step 33 of 48 - 5000 active elements (0 deactivated)
14:02:56 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:02:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:02:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.7127735163289 and -65.48051110681794 degrees.
14:02:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.7127735163289 and -65.48051110681794 degrees.
14:02:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:56 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:56 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:56 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.225201 (min) -0.0449593 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0856452 (min) 0.159576 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: x_wind: 1.30503 (min) 2.07119 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: y_wind: -9.09276 (min) -8.86076 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 293.949 (min) 299.366 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.99115 (min) 15.7894 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8291 (min) 34.0749 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000349962 (min) 0.000159458 (max)
14:02:56 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:56 DEBUG opendrift.models.basemodel:1538: 59.972399990419625 <- latitude -> 60.100873581944526
14:02:56 DEBUG opendrift.models.basemodel:1543: 4.287237419224333 <- longitude -> 4.519499795452565
14:02:56 DEBUG opendrift.models.basemodel:1548: -51.682289497724256 <- z -> -0.0426051357209829
14:02:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:56 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:56 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:56 INFO opendrift.models.radionuclides:717: Number of transformations: 30
14:02:56 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:56 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:56 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 4. 0. 0. 0.]
[1381. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:56 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:56 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07785142014129638
14:02:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:56 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:56 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:56 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:56 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:56 INFO opendrift.models.radionuclides:959: Speciation: [3627, 1362, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:56 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019788890825693886 and 0.46595463552135125 m/s
14:02:56 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:56 INFO opendrift.models.basemodel:2882: 2023-09-01 16:30:00 - step 34 of 48 - 5000 active elements (0 deactivated)
14:02:56 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 34x26x8) for time after (2023-09-01 17:00:00)
14:02:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:02:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:02:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.50) and
after (2023-09-01 17:00:00, weight 0.50) in time
14:02:57 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71920308541593 and -65.48551321270827 degrees.
14:02:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.71920308541593 and -65.48551321270827 degrees.
14:02:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:57 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:57 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:57 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.24271 (min) -0.052019 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0415929 (min) 0.204718 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: x_wind: 1.55905 (min) 2.23077 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: y_wind: -8.98334 (min) -8.79663 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 294.033 (min) 299.349 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.96807 (min) 15.7771 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8388 (min) 34.0782 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000284762 (min) 0.000306017 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:57 DEBUG opendrift.models.basemodel:1538: 59.97177866950613 <- latitude -> 60.10437377792836
14:02:57 DEBUG opendrift.models.basemodel:1543: 4.280807861410993 <- longitude -> 4.514497687683538
14:02:57 DEBUG opendrift.models.basemodel:1548: -51.76578819497155 <- z -> 0.0
14:02:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:57 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:57 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:57 INFO opendrift.models.radionuclides:717: Number of transformations: 33
14:02:57 DEBUG opendrift.models.radionuclides:734: old species: [1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:57 DEBUG opendrift.models.radionuclides:735: new species: [0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:57 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1413. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:57 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:57 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:57 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07709972499664307
14:02:57 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:57 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:57 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:57 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:57 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:57 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:57 INFO opendrift.models.radionuclides:959: Speciation: [3658, 1331, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:57 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001810561277939722 and 0.5566449055480728 m/s
14:02:57 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:57 INFO opendrift.models.basemodel:2882: 2023-09-01 17:00:00 - step 35 of 48 - 5000 active elements (0 deactivated)
14:02:57 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:02:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:02:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.72103573180178 and -65.48507194289573 degrees.
14:02:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.72103573180178 and -65.48507194289573 degrees.
14:02:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:57 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:57 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:57 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.20745 (min) -0.0484977 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.00829852 (min) 0.261828 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: x_wind: 1.83978 (min) 2.41595 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: y_wind: -8.91886 (min) -8.74125 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 293.785 (min) 299.358 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.9751 (min) 15.7831 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.827 (min) 34.0787 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000326918 (min) 0.000447554 (max)
14:02:57 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:57 DEBUG opendrift.models.basemodel:1538: 59.97348727483118 <- latitude -> 60.10525103659448
14:02:57 DEBUG opendrift.models.basemodel:1543: 4.278975204550192 <- longitude -> 4.514938949029485
14:02:57 DEBUG opendrift.models.basemodel:1548: -51.96958950708903 <- z -> 0.0
14:02:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:57 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:57 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:57 INFO opendrift.models.radionuclides:717: Number of transformations: 31
14:02:57 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:57 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:57 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1444. 0. 11. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:57 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:57 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:57 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07698097496040344
14:02:57 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:57 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:57 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:57 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:57 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:57 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:57 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:57 INFO opendrift.models.radionuclides:959: Speciation: [3689, 1300, 11, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:57 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0015594608270714657 and 0.4765517391148849 m/s
14:02:57 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:57 INFO opendrift.models.basemodel:2882: 2023-09-01 17:30:00 - step 36 of 48 - 5000 active elements (0 deactivated)
14:02:57 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:02:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 35x27x8) for time after (2023-09-01 18:00:00)
14:02:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:02:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:02:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.50) and
after (2023-09-01 18:00:00, weight 0.50) in time
14:02:59 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:02:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.72418409400157 and -65.4849812875713 degrees.
14:02:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.72418409400157 and -65.4849812875713 degrees.
14:02:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:59 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:59 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:59 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.219621 (min) -0.050118 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0424461 (min) 0.267959 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: x_wind: 2.00788 (min) 2.56101 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: y_wind: -9.1823 (min) -8.95562 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 293.339 (min) 299.353 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.95106 (min) 15.7744 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.834 (min) 34.0829 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000178925 (min) 0.000361265 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:59 DEBUG opendrift.models.basemodel:1538: 59.97443586595149 <- latitude -> 60.1106277348444
14:02:59 DEBUG opendrift.models.basemodel:1543: 4.27582684967682 <- longitude -> 4.5150296115058675
14:02:59 DEBUG opendrift.models.basemodel:1548: -52.16749409954062 <- z -> 0.0
14:02:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:59 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:59 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:59 INFO opendrift.models.radionuclides:717: Number of transformations: 22
14:02:59 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:59 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:59 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1465. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:59 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:59 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:59 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08210224241312027
14:02:59 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:59 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:59 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:59 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:59 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:59 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:59 INFO opendrift.models.radionuclides:959: Speciation: [3710, 1278, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:59 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004263597310931662 and 0.40892463162560067 m/s
14:02:59 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:59 INFO opendrift.models.basemodel:2882: 2023-09-01 18:00:00 - step 37 of 48 - 5000 active elements (0 deactivated)
14:02:59 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:02:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:02:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:02:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:02:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.73051451865024 and -65.47854203053026 degrees.
14:02:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.73051451865024 and -65.47854203053026 degrees.
14:02:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:02:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:02:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:02:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:02:59 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:02:59 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:02:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:02:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:02:59 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:02:59 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:02:59 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:02:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:02:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.207446 (min) -0.0454217 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0530109 (min) 0.308049 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: x_wind: 2.14317 (min) 2.74539 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: y_wind: -9.45374 (min) -9.15869 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 292.508 (min) 299.464 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.95359 (min) 15.7732 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8119 (min) 34.079 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000269546 (min) 0.000396215 (max)
14:02:59 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:02:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:02:59 DEBUG opendrift.models.basemodel:1538: 59.97781155609314 <- latitude -> 60.11488352295437
14:02:59 DEBUG opendrift.models.basemodel:1543: 4.2694964304970995 <- longitude -> 4.52146887999253
14:02:59 DEBUG opendrift.models.basemodel:1548: -51.883526677798095 <- z -> 0.0
14:02:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:02:59 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:02:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:02:59 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:02:59 INFO opendrift.models.radionuclides:717: Number of transformations: 26
14:02:59 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:02:59 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:02:59 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1491. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:02:59 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:02:59 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:02:59 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08755619887979507
14:02:59 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:02:59 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:02:59 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:02:59 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:02:59 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:02:59 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:02:59 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:02:59 INFO opendrift.models.radionuclides:959: Speciation: [3736, 1252, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:02:59 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016953584364121565 and 0.4285405645794588 m/s
14:02:59 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:02:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:02:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:02:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:02:59 INFO opendrift.models.basemodel:2882: 2023-09-01 18:30:00 - step 38 of 48 - 5000 active elements (0 deactivated)
14:02:59 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:02:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:02:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:02:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:02:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:02:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:02:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:03:00 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 37x27x8) for time after (2023-09-01 19:00:00)
14:03:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:03:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:03:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.50) and
after (2023-09-01 19:00:00, weight 0.50) in time
14:03:01 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.74078729758145 and -65.48191544138066 degrees.
14:03:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.74078729758145 and -65.48191544138066 degrees.
14:03:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:01 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:01 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:01 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:01 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:01 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.192433 (min) -0.041772 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0875157 (min) 0.325118 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: x_wind: 2.14777 (min) 2.78856 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: y_wind: -9.68842 (min) -9.31499 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 292.226 (min) 299.373 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.94182 (min) 15.7339 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.844 (min) 34.078 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000137309 (min) 0.000314942 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:01 DEBUG opendrift.models.basemodel:1538: 59.97917160475113 <- latitude -> 60.1223283657438
14:03:01 DEBUG opendrift.models.basemodel:1543: 4.259223649019659 <- longitude -> 4.518095465547582
14:03:01 DEBUG opendrift.models.basemodel:1548: -51.42481995053426 <- z -> 0.0
14:03:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:01 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:01 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:01 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:01 INFO opendrift.models.radionuclides:717: Number of transformations: 18
14:03:01 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:01 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:01 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1509. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:01 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:01 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:01 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09172870191867828
14:03:01 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:01 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:01 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:01 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:01 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:01 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:01 INFO opendrift.models.radionuclides:959: Speciation: [3754, 1234, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:01 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0003098719962166911 and 0.5036036025667947 m/s
14:03:01 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:01 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:01 INFO opendrift.models.basemodel:2882: 2023-09-01 19:00:00 - step 39 of 48 - 5000 active elements (0 deactivated)
14:03:01 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:03:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:03:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:03:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.74685015435085 and -65.48563392524963 degrees.
14:03:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.74685015435085 and -65.48563392524963 degrees.
14:03:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:01 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:01 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:01 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:01 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:01 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.1665 (min) -0.0281627 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0957083 (min) 0.365286 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: x_wind: 2.16858 (min) 2.84888 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: y_wind: -9.93631 (min) -9.47096 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 291.861 (min) 299.267 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.89667 (min) 15.7034 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8443 (min) 34.0821 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000250755 (min) 0.000406455 (max)
14:03:01 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:01 DEBUG opendrift.models.basemodel:1538: 59.981660034234615 <- latitude -> 60.12880781593355
14:03:01 DEBUG opendrift.models.basemodel:1543: 4.25316079357326 <- longitude -> 4.514376967345063
14:03:01 DEBUG opendrift.models.basemodel:1548: -51.09585855851142 <- z -> 0.0
14:03:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:01 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:01 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:01 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:01 INFO opendrift.models.radionuclides:717: Number of transformations: 25
14:03:01 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:01 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:01 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1534. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:01 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:01 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:01 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09631648580463409
14:03:01 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:01 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:01 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:01 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:01 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:01 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:01 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:01 INFO opendrift.models.radionuclides:959: Speciation: [3779, 1209, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:01 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0030828597736972585 and 0.4316476011541215 m/s
14:03:01 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:01 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:01 INFO opendrift.models.basemodel:2882: 2023-09-01 19:30:00 - step 40 of 48 - 5000 active elements (0 deactivated)
14:03:01 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 38x27x8) for time after (2023-09-01 20:00:00)
14:03:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:03:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:03:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.50) and
after (2023-09-01 20:00:00, weight 0.50) in time
14:03:02 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.75144253675448 and -65.4866228145194 degrees.
14:03:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.75144253675448 and -65.4866228145194 degrees.
14:03:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:02 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:02 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:02 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.155149 (min) -0.0185665 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0645631 (min) 0.348901 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: x_wind: 2.19768 (min) 2.79217 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: y_wind: -9.59707 (min) -9.33053 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 291.354 (min) 299.197 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.96879 (min) 15.6908 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.846 (min) 34.0698 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000299412 (min) 0.000280194 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:02 DEBUG opendrift.models.basemodel:1538: 59.984811778508 <- latitude -> 60.13346392822072
14:03:02 DEBUG opendrift.models.basemodel:1543: 4.248568414818623 <- longitude -> 4.513388089659756
14:03:02 DEBUG opendrift.models.basemodel:1548: -50.94908969842234 <- z -> 0.0
14:03:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:02 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:02 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:02 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:02 INFO opendrift.models.radionuclides:717: Number of transformations: 31
14:03:02 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:02 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:02 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 5. 0. 0. 0.]
[1565. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:02 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:02 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:02 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09001420633895874
14:03:02 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:02 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:02 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:02 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:02 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:02 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:02 INFO opendrift.models.radionuclides:959: Speciation: [3810, 1178, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:02 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016056300459980878 and 0.4474679170754324 m/s
14:03:02 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:02 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:02 INFO opendrift.models.basemodel:2882: 2023-09-01 20:00:00 - step 41 of 48 - 5000 active elements (0 deactivated)
14:03:02 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:03:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:03:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:03:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.7613662876505 and -65.48765263088227 degrees.
14:03:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.7613662876505 and -65.48765263088227 degrees.
14:03:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:02 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:02 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:02 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.155948 (min) -0.00262211 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0369818 (min) 0.332065 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: x_wind: 2.2257 (min) 2.74891 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: y_wind: -9.33833 (min) -9.17959 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 290.853 (min) 299.14 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.88931 (min) 15.7102 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8099 (min) 34.0786 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000454224 (min) 0.000413558 (max)
14:03:02 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:02 DEBUG opendrift.models.basemodel:1538: 59.986578743438464 <- latitude -> 60.139921065186016
14:03:02 DEBUG opendrift.models.basemodel:1543: 4.23864465641633 <- longitude -> 4.512358275254039
14:03:02 DEBUG opendrift.models.basemodel:1548: -50.677844020327264 <- z -> 0.0
14:03:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:02 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:02 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:02 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:02 INFO opendrift.models.radionuclides:717: Number of transformations: 28
14:03:02 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:02 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:02 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 6. 0. 0. 0.]
[1592. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:02 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:02 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:02 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08452066652687072
14:03:02 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:02 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:02 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:02 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:02 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:02 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:02 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:02 INFO opendrift.models.radionuclides:959: Speciation: [3836, 1152, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:02 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012251427002877774 and 0.4761091589491939 m/s
14:03:02 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:02 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:02 INFO opendrift.models.basemodel:2882: 2023-09-01 20:30:00 - step 42 of 48 - 5000 active elements (0 deactivated)
14:03:02 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 39x28x8) for time after (2023-09-01 21:00:00)
14:03:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:03:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:03:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.50) and
after (2023-09-01 21:00:00, weight 0.50) in time
14:03:04 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77315481353607 and -65.48906206633865 degrees.
14:03:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77315481353607 and -65.48906206633865 degrees.
14:03:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:04 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:04 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:04 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.158629 (min) 0.0178413 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: 0.0108729 (min) 0.302105 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: x_wind: 2.16998 (min) 2.55947 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: y_wind: -9.2971 (min) -9.01346 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 290.233 (min) 299.059 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.87595 (min) 15.6925 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8291 (min) 34.0784 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00032458 (min) 0.000229635 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:04 DEBUG opendrift.models.basemodel:1538: 59.98718419944652 <- latitude -> 60.14312730782051
14:03:04 DEBUG opendrift.models.basemodel:1543: 4.226856139355939 <- longitude -> 4.510948825153214
14:03:04 DEBUG opendrift.models.basemodel:1548: -51.01474879614742 <- z -> 0.0
14:03:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:04 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:04 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:04 INFO opendrift.models.radionuclides:717: Number of transformations: 23
14:03:04 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:04 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:04 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 6. 0. 0. 0.]
[1615. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:04 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:04 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:04 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08388824225194931
14:03:04 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:04 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:04 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:04 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:04 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:04 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:04 INFO opendrift.models.radionuclides:959: Speciation: [3859, 1129, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:04 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0014203917494996106 and 0.43042682006729843 m/s
14:03:04 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:04 INFO opendrift.models.basemodel:2882: 2023-09-01 21:00:00 - step 43 of 48 - 5000 active elements (0 deactivated)
14:03:04 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:03:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:03:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:03:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77666415178568 and -65.48749723221614 degrees.
14:03:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77666415178568 and -65.48749723221614 degrees.
14:03:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:04 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:04 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:04 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.162128 (min) 0.0409509 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0205956 (min) 0.254279 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: x_wind: 2.04026 (min) 2.3925 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: y_wind: -9.39979 (min) -8.85096 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 290.144 (min) 299.086 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.91833 (min) 15.6874 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8089 (min) 34.0747 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000305686 (min) 0.000163443 (max)
14:03:04 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:04 DEBUG opendrift.models.basemodel:1538: 59.98798475770778 <- latitude -> 60.14464662488567
14:03:04 DEBUG opendrift.models.basemodel:1543: 4.223346785444079 <- longitude -> 4.512513655244044
14:03:04 DEBUG opendrift.models.basemodel:1548: -51.32777902673023 <- z -> 0.0
14:03:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:04 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:04 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:04 INFO opendrift.models.radionuclides:717: Number of transformations: 19
14:03:04 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:04 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:04 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 6. 0. 0. 0.]
[1634. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:04 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:04 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:04 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0845130040951538
14:03:04 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:04 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:04 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:04 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:04 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:04 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:04 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:04 INFO opendrift.models.radionuclides:959: Speciation: [3878, 1110, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:04 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0006934609261654717 and 0.43329654630948733 m/s
14:03:04 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:04 INFO opendrift.models.basemodel:2882: 2023-09-01 21:30:00 - step 44 of 48 - 5000 active elements (0 deactivated)
14:03:04 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 39x28x8) for time after (2023-09-01 22:00:00)
14:03:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:03:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:03:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.50) and
after (2023-09-01 22:00:00, weight 0.50) in time
14:03:05 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77641157916185 and -65.49069162939485 degrees.
14:03:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.77641157916185 and -65.49069162939485 degrees.
14:03:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:05 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:05 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:05 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.173287 (min) 0.041098 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.0880432 (min) 0.220642 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: x_wind: 1.99858 (min) 2.39481 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: y_wind: -9.30163 (min) -8.77411 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 289.581 (min) 298.961 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.92342 (min) 15.6375 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8503 (min) 34.0653 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000369208 (min) 0.00022919 (max)
14:03:05 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:05 DEBUG opendrift.models.basemodel:1538: 59.99360038263707 <- latitude -> 60.14716590336106
14:03:05 DEBUG opendrift.models.basemodel:1543: 4.2235993694496585 <- longitude -> 4.509319263838865
14:03:05 DEBUG opendrift.models.basemodel:1548: -51.797012718252454 <- z -> 0.0
14:03:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:05 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:05 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:05 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:05 INFO opendrift.models.radionuclides:717: Number of transformations: 18
14:03:05 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:05 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:05 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 6. 0. 0. 0.]
[1652. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:05 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:05 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:05 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:05 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:05 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08319728158910751
14:03:05 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:05 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:05 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:05 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:05 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:05 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:05 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:05 INFO opendrift.models.radionuclides:959: Speciation: [3896, 1092, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:05 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012163288587402577 and 0.4460744734941627 m/s
14:03:05 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:05 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:05 INFO opendrift.models.basemodel:2882: 2023-09-01 22:00:00 - step 45 of 48 - 5000 active elements (0 deactivated)
14:03:05 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:03:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:03:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:03:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.78001557043231 and -65.49238022623994 degrees.
14:03:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.78001557043231 and -65.49238022623994 degrees.
14:03:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:06 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:06 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:06 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.188356 (min) 0.0450941 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.145007 (min) 0.16368 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: x_wind: 1.9529 (min) 2.47201 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: y_wind: -9.19751 (min) -8.69014 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 289.629 (min) 298.896 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.96735 (min) 15.6505 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.829 (min) 34.0656 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000612813 (min) 0.000355451 (max)
14:03:06 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:06 DEBUG opendrift.models.basemodel:1538: 59.99488443742534 <- latitude -> 60.150272412910425
14:03:06 DEBUG opendrift.models.basemodel:1543: 4.21999537063604 <- longitude -> 4.507630660641211
14:03:06 DEBUG opendrift.models.basemodel:1548: -52.24345300137435 <- z -> 0.0
14:03:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:06 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:06 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:06 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:06 INFO opendrift.models.radionuclides:717: Number of transformations: 28
14:03:06 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:06 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:06 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 6. 0. 0. 0.]
[1680. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:06 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:06 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:06 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:06 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:06 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08158046435840606
14:03:06 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:06 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:06 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:06 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:06 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:06 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:06 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:06 INFO opendrift.models.radionuclides:959: Speciation: [3924, 1064, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:06 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0050595961804496235 and 0.4461235382827945 m/s
14:03:06 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:06 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:06 INFO opendrift.models.basemodel:2882: 2023-09-01 22:30:00 - step 46 of 48 - 5000 active elements (0 deactivated)
14:03:06 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:06 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 40x28x8) for time after (2023-09-01 23:00:00)
14:03:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:03:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:03:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.50) and
after (2023-09-01 23:00:00, weight 0.50) in time
14:03:07 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.79001202290178 and -65.49221869456282 degrees.
14:03:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.79001202290178 and -65.49221869456282 degrees.
14:03:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:07 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:07 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:07 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.207889 (min) 0.0410646 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.161967 (min) 0.117426 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: x_wind: 2.26232 (min) 2.66683 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: y_wind: -9.00954 (min) -8.55138 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 289.495 (min) 298.895 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.96755 (min) 15.6588 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8133 (min) 34.0663 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000381632 (min) 0.000255206 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:07 DEBUG opendrift.models.basemodel:1538: 59.99420380817965 <- latitude -> 60.153000965144756
14:03:07 DEBUG opendrift.models.basemodel:1543: 4.209998932364898 <- longitude -> 4.507792199057095
14:03:07 DEBUG opendrift.models.basemodel:1548: -52.58011419457976 <- z -> 0.0
14:03:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:07 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:07 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:07 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:07 INFO opendrift.models.radionuclides:717: Number of transformations: 24
14:03:07 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:07 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:07 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 7. 0. 0. 0.]
[1703. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:07 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:07 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:07 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07972714458377837
14:03:07 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:07 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:07 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:07 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:07 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:07 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:07 INFO opendrift.models.radionuclides:959: Speciation: [3946, 1042, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:07 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0023428220088304546 and 0.42464579541960423 m/s
14:03:07 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:07 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:07 INFO opendrift.models.basemodel:2882: 2023-09-01 23:00:00 - step 47 of 48 - 5000 active elements (0 deactivated)
14:03:07 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:03:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:03:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:03:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.8005474633337 and -65.4949351134866 degrees.
14:03:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.8005474633337 and -65.4949351134866 degrees.
14:03:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:07 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:07 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:07 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.214589 (min) 0.0576748 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.208735 (min) 0.0788213 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: x_wind: 2.55795 (min) 2.95352 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: y_wind: -8.81767 (min) -8.4094 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 288.822 (min) 298.869 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.95138 (min) 15.623 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8369 (min) 34.0755 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000249996 (min) 0.000260881 (max)
14:03:07 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:07 DEBUG opendrift.models.basemodel:1538: 59.99053377039739 <- latitude -> 60.15550787422823
14:03:07 DEBUG opendrift.models.basemodel:1543: 4.199463469798536 <- longitude -> 4.505075779724614
14:03:07 DEBUG opendrift.models.basemodel:1548: -52.77112507452835 <- z -> 0.0
14:03:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:07 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:07 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:07 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:07 INFO opendrift.models.radionuclides:717: Number of transformations: 20
14:03:07 DEBUG opendrift.models.radionuclides:734: old species: [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:07 DEBUG opendrift.models.radionuclides:735: new species: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:07 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 7. 0. 0. 0.]
[1723. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:07 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:07 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:07 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07812817693479537
14:03:07 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:07 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:07 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:07 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:07 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:07 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:07 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:07 INFO opendrift.models.radionuclides:959: Speciation: [3966, 1022, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:07 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002221067599117332 and 0.43128158716715886 m/s
14:03:07 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 0, already seeded 5000
14:03:07 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:03:07 INFO opendrift.models.basemodel:2882: 2023-09-01 23:30:00 - step 48 of 48 - 5000 active elements (0 deactivated)
14:03:07 DEBUG opendrift.models.basemodel:2888: 0 elements scheduled.
14:03:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:03:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_water_salinity', 'sea_water_temperature', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:03:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:03:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:03:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 42x28x8) for time after (2023-09-02 00:00:00)
14:03:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:03:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:03:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:03:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.50) and
after (2023-09-02 00:00:00, weight 0.50) in time
14:03:09 DEBUG opendrift.readers.basereader.structured:330: Interpolating profiles in time
14:03:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.80166127584259 and -65.49397448681461 degrees.
14:03:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -65.80166127584259 and -65.49397448681461 degrees.
14:03:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:09 DEBUG opendrift.models.basemodel:1421: Using fallback value 0.0001 for ocean_vertical_diffusivity for all profiles
14:03:09 DEBUG opendrift.models.basemodel:1432: Using fallback value 10 for sea_water_temperature for 0 profiles
14:03:09 DEBUG opendrift.models.basemodel:1432: Using fallback value 34 for sea_water_salinity for 0 profiles
14:03:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.200054 (min) 0.0415039 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.210091 (min) 0.0509655 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: x_wind: 2.90062 (min) 3.50372 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: y_wind: -8.64477 (min) -8.25583 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 288.902 (min) 298.876 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.0001 (min) 0.0001 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: sea_water_temperature: 9.97225 (min) 15.6444 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: sea_water_salinity: 32.8085 (min) 34.074 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000170101 (min) 0.000238457 (max)
14:03:09 DEBUG opendrift.models.basemodel:1524: conc3: 0.001 (min) 0.001 (max)
14:03:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:09 DEBUG opendrift.models.basemodel:1538: 59.98961892705559 <- latitude -> 60.15643898084073
14:03:09 DEBUG opendrift.models.basemodel:1543: 4.198349666872228 <- longitude -> 4.506036413341482
14:03:09 DEBUG opendrift.models.basemodel:1548: -52.48142844014121 <- z -> 0.0
14:03:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:09 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:03:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:03:09 DEBUG opendrift.models.basemodel:2930: Calling RadionuclideDrift.update()
14:03:09 INFO opendrift.models.radionuclides:717: Number of transformations: 35
14:03:09 DEBUG opendrift.models.radionuclides:734: old species: [0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
14:03:09 DEBUG opendrift.models.radionuclides:735: new species: [1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
14:03:09 DEBUG opendrift.models.radionuclides:742: Number of transformations total:
[[ 0. 8. 0. 0. 0.]
[1757. 0. 12. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]
[ 0. 0. 0. 0. 0.]]
14:03:09 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:09 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:09 DEBUG opendrift.models.radionuclides:786: Adding uncertainty for desorption from sediments: 0.5 m
14:03:09 DEBUG opendrift.models.oceandrift:480: Using diffusivity from Large1994 since model diffusivities not available
14:03:09 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07808505368717193
14:03:09 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:03:09 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:environment
14:03:09 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 3 fast time steps of dt=600.0s
14:03:09 INFO opendrift.models.radionuclides:907: Number of resuspended particles: 0
14:03:09 DEBUG opendrift.models.radionuclides:912: Adding uncertainty for resuspension from sediments: 0.1 m
14:03:09 DEBUG opendrift.models.radionuclides:818: Adding uncertainty for particle diameter: 1e-07 m
14:03:09 DEBUG opendrift.models.radionuclides:826: Adding uncertainty for slowly rev particle diameter: 1e-07 m
14:03:09 INFO opendrift.models.radionuclides:959: Speciation: [3999, 989, 12, 0, 0] ['LMM', 'Particle reversible', 'Particle slowly reversible', 'Sediment reversible', 'Sediment slowly reversible']
14:03:09 DEBUG opendrift.models.basemodel:2428: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002541914912813416 and 0.4927031338165724 m/s
14:03:09 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:03:09 DEBUG opendrift.models.basemodel:2974: Cleaning up
14:03:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:03:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:03:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:03:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:03:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:03:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:03:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:03:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:03:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:03:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:03:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:03:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:03:09 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:03:09 DEBUG opendrift.models.basemodel:1538: 59.98676694698122 <- latitude -> 60.15824631940144
14:03:09 DEBUG opendrift.models.basemodel:1543: 4.1914627538838785 <- longitude -> 4.503107579346602
14:03:09 DEBUG opendrift.models.basemodel:1548: -52.31047802692166 <- z -> 0.0
14:03:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:03:09 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:03:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
Print and plot results
print(o)
print('Final speciation:')
for isp,sp in enumerate(o.name_species):
print ('{:32}: {:>6}'.format(sp,sum(o.elements.specie==isp)))
print('Number of transformations:')
for isp in range(o.nspecies):
print('{}'.format(['{:>9}'.format(np.int32(item)) for item in o.ntransformations[isp,:]]) )
o.animation(color='specie',
vmin=0,vmax=o.nspecies-1,
colorbar=False,
legend=[o.specie_num2name(i) for i in range(o.nspecies)],
fast = True
)
===========================
--------------------
Reader performance:
--------------------
https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
0:00:39.2 total
0:00:00.0 preparing
0:00:37.6 reading
0:00:01.3 interpolation
0:00:00.0 interpolation_time
0:00:00.0 masking
0:00:01.5 rotating vectors
--------------------
global_landmask
0:00:00.0 total
0:00:00.0 preparing
0:00:00.0 reading
0:00:00.0 masking
--------------------
Performance:
50.5 total time
1.6 configuration
6.3 preparing main loop
6.2 making dynamical landmask
0.0 moving elements to ocean
40.0 readers
0.0 global_landmask
0.3 postprocessing
42.5 main loop
39.5 https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
1.6 updating elements
0.7 vertical mixing
0.0 cleaning up
--------------------
===========================
Model: RadionuclideDrift (OpenDrift version 1.10.7)
5000 active Radionuclide particles (0 deactivated, 0 scheduled)
-------------------
Environment variables:
-----
sea_floor_depth_below_sea_level
sea_water_salinity
sea_water_temperature
upward_sea_water_velocity
x_sea_water_velocity
x_wind
y_sea_water_velocity
y_wind
1) https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
-----
land_binary_mask
1) global_landmask
-----
Readers not added for the following variables:
conc3
ocean_mixed_layer_thickness
ocean_vertical_diffusivity
Time:
Start: 2023-09-01 00:00:00 UTC
Present: 2023-09-02 00:00:00 UTC
Calculation steps: 48 * 0:30:00 - total time: 1 day, 0:00:00
Output steps: 25 * 1:00:00
===========================
Final speciation:
LMM : 3999
Particle reversible : 989
Particle slowly reversible : 12
Sediment reversible : 0
Sediment slowly reversible : 0
Number of transformations:
[' 0', ' 8', ' 0', ' 0', ' 0']
[' 1757', ' 0', ' 12', ' 0', ' 0']
[' 0', ' 0', ' 0', ' 0', ' 0']
[' 0', ' 0', ' 0', ' 0', ' 0']
[' 0', ' 0', ' 0', ' 0', ' 0']
14:03:09 DEBUG opendrift.models.basemodel:3180: Setting up map: corners=None, fast=True, lscale=None
14:03:09 WARNING opendrift.models.basemodel:3226: Plotting fast. This will make your plots less accurate.
14:03:11 DEBUG opendrift.models.basemodel:3855: Saving animation..
14:03:11 INFO opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_radionuclides_0.gif...
14:03:18 DEBUG opendrift.models.basemodel:5388: MPLBACKEND = agg
14:03:18 DEBUG opendrift.models.basemodel:5389: DISPLAY = None
14:03:18 DEBUG opendrift.models.basemodel:5390: Time to save animation: 0:00:07.316236
14:03:18 INFO opendrift.models.basemodel:3848: Time to make animation: 0:00:08.787833

o.plot_vertical_distribution()
#o.plot_property('specie')
o.animation_profile(color='specie',
vmin=0,vmax=o.nspecies-1,
legend=[o.specie_num2name(i) for i in range(o.nspecies)],
legend_loc =3,
# markersize=10
)

14:03:19 DEBUG opendrift.models.basemodel:3855: Saving animation..
14:03:19 INFO opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_radionuclides_1.gif...
14:03:21 DEBUG opendrift.models.basemodel:5388: MPLBACKEND = agg
14:03:21 DEBUG opendrift.models.basemodel:5389: DISPLAY = None
14:03:21 DEBUG opendrift.models.basemodel:5390: Time to save animation: 0:00:01.959999
14:03:21 INFO opendrift.models.basemodel:4038: Time to make animation: 0:00:02.303342

o.plot(linecolor='specie',vmin=0,vmax=o.nspecies-1,fast=True,)
# Postprocessing: write to concentration netcdf file
o.conc_lat = reader_norkyst.get_variables('latitude',
x=[reader_norkyst.xmin,reader_norkyst.xmax],
y=[reader_norkyst.ymin,reader_norkyst.ymax])['latitude'][:]
o.conc_lon = reader_norkyst.get_variables('longitude',
x=[reader_norkyst.xmin,reader_norkyst.xmax],
y=[reader_norkyst.ymin,reader_norkyst.ymax])['longitude'][:]
o.conc_topo = reader_norkyst.get_variables('sea_floor_depth_below_sea_level',
x=[reader_norkyst.xmin,reader_norkyst.xmax],
y=[reader_norkyst.ymin,reader_norkyst.ymax])['sea_floor_depth_below_sea_level'][:]
#o.conc_mask = reader_norkyst.land_binary_mask

14:03:21 DEBUG opendrift.models.basemodel:3180: Setting up map: corners=None, fast=True, lscale=None
14:03:21 WARNING opendrift.models.basemodel:3226: Plotting fast. This will make your plots less accurate.
0.1 ALPHA
o.write_netcdf_radionuclide_density_map('radio_conc.nc', pixelsize_m=500.,
zlevels=[-2.],
activity_unit='Bq',
horizontal_smoothing=True,
smoothing_cells=1,
time_avg_conc=True,
deltat=2., # hours
llcrnrlon=4.4, llcrnrlat=59.9,
urcrnrlon=4.8, urcrnrlat=60.2,
)
14:04:40 INFO opendrift.models.radionuclides:997: Postprocessing: Write density and concentration to netcdf file
14:04:40 INFO opendrift.models.radionuclides:1034: z_array: ['-10000.0', '-2.0', '0.0']
14:04:41 INFO opendrift.models.radionuclides:1056: H.shape: (25, 5, 2, 48, 57)
14:04:41 INFO opendrift.models.radionuclides:1066: Activity: 20000000.0 Bq per unit
14:05:29 INFO opendrift.models.radionuclides:1112: ndt 2
14:05:29 INFO opendrift.models.radionuclides:1113: odt 12
14:05:29 INFO opendrift.models.radionuclides:1268: Wrote to radio_conc.nc
Total running time of the script: (3 minutes 10.576 seconds)