Skip to content

Commit

Permalink
updates pre-5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjleveque committed Jul 26, 2022
1 parent 6c7dd50 commit 4690f3d
Show file tree
Hide file tree
Showing 1,487 changed files with 5,453 additions and 478 deletions.
74 changes: 69 additions & 5 deletions _sources/changes_to_master.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,58 +25,122 @@ Changes that are not backward compatible
General changes
---------------

- `'binary32`' added as an `output_format` option in both amrclaw and
geoclaw. (So far classic only supports `'ascii'` output.) The old
`'binary'` option now defaults to `'binary64'`, which dumps the raw
binary of the full float64 (kind=8) Fortran variables. The new
`'binary32'` option trucates to float32 (kind=4) before dumping, and
results in binary output files that are only half as large. Since
float32 values have about 8 significant figures, this is generally
sufficient for most plotting and post-processing needs. These files
are also much smaller than the files created with the `'ascii'`
option, which is generally recommended only for debugging if you need to
examine the output files directly.

- Adding support for `'binary32'` required changes in the pyclaw, clawutil
and visclaw repositories as well.

- A new `fgout` capability was added to geoclaw (see below and :ref:`fgout`),
which also required additional changes to other repositories.



Changes to classic
------------------

- Comments in some sample `setrun.py` files were changed to make it clear
that only `output_format = 'ascii'` is supported so far in classic.

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

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

- Support for `'binary32'` and `fgout` grids added.

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

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

- Support for `'binary32'` and `fgout` grids added.

- `pcolor` plots are now rasterized by default, which greatly reduces the
file size in some cases. When e.g. `savefig('filename.svg')` is used
the labels are still vector graphics but the flow field is rasterized.
Passing the option `pcolor_kwargs = {"rasterized":False}` in setplot
turns this off. See `<https://github.com/clawpack/visclaw/pull/286>`.

- The `JSAnimation` subdirectory was removed, since we now use
`anim.to_jshtml` instead.

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

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

- None.

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

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

- Support for `output_format='binary32'` added for both output frames and
gauges.

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

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

- Support for `output_format='binary32'` added for both output frames and
gauges.

- New `fgout` grid capabilities added, as described at :ref:`fgout`.
This allows specifying one or more fixed resolution rectangular grids on
which the AMR solution will be interpolated (in both space and time)
at each time in a specified set of times. This does not affect the
time steps used in the computation and allows frequent output on a
fixed portion of the domain for making animations or doing
post-processing, such as particle tracking based on the velocity field.

See `geoclaw diffs <https://github.com/clawpack/geoclaw/compare/v5.6.1...master>`_
- The new `fgout` capability (together with :ref:`fgmax`)
replaces the very old `fixedgrid` capability,
which has now been further deprecated.

- `$CLAW/geoclaw/examples/tsunami/chile2010_fgmax` has been replaced by
`$CLAW/geoclaw/examples/tsunami/chile2010_fgmax-fgout`. This example
now also shows how to plot results on fgout grids either by
using a special `setplot` function or by reading them directly.
It also shows how to make an animation from the fgout results.

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


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

- Support for reading fgout frames added, by passing the parameter
`file_prefix` more consistently (which can be e.g. `fgout` rather than
`fort`, as used for output frames).

For changes in PyClaw, see the `PyClaw changelog
<https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.
- Support for reading binary output files with format `'binary32'` or
`'binary64'`. Added for both output frames and gauges. The old `'binary'`
format is equivalent to `'binary64'`.

See `pyclaw diffs
<https://github.com/clawpack/pyclaw/compare/v5.8.2...master>`_
- Support reading `file_format` from the `fort.t` files, now one of `ascii`,
`binary32`, or `binary64`. See General Changes above for more details.

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

For older changes in PyClaw, see also the `PyClaw changelog
<https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.

===========================
Other Clawpack Repositories
Expand Down
14 changes: 7 additions & 7 deletions _sources/sealevel.rst.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.. _sealevel:

==========================
Setting sealevel
Setting sea_level
==========================

GeoClaw has a parameter *sealevel* (see :ref:`setrun_geoclaw`) that can be
GeoClaw has a parameter *sea_level* (see :ref:`setrun_geoclaw`) that can be
used to specify the initialization of the fluid depth relative to the
specified topography (see :ref:`topo`).

Expand All @@ -13,8 +13,8 @@ elevation, see :ref:`set_eta_init`.

Unless a different set of initial
conditions is specified (see :ref:`setrun_qinit`), the default is to
initialize with zero velocity and depth *h* chosen so that *h+B = sealevel*
at any point where *B < sealevel*, where *B* is the topography or bathymetry
initialize with zero velocity and depth *h* chosen so that *h+B = sea_level*
at any point where *B < sea_level*, where *B* is the topography or bathymetry
in the grid cell (as determined by interpolation from the specified
*topo* files as described in :ref:`topo`).

Expand All @@ -25,9 +25,9 @@ modeling (e.g. from
`NOAA NGDC inundataion relief
<http://www.ngdc.noaa.gov/mgg/coastal/coastal.html>`_)
is often relative to Mean High Water (MHW), in
which case setting *sealevel = 0.* corresponds to assuming the water level
which case setting *sea_level = 0.* corresponds to assuming the water level
is initially at MHW. To adjust to use a different tide level, the value of
*sealevel* must be set appropriately. The relation between MHW and other
*sea_level* must be set appropriately. The relation between MHW and other
tide levels such as Mean Sea Level (MSL) can often be found from the NGDC
webpages for a nearby tide gauge.
For example, if you go to a station page such as
Expand Down Expand Up @@ -58,7 +58,7 @@ to be at rest before the tsunami arrives.

If GeoClaw is used for hazard assessment based on potential tsunami
scenarios, then thought should be given to the appropriate value of
*sealevel* to assume. The NCEI coastal bathymetry data is often referenced to MHW
*sea_level* to assume. The NCEI coastal bathymetry data is often referenced to MHW
because this is often the level assumed for tsunami hazard assessment, but
higher tide levels such as Mean Higher High Water (MHHW) or the Astronomical
High Tide (AHT) are sometimes used for worst-case scenarios.
Expand Down
74 changes: 72 additions & 2 deletions changes_to_master.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,35 +88,105 @@ <h2>Changes that are not backward compatible<a class="headerlink" href="#changes
</div>
<div class="section" id="general-changes">
<h2>General changes<a class="headerlink" href="#general-changes" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p><cite>‘binary32</cite>’ added as an <cite>output_format</cite> option in both amrclaw and
geoclaw. (So far classic only supports <cite>‘ascii’</cite> output.) The old
<cite>‘binary’</cite> option now defaults to <cite>‘binary64’</cite>, which dumps the raw
binary of the full float64 (kind=8) Fortran variables. The new
<cite>‘binary32’</cite> option trucates to float32 (kind=4) before dumping, and
results in binary output files that are only half as large. Since
float32 values have about 8 significant figures, this is generally
sufficient for most plotting and post-processing needs. These files
are also much smaller than the files created with the <cite>‘ascii’</cite>
option, which is generally recommended only for debugging if you need to
examine the output files directly.</p></li>
<li><p>Adding support for <cite>‘binary32’</cite> required changes in the pyclaw, clawutil
and visclaw repositories as well.</p></li>
<li><p>A new <cite>fgout</cite> capability was added to geoclaw (see below and <a class="reference internal" href="fgout.html#fgout"><span class="std std-ref">Fixed grid output</span></a>),
which also required additional changes to other repositories.</p></li>
</ul>
</div>
<div class="section" id="changes-to-classic">
<h2>Changes to classic<a class="headerlink" href="#changes-to-classic" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>Comments in some sample <cite>setrun.py</cite> files were changed to make it clear
that only <cite>output_format = ‘ascii’</cite> is supported so far in classic.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/classic/compare/v5.8.2...master">classic diffs</a></p>
</div>
<div class="section" id="changes-to-clawutil">
<h2>Changes to clawutil<a class="headerlink" href="#changes-to-clawutil" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>Support for <cite>‘binary32’</cite> and <cite>fgout</cite> grids added.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/clawutil/compare/v5.8.2...master">clawutil diffs</a></p>
</div>
<div class="section" id="changes-to-visclaw">
<h2>Changes to visclaw<a class="headerlink" href="#changes-to-visclaw" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>Support for <cite>‘binary32’</cite> and <cite>fgout</cite> grids added.</p></li>
<li><p><cite>pcolor</cite> plots are now rasterized by default, which greatly reduces the
file size in some cases. When e.g. <cite>savefig(‘filename.svg’)</cite> is used
the labels are still vector graphics but the flow field is rasterized.
Passing the option <cite>pcolor_kwargs = {“rasterized”:False}</cite> in setplot
turns this off. See <cite>&lt;https://github.com/clawpack/visclaw/pull/286&gt;</cite>.</p></li>
<li><p>The <cite>JSAnimation</cite> subdirectory was removed, since we now use
<cite>anim.to_jshtml</cite> instead.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/visclaw/compare/v5.8.2...master">visclaw diffs</a></p>
</div>
<div class="section" id="changes-to-riemann">
<h2>Changes to riemann<a class="headerlink" href="#changes-to-riemann" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>None.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/riemann/compare/v5.8.2...master">riemann diffs</a></p>
</div>
<div class="section" id="changes-to-amrclaw">
<h2>Changes to amrclaw<a class="headerlink" href="#changes-to-amrclaw" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>Support for <cite>output_format=’binary32’</cite> added for both output frames and
gauges.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/amrclaw/compare/v5.8.2...master">amrclaw diffs</a></p>
</div>
<div class="section" id="changes-to-geoclaw">
<h2>Changes to geoclaw<a class="headerlink" href="#changes-to-geoclaw" title="Permalink to this headline"></a></h2>
<p>See <a class="reference external" href="https://github.com/clawpack/geoclaw/compare/v5.6.1...master">geoclaw diffs</a></p>
<ul class="simple">
<li><p>Support for <cite>output_format=’binary32’</cite> added for both output frames and
gauges.</p></li>
<li><p>New <cite>fgout</cite> grid capabilities added, as described at <a class="reference internal" href="fgout.html#fgout"><span class="std std-ref">Fixed grid output</span></a>.
This allows specifying one or more fixed resolution rectangular grids on
which the AMR solution will be interpolated (in both space and time)
at each time in a specified set of times. This does not affect the
time steps used in the computation and allows frequent output on a
fixed portion of the domain for making animations or doing
post-processing, such as particle tracking based on the velocity field.</p></li>
<li><p>The new <cite>fgout</cite> capability (together with <a class="reference internal" href="fgmax.html#fgmax"><span class="std std-ref">Fixed grid monitoring</span></a>)
replaces the very old <cite>fixedgrid</cite> capability,
which has now been further deprecated.</p></li>
<li><p><cite>$CLAW/geoclaw/examples/tsunami/chile2010_fgmax</cite> has been replaced by
<cite>$CLAW/geoclaw/examples/tsunami/chile2010_fgmax-fgout</cite>. This example
now also shows how to plot results on fgout grids either by
using a special <cite>setplot</cite> function or by reading them directly.
It also shows how to make an animation from the fgout results.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/geoclaw/compare/v5.8.2...master">geoclaw diffs</a></p>
</div>
<div class="section" id="changes-to-pyclaw">
<h2>Changes to PyClaw<a class="headerlink" href="#changes-to-pyclaw" title="Permalink to this headline"></a></h2>
<p>For changes in PyClaw, see the <a class="reference external" href="https://github.com/clawpack/pyclaw/blob/master/CHANGES.md">PyClaw changelog</a>.</p>
<ul class="simple">
<li><p>Support for reading fgout frames added, by passing the parameter
<cite>file_prefix</cite> more consistently (which can be e.g. <cite>fgout</cite> rather than
<cite>fort</cite>, as used for output frames).</p></li>
<li><p>Support for reading binary output files with format <cite>‘binary32’</cite> or
<cite>‘binary64’</cite>. Added for both output frames and gauges. The old <cite>‘binary’</cite>
format is equivalent to <cite>‘binary64’</cite>.</p></li>
<li><p>Support reading <cite>file_format</cite> from the <cite>fort.t</cite> files, now one of <cite>ascii</cite>,
<cite>binary32</cite>, or <cite>binary64</cite>. See General Changes above for more details.</p></li>
</ul>
<p>See <a class="reference external" href="https://github.com/clawpack/pyclaw/compare/v5.8.2...master">pyclaw diffs</a></p>
<p>For older changes in PyClaw, see also the <a class="reference external" href="https://github.com/clawpack/pyclaw/blob/master/CHANGES.md">PyClaw changelog</a>.</p>
</div>
</div>
<div class="section" id="other-clawpack-repositories">
Expand Down
2 changes: 1 addition & 1 deletion contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h3><a class="toc-backref" href="#id8">GeoClaw: geophysical flows</a><a class="h
<li class="toctree-l2"><a class="reference internal" href="quick_tsunami.html">Quick start guide for tsunami modeling</a></li>
<li class="toctree-l2"><a class="reference internal" href="quick_surge.html">Quick start guide for storm surge modeling</a></li>
<li class="toctree-l2"><a class="reference internal" href="okada.html">Earthquake sources: Fault slip and the Okada model</a></li>
<li class="toctree-l2"><a class="reference internal" href="sealevel.html">Setting sealevel</a></li>
<li class="toctree-l2"><a class="reference internal" href="sealevel.html">Setting sea_level</a></li>
<li class="toctree-l2"><a class="reference internal" href="set_eta_init.html">Set Eta Init – spatially varying initial surface elevation</a></li>
<li class="toctree-l2"><a class="reference internal" href="lagrangian_gauges.html">Lagrangian gauges for particle tracking</a></li>
<li class="toctree-l2"><a class="reference internal" href="manning.html">Manning friction term</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: 9d073fdfe96d8d5e5fed5f9dda834925
config: 2d711e5d7fb4afea3ff9b26f79460a34
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 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_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.
39 changes: 33 additions & 6 deletions dev/_sources/changes_to_master.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,29 +66,41 @@ Changes to visclaw
------------------

- Support for `'binary32'` and `fgout` grids added.

- `pcolor` plots are now rasterized by default, which greatly reduces the
file size in some cases. When e.g. `savefig('filename.svg')` is used
the labels are still vector graphics but the flow field is rasterized.
Passing the option `pcolor_kwargs = {"rasterized":False}` in setplot
turns this off. See `<https://github.com/clawpack/visclaw/pull/286>`.

- The `JSAnimation` subdirectory was removed, since we now use
`anim.to_jshtml` instead.

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

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

- None.

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

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

- Support for `output_format='binary32'` added.
- Support for `output_format='binary32'` added for both output frames and
gauges.

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

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

- Support for `output_format='binary32'` added.
- Support for `output_format='binary32'` added for both output frames and
gauges.

- New `fgout` grid capabilities added, as described at :ref:`fgout`.
This allows specifying one or more fixed resolution rectangular grids on
Expand All @@ -102,18 +114,33 @@ Changes to geoclaw
replaces the very old `fixedgrid` capability,
which has now been further deprecated.

- `$CLAW/geoclaw/examples/tsunami/chile2010_fgmax` has been replaced by
`$CLAW/geoclaw/examples/tsunami/chile2010_fgmax-fgout`. This example
now also shows how to plot results on fgout grids either by
using a special `setplot` function or by reading them directly.
It also shows how to make an animation from the fgout results.

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


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

- Support for reading fgout frames added, by passing the parameter
`file_prefix` more consistently (which can be e.g. `fgout` rather than
`fort`, as used for output frames).

For changes in PyClaw, see the `PyClaw changelog
<https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.
- Support for reading binary output files with format `'binary32'` or
`'binary64'`. Added for both output frames and gauges. The old `'binary'`
format is equivalent to `'binary64'`.

See `pyclaw diffs
<https://github.com/clawpack/pyclaw/compare/v5.8.2...master>`_
- Support reading `file_format` from the `fort.t` files, now one of `ascii`,
`binary32`, or `binary64`. See General Changes above for more details.

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

For older changes in PyClaw, see also the `PyClaw changelog
<https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.

===========================
Other Clawpack Repositories
Expand Down
4 changes: 3 additions & 1 deletion dev/_sources/releases.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Other notes:
* Please see :ref:`citing` for the suggested way to cite the version of
Clawpack that you are using in publications.

* For changes in PyClaw, see the `PyClaw changelog <https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.
* For older changes in PyClaw, see the `PyClaw changelog <https://github.com/clawpack/pyclaw/blob/master/CHANGES.md>`_.
Starting with v5.9.0, changes will be recorded in the release notes along
with those for other repositories.

* See :ref:`changes_to_master` for changes to the master branch on Github
that are not in the most recent release.
Expand Down
Loading

0 comments on commit 4690f3d

Please sign in to comment.