Skip to content

Commit

Permalink
[skip ci] Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ci-build committed Oct 1, 2024
1 parent eef8297 commit b6a64be
Show file tree
Hide file tree
Showing 362 changed files with 473,068 additions and 463,485 deletions.
Binary file modified _downloads/029881e221949484b26146d507a804ad/example_depth.zip
Binary file not shown.
Binary file modified _downloads/033af0d93f9b09e836d807ac3b9561f7/example_relative.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/1e965db755ac760751848acdb71bc467/example_oil_ice.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/2f279a49c6164050f7f6f735325d2c2c/example_plast.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/36debc3f4a32a890e68397fb8f9a3de4/example_grid.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/455f4a0d6f55d57bec7b1548941dfe56/example_plot.zip
Binary file not shown.
Binary file modified _downloads/46b4cb42d5bb56cc39e2b5b2b520b38d/gallery_python.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/540eb5641f8ad1d8bbba63da7a6f1b55/example_openberg.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/55c56f11981bc8994b23dd67ccffd4ea/example_larvae.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/57d7c3a68ca90906235269c0c377050a/example_compare.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/80232020e698aa1c3db016afe427fe84/example_openoil.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/838aeedbd6bf9f4ea6ea3789d94e546a/example_fjord.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/9279195b7d521d2dd58211cf2d1ee7e2/example_codegg.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/a5e54d5079281985180311aeb584726e/example_map.zip
Binary file not shown.
Binary file modified _downloads/a724e3e7d25baaaa1d358c1bd5c2dd60/example_fvcom.zip
Binary file not shown.
Binary file modified _downloads/a799cfc3e2163a9601d1a00e61d10a39/example_trajan.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"If surface Stokes drift is not awailable from a wave model, there are two alternatives:\n - one can increase the wind_drift_factor by e.g. 1.5%, as the Stokes Drift is typically 1.5% of the wind speed\n - or the surface Stokes drift can be parameterized from wind speed and fetch distance\n\n"
"If surface Stokes drift is not available from a wave model, there are two alternatives:\n - one can increase the wind_drift_factor by e.g. 1.5%, as the Stokes Drift is typically 1.5% of the wind speed\n - or the surface Stokes drift can be parameterized from wind speed and fetch distance\n\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The latter option is activated in OpenDrift with the config setting\n`o.set_config('drift:use_tabularised_stokes_drift', True)`\nThis activates a paramterisation of Stokes drift with the following method, as implemented by Petter Nygren from SMHI:\nhttps://opendrift.github.io/_modules/opendrift/models/physics_methods.html#wave_stokes_drift_parameterised\nThe code and corresponding plot below shows how the Stokes drift factor (fraction of wind speed) varies with wind speed and fetch (3 different tabulated fetch distances).\n\n"
"The latter option is activated in OpenDrift with the config setting\n`o.set_config('drift:use_tabularised_stokes_drift', True)`\n\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This activates a paramterisation of Stokes drift with the following method, as implemented by Petter Nygren from SMHI:\nhttps://opendrift.github.io/_modules/opendrift/models/physics_methods.html#wave_stokes_drift_parameterised\nThe code and corresponding plot below shows how the Stokes drift factor (fraction of wind speed) varies with wind speed and fetch (3 different tabulated fetch distances).\n\n"
]
},
{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/b5b04944cba9e81b9a5872791330760c/example_ensemble.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/bb890d8fc18f9a21787029b6675af744/example_cone.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/c0a3a846dd7c6d6aa449fdf8fd813796/example_macondo.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/c121897cbb882ba2326dd7f0f3f9a5c6/example_drifter.zip
Binary file not shown.
Binary file modified _downloads/c53354a1383dae63edfb5fe0bcbb4be6/example_windblow.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
"""

#%%
#
# If surface Stokes drift is not awailable from a wave model, there are two alternatives:
# If surface Stokes drift is not available from a wave model, there are two alternatives:
# - one can increase the wind_drift_factor by e.g. 1.5%, as the Stokes Drift is typically 1.5% of the wind speed
# - or the surface Stokes drift can be parameterized from wind speed and fetch distance

#%%
# The latter option is activated in OpenDrift with the config setting
# `o.set_config('drift:use_tabularised_stokes_drift', True)`

#%%
# This activates a paramterisation of Stokes drift with the following method, as implemented by Petter Nygren from SMHI:
# https://opendrift.github.io/_modules/opendrift/models/physics_methods.html#wave_stokes_drift_parameterised
# The code and corresponding plot below shows how the Stokes drift factor (fraction of wind speed) varies with wind speed and fetch (3 different tabulated fetch distances).
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/ed4c48daa486e7b41db355dc85b3fe89/example_generic.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/f301a4c979f22b9b7478e10e32a3e4dc/example_leeway.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/f93abdd76951294346e6f02f09086575/example_2d.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/fcaddee3a42ae2e2c41e00ae08d70347/gallery_jupyter.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _images/example_2d_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_biodegradation_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_chemicaldrift_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_chemicaldrift_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_coastline_options_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_coastline_options_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_coastline_options_2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_coastline_options_3.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_codegg_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_codegg_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_cone_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_depth_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_dominating_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_ensemble_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_entrainment_rate_oil_types_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_entrainment_rate_oil_types_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_huge_output_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_huge_output_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_manual_aggregate_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_mixed_layer_depth_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_mixed_layer_depth_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_mixed_layer_depth_2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_oil_ice_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_oil_thickness_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_oil_thickness_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/example_oil_verticalmixing_0.gif
Binary file modified _images/example_oil_verticalmixing_1.gif
Binary file modified _images/example_oilspill_seafloor_0.gif
Binary file modified _images/example_oilspill_seafloor_1.gif
Binary file modified _images/example_oilspill_seafloor_biodegradation_0.gif
Binary file modified _images/example_oilspill_seafloor_biodegradation_1.gif
Binary file modified _images/example_plot_0.gif
Binary file modified _images/example_river_runoff_0.gif
Binary file modified _images/example_seafloor_interaction_0.gif
Binary file modified _images/example_sediments_0.gif
Binary file modified _images/example_sediments_resuspension_0.gif
Binary file modified _images/example_seed_from_shapefile_0.gif
Binary file modified _images/example_shipdrift_0.gif
Binary file modified _images/example_shipdrift_leeway_0.gif
Binary file modified _images/example_static_2d_current_0.gif
Binary file modified _images/sphx_glr_example_2d_001.png
Binary file modified _images/sphx_glr_example_2d_thumb.png
Binary file modified _images/sphx_glr_example_advection_schemes_eddy_001.png
Binary file modified _images/sphx_glr_example_advection_schemes_eddy_thumb.png
Binary file modified _images/sphx_glr_example_biodegradation_001.png
Binary file modified _images/sphx_glr_example_biodegradation_thumb.png
Binary file modified _images/sphx_glr_example_chemicaldrift_001.png
Binary file modified _images/sphx_glr_example_chemicaldrift_thumb.png
Binary file modified _images/sphx_glr_example_codegg_001.png
Binary file modified _images/sphx_glr_example_codegg_thumb.png
Binary file modified _images/sphx_glr_example_cone_001.png
Binary file modified _images/sphx_glr_example_cone_thumb.png
Binary file modified _images/sphx_glr_example_depth_001.png
Binary file modified _images/sphx_glr_example_depth_thumb.png
Binary file modified _images/sphx_glr_example_ensemble_001.png
Binary file modified _images/sphx_glr_example_ensemble_thumb.png
Binary file modified _images/sphx_glr_example_entrainment_rate_oil_types_001.png
Binary file modified _images/sphx_glr_example_entrainment_rate_oil_types_002.png
Binary file modified _images/sphx_glr_example_entrainment_rate_oil_types_thumb.png
Binary file modified _images/sphx_glr_example_huge_output_001.png
Binary file modified _images/sphx_glr_example_huge_output_thumb.png
Binary file modified _images/sphx_glr_example_oil_ice_001.png
Binary file modified _images/sphx_glr_example_oil_ice_thumb.png
Binary file modified _images/sphx_glr_example_oil_thickness_001.png
Binary file modified _images/sphx_glr_example_oil_thickness_002.png
Binary file modified _images/sphx_glr_example_oil_thickness_thumb.png
Binary file modified _images/sphx_glr_example_oil_verticalmixing_001.png
Binary file modified _images/sphx_glr_example_oil_verticalmixing_002.png
Binary file modified _images/sphx_glr_example_oil_verticalmixing_003.png
Binary file modified _images/sphx_glr_example_oil_verticalmixing_thumb.png
Binary file modified _images/sphx_glr_example_oilspill_seafloor_001.png
Binary file modified _images/sphx_glr_example_oilspill_seafloor_biodegradation_001.png
Binary file modified _images/sphx_glr_example_oilspill_seafloor_biodegradation_002.png
Binary file modified _images/sphx_glr_example_oilspill_seafloor_thumb.png
Binary file modified _images/sphx_glr_example_openberg_001.png
Binary file modified _images/sphx_glr_example_openberg_002.png
Binary file modified _images/sphx_glr_example_openberg_thumb.png
Binary file modified _images/sphx_glr_example_river_runoff_001.png
Binary file modified _images/sphx_glr_example_river_runoff_002.png
Binary file modified _images/sphx_glr_example_river_runoff_thumb.png
Binary file modified _images/sphx_glr_example_seafloor_interaction_001.png
Binary file modified _images/sphx_glr_example_seafloor_interaction_thumb.png
Binary file modified _images/sphx_glr_example_sediments_001.png
Binary file modified _images/sphx_glr_example_sediments_resuspension_001.png
Binary file modified _images/sphx_glr_example_sediments_resuspension_thumb.png
Binary file modified _images/sphx_glr_example_sediments_thumb.png
Binary file modified _images/sphx_glr_example_seed_from_shapefile_001.png
Binary file modified _images/sphx_glr_example_seed_from_shapefile_thumb.png
Binary file modified _images/sphx_glr_example_shipdrift_001.png
Binary file modified _images/sphx_glr_example_shipdrift_leeway_001.png
Binary file modified _images/sphx_glr_example_shipdrift_leeway_thumb.png
Binary file modified _images/sphx_glr_example_shipdrift_thumb.png
Binary file modified _images/sphx_glr_example_thredds_resources_007.png
140 changes: 70 additions & 70 deletions _sources/gallery/example_2d.rst.txt

Large diffs are not rendered by default.

8,592 changes: 4,296 additions & 4,296 deletions _sources/gallery/example_LCS_norkyst.rst.txt

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions _sources/gallery/example_advection_schemes_eddy.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ schemes, using an idealised (analytical) eddy current field.
.. image-sg:: /gallery/images/sphx_glr_example_advection_schemes_eddy_001.png
:alt: OpenDrift - OceanDrift 2024-09-17 08:19 to 2024-09-26 08:19 UTC (433 steps)
:alt: OpenDrift - OceanDrift 2024-10-01 09:34 to 2024-10-10 09:34 UTC (433 steps)
:srcset: /gallery/images/sphx_glr_example_advection_schemes_eddy_001.png
:class: sphx-glr-single-img

Expand All @@ -45,7 +45,7 @@ schemes, using an idealised (analytical) eddy current field.
runge-kutta4, T=0.5h
runge-kutta4, T=3.0h
(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2024-09-17 08:19 to 2024-09-26 08:19 UTC (433 steps)'}>, <Figure size 1041.68x1100 with 1 Axes>)
(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2024-10-01 09:34 to 2024-10-10 09:34 UTC (433 steps)'}>, <Figure size 1041.68x1100 with 1 Axes>)
Expand Down Expand Up @@ -82,7 +82,7 @@ schemes, using an idealised (analytical) eddy current field.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 59.487 seconds)
**Total running time of the script:** (1 minutes 0.245 seconds)


.. _sphx_glr_download_gallery_example_advection_schemes_eddy.py:
Expand Down
1,168 changes: 584 additions & 584 deletions _sources/gallery/example_backandforth.rst.txt

Large diffs are not rendered by default.

13,612 changes: 6,806 additions & 6,806 deletions _sources/gallery/example_biodegradation.rst.txt

Large diffs are not rendered by default.

346 changes: 173 additions & 173 deletions _sources/gallery/example_checkerboard.rst.txt

Large diffs are not rendered by default.

35,816 changes: 20,124 additions & 15,692 deletions _sources/gallery/example_chemicaldrift.rst.txt

Large diffs are not rendered by default.

175 changes: 87 additions & 88 deletions _sources/gallery/example_coastline.rst.txt

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions _sources/gallery/example_coastline_options.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Note that particles may "jump" a distance onto land, depending on the calculatio

.. code-block:: none
Calculation time: 0:00:06.777247
Calculation time: 0:00:07.466612
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
result = super().scatter(*args, **kwargs)
Expand Down Expand Up @@ -121,7 +121,7 @@ An alternative to avoid this possibility is to use a smaller timestep for the si

.. code-block:: none
Calculation time: 0:00:01.142340
Calculation time: 0:00:01.722721
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
result = super().scatter(*args, **kwargs)
Expand Down Expand Up @@ -163,7 +163,7 @@ Reducing timestep to e.g. 15 minutes will reduce this problem.

.. code-block:: none
Calculation time: 0:00:01.207054
Calculation time: 0:00:01.364369
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
result = super().scatter(*args, **kwargs)
Expand Down Expand Up @@ -202,7 +202,7 @@ No interaction with land, as used by e.g. WindBlow model (atmospheric drift)

.. code-block:: none
Calculation time: 0:00:01.578891
Calculation time: 0:00:01.544892
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
result = super().scatter(*args, **kwargs)
Expand All @@ -216,7 +216,7 @@ No interaction with land, as used by e.g. WindBlow model (atmospheric drift)

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (14 minutes 32.421 seconds)
**Total running time of the script:** (15 minutes 5.183 seconds)


.. _sphx_glr_download_gallery_example_coastline_options.py:
Expand Down
Loading

0 comments on commit b6a64be

Please sign in to comment.