Skip to content

Commit

Permalink
updates to dev - fgout and some other setrun params
Browse files Browse the repository at this point in the history
  • Loading branch information
rjleveque committed Jul 3, 2022
1 parent 97f4342 commit 6c7dd50
Show file tree
Hide file tree
Showing 2,836 changed files with 3,101 additions and 2,457 deletions.
2 changes: 1 addition & 1 deletion ClawPlotAxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion ClawPlotData.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion ClawPlotFigure.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion ClawPlotItem.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion _sources/apps.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These examples are not included in the basic Clawpack installation.
Users interested in obtaining this collection of applications can either
clone the repository using git::

git clone git://github.com/clawpack/apps
git clone https://github.com/clawpack/apps

or navigate to `https://github.com/clawpack/apps <https://github.com/clawpack/apps>`_
and click on the green "Code" button to see other options, such as downloading
Expand Down
30 changes: 19 additions & 11 deletions _sources/developers.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,21 @@ Cloning the most recent code from Github

You can create a read-only development version of Clawpack via::

git clone git://github.com/clawpack/clawpack.git
git clone https://github.com/clawpack/clawpack.git
cd clawpack
git submodule init
git submodule update

This downloads the following clawpack modules as subrepositories checked out at
specific commits (as opposed to the tip of a branch).

**Note:** The `https://github.com...` form of specifying a remote
clones the repository in a form that does not allow pushing to it
(unlike the `[email protected]:...` form). This is good practice, so
you do not accidently try to push to the main clawpack repository
rather than to your own fork (see :ref:`dev_remote` below if you
need your own fork, e.g. for issuing pull requests).

The commands above download the following clawpack modules as subrepositories
checked out at specific commits (as opposed to the tip of a branch).

* `<https://github.com/clawpack/pyclaw>`_ (Python code, some of which is
needed also for Fortran version)
Expand Down Expand Up @@ -169,7 +177,7 @@ repository:

provided you have ssh keys set up, or else:

git remote add username htpps://github.com/username/amrclaw.git
git remote add username https://github.com/username/amrclaw.git

if you don't mind having to type your password whenever you push or pull.

Expand All @@ -189,17 +197,17 @@ You might also want to clone some or all of the following repositories:
These are not brought over by cloning the top `clawpack` super-repository.
You can get one of these in read-only mode by doing, e.g.::

git clone git://github.com/clawpack/doc.git
git clone https://github.com/clawpack/doc.git

Then go through the above steps to add your own fork as a remote
if you plan to modify code and issue pull requests.

**Note:** The `git://github.com...` form of specifying a remote
clones the repository in a form
that does not allow pushing to it (unlike the `[email protected]:...` or
`https://github.com...` forms). This is good practic so you do not
accidently try to push to the main clawpack repository rather than to your
own fork.
**Note:** The `https://github.com...` form of specifying a remote
clones the repository in a form that does not allow pushing to it
(unlike the `[email protected]:...` form). This is good practice, so
you do not accidently try to push to the main clawpack repository
rather than to your own fork.


Modifying code
==============
Expand Down
2 changes: 1 addition & 1 deletion _sources/installing_fortcodes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ want the latest development version or a branch that is not in a release yet,
and/or if you plan to contribute to the code yourself via a pull request.
See :ref:`developers` for more details, but the basic commands are::

git clone git://github.com/clawpack/clawpack.git
git clone https://github.com/clawpack/clawpack.git
cd clawpack
git checkout v5.8.2 # or an older version; `git tag -l` to list options
git submodule init # for repositories pyclaw, clawutil, visclaw, etc.
Expand Down
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion adjoint.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion amr_algorithm.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion amrclaw.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion amrclaw1d.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion amrclaw_doxygen.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion amrclaw_flowcharts.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion application_documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
4 changes: 2 additions & 2 deletions apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h3>Navigation</h3>
<p>These examples are not included in the basic Clawpack installation.
Users interested in obtaining this collection of applications can either
clone the repository using git:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">git</span><span class="p">:</span><span class="o">//</span><span class="n">github</span><span class="o">.</span><span class="n">com</span><span class="o">/</span><span class="n">clawpack</span><span class="o">/</span><span class="n">apps</span>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">github</span><span class="o">.</span><span class="n">com</span><span class="o">/</span><span class="n">clawpack</span><span class="o">/</span><span class="n">apps</span>
</pre></div>
</div>
<p>or navigate to <a class="reference external" href="https://github.com/clawpack/apps">https://github.com/clawpack/apps</a>
Expand Down Expand Up @@ -229,7 +229,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion aws.html
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion b4run.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion b4step_defaults.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion bc.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion biblio.html
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion changes_to_master.html
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion claw43to46.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion claw46to50.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion claw4x.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion clawpack5.html
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion clawpack_components.html
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion community.html
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion contribute_apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion current_data.html
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
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: 6fb1186bc4733d50cb693ec567653bca
config: 9d073fdfe96d8d5e5fed5f9dda834925
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/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/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 added 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_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/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/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.
2 changes: 1 addition & 1 deletion dev/ClawPlotAxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion dev/ClawPlotData.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion dev/ClawPlotFigure.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion dev/ClawPlotItem.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ <h4>Older Versions</h4>
<div class="clearer"></div>
</div>
<div class="footer">
&copy; Copyright CC-BY 2020, The Clawpack Development Team.
&copy; Copyright CC-BY 2022, The Clawpack Development Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
</div>
<script>
Expand Down
2 changes: 1 addition & 1 deletion dev/_sources/apps.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These examples are not included in the basic Clawpack installation.
Users interested in obtaining this collection of applications can either
clone the repository using git::

git clone git://github.com/clawpack/apps
git clone https://github.com/clawpack/apps

or navigate to `https://github.com/clawpack/apps <https://github.com/clawpack/apps>`_
and click on the green "Code" button to see other options, such as downloading
Expand Down
Loading

0 comments on commit 6c7dd50

Please sign in to comment.