Skip to content

Commit

Permalink
v5.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rjleveque committed Mar 30, 2024
1 parent 37247d4 commit 745b2c4
Show file tree
Hide file tree
Showing 1,072 changed files with 746 additions and 746 deletions.
10 changes: 5 additions & 5 deletions _sources/about.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,18 @@ Citing this work
If you use Clawpack in publications, please cite the software itself as
well, with a citation similar to the following::

Clawpack Development Team (2020), Clawpack Version 5.7.1,
http://www.clawpack.org, doi: 10.5281/zenodo.4025432
Clawpack Development Team (2024), Clawpack Version 5.10.0,
http://www.clawpack.org, doi: 10.5281/zenodo.10896214

Here's the bibtex::

@misc{clawpack,
title={Clawpack software},
author={{Clawpack Development Team}},
url={http://www.clawpack.org},
note={Version 5.7.1},
doi={https://doi.org/10.5281/zenodo.4025432},
year={2020}}
note={Version 5.10.0},
doi={https://doi.org/10.5281/zenodo.10896214},
year={2024}}

Please fill in the version number that you used, and its year, with the
appropriate DOI from `Zenodo <https://zenodo.org>`_, if available.
Expand Down
22 changes: 11 additions & 11 deletions _sources/changes_to_master.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
.. _changes_to_master:

===============================
Changes to master since v5.9.2
Changes to master since v5.10.0
===============================


Follow the links to see changes that have been made to the master branch of
each repository since the last release (v5.9.2) on November 4, 2023.
each repository since the last release (v5.10.0) on March 29, 2024.

These changes should appear in the next release. If you need them now,
see :ref:`developers` for instructions on cloning and installing from the
Expand All @@ -31,48 +31,48 @@ Changes to classic


See `classic diffs
<https://github.com/clawpack/classic/compare/v5.9.2...master>`_
<https://github.com/clawpack/classic/compare/v5.10.0...master>`_

Changes to clawutil
-------------------


See `clawutil diffs
<https://github.com/clawpack/clawutil/compare/v5.9.2...master>`_
<https://github.com/clawpack/clawutil/compare/v5.10.0...master>`_

Changes to visclaw
------------------


See `visclaw diffs
<https://github.com/clawpack/visclaw/compare/v5.9.2...master>`_
<https://github.com/clawpack/visclaw/compare/v5.10.0...master>`_

Changes to riemann
------------------


See `riemann diffs
<https://github.com/clawpack/riemann/compare/v5.9.2...master>`_
<https://github.com/clawpack/riemann/compare/v5.10.0...master>`_

Changes to amrclaw
------------------


See `amrclaw diffs
<https://github.com/clawpack/amrclaw/compare/v5.9.2...master>`_
<https://github.com/clawpack/amrclaw/compare/v5.10.0...master>`_

Changes to geoclaw
------------------


See `geoclaw diffs <https://github.com/clawpack/geoclaw/compare/v5.9.2...master>`_
See `geoclaw diffs <https://github.com/clawpack/geoclaw/compare/v5.10.0...master>`_


Changes to PyClaw
------------------


See `pyclaw diffs <https://github.com/clawpack/pyclaw/compare/v5.9.2...master>`_
See `pyclaw diffs <https://github.com/clawpack/pyclaw/compare/v5.10.0...master>`_

===========================
Other Clawpack Repositories
Expand All @@ -82,10 +82,10 @@ The repositories below are not included in the Clawpack tarfile or pip
install, but changes to these repositories may also be of interest.

- `apps diffs
<https://github.com/clawpack/apps/compare/v5.9.2...master>`_
<https://github.com/clawpack/apps/compare/v5.10.0...master>`_

- `doc diffs
<https://github.com/clawpack/doc/compare/v5.9.x...dev>`_

- `docker-files diffs
<https://github.com/clawpack/docker-files/compare/v5.9.2...master>`_
<https://github.com/clawpack/docker-files/compare/v5.10.0...master>`_
8 changes: 4 additions & 4 deletions _sources/installing_fortcodes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Download a tar file from one of these sources:

After downloading a tar file you can do, e.g. ::

tar -xzf clawpack-v5.9.2.tar.gz
cd clawpack-v5.9.2
export CLAW=/full/path/to/clawpack-v5.9.2 # in bash
tar -xzf clawpack-v5.10.0.tar.gz
cd clawpack-v5.10.0
export CLAW=/full/path/to/clawpack-v5.10.0 # in bash
The last command sets an environment variable when using the bash shell.
The syntax may be different in other shells. Replace `/full/path/to`
Expand All @@ -60,7 +60,7 @@ See :ref:`developers` for more details, but the basic commands are::

git clone https://github.com/clawpack/clawpack.git
cd clawpack
git checkout v5.9.2 # or an older version; `git tag -l` to list options
git checkout v5.10.0 # or an older version; `git tag -l` to list options
git submodule init # for repositories pyclaw, clawutil, visclaw, etc.
git submodule update # clones all the submodule repositories
export CLAW=/full/path/to/clawpack # in bash
Expand Down
10 changes: 5 additions & 5 deletions _sources/installing_pip.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Clawpack is via::

or, more specifically, ::

pip install --user clawpack==v5.9.2
pip install --user clawpack==v5.10.0

or you can choose a previous version from the `PyPi history <https://pypi.org/project/clawpack/#history>`__.

Expand All @@ -56,7 +56,7 @@ following command
want to change anything in this command)**::

pip install --src=$HOME/clawpack_src --user --no-build-isolation -e \
git+https://github.com/clawpack/clawpack.git@v5.9.2#egg=clawpack
git+https://github.com/clawpack/clawpack.git@v5.10.0#egg=clawpack


**Notes:**
Expand All @@ -71,7 +71,7 @@ want to change anything in this command)**::
:ref:`installing_options` if you want more control.

- This will download Clawpack (via a git clone) into the directory
`$HOME/clawpack_src/clawpack-v5.9.2`. The top
`$HOME/clawpack_src/clawpack-v5.10.0`. The top
installation directory can be changed by modifying the ``--src`` target
(or omit this part to put it in your current working directory).
If you have already downloaded Clawpack via a different mechanism then
Expand All @@ -92,11 +92,11 @@ want to change anything in this command)**::

- In order to use the Fortran codes within Clawpack (`classic`,
`amrclaw`, or `geoclaw`), you should then set the environment
variable `CLAW` to point to the `clawpack-v5.9.2` directory within
variable `CLAW` to point to the `clawpack-v5.10.0` directory within
the installation directory `$HOME/clawpack_src`, and `FC` to point
to the desired Fortran compiler, e.g. in the bash shell::
export CLAW=$HOME/clawpack_src/clawpack-v5.9.2
export CLAW=$HOME/clawpack_src/clawpack-v5.10.0
export FC=gfortran


Expand Down
4 changes: 2 additions & 2 deletions _sources/releases.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ can also be referenced with the single DOI
`10.17605/osf.io/kmw6h <https://doi.org/10.17605/osf.io/kmw6h>`__.
See :ref:`citing` for more information on how best to cite Clawpack.

* :ref:`release_5_10_0` -- TBA
`[DOI 10.5281/zenodo.XX] <https://doi.org/10.5281/zenodo.XX>`_
* :ref:`release_5_10_0` -- March 29, 2024
`[DOI 10.5281/zenodo.10896214] <https://doi.org/10.5281/zenodo.10896214>`_
* :ref:`release_5_9_2` -- November 4, 2023
`[DOI 10.5281/zenodo.10076317] <https://doi.org/10.5281/zenodo.10076317>`_
* :ref:`release_5_9_1` -- October 2, 2023
Expand Down
10 changes: 5 additions & 5 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,18 +174,18 @@ <h2>License<a class="headerlink" href="#license" title="Permalink to this headin
<span id="citing"></span><h2>Citing this work<a class="headerlink" href="#citing-this-work" title="Permalink to this heading"></a></h2>
<p>If you use Clawpack in publications, please cite the software itself as
well, with a citation similar to the following:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Clawpack</span> <span class="n">Development</span> <span class="n">Team</span> <span class="p">(</span><span class="mi">2020</span><span class="p">),</span> <span class="n">Clawpack</span> <span class="n">Version</span> <span class="mf">5.7.1</span><span class="p">,</span>
<span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">www</span><span class="o">.</span><span class="n">clawpack</span><span class="o">.</span><span class="n">org</span><span class="p">,</span> <span class="n">doi</span><span class="p">:</span> <span class="mf">10.5281</span><span class="o">/</span><span class="n">zenodo</span><span class="mf">.4025432</span>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Clawpack</span> <span class="n">Development</span> <span class="n">Team</span> <span class="p">(</span><span class="mi">2024</span><span class="p">),</span> <span class="n">Clawpack</span> <span class="n">Version</span> <span class="mf">5.10.0</span><span class="p">,</span>
<span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">www</span><span class="o">.</span><span class="n">clawpack</span><span class="o">.</span><span class="n">org</span><span class="p">,</span> <span class="n">doi</span><span class="p">:</span> <span class="mf">10.5281</span><span class="o">/</span><span class="n">zenodo</span><span class="mf">.10896214</span>
</pre></div>
</div>
<p>Here’s the bibtex:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="nd">@misc</span><span class="p">{</span><span class="n">clawpack</span><span class="p">,</span>
<span class="n">title</span><span class="o">=</span><span class="p">{</span><span class="n">Clawpack</span> <span class="n">software</span><span class="p">},</span>
<span class="n">author</span><span class="o">=</span><span class="p">{{</span><span class="n">Clawpack</span> <span class="n">Development</span> <span class="n">Team</span><span class="p">}},</span>
<span class="n">url</span><span class="o">=</span><span class="p">{</span><span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">www</span><span class="o">.</span><span class="n">clawpack</span><span class="o">.</span><span class="n">org</span><span class="p">},</span>
<span class="n">note</span><span class="o">=</span><span class="p">{</span><span class="n">Version</span> <span class="mf">5.7.1</span><span class="p">},</span>
<span class="n">doi</span><span class="o">=</span><span class="p">{</span><span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">doi</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="mf">10.5281</span><span class="o">/</span><span class="n">zenodo</span><span class="mf">.4025432</span><span class="p">},</span>
<span class="n">year</span><span class="o">=</span><span class="p">{</span><span class="mi">2020</span><span class="p">}}</span>
<span class="n">note</span><span class="o">=</span><span class="p">{</span><span class="n">Version</span> <span class="mf">5.10.0</span><span class="p">},</span>
<span class="n">doi</span><span class="o">=</span><span class="p">{</span><span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">doi</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="mf">10.5281</span><span class="o">/</span><span class="n">zenodo</span><span class="mf">.10896214</span><span class="p">},</span>
<span class="n">year</span><span class="o">=</span><span class="p">{</span><span class="mi">2024</span><span class="p">}}</span>
</pre></div>
</div>
<p>Please fill in the version number that you used, and its year, with the
Expand Down
30 changes: 15 additions & 15 deletions changes_to_master.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>Changes to master since v5.9.2 &#8212; Clawpack 5.10.x documentation</title>
<title>Changes to master since v5.10.0 &#8212; Clawpack 5.10.x documentation</title>
<link rel="stylesheet" href="_static/base.css" type="text/css" />
<link rel="stylesheet" href="_static/layout.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
Expand Down Expand Up @@ -67,7 +67,7 @@ <h3>Navigation</h3>
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="contents.html">Clawpack 5.10.x documentation</a> &#187;</li>
<li class="nav-item nav-item-this"><a href="">Changes to master since v5.9.2</a></li>
<li class="nav-item nav-item-this"><a href="">Changes to master since v5.10.0</a></li>
</ul>
</div>

Expand All @@ -76,10 +76,10 @@ <h3>Navigation</h3>
<div class="bodywrapper">
<div class="body" role="main">

<section id="changes-to-master-since-v5-9-2">
<span id="changes-to-master"></span><h1>Changes to master since v5.9.2<a class="headerlink" href="#changes-to-master-since-v5-9-2" title="Permalink to this heading"></a></h1>
<section id="changes-to-master-since-v5-10-0">
<span id="changes-to-master"></span><h1>Changes to master since v5.10.0<a class="headerlink" href="#changes-to-master-since-v5-10-0" title="Permalink to this heading"></a></h1>
<p>Follow the links to see changes that have been made to the master branch of
each repository since the last release (v5.9.2) on November 4, 2023.</p>
each repository since the last release (v5.10.0) on March 29, 2024.</p>
<p>These changes should appear in the next release. If you need them now,
see <a class="reference internal" href="developers.html#developers"><span class="std std-ref">Developers’ Guide</span></a> for instructions on cloning and installing from the
master branch.</p>
Expand All @@ -94,41 +94,41 @@ <h2>General changes<a class="headerlink" href="#general-changes" title="Permalin
</section>
<section id="changes-to-classic">
<h2>Changes to classic<a class="headerlink" href="#changes-to-classic" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/classic/compare/v5.9.2...master">classic diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/classic/compare/v5.10.0...master">classic diffs</a></p>
</section>
<section id="changes-to-clawutil">
<h2>Changes to clawutil<a class="headerlink" href="#changes-to-clawutil" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/clawutil/compare/v5.9.2...master">clawutil diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/clawutil/compare/v5.10.0...master">clawutil diffs</a></p>
</section>
<section id="changes-to-visclaw">
<h2>Changes to visclaw<a class="headerlink" href="#changes-to-visclaw" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/visclaw/compare/v5.9.2...master">visclaw diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/visclaw/compare/v5.10.0...master">visclaw diffs</a></p>
</section>
<section id="changes-to-riemann">
<h2>Changes to riemann<a class="headerlink" href="#changes-to-riemann" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/riemann/compare/v5.9.2...master">riemann diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/riemann/compare/v5.10.0...master">riemann diffs</a></p>
</section>
<section id="changes-to-amrclaw">
<h2>Changes to amrclaw<a class="headerlink" href="#changes-to-amrclaw" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/amrclaw/compare/v5.9.2...master">amrclaw diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/amrclaw/compare/v5.10.0...master">amrclaw diffs</a></p>
</section>
<section id="changes-to-geoclaw">
<h2>Changes to geoclaw<a class="headerlink" href="#changes-to-geoclaw" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/geoclaw/compare/v5.9.2...master">geoclaw diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/geoclaw/compare/v5.10.0...master">geoclaw diffs</a></p>
</section>
<section id="changes-to-pyclaw">
<h2>Changes to PyClaw<a class="headerlink" href="#changes-to-pyclaw" title="Permalink to this heading"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/pyclaw/compare/v5.9.2...master">pyclaw diffs</a></p>
<p>See <a class="reference external" href="https://github.com/clawpack/pyclaw/compare/v5.10.0...master">pyclaw diffs</a></p>
</section>
</section>
<section id="other-clawpack-repositories">
<h1>Other Clawpack Repositories<a class="headerlink" href="#other-clawpack-repositories" title="Permalink to this heading"></a></h1>
<p>The repositories below are not included in the Clawpack tarfile or pip
install, but changes to these repositories may also be of interest.</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/clawpack/apps/compare/v5.9.2...master">apps diffs</a></p></li>
<li><p><a class="reference external" href="https://github.com/clawpack/apps/compare/v5.10.0...master">apps diffs</a></p></li>
<li><p><a class="reference external" href="https://github.com/clawpack/doc/compare/v5.9.x...dev">doc diffs</a></p></li>
<li><p><a class="reference external" href="https://github.com/clawpack/docker-files/compare/v5.9.2...master">docker-files diffs</a></p></li>
<li><p><a class="reference external" href="https://github.com/clawpack/docker-files/compare/v5.10.0...master">docker-files diffs</a></p></li>
</ul>
</section>

Expand All @@ -147,7 +147,7 @@ <h2>Version 5.10.x</h2>
<div>
<h3><a href="contents.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Changes to master since v5.9.2</a><ul>
<li><a class="reference internal" href="#">Changes to master since v5.10.0</a><ul>
<li><a class="reference internal" href="#changes-that-are-not-backward-compatible">Changes that are not backward compatible</a></li>
<li><a class="reference internal" href="#general-changes">General changes</a></li>
<li><a class="reference internal" href="#changes-to-classic">Changes to classic</a></li>
Expand Down
2 changes: 1 addition & 1 deletion dev/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 647fdf8a6ae17c224f292b3caf037ba2
config: 261a43d620e8cb9dbc7e51304364f141
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified dev/.doctrees/ClawPlotAxes.doctree
Binary file not shown.
Binary file modified dev/.doctrees/ClawPlotData.doctree
Binary file not shown.
Binary file modified dev/.doctrees/ClawPlotFigure.doctree
Binary file not shown.
Binary file modified dev/.doctrees/ClawPlotItem.doctree
Binary file not shown.
Binary file modified dev/.doctrees/about.doctree
Binary file not shown.
Binary file modified dev/.doctrees/adjoint.doctree
Binary file not shown.
Binary file modified dev/.doctrees/amr_algorithm.doctree
Binary file not shown.
Binary file modified dev/.doctrees/amrclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/amrclaw1d.doctree
Binary file not shown.
Binary file modified dev/.doctrees/amrclaw_doxygen.doctree
Binary file not shown.
Binary file modified dev/.doctrees/amrclaw_flowcharts.doctree
Binary file not shown.
Binary file modified dev/.doctrees/application_documentation.doctree
Binary file not shown.
Binary file modified dev/.doctrees/apps.doctree
Binary file not shown.
Binary file modified dev/.doctrees/aws.doctree
Binary file not shown.
Binary file modified dev/.doctrees/b4run.doctree
Binary file not shown.
Binary file modified dev/.doctrees/b4step_defaults.doctree
Binary file not shown.
Binary file modified dev/.doctrees/bc.doctree
Binary file not shown.
Binary file modified dev/.doctrees/biblio.doctree
Binary file not shown.
Binary file modified dev/.doctrees/bouss1d.doctree
Binary file not shown.
Binary file modified dev/.doctrees/bouss2d.doctree
Binary file not shown.
Binary file modified dev/.doctrees/changes_to_master.doctree
Binary file not shown.
Binary file modified dev/.doctrees/claw43to46.doctree
Binary file not shown.
Binary file modified dev/.doctrees/claw46to50.doctree
Binary file not shown.
Binary file modified dev/.doctrees/claw4x.doctree
Binary file not shown.
Binary file modified dev/.doctrees/clawpack5.doctree
Binary file not shown.
Binary file modified dev/.doctrees/clawpack_components.doctree
Binary file not shown.
Binary file modified dev/.doctrees/community.doctree
Binary file not shown.
Binary file modified dev/.doctrees/contents.doctree
Binary file not shown.
Binary file modified dev/.doctrees/contribute_apps.doctree
Binary file not shown.
Binary file modified dev/.doctrees/current_data.doctree
Binary file not shown.
Binary file modified dev/.doctrees/developers.doctree
Binary file not shown.
Binary file modified dev/.doctrees/docker_image.doctree
Binary file not shown.
Binary file modified dev/.doctrees/dtopotools_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/environment.pickle
Binary file not shown.
Binary file modified dev/.doctrees/f77_vs_f90.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fgmax.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fgmax_tools_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fgout.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fgout_tools_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/first_run.doctree
Binary file not shown.
Binary file modified dev/.doctrees/first_run_fortran.doctree
Binary file not shown.
Binary file modified dev/.doctrees/first_run_pyclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/flagregions.doctree
Binary file not shown.
Binary file modified dev/.doctrees/force_dry.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fortran.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fortran_compilers.doctree
Binary file not shown.
Binary file modified dev/.doctrees/fvmbook.doctree
Binary file not shown.
Binary file modified dev/.doctrees/galleries.doctree
Binary file not shown.
Binary file modified dev/.doctrees/gauges.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geoclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geoclaw1d.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geoclaw_started.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geoclaw_util_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geohints.doctree
Binary file not shown.
Binary file modified dev/.doctrees/geoplot.doctree
Binary file not shown.
Binary file modified dev/.doctrees/git_versions.doctree
Binary file not shown.
Binary file modified dev/.doctrees/googleearth_plotting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/gpu.doctree
Binary file not shown.
Binary file modified dev/.doctrees/grid_registration.doctree
Binary file not shown.
Binary file modified dev/.doctrees/howto_doc.doctree
Binary file not shown.
Binary file modified dev/.doctrees/howto_release.doctree
Binary file not shown.
Binary file modified dev/.doctrees/installing.doctree
Binary file not shown.
Binary file modified dev/.doctrees/installing_fortcodes.doctree
Binary file not shown.
Binary file modified dev/.doctrees/installing_pip.doctree
Binary file not shown.
Binary file modified dev/.doctrees/kmltools_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/lagrangian_gauges.doctree
Binary file not shown.
Binary file modified dev/.doctrees/license.doctree
Binary file not shown.
Binary file modified dev/.doctrees/makefiles.doctree
Binary file not shown.
Binary file modified dev/.doctrees/makefiles_library.doctree
Binary file not shown.
Binary file modified dev/.doctrees/manning.doctree
Binary file not shown.
Binary file modified dev/.doctrees/mapc2p.doctree
Binary file not shown.
Binary file modified dev/.doctrees/marching_front.doctree
Binary file not shown.
Binary file modified dev/.doctrees/matlab_plotting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/nearshore_interp.doctree
Binary file not shown.
Binary file modified dev/.doctrees/netcdf.doctree
Binary file not shown.
Binary file modified dev/.doctrees/newapp.doctree
Binary file not shown.
Binary file modified dev/.doctrees/okada.doctree
Binary file not shown.
Binary file modified dev/.doctrees/openmp.doctree
Binary file not shown.
Binary file modified dev/.doctrees/output_styles.doctree
Binary file not shown.
Binary file modified dev/.doctrees/packages.doctree
Binary file not shown.
Binary file modified dev/.doctrees/photos.doctree
Binary file not shown.
Binary file modified dev/.doctrees/plotexamples.doctree
Binary file not shown.
Binary file modified dev/.doctrees/plotting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/plotting_faq.doctree
Binary file not shown.
Binary file modified dev/.doctrees/plotting_geoclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/plotting_python.doctree
Binary file not shown.
Binary file modified dev/.doctrees/prereqs.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/about.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/basics.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/classes.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/clawpack_and_pyclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/cloud.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/controller.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/evolve/limiters.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/examples.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/geometry.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/going_further.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/io.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/output.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/parallel.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/plotting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/problem.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/rp.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/solution.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/solvers.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/started.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/state.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/troubleshooting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/tutorial.doctree
Binary file not shown.
Binary file modified dev/.doctrees/pyclaw/util.doctree
Binary file not shown.
Binary file modified dev/.doctrees/python.doctree
Binary file not shown.
Binary file modified dev/.doctrees/python_path.doctree
Binary file not shown.
Binary file modified dev/.doctrees/qinit_defaults.doctree
Binary file not shown.
Binary file modified dev/.doctrees/quick_surge.doctree
Binary file not shown.
Binary file modified dev/.doctrees/quick_tsunami.doctree
Binary file not shown.
Binary file modified dev/.doctrees/refinement.doctree
Binary file not shown.
Binary file modified dev/.doctrees/regression.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_0_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_10_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_1_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_2_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_2_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_2_2.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_3_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_3_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_4_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_4_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_5_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_6_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_6_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_7_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_7_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_8_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_8_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_8_2.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_9_0.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_9_1.doctree
Binary file not shown.
Binary file modified dev/.doctrees/release_5_9_2.doctree
Binary file not shown.
Binary file modified dev/.doctrees/releases.doctree
Binary file not shown.
Binary file modified dev/.doctrees/restart.doctree
Binary file not shown.
Binary file modified dev/.doctrees/riemann.doctree
Binary file not shown.
Binary file modified dev/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree
Binary file not shown.
Binary file modified dev/.doctrees/ruled_rectangles.doctree
Binary file not shown.
Binary file modified dev/.doctrees/sealevel.doctree
Binary file not shown.
Binary file modified dev/.doctrees/set_eta_init.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setaux_defaults.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setenv.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setplot.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setrun.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setrun_amrclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setrun_amrclaw_sample.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setrun_geoclaw.doctree
Binary file not shown.
Binary file modified dev/.doctrees/setrun_sample.doctree
Binary file not shown.
Binary file modified dev/.doctrees/sharing.doctree
Binary file not shown.
Binary file modified dev/.doctrees/sphere_source.doctree
Binary file not shown.
Binary file modified dev/.doctrees/sphinxdoc.doctree
Binary file not shown.
Binary file modified dev/.doctrees/src1d_defaults.doctree
Binary file not shown.
Binary file modified dev/.doctrees/src_defaults.doctree
Binary file not shown.
Binary file modified dev/.doctrees/storm_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/surgedata.doctree
Binary file not shown.
Binary file modified dev/.doctrees/testing.doctree
Binary file not shown.
Binary file modified dev/.doctrees/timing.doctree
Binary file not shown.
Binary file modified dev/.doctrees/topo.doctree
Binary file not shown.
Binary file modified dev/.doctrees/topotools.doctree
Binary file not shown.
Binary file modified dev/.doctrees/topotools_module.doctree
Binary file not shown.
Binary file modified dev/.doctrees/trouble.doctree
Binary file not shown.
Binary file modified dev/.doctrees/tsunamidata.doctree
Binary file not shown.
Binary file modified dev/.doctrees/user_routines.doctree
Binary file not shown.
Binary file modified dev/.doctrees/visit_plotting.doctree
Binary file not shown.
Binary file modified dev/.doctrees/vm.doctree
Binary file not shown.
Binary file modified dev/.doctrees/wp_algorithms.doctree
Binary file not shown.
6 changes: 3 additions & 3 deletions dev/ClawPlotAxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<title>ClawPlotAxes &#8212; Clawpack 5.10.x documentation</title>
<title>ClawPlotAxes &#8212; Clawpack dev documentation</title>
<link rel="stylesheet" href="_static/base.css" type="text/css" />
<link rel="stylesheet" href="_static/layout.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
Expand Down Expand Up @@ -74,7 +74,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="ClawPlotFigure.html" title="ClawPlotFigure"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="contents.html">Clawpack 5.10.x documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="contents.html">Clawpack dev documentation</a> &#187;</li>
<li class="nav-item nav-item-1"><a href="plotting.html" >Plotting with Visclaw</a> &#187;</li>
<li class="nav-item nav-item-2"><a href="setplot.html" accesskey="U">Using setplot.py to specify the desired plots</a> &#187;</li>
<li class="nav-item nav-item-this"><a href="">ClawPlotAxes</a></li>
Expand Down Expand Up @@ -420,7 +420,7 @@ <h2>Methods<a class="headerlink" href="#methods" title="Permalink to this headin
<p><a href="http://clawpack.org/">
<img class="logo" src= "_static/clawlogo.jpg" alt="Logo"/>
</a>
<h2>Version 5.10.x</h2>
<h2>Version dev</h2>
</p>
<div>
<h3><a href="contents.html">Table of Contents</a></h3>
Expand Down
Loading

0 comments on commit 745b2c4

Please sign in to comment.