diff --git a/_sources/changes_to_master.rst.txt b/_sources/changes_to_master.rst.txt index bf12cc293..2d016a31d 100644 --- a/_sources/changes_to_master.rst.txt +++ b/_sources/changes_to_master.rst.txt @@ -25,10 +25,31 @@ 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 `_ @@ -36,6 +57,7 @@ See `classic diffs Changes to clawutil ------------------- +- Support for `'binary32'` and `fgout` grids added. See `clawutil diffs `_ @@ -43,6 +65,16 @@ See `clawutil diffs 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 ``. + +- The `JSAnimation` subdirectory was removed, since we now use + `anim.to_jshtml` instead. See `visclaw diffs `_ @@ -50,6 +82,7 @@ See `visclaw diffs Changes to riemann ------------------ +- None. See `riemann diffs `_ @@ -57,6 +90,8 @@ See `riemann diffs Changes to amrclaw ------------------ +- Support for `output_format='binary32'` added for both output frames and + gauges. See `amrclaw diffs `_ @@ -64,19 +99,48 @@ See `amrclaw diffs 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 `_ +- 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 `_ 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 -`_. +- 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 -`_ +- 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 `_ + +For older changes in PyClaw, see also the `PyClaw changelog +`_. =========================== Other Clawpack Repositories diff --git a/_sources/sealevel.rst.txt b/_sources/sealevel.rst.txt index d16ec6bca..b2f373dee 100644 --- a/_sources/sealevel.rst.txt +++ b/_sources/sealevel.rst.txt @@ -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`). @@ -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`). @@ -25,9 +25,9 @@ modeling (e.g. from `NOAA NGDC inundataion relief `_) 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 @@ -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. diff --git a/changes_to_master.html b/changes_to_master.html index 2da6dea05..1de804421 100644 --- a/changes_to_master.html +++ b/changes_to_master.html @@ -88,35 +88,105 @@

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 Fixed grid output), +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

Changes to clawutil

+
    +
  • Support for ‘binary32’ and fgout grids added.

  • +

See clawutil diffs

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

Changes to riemann

+
    +
  • None.

  • +

See riemann diffs

Changes to amrclaw

+
    +
  • Support for output_format=’binary32’ added for both output frames and +gauges.

  • +

See amrclaw diffs

Changes to geoclaw

-

See geoclaw diffs

+
    +
  • Support for output_format=’binary32’ added for both output frames and +gauges.

  • +
  • New fgout grid capabilities added, as described at Fixed grid output. +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.

  • +
  • The new fgout capability (together with Fixed grid monitoring) +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

Changes to PyClaw

-

For changes in PyClaw, see the PyClaw changelog.

+
    +
  • 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).

  • +
  • 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’.

  • +
  • 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

+

For older changes in PyClaw, see also the PyClaw changelog.

diff --git a/contents.html b/contents.html index d965998ee..b7f244132 100644 --- a/contents.html +++ b/contents.html @@ -229,7 +229,7 @@

GeoClaw: geophysical flowsQuick start guide for tsunami modeling
  • Quick start guide for storm surge modeling
  • Earthquake sources: Fault slip and the Okada model
  • -
  • Setting sealevel
  • +
  • Setting sea_level
  • Set Eta Init – spatially varying initial surface elevation
  • Lagrangian gauges for particle tracking
  • Manning friction term
  • diff --git a/dev/.buildinfo b/dev/.buildinfo index 5904031d4..bf600218c 100644 --- a/dev/.buildinfo +++ b/dev/.buildinfo @@ -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 diff --git a/dev/.doctrees/ClawPlotAxes.doctree b/dev/.doctrees/ClawPlotAxes.doctree index 8cbf1624a..93d7dc937 100644 Binary files a/dev/.doctrees/ClawPlotAxes.doctree and b/dev/.doctrees/ClawPlotAxes.doctree differ diff --git a/dev/.doctrees/ClawPlotData.doctree b/dev/.doctrees/ClawPlotData.doctree index ef6ccf594..158ebe0ee 100644 Binary files a/dev/.doctrees/ClawPlotData.doctree and b/dev/.doctrees/ClawPlotData.doctree differ diff --git a/dev/.doctrees/ClawPlotFigure.doctree b/dev/.doctrees/ClawPlotFigure.doctree index 516d39993..ca9f14e70 100644 Binary files a/dev/.doctrees/ClawPlotFigure.doctree and b/dev/.doctrees/ClawPlotFigure.doctree differ diff --git a/dev/.doctrees/ClawPlotItem.doctree b/dev/.doctrees/ClawPlotItem.doctree index 8a80ca25d..fff41ecdc 100644 Binary files a/dev/.doctrees/ClawPlotItem.doctree and b/dev/.doctrees/ClawPlotItem.doctree differ diff --git a/dev/.doctrees/about.doctree b/dev/.doctrees/about.doctree index d03793eff..b5954a63a 100644 Binary files a/dev/.doctrees/about.doctree and b/dev/.doctrees/about.doctree differ diff --git a/dev/.doctrees/adjoint.doctree b/dev/.doctrees/adjoint.doctree index fd4c49ec5..ff348e7ac 100644 Binary files a/dev/.doctrees/adjoint.doctree and b/dev/.doctrees/adjoint.doctree differ diff --git a/dev/.doctrees/amr_algorithm.doctree b/dev/.doctrees/amr_algorithm.doctree index 5ceb22078..97ed0ffb9 100644 Binary files a/dev/.doctrees/amr_algorithm.doctree and b/dev/.doctrees/amr_algorithm.doctree differ diff --git a/dev/.doctrees/amrclaw.doctree b/dev/.doctrees/amrclaw.doctree index 1dc210350..dca5433a6 100644 Binary files a/dev/.doctrees/amrclaw.doctree and b/dev/.doctrees/amrclaw.doctree differ diff --git a/dev/.doctrees/amrclaw1d.doctree b/dev/.doctrees/amrclaw1d.doctree index 04c177ac5..aca313352 100644 Binary files a/dev/.doctrees/amrclaw1d.doctree and b/dev/.doctrees/amrclaw1d.doctree differ diff --git a/dev/.doctrees/amrclaw_doxygen.doctree b/dev/.doctrees/amrclaw_doxygen.doctree index bda790b71..f30eb392b 100644 Binary files a/dev/.doctrees/amrclaw_doxygen.doctree and b/dev/.doctrees/amrclaw_doxygen.doctree differ diff --git a/dev/.doctrees/amrclaw_flowcharts.doctree b/dev/.doctrees/amrclaw_flowcharts.doctree index 9577b6140..2c5e1b32a 100644 Binary files a/dev/.doctrees/amrclaw_flowcharts.doctree and b/dev/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/dev/.doctrees/application_documentation.doctree b/dev/.doctrees/application_documentation.doctree index f88f6e45a..7ce4cb52b 100644 Binary files a/dev/.doctrees/application_documentation.doctree and b/dev/.doctrees/application_documentation.doctree differ diff --git a/dev/.doctrees/apps.doctree b/dev/.doctrees/apps.doctree index 2b0f15550..e99bb2059 100644 Binary files a/dev/.doctrees/apps.doctree and b/dev/.doctrees/apps.doctree differ diff --git a/dev/.doctrees/aws.doctree b/dev/.doctrees/aws.doctree index 57e7f33b4..07b6dc5d2 100644 Binary files a/dev/.doctrees/aws.doctree and b/dev/.doctrees/aws.doctree differ diff --git a/dev/.doctrees/b4run.doctree b/dev/.doctrees/b4run.doctree index c7b3c71e1..e46eddd41 100644 Binary files a/dev/.doctrees/b4run.doctree and b/dev/.doctrees/b4run.doctree differ diff --git a/dev/.doctrees/b4step_defaults.doctree b/dev/.doctrees/b4step_defaults.doctree index 56408956e..e462baebf 100644 Binary files a/dev/.doctrees/b4step_defaults.doctree and b/dev/.doctrees/b4step_defaults.doctree differ diff --git a/dev/.doctrees/bc.doctree b/dev/.doctrees/bc.doctree index 584c34a50..4bee7640b 100644 Binary files a/dev/.doctrees/bc.doctree and b/dev/.doctrees/bc.doctree differ diff --git a/dev/.doctrees/biblio.doctree b/dev/.doctrees/biblio.doctree index 4d5e9be4f..2ef504b15 100644 Binary files a/dev/.doctrees/biblio.doctree and b/dev/.doctrees/biblio.doctree differ diff --git a/dev/.doctrees/changes_to_master.doctree b/dev/.doctrees/changes_to_master.doctree index bdf98d0ee..4d8bc693a 100644 Binary files a/dev/.doctrees/changes_to_master.doctree and b/dev/.doctrees/changes_to_master.doctree differ diff --git a/dev/.doctrees/claw43to46.doctree b/dev/.doctrees/claw43to46.doctree index cbdfebdfc..95c08660e 100644 Binary files a/dev/.doctrees/claw43to46.doctree and b/dev/.doctrees/claw43to46.doctree differ diff --git a/dev/.doctrees/claw46to50.doctree b/dev/.doctrees/claw46to50.doctree index 8d72c277a..4e1e662b0 100644 Binary files a/dev/.doctrees/claw46to50.doctree and b/dev/.doctrees/claw46to50.doctree differ diff --git a/dev/.doctrees/claw4x.doctree b/dev/.doctrees/claw4x.doctree index 440fd53c0..516707e6c 100644 Binary files a/dev/.doctrees/claw4x.doctree and b/dev/.doctrees/claw4x.doctree differ diff --git a/dev/.doctrees/clawpack5.doctree b/dev/.doctrees/clawpack5.doctree index 7f06966a3..56b1aa6e3 100644 Binary files a/dev/.doctrees/clawpack5.doctree and b/dev/.doctrees/clawpack5.doctree differ diff --git a/dev/.doctrees/clawpack_components.doctree b/dev/.doctrees/clawpack_components.doctree index 58fdd192c..d26b02c8c 100644 Binary files a/dev/.doctrees/clawpack_components.doctree and b/dev/.doctrees/clawpack_components.doctree differ diff --git a/dev/.doctrees/community.doctree b/dev/.doctrees/community.doctree index 2597b7a22..54dce3481 100644 Binary files a/dev/.doctrees/community.doctree and b/dev/.doctrees/community.doctree differ diff --git a/dev/.doctrees/contents.doctree b/dev/.doctrees/contents.doctree index ec01cb0d4..419cda731 100644 Binary files a/dev/.doctrees/contents.doctree and b/dev/.doctrees/contents.doctree differ diff --git a/dev/.doctrees/contribute_apps.doctree b/dev/.doctrees/contribute_apps.doctree index 1c0096cd5..63b1d7cf8 100644 Binary files a/dev/.doctrees/contribute_apps.doctree and b/dev/.doctrees/contribute_apps.doctree differ diff --git a/dev/.doctrees/current_data.doctree b/dev/.doctrees/current_data.doctree index 5059ca474..c5d92a684 100644 Binary files a/dev/.doctrees/current_data.doctree and b/dev/.doctrees/current_data.doctree differ diff --git a/dev/.doctrees/developers.doctree b/dev/.doctrees/developers.doctree index d853eafa5..cf22fb472 100644 Binary files a/dev/.doctrees/developers.doctree and b/dev/.doctrees/developers.doctree differ diff --git a/dev/.doctrees/docker_image.doctree b/dev/.doctrees/docker_image.doctree index 1e58bdd2e..3b8a8be1e 100644 Binary files a/dev/.doctrees/docker_image.doctree and b/dev/.doctrees/docker_image.doctree differ diff --git a/dev/.doctrees/dtopotools_module.doctree b/dev/.doctrees/dtopotools_module.doctree index 545b36281..a32c701b9 100644 Binary files a/dev/.doctrees/dtopotools_module.doctree and b/dev/.doctrees/dtopotools_module.doctree differ diff --git a/dev/.doctrees/environment.pickle b/dev/.doctrees/environment.pickle index d0fa59ec3..bc4b8f86e 100644 Binary files a/dev/.doctrees/environment.pickle and b/dev/.doctrees/environment.pickle differ diff --git a/dev/.doctrees/f77_vs_f90.doctree b/dev/.doctrees/f77_vs_f90.doctree index 113e95463..f2a836cb4 100644 Binary files a/dev/.doctrees/f77_vs_f90.doctree and b/dev/.doctrees/f77_vs_f90.doctree differ diff --git a/dev/.doctrees/fgmax.doctree b/dev/.doctrees/fgmax.doctree index 33ed06871..8d4582165 100644 Binary files a/dev/.doctrees/fgmax.doctree and b/dev/.doctrees/fgmax.doctree differ diff --git a/dev/.doctrees/fgmax_tools_module.doctree b/dev/.doctrees/fgmax_tools_module.doctree index 45a332eee..0ecf43ef6 100644 Binary files a/dev/.doctrees/fgmax_tools_module.doctree and b/dev/.doctrees/fgmax_tools_module.doctree differ diff --git a/dev/.doctrees/fgout.doctree b/dev/.doctrees/fgout.doctree index 45e61822a..b78365f2e 100644 Binary files a/dev/.doctrees/fgout.doctree and b/dev/.doctrees/fgout.doctree differ diff --git a/dev/.doctrees/fgout_tools_module.doctree b/dev/.doctrees/fgout_tools_module.doctree index 240ba851f..9f84ced3c 100644 Binary files a/dev/.doctrees/fgout_tools_module.doctree and b/dev/.doctrees/fgout_tools_module.doctree differ diff --git a/dev/.doctrees/first_run.doctree b/dev/.doctrees/first_run.doctree index 3de4a440b..bca05855c 100644 Binary files a/dev/.doctrees/first_run.doctree and b/dev/.doctrees/first_run.doctree differ diff --git a/dev/.doctrees/first_run_fortran.doctree b/dev/.doctrees/first_run_fortran.doctree index 9b1dd3a5a..7c7b26bd2 100644 Binary files a/dev/.doctrees/first_run_fortran.doctree and b/dev/.doctrees/first_run_fortran.doctree differ diff --git a/dev/.doctrees/first_run_pyclaw.doctree b/dev/.doctrees/first_run_pyclaw.doctree index 901d972da..0af609958 100644 Binary files a/dev/.doctrees/first_run_pyclaw.doctree and b/dev/.doctrees/first_run_pyclaw.doctree differ diff --git a/dev/.doctrees/flagregions.doctree b/dev/.doctrees/flagregions.doctree index 5830407b8..8f2a365f4 100644 Binary files a/dev/.doctrees/flagregions.doctree and b/dev/.doctrees/flagregions.doctree differ diff --git a/dev/.doctrees/force_dry.doctree b/dev/.doctrees/force_dry.doctree index 60edcb1fa..bfa60e93b 100644 Binary files a/dev/.doctrees/force_dry.doctree and b/dev/.doctrees/force_dry.doctree differ diff --git a/dev/.doctrees/fortran.doctree b/dev/.doctrees/fortran.doctree index 415af914c..2258992f7 100644 Binary files a/dev/.doctrees/fortran.doctree and b/dev/.doctrees/fortran.doctree differ diff --git a/dev/.doctrees/fortran_compilers.doctree b/dev/.doctrees/fortran_compilers.doctree index ff6b4a288..8cf488432 100644 Binary files a/dev/.doctrees/fortran_compilers.doctree and b/dev/.doctrees/fortran_compilers.doctree differ diff --git a/dev/.doctrees/fvmbook.doctree b/dev/.doctrees/fvmbook.doctree index b218b5691..8916c8fe4 100644 Binary files a/dev/.doctrees/fvmbook.doctree and b/dev/.doctrees/fvmbook.doctree differ diff --git a/dev/.doctrees/galleries.doctree b/dev/.doctrees/galleries.doctree index b91f23db2..22c4bcbfa 100644 Binary files a/dev/.doctrees/galleries.doctree and b/dev/.doctrees/galleries.doctree differ diff --git a/dev/.doctrees/gauges.doctree b/dev/.doctrees/gauges.doctree index 8480d1804..f292b448f 100644 Binary files a/dev/.doctrees/gauges.doctree and b/dev/.doctrees/gauges.doctree differ diff --git a/dev/.doctrees/geoclaw.doctree b/dev/.doctrees/geoclaw.doctree index e071eb6c9..c2c13d676 100644 Binary files a/dev/.doctrees/geoclaw.doctree and b/dev/.doctrees/geoclaw.doctree differ diff --git a/dev/.doctrees/geoclaw_started.doctree b/dev/.doctrees/geoclaw_started.doctree index 59a94ebe5..a7a1a9de0 100644 Binary files a/dev/.doctrees/geoclaw_started.doctree and b/dev/.doctrees/geoclaw_started.doctree differ diff --git a/dev/.doctrees/geoclaw_util_module.doctree b/dev/.doctrees/geoclaw_util_module.doctree index f7aaac4aa..df07fffa7 100644 Binary files a/dev/.doctrees/geoclaw_util_module.doctree and b/dev/.doctrees/geoclaw_util_module.doctree differ diff --git a/dev/.doctrees/geohints.doctree b/dev/.doctrees/geohints.doctree index d3e58d418..6cff00614 100644 Binary files a/dev/.doctrees/geohints.doctree and b/dev/.doctrees/geohints.doctree differ diff --git a/dev/.doctrees/geoplot.doctree b/dev/.doctrees/geoplot.doctree index 1b23d1e54..c18e72e4d 100644 Binary files a/dev/.doctrees/geoplot.doctree and b/dev/.doctrees/geoplot.doctree differ diff --git a/dev/.doctrees/git_versions.doctree b/dev/.doctrees/git_versions.doctree index 84087b5d6..4296be678 100644 Binary files a/dev/.doctrees/git_versions.doctree and b/dev/.doctrees/git_versions.doctree differ diff --git a/dev/.doctrees/googleearth_plotting.doctree b/dev/.doctrees/googleearth_plotting.doctree index c0af94f98..aff63640b 100644 Binary files a/dev/.doctrees/googleearth_plotting.doctree and b/dev/.doctrees/googleearth_plotting.doctree differ diff --git a/dev/.doctrees/gpu.doctree b/dev/.doctrees/gpu.doctree index 9ee5e9915..0c41db35a 100644 Binary files a/dev/.doctrees/gpu.doctree and b/dev/.doctrees/gpu.doctree differ diff --git a/dev/.doctrees/grid_registration.doctree b/dev/.doctrees/grid_registration.doctree index a17cf28a7..33814134e 100644 Binary files a/dev/.doctrees/grid_registration.doctree and b/dev/.doctrees/grid_registration.doctree differ diff --git a/dev/.doctrees/howto_doc.doctree b/dev/.doctrees/howto_doc.doctree index accb43057..f52a2066d 100644 Binary files a/dev/.doctrees/howto_doc.doctree and b/dev/.doctrees/howto_doc.doctree differ diff --git a/dev/.doctrees/howto_release.doctree b/dev/.doctrees/howto_release.doctree index c001dd06f..c2af7f322 100644 Binary files a/dev/.doctrees/howto_release.doctree and b/dev/.doctrees/howto_release.doctree differ diff --git a/dev/.doctrees/installing.doctree b/dev/.doctrees/installing.doctree index 1613dee77..bb237e118 100644 Binary files a/dev/.doctrees/installing.doctree and b/dev/.doctrees/installing.doctree differ diff --git a/dev/.doctrees/installing_fortcodes.doctree b/dev/.doctrees/installing_fortcodes.doctree index a95e5acae..3fd9d6256 100644 Binary files a/dev/.doctrees/installing_fortcodes.doctree and b/dev/.doctrees/installing_fortcodes.doctree differ diff --git a/dev/.doctrees/installing_pip.doctree b/dev/.doctrees/installing_pip.doctree index fa46635c7..1a2399563 100644 Binary files a/dev/.doctrees/installing_pip.doctree and b/dev/.doctrees/installing_pip.doctree differ diff --git a/dev/.doctrees/kmltools_module.doctree b/dev/.doctrees/kmltools_module.doctree index 785cba4c3..319fcba19 100644 Binary files a/dev/.doctrees/kmltools_module.doctree and b/dev/.doctrees/kmltools_module.doctree differ diff --git a/dev/.doctrees/lagrangian_gauges.doctree b/dev/.doctrees/lagrangian_gauges.doctree index 89c424d44..269873801 100644 Binary files a/dev/.doctrees/lagrangian_gauges.doctree and b/dev/.doctrees/lagrangian_gauges.doctree differ diff --git a/dev/.doctrees/license.doctree b/dev/.doctrees/license.doctree index 047f7de90..e90441974 100644 Binary files a/dev/.doctrees/license.doctree and b/dev/.doctrees/license.doctree differ diff --git a/dev/.doctrees/makefiles.doctree b/dev/.doctrees/makefiles.doctree index 1062098bb..c19ee3921 100644 Binary files a/dev/.doctrees/makefiles.doctree and b/dev/.doctrees/makefiles.doctree differ diff --git a/dev/.doctrees/makefiles_library.doctree b/dev/.doctrees/makefiles_library.doctree index 81617c1c4..2cdf93654 100644 Binary files a/dev/.doctrees/makefiles_library.doctree and b/dev/.doctrees/makefiles_library.doctree differ diff --git a/dev/.doctrees/manning.doctree b/dev/.doctrees/manning.doctree index e86016367..d94881a12 100644 Binary files a/dev/.doctrees/manning.doctree and b/dev/.doctrees/manning.doctree differ diff --git a/dev/.doctrees/mapc2p.doctree b/dev/.doctrees/mapc2p.doctree index a145cf3a5..969c896fc 100644 Binary files a/dev/.doctrees/mapc2p.doctree and b/dev/.doctrees/mapc2p.doctree differ diff --git a/dev/.doctrees/marching_front.doctree b/dev/.doctrees/marching_front.doctree index 174f7f2ed..6b8bde044 100644 Binary files a/dev/.doctrees/marching_front.doctree and b/dev/.doctrees/marching_front.doctree differ diff --git a/dev/.doctrees/matlab_plotting.doctree b/dev/.doctrees/matlab_plotting.doctree index 8b186d389..cacc5eeaa 100644 Binary files a/dev/.doctrees/matlab_plotting.doctree and b/dev/.doctrees/matlab_plotting.doctree differ diff --git a/dev/.doctrees/nearshore_interp.doctree b/dev/.doctrees/nearshore_interp.doctree index ff46e5ce5..ba137be66 100644 Binary files a/dev/.doctrees/nearshore_interp.doctree and b/dev/.doctrees/nearshore_interp.doctree differ diff --git a/dev/.doctrees/netcdf.doctree b/dev/.doctrees/netcdf.doctree index 44a9346c0..97184aecf 100644 Binary files a/dev/.doctrees/netcdf.doctree and b/dev/.doctrees/netcdf.doctree differ diff --git a/dev/.doctrees/newapp.doctree b/dev/.doctrees/newapp.doctree index 588e718ef..116583c32 100644 Binary files a/dev/.doctrees/newapp.doctree and b/dev/.doctrees/newapp.doctree differ diff --git a/dev/.doctrees/okada.doctree b/dev/.doctrees/okada.doctree index 1c45f08ab..897bd067d 100644 Binary files a/dev/.doctrees/okada.doctree and b/dev/.doctrees/okada.doctree differ diff --git a/dev/.doctrees/openmp.doctree b/dev/.doctrees/openmp.doctree index 68d33b197..163688aec 100644 Binary files a/dev/.doctrees/openmp.doctree and b/dev/.doctrees/openmp.doctree differ diff --git a/dev/.doctrees/output_styles.doctree b/dev/.doctrees/output_styles.doctree index cedc1fe72..ab2b0e33c 100644 Binary files a/dev/.doctrees/output_styles.doctree and b/dev/.doctrees/output_styles.doctree differ diff --git a/dev/.doctrees/packages.doctree b/dev/.doctrees/packages.doctree index 05bb9651c..e7d3db083 100644 Binary files a/dev/.doctrees/packages.doctree and b/dev/.doctrees/packages.doctree differ diff --git a/dev/.doctrees/photos.doctree b/dev/.doctrees/photos.doctree index dc36f548d..ad3e62e24 100644 Binary files a/dev/.doctrees/photos.doctree and b/dev/.doctrees/photos.doctree differ diff --git a/dev/.doctrees/plotexamples.doctree b/dev/.doctrees/plotexamples.doctree index 8572557b4..c5b5ca0c2 100644 Binary files a/dev/.doctrees/plotexamples.doctree and b/dev/.doctrees/plotexamples.doctree differ diff --git a/dev/.doctrees/plotting.doctree b/dev/.doctrees/plotting.doctree index 1a0065517..297e949d9 100644 Binary files a/dev/.doctrees/plotting.doctree and b/dev/.doctrees/plotting.doctree differ diff --git a/dev/.doctrees/plotting_faq.doctree b/dev/.doctrees/plotting_faq.doctree index dc6170553..c61b4d090 100644 Binary files a/dev/.doctrees/plotting_faq.doctree and b/dev/.doctrees/plotting_faq.doctree differ diff --git a/dev/.doctrees/plotting_geoclaw.doctree b/dev/.doctrees/plotting_geoclaw.doctree index 27cdfcfa2..8c3625695 100644 Binary files a/dev/.doctrees/plotting_geoclaw.doctree and b/dev/.doctrees/plotting_geoclaw.doctree differ diff --git a/dev/.doctrees/plotting_python.doctree b/dev/.doctrees/plotting_python.doctree index f3c928c02..9e8b43dab 100644 Binary files a/dev/.doctrees/plotting_python.doctree and b/dev/.doctrees/plotting_python.doctree differ diff --git a/dev/.doctrees/prereqs.doctree b/dev/.doctrees/prereqs.doctree index 62b976187..225799ee2 100644 Binary files a/dev/.doctrees/prereqs.doctree and b/dev/.doctrees/prereqs.doctree differ diff --git a/dev/.doctrees/pyclaw/about.doctree b/dev/.doctrees/pyclaw/about.doctree index a6168ca36..156a5f51a 100644 Binary files a/dev/.doctrees/pyclaw/about.doctree and b/dev/.doctrees/pyclaw/about.doctree differ diff --git a/dev/.doctrees/pyclaw/basics.doctree b/dev/.doctrees/pyclaw/basics.doctree index 693b37a1b..d1f50c3e7 100644 Binary files a/dev/.doctrees/pyclaw/basics.doctree and b/dev/.doctrees/pyclaw/basics.doctree differ diff --git a/dev/.doctrees/pyclaw/classes.doctree b/dev/.doctrees/pyclaw/classes.doctree index 1a92988a8..23d4ad17e 100644 Binary files a/dev/.doctrees/pyclaw/classes.doctree and b/dev/.doctrees/pyclaw/classes.doctree differ diff --git a/dev/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/dev/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 53572a565..648f8f18a 100644 Binary files a/dev/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/dev/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/dev/.doctrees/pyclaw/cloud.doctree b/dev/.doctrees/pyclaw/cloud.doctree index e12045cfd..241719a07 100644 Binary files a/dev/.doctrees/pyclaw/cloud.doctree and b/dev/.doctrees/pyclaw/cloud.doctree differ diff --git a/dev/.doctrees/pyclaw/controller.doctree b/dev/.doctrees/pyclaw/controller.doctree index 15d450079..d3d640c30 100644 Binary files a/dev/.doctrees/pyclaw/controller.doctree and b/dev/.doctrees/pyclaw/controller.doctree differ diff --git a/dev/.doctrees/pyclaw/evolve/limiters.doctree b/dev/.doctrees/pyclaw/evolve/limiters.doctree index 614a72277..312ea9803 100644 Binary files a/dev/.doctrees/pyclaw/evolve/limiters.doctree and b/dev/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/dev/.doctrees/pyclaw/examples.doctree b/dev/.doctrees/pyclaw/examples.doctree index 799a3b273..c7e3c29df 100644 Binary files a/dev/.doctrees/pyclaw/examples.doctree and b/dev/.doctrees/pyclaw/examples.doctree differ diff --git a/dev/.doctrees/pyclaw/geometry.doctree b/dev/.doctrees/pyclaw/geometry.doctree index ffff0ef3a..462d732c0 100644 Binary files a/dev/.doctrees/pyclaw/geometry.doctree and b/dev/.doctrees/pyclaw/geometry.doctree differ diff --git a/dev/.doctrees/pyclaw/going_further.doctree b/dev/.doctrees/pyclaw/going_further.doctree index 549dfbf51..3b09d0f83 100644 Binary files a/dev/.doctrees/pyclaw/going_further.doctree and b/dev/.doctrees/pyclaw/going_further.doctree differ diff --git a/dev/.doctrees/pyclaw/index.doctree b/dev/.doctrees/pyclaw/index.doctree index 0ea6c3f4a..b443232f2 100644 Binary files a/dev/.doctrees/pyclaw/index.doctree and b/dev/.doctrees/pyclaw/index.doctree differ diff --git a/dev/.doctrees/pyclaw/io.doctree b/dev/.doctrees/pyclaw/io.doctree index f3877deb5..f0f2bebf9 100644 Binary files a/dev/.doctrees/pyclaw/io.doctree and b/dev/.doctrees/pyclaw/io.doctree differ diff --git a/dev/.doctrees/pyclaw/output.doctree b/dev/.doctrees/pyclaw/output.doctree index fc6ba2188..d346744d8 100644 Binary files a/dev/.doctrees/pyclaw/output.doctree and b/dev/.doctrees/pyclaw/output.doctree differ diff --git a/dev/.doctrees/pyclaw/parallel.doctree b/dev/.doctrees/pyclaw/parallel.doctree index f580491ec..e99acc8e8 100644 Binary files a/dev/.doctrees/pyclaw/parallel.doctree and b/dev/.doctrees/pyclaw/parallel.doctree differ diff --git a/dev/.doctrees/pyclaw/plotting.doctree b/dev/.doctrees/pyclaw/plotting.doctree index b3fd40340..aa8706904 100644 Binary files a/dev/.doctrees/pyclaw/plotting.doctree and b/dev/.doctrees/pyclaw/plotting.doctree differ diff --git a/dev/.doctrees/pyclaw/problem.doctree b/dev/.doctrees/pyclaw/problem.doctree index 610dc8d5d..3e4710b8f 100644 Binary files a/dev/.doctrees/pyclaw/problem.doctree and b/dev/.doctrees/pyclaw/problem.doctree differ diff --git a/dev/.doctrees/pyclaw/rp.doctree b/dev/.doctrees/pyclaw/rp.doctree index 15c37357f..51e12e58d 100644 Binary files a/dev/.doctrees/pyclaw/rp.doctree and b/dev/.doctrees/pyclaw/rp.doctree differ diff --git a/dev/.doctrees/pyclaw/solution.doctree b/dev/.doctrees/pyclaw/solution.doctree index b4ce20922..b1e6b01e7 100644 Binary files a/dev/.doctrees/pyclaw/solution.doctree and b/dev/.doctrees/pyclaw/solution.doctree differ diff --git a/dev/.doctrees/pyclaw/solvers.doctree b/dev/.doctrees/pyclaw/solvers.doctree index 5035f72da..ea6edeedb 100644 Binary files a/dev/.doctrees/pyclaw/solvers.doctree and b/dev/.doctrees/pyclaw/solvers.doctree differ diff --git a/dev/.doctrees/pyclaw/started.doctree b/dev/.doctrees/pyclaw/started.doctree index 9a1f73e74..35d2eba66 100644 Binary files a/dev/.doctrees/pyclaw/started.doctree and b/dev/.doctrees/pyclaw/started.doctree differ diff --git a/dev/.doctrees/pyclaw/state.doctree b/dev/.doctrees/pyclaw/state.doctree index 54e98061f..aed232cdf 100644 Binary files a/dev/.doctrees/pyclaw/state.doctree and b/dev/.doctrees/pyclaw/state.doctree differ diff --git a/dev/.doctrees/pyclaw/troubleshooting.doctree b/dev/.doctrees/pyclaw/troubleshooting.doctree index 1d22b8474..ef931fa98 100644 Binary files a/dev/.doctrees/pyclaw/troubleshooting.doctree and b/dev/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/dev/.doctrees/pyclaw/tutorial.doctree b/dev/.doctrees/pyclaw/tutorial.doctree index ee54e65e7..7882325d5 100644 Binary files a/dev/.doctrees/pyclaw/tutorial.doctree and b/dev/.doctrees/pyclaw/tutorial.doctree differ diff --git a/dev/.doctrees/pyclaw/util.doctree b/dev/.doctrees/pyclaw/util.doctree index e5ff3ff23..c485d1d54 100644 Binary files a/dev/.doctrees/pyclaw/util.doctree and b/dev/.doctrees/pyclaw/util.doctree differ diff --git a/dev/.doctrees/python.doctree b/dev/.doctrees/python.doctree index e58f14ae4..1b5bf38c5 100644 Binary files a/dev/.doctrees/python.doctree and b/dev/.doctrees/python.doctree differ diff --git a/dev/.doctrees/python_path.doctree b/dev/.doctrees/python_path.doctree index a9f9d755b..f472b5f24 100644 Binary files a/dev/.doctrees/python_path.doctree and b/dev/.doctrees/python_path.doctree differ diff --git a/dev/.doctrees/qinit_defaults.doctree b/dev/.doctrees/qinit_defaults.doctree index 269f7da07..a0bbad603 100644 Binary files a/dev/.doctrees/qinit_defaults.doctree and b/dev/.doctrees/qinit_defaults.doctree differ diff --git a/dev/.doctrees/quick_surge.doctree b/dev/.doctrees/quick_surge.doctree index 1d33c63a6..658720bff 100644 Binary files a/dev/.doctrees/quick_surge.doctree and b/dev/.doctrees/quick_surge.doctree differ diff --git a/dev/.doctrees/quick_tsunami.doctree b/dev/.doctrees/quick_tsunami.doctree index 72150104a..0122729b8 100644 Binary files a/dev/.doctrees/quick_tsunami.doctree and b/dev/.doctrees/quick_tsunami.doctree differ diff --git a/dev/.doctrees/refinement.doctree b/dev/.doctrees/refinement.doctree index 1e1c43b87..1a6a83c1a 100644 Binary files a/dev/.doctrees/refinement.doctree and b/dev/.doctrees/refinement.doctree differ diff --git a/dev/.doctrees/regression.doctree b/dev/.doctrees/regression.doctree index 43a57b908..fc2a2a735 100644 Binary files a/dev/.doctrees/regression.doctree and b/dev/.doctrees/regression.doctree differ diff --git a/dev/.doctrees/release_5_0_0.doctree b/dev/.doctrees/release_5_0_0.doctree index 57050c897..0bdcb5e40 100644 Binary files a/dev/.doctrees/release_5_0_0.doctree and b/dev/.doctrees/release_5_0_0.doctree differ diff --git a/dev/.doctrees/release_5_1_0.doctree b/dev/.doctrees/release_5_1_0.doctree index d969a32ca..2b0ab1643 100644 Binary files a/dev/.doctrees/release_5_1_0.doctree and b/dev/.doctrees/release_5_1_0.doctree differ diff --git a/dev/.doctrees/release_5_2_0.doctree b/dev/.doctrees/release_5_2_0.doctree index e7c16346b..15a17e798 100644 Binary files a/dev/.doctrees/release_5_2_0.doctree and b/dev/.doctrees/release_5_2_0.doctree differ diff --git a/dev/.doctrees/release_5_2_1.doctree b/dev/.doctrees/release_5_2_1.doctree index dd582894d..5dbdc45e4 100644 Binary files a/dev/.doctrees/release_5_2_1.doctree and b/dev/.doctrees/release_5_2_1.doctree differ diff --git a/dev/.doctrees/release_5_2_2.doctree b/dev/.doctrees/release_5_2_2.doctree index ef8078506..187dc2cc3 100644 Binary files a/dev/.doctrees/release_5_2_2.doctree and b/dev/.doctrees/release_5_2_2.doctree differ diff --git a/dev/.doctrees/release_5_3_0.doctree b/dev/.doctrees/release_5_3_0.doctree index 4fd1b4084..569df89b0 100644 Binary files a/dev/.doctrees/release_5_3_0.doctree and b/dev/.doctrees/release_5_3_0.doctree differ diff --git a/dev/.doctrees/release_5_3_1.doctree b/dev/.doctrees/release_5_3_1.doctree index d03b2d5e8..d3e57d7b6 100644 Binary files a/dev/.doctrees/release_5_3_1.doctree and b/dev/.doctrees/release_5_3_1.doctree differ diff --git a/dev/.doctrees/release_5_4_0.doctree b/dev/.doctrees/release_5_4_0.doctree index d67820511..94df86f14 100644 Binary files a/dev/.doctrees/release_5_4_0.doctree and b/dev/.doctrees/release_5_4_0.doctree differ diff --git a/dev/.doctrees/release_5_4_1.doctree b/dev/.doctrees/release_5_4_1.doctree index 0d3f82c23..981c26ae8 100644 Binary files a/dev/.doctrees/release_5_4_1.doctree and b/dev/.doctrees/release_5_4_1.doctree differ diff --git a/dev/.doctrees/release_5_5_0.doctree b/dev/.doctrees/release_5_5_0.doctree index 89efb473d..2188d511d 100644 Binary files a/dev/.doctrees/release_5_5_0.doctree and b/dev/.doctrees/release_5_5_0.doctree differ diff --git a/dev/.doctrees/release_5_6_0.doctree b/dev/.doctrees/release_5_6_0.doctree index 1c8a2160c..687196c34 100644 Binary files a/dev/.doctrees/release_5_6_0.doctree and b/dev/.doctrees/release_5_6_0.doctree differ diff --git a/dev/.doctrees/release_5_6_1.doctree b/dev/.doctrees/release_5_6_1.doctree index 32419594c..6c761095d 100644 Binary files a/dev/.doctrees/release_5_6_1.doctree and b/dev/.doctrees/release_5_6_1.doctree differ diff --git a/dev/.doctrees/release_5_7_0.doctree b/dev/.doctrees/release_5_7_0.doctree index c5568b273..d6bd05e16 100644 Binary files a/dev/.doctrees/release_5_7_0.doctree and b/dev/.doctrees/release_5_7_0.doctree differ diff --git a/dev/.doctrees/release_5_7_1.doctree b/dev/.doctrees/release_5_7_1.doctree index 19af19226..4e4555c2f 100644 Binary files a/dev/.doctrees/release_5_7_1.doctree and b/dev/.doctrees/release_5_7_1.doctree differ diff --git a/dev/.doctrees/release_5_8_0.doctree b/dev/.doctrees/release_5_8_0.doctree index 1fa4d17e4..44cb9801d 100644 Binary files a/dev/.doctrees/release_5_8_0.doctree and b/dev/.doctrees/release_5_8_0.doctree differ diff --git a/dev/.doctrees/release_5_8_1.doctree b/dev/.doctrees/release_5_8_1.doctree index fcefc17dd..e3bdb7386 100644 Binary files a/dev/.doctrees/release_5_8_1.doctree and b/dev/.doctrees/release_5_8_1.doctree differ diff --git a/dev/.doctrees/release_5_8_2.doctree b/dev/.doctrees/release_5_8_2.doctree index bce98b0cf..a5e654804 100644 Binary files a/dev/.doctrees/release_5_8_2.doctree and b/dev/.doctrees/release_5_8_2.doctree differ diff --git a/dev/.doctrees/releases.doctree b/dev/.doctrees/releases.doctree index 2111bc4db..aa5ca29c0 100644 Binary files a/dev/.doctrees/releases.doctree and b/dev/.doctrees/releases.doctree differ diff --git a/dev/.doctrees/restart.doctree b/dev/.doctrees/restart.doctree index cb5b8cfd5..b16a5b185 100644 Binary files a/dev/.doctrees/restart.doctree and b/dev/.doctrees/restart.doctree differ diff --git a/dev/.doctrees/riemann.doctree b/dev/.doctrees/riemann.doctree index 85629f87d..212147305 100644 Binary files a/dev/.doctrees/riemann.doctree and b/dev/.doctrees/riemann.doctree differ diff --git a/dev/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree b/dev/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree index 8542c01f4..6e6fc304e 100644 Binary files a/dev/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree and b/dev/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree differ diff --git a/dev/.doctrees/ruled_rectangles.doctree b/dev/.doctrees/ruled_rectangles.doctree index 61ec1ebd0..ed218b592 100644 Binary files a/dev/.doctrees/ruled_rectangles.doctree and b/dev/.doctrees/ruled_rectangles.doctree differ diff --git a/dev/.doctrees/sealevel.doctree b/dev/.doctrees/sealevel.doctree index 4c0aa8459..e7c73b29a 100644 Binary files a/dev/.doctrees/sealevel.doctree and b/dev/.doctrees/sealevel.doctree differ diff --git a/dev/.doctrees/set_eta_init.doctree b/dev/.doctrees/set_eta_init.doctree index da1ef3a80..9d928c01c 100644 Binary files a/dev/.doctrees/set_eta_init.doctree and b/dev/.doctrees/set_eta_init.doctree differ diff --git a/dev/.doctrees/setaux_defaults.doctree b/dev/.doctrees/setaux_defaults.doctree index 958b2bb95..66a54b854 100644 Binary files a/dev/.doctrees/setaux_defaults.doctree and b/dev/.doctrees/setaux_defaults.doctree differ diff --git a/dev/.doctrees/setenv.doctree b/dev/.doctrees/setenv.doctree index 2e09a7ca2..dfa67f0c6 100644 Binary files a/dev/.doctrees/setenv.doctree and b/dev/.doctrees/setenv.doctree differ diff --git a/dev/.doctrees/setplot.doctree b/dev/.doctrees/setplot.doctree index 432f6d77c..a0d68507b 100644 Binary files a/dev/.doctrees/setplot.doctree and b/dev/.doctrees/setplot.doctree differ diff --git a/dev/.doctrees/setrun.doctree b/dev/.doctrees/setrun.doctree index f5df42181..bb6658b43 100644 Binary files a/dev/.doctrees/setrun.doctree and b/dev/.doctrees/setrun.doctree differ diff --git a/dev/.doctrees/setrun_amrclaw.doctree b/dev/.doctrees/setrun_amrclaw.doctree index 3f0212591..523fab8fb 100644 Binary files a/dev/.doctrees/setrun_amrclaw.doctree and b/dev/.doctrees/setrun_amrclaw.doctree differ diff --git a/dev/.doctrees/setrun_amrclaw_sample.doctree b/dev/.doctrees/setrun_amrclaw_sample.doctree index 4ae077f54..bbcc03a13 100644 Binary files a/dev/.doctrees/setrun_amrclaw_sample.doctree and b/dev/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/dev/.doctrees/setrun_geoclaw.doctree b/dev/.doctrees/setrun_geoclaw.doctree index 3cc735d95..95a5f32e0 100644 Binary files a/dev/.doctrees/setrun_geoclaw.doctree and b/dev/.doctrees/setrun_geoclaw.doctree differ diff --git a/dev/.doctrees/setrun_sample.doctree b/dev/.doctrees/setrun_sample.doctree index eda1bf5c6..b2b5a526d 100644 Binary files a/dev/.doctrees/setrun_sample.doctree and b/dev/.doctrees/setrun_sample.doctree differ diff --git a/dev/.doctrees/sharing.doctree b/dev/.doctrees/sharing.doctree index 2a2142eea..dcfb53010 100644 Binary files a/dev/.doctrees/sharing.doctree and b/dev/.doctrees/sharing.doctree differ diff --git a/dev/.doctrees/sphinxdoc.doctree b/dev/.doctrees/sphinxdoc.doctree index 5c37b4db0..d14758e8a 100644 Binary files a/dev/.doctrees/sphinxdoc.doctree and b/dev/.doctrees/sphinxdoc.doctree differ diff --git a/dev/.doctrees/src1d_defaults.doctree b/dev/.doctrees/src1d_defaults.doctree index a6e4f4166..9cc9f9617 100644 Binary files a/dev/.doctrees/src1d_defaults.doctree and b/dev/.doctrees/src1d_defaults.doctree differ diff --git a/dev/.doctrees/src_defaults.doctree b/dev/.doctrees/src_defaults.doctree index 0cb9e65d8..430ccab49 100644 Binary files a/dev/.doctrees/src_defaults.doctree and b/dev/.doctrees/src_defaults.doctree differ diff --git a/dev/.doctrees/storm_module.doctree b/dev/.doctrees/storm_module.doctree index 969853d3e..d1472b5eb 100644 Binary files a/dev/.doctrees/storm_module.doctree and b/dev/.doctrees/storm_module.doctree differ diff --git a/dev/.doctrees/surgedata.doctree b/dev/.doctrees/surgedata.doctree index a4d572d2a..cd6c4a9be 100644 Binary files a/dev/.doctrees/surgedata.doctree and b/dev/.doctrees/surgedata.doctree differ diff --git a/dev/.doctrees/testing.doctree b/dev/.doctrees/testing.doctree index fb1b52141..254b510cd 100644 Binary files a/dev/.doctrees/testing.doctree and b/dev/.doctrees/testing.doctree differ diff --git a/dev/.doctrees/timing.doctree b/dev/.doctrees/timing.doctree index b0fcd6665..4e4c0c77b 100644 Binary files a/dev/.doctrees/timing.doctree and b/dev/.doctrees/timing.doctree differ diff --git a/dev/.doctrees/topo.doctree b/dev/.doctrees/topo.doctree index f6da0ca42..f98d4c494 100644 Binary files a/dev/.doctrees/topo.doctree and b/dev/.doctrees/topo.doctree differ diff --git a/dev/.doctrees/topotools.doctree b/dev/.doctrees/topotools.doctree index 793e472f9..5841a9887 100644 Binary files a/dev/.doctrees/topotools.doctree and b/dev/.doctrees/topotools.doctree differ diff --git a/dev/.doctrees/topotools_module.doctree b/dev/.doctrees/topotools_module.doctree index a96f65a9f..f3134c521 100644 Binary files a/dev/.doctrees/topotools_module.doctree and b/dev/.doctrees/topotools_module.doctree differ diff --git a/dev/.doctrees/trouble.doctree b/dev/.doctrees/trouble.doctree index f419c94fb..fac9e0e42 100644 Binary files a/dev/.doctrees/trouble.doctree and b/dev/.doctrees/trouble.doctree differ diff --git a/dev/.doctrees/tsunamidata.doctree b/dev/.doctrees/tsunamidata.doctree index 06f635084..a044967c3 100644 Binary files a/dev/.doctrees/tsunamidata.doctree and b/dev/.doctrees/tsunamidata.doctree differ diff --git a/dev/.doctrees/user_routines.doctree b/dev/.doctrees/user_routines.doctree index 04c1b72ba..474bdea80 100644 Binary files a/dev/.doctrees/user_routines.doctree and b/dev/.doctrees/user_routines.doctree differ diff --git a/dev/.doctrees/visit_plotting.doctree b/dev/.doctrees/visit_plotting.doctree index 1dbb265e8..7be1ba90c 100644 Binary files a/dev/.doctrees/visit_plotting.doctree and b/dev/.doctrees/visit_plotting.doctree differ diff --git a/dev/.doctrees/vm.doctree b/dev/.doctrees/vm.doctree index 397ad176c..f193e86ca 100644 Binary files a/dev/.doctrees/vm.doctree and b/dev/.doctrees/vm.doctree differ diff --git a/dev/.doctrees/wp_algorithms.doctree b/dev/.doctrees/wp_algorithms.doctree index f6af9e8d0..8d351db3a 100644 Binary files a/dev/.doctrees/wp_algorithms.doctree and b/dev/.doctrees/wp_algorithms.doctree differ diff --git a/dev/_sources/changes_to_master.rst.txt b/dev/_sources/changes_to_master.rst.txt index f6bdab74a..2d016a31d 100644 --- a/dev/_sources/changes_to_master.rst.txt +++ b/dev/_sources/changes_to_master.rst.txt @@ -66,6 +66,15 @@ 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 ``. + +- The `JSAnimation` subdirectory was removed, since we now use + `anim.to_jshtml` instead. See `visclaw diffs `_ @@ -73,6 +82,7 @@ See `visclaw diffs Changes to riemann ------------------ +- None. See `riemann diffs `_ @@ -80,7 +90,8 @@ See `riemann diffs Changes to amrclaw ------------------ -- Support for `output_format='binary32'` added. +- Support for `output_format='binary32'` added for both output frames and + gauges. See `amrclaw diffs `_ @@ -88,7 +99,8 @@ See `amrclaw diffs 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 @@ -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 `_ 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 -`_. +- 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 -`_ +- 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 `_ + +For older changes in PyClaw, see also the `PyClaw changelog +`_. =========================== Other Clawpack Repositories diff --git a/dev/_sources/releases.rst.txt b/dev/_sources/releases.rst.txt index 02beb9205..e218ba022 100644 --- a/dev/_sources/releases.rst.txt +++ b/dev/_sources/releases.rst.txt @@ -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 `_. +* For older changes in PyClaw, see the `PyClaw changelog `_. + 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. diff --git a/dev/changes_to_master.html b/dev/changes_to_master.html index fa5485be8..d7ee92fd9 100644 --- a/dev/changes_to_master.html +++ b/dev/changes_to_master.html @@ -125,24 +125,36 @@

    Changes to clawutil

    • 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

    Changes to riemann

    +
      +
    • None.

    • +

    See riemann diffs

    Changes to amrclaw

      -
    • Support for output_format=’binary32’ added.

    • +
    • Support for output_format=’binary32’ added for both output frames and +gauges.

    See amrclaw diffs

    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 Fixed grid output. This allows specifying one or more fixed resolution rectangular grids on which the AMR solution will be interpolated (in both space and time) @@ -153,13 +165,28 @@

      Changes to geoclawFixed grid monitoring) 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

    Changes to PyClaw

    -

    For changes in PyClaw, see the PyClaw changelog.

    +
      +
    • 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).

    • +
    • 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’.

    • +
    • 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

    +

    For older changes in PyClaw, see also the PyClaw changelog.

    diff --git a/dev/genindex.html b/dev/genindex.html index 128341026..4a49ec5ff 100644 --- a/dev/genindex.html +++ b/dev/genindex.html @@ -109,6 +109,8 @@

    A

    - +
    @@ -214,19 +220,29 @@

    C

  • clawpack.geoclaw.surge.storm (module)
  • - - + - - +
  • step_hyperbolic() (clawpack.pyclaw.classic.solver.ClawSolver method)
  • -
  • step_source (clawpack.pyclaw.classic.solver.ClawSolver attribute) +
  • step_source (clawpack.petclaw.geometry.Domain attribute) + +
  • Storm (class in clawpack.geoclaw.surge.storm)
  • strike (clawpack.geoclaw.dtopotools.SubFault attribute) @@ -1020,10 +1080,10 @@

    T

  • tfluct_solver (clawpack.pyclaw.sharpclaw.solver.SharpClawSolver attribute)
  • - - + @@ -1066,8 +1128,12 @@

    V

  • van_leer_klein_sharpening_limiter() (in module clawpack.pyclaw.limiters.tvd)
  • -
  • verbosity (clawpack.pyclaw.classic.solver.ClawSolver attribute) +
  • verbosity (clawpack.petclaw.geometry.Domain attribute) + +
    • verbosity() (clawpack.pyclaw.controller.Controller property) diff --git a/dev/geoclaw_util_module.html b/dev/geoclaw_util_module.html index 77e2cee3d..4a682eb33 100644 --- a/dev/geoclaw_util_module.html +++ b/dev/geoclaw_util_module.html @@ -112,7 +112,7 @@

      Navigation

      Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

      -

      System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

      +

      System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

      Unexpected indentation.

      diff --git a/dev/kmltools_module.html b/dev/kmltools_module.html index e72ef2586..bc7e6b0fa 100644 --- a/dev/kmltools_module.html +++ b/dev/kmltools_module.html @@ -110,6 +110,7 @@

      Navigation

    • topo2kml - create a kml outline for each topo grid specified in setrun

    • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

    • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

    • +
    • fgout2kml - create a kml outline for each fgout grid specified in setrun

    • make_input_data_kmls - make kml files for many things specified in setrun

    • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

    • png2kml - create kml file wrapping a png figure to be viewed on GE

    • @@ -189,6 +190,28 @@

      Navigation

      +
      +
      +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
      +

      Create a KML box for each fgout grid specified for a GeoClaw run.

      +
      +
      Inputs
      +
        +
      • rundata - an object of class ClawRunData or None

        +

        If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

        +
      • +
      • fname (str) - resulting kml file.

      • +
      • verbose (bool) - If True, print out info about each region found

      • +
      • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

      • +
      +
      +
      +
      +
      clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
      @@ -336,7 +359,7 @@

      Navigation

      Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

      -

      System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

      +

      System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

      Unexpected indentation.

      @@ -344,7 +367,7 @@

      Navigation

      dpi * y_inches = dcp * y_cells

    -

    System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

    +

    System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

    Block quote ends without a blank line; unexpected unindent.

    where x_cells, y_cells are the number of cells in each direction.

    @@ -354,14 +377,14 @@

    Navigation

    annotate the figure befor saving it as a png file, which should then be done with:

    -

    System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

    +

    System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

    Unexpected indentation.

    plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

    -

    System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

    +

    System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

    Block quote ends without a blank line; unexpected unindent.

    The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

    Navigation

    -

    System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

    +

    System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

    Field list ends without a blank line; unexpected unindent.

    If force_dry is an array of the same shape as topo.Z then another png diff --git a/dev/objects.inv b/dev/objects.inv index 735479d3c..fd33e8e14 100644 Binary files a/dev/objects.inv and b/dev/objects.inv differ diff --git a/dev/py-modindex.html b/dev/py-modindex.html index befab106b..51b1b1044 100644 --- a/dev/py-modindex.html +++ b/dev/py-modindex.html @@ -148,6 +148,31 @@

    Python Module Index

        clawpack.pyclaw.util + + +     + clawpack.riemann.acoustics_1D_py + + + +     + clawpack.riemann.advection_1D_py + + + +     + clawpack.riemann.burgers_1D_py + + + +     + clawpack.riemann.euler_1D_py + + + +     + clawpack.riemann.shallow_1D_py + diff --git a/dev/pyclaw/geometry.html b/dev/pyclaw/geometry.html index b26976d3f..f172ff7c6 100644 --- a/dev/pyclaw/geometry.html +++ b/dev/pyclaw/geometry.html @@ -620,6 +620,103 @@

    Parallel Geometry Objects

    petclaw.geometry.Domain

    +
    +
    +class clawpack.petclaw.geometry.Domain(geom)
    +

    Bases: clawpack.pyclaw.geometry.Domain

    +

    Parallel Domain Class

    +

    Parent Class Documentation:

    +

    2D Classic (Clawpack) solver.

    +

    Solve using the wave propagation algorithms of Randy LeVeque’s +Clawpack code (www.clawpack.org).

    +

    In addition to the attributes of ClawSolver1D, ClawSolver2D +also has the following options:

    +
    +
    +dimensional_split
    +

    If True, use dimensional splitting (Godunov splitting). +Dimensional splitting with Strang splitting is not supported +at present but could easily be enabled if necessary. +If False, use unsplit Clawpack algorithms, possibly including +transverse Riemann solves.

    +
    + +
    +
    +transverse_waves
    +

    If dimensional_split is True, this option has no effect. If +dimensional_split is False, then transverse_waves should be one of +the following values:

    +

    ClawSolver2D.no_trans: Transverse Riemann solver +not used. The stable CFL for this algorithm is 0.5. Not recommended.

    +

    ClawSolver2D.trans_inc: Transverse increment waves are computed +and propagated.

    +

    ClawSolver2D.trans_cor: Transverse increment waves and transverse +correction waves are computed and propagated.

    +
    + +

    Note that only the fortran routines are supported for now in 2D.

    +

    Parent Class Documentation:

    +

    Generic classic Clawpack solver

    +

    All Clawpack solvers inherit from this base class.

    +
    +
    +mthlim
    +

    Limiter(s) to be used. Specified either as one value or a list. +If one value, the specified limiter is used for all wave families. +If a list, the specified values indicate which limiter to apply to +each wave family. Take a look at pyclaw.limiters.tvd for an enumeration. +Default = limiters.tvd.minmod

    +
    + +
    +
    +order
    +

    Order of the solver, either 1 for first order (i.e., Godunov’s method) +or 2 for second order (Lax-Wendroff-LeVeque). +Default = 2

    +
    + +
    +
    +source_split
    +

    Which source splitting method to use: 1 for first +order Godunov splitting and 2 for second order Strang splitting. +Default = 1

    +
    + +
    +
    +fwave
    +

    Whether to split the flux jump (rather than the jump in Q) into waves; +requires that the Riemann solver performs the splitting. +Default = False

    +
    + +
    +
    +step_source
    +

    Handle for function that evaluates the source term. +The required signature for this function is:

    +

    def step_source(solver,state,dt)

    +
    + +
    +
    +kernel_language
    +

    Specifies whether to use wrapped Fortran routines (‘Fortran’) +or pure Python (‘Python’). Default = 'Fortran'.

    +
    + +
    +
    +verbosity
    +

    The level of detail of logged messages from the Fortran solver. +Default = 0.

    +
    + +
    +

    petclaw.geometry.Patch

    diff --git a/dev/pyclaw/rp.html b/dev/pyclaw/rp.html index b196f8274..c1818cd60 100644 --- a/dev/pyclaw/rp.html +++ b/dev/pyclaw/rp.html @@ -163,18 +163,328 @@

    Navigation

    Acoustics

    +

    Riemann solvers for constant coefficient acoustics.

    +
    +\[q_t + A q_x = 0\]
    +

    where

    +
    +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
    +

    and the coefficient matrix is

    +
    +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
    +

    The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

    +
    +
    Authors
    +

    Kyle T. Mandli (2009-02-03): Initial version

    +
    +
    +
    +
    +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Basic 1d acoustics riemann solver, with interleaved arrays

    +
    +
    problem_data is expected to contain -
      +
    • zz - (float) Impedence

    • +
    • cc - (float) Speed of sound

    • +
    +
    +
    +

    See Riemann Solver Package for more details.

    +
    +
    Version
    +

    1.0 (2009-02-03)

    +
    +
    +
    +

    Advection

    +

    Simple advection Riemann solvers

    +

    Basic advection Riemann solvers of the form (1d)

    +
    +\[q_t + A q_x = 0.\]
    +
    +
    Authors
    +

    Kyle T. Mandli (2008-2-20): Initial version

    +
    +
    +
    +
    +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Basic 1d advection riemann solver

    +
    +
    problem_data should contain -
      +
    • u - (float) Determines advection speed

    • +
    +
    +
    +

    See Riemann Solver Package for more details.

    +
    +
    Version
    +

    1.0 (2008-2-20)

    +
    +
    +
    +

    Burgers Equation

    +

    Riemann solvers for Burgers equation

    +
    +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
    +
    +
    Authors
    +

    Kyle T. Mandli (2009-2-4): Initial version

    +
    +
    +
    +
    +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Riemann solver for Burgers equation in 1d

    +
    +
    problem_data should contain -
      +
    • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

    • +
    +
    +
    +

    See Riemann Solver Package for more details.

    +
    +
    Version
    +

    1.0 (2009-2-4)

    +
    +
    +
    +

    Euler Equations

    +

    Riemann solvers for the Euler equations

    +

    This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

    +
    +\[q_t + f(q)_x = 0\]
    +

    where

    +
    +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
    +

    the flux function is

    +
    +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
    +

    and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

    +

    Unless otherwise noted, the ideal gas equation of state is used:

    +
    +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
    +
    +
    +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Exact euler Riemann solver

    +
    +

    Warning

    +

    This solver has not been implemented.

    +
    +
    + +
    +
    +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    HLL euler solver

    +
    W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
    +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
    +
    +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
    +
    +
    +
    +
    problem_data should contain:
      +
    • gamma - (float) Ratio of the heat capacities

    • +
    • gamma1 - (float) \(1 - \gamma\)

    • +
    +
    +
    +
    +
    Version
    +

    1.0 (2014-03-04)

    +
    +
    +
    + +
    +
    +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    HLLC Euler solver

    +
    W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
    +W_2 = q_hat_r - q_hat_l  s_2 = s_m
    +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
    +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
    +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
    +
    +
    +

    left middle state:

    +
    q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
    +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
    +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
    +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
    +
    +
    +

    right middle state:

    +
    q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
    +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
    +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
    +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
    +
    +
    +

    problem_data should contain:

    +
    +
      +
    • gamma: (float) Ratio of specific heat capacities

    • +
    • gamma1: (float) \(\gamma - 1\)

    • +
    +
    +

    :Version 1.0 (2015-11-18)

    +
    + +
    +
    +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Roe Euler solver in 1d

    +
    +
    aug_global should contain -
      +
    • gamma - (float) Ratio of the heat capacities

    • +
    • gamma1 - (float) \(1 - \gamma\)

    • +
    • efix - (bool) Whether to use an entropy fix or not

    • +
    +
    +
    +

    See Riemann Solver Package for more details.

    +
    +
    Version
    +

    1.0 (2009-6-26)

    +
    +
    +
    +

    Shallow Water Equations

    +

    Riemann solvers for the shallow water equations.

    +
    +
    The available solvers are:
      +
    • Roe - Use Roe averages to caluclate the solution to the Riemann problem

    • +
    • HLL - Use a HLL solver

    • +
    • +
      Exact - Use a newton iteration to calculate the exact solution to the

      Riemann problem

      +
      +
      +
    • +
    +
    +
    +
    +\[q_t + f(q)_x = 0\]
    +

    where

    +
    +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
    +

    the flux function is

    +
    +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
    +

    and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

    +
    +
    +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Exact shallow water Riemann solver

    +
    +

    Warning

    +

    This solver has not been implemented.

    +
    +
    + +
    +
    +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Shallow water Riemann solver using fwaves

    +

    Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

    +
    +
    problem_data should contain:
      +
    • grav - (float) Gravitational constant

    • +
    • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

    • +
    • sea_level - (float) Datum from which the dry-state is calculated.

    • +
    +
    +
    +
    +
    Version
    +

    1.0 (2014-09-05)

    +
    +
    Version
    +

    2.0 (2017-03-07)

    +
    +
    +
    + +
    +
    +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    HLL shallow water solver

    +
    W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
    +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
    +
    +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
    +
    +
    +
    +
    problem_data should contain:
      +
    • g - (float) Gravitational constant

    • +
    +
    +
    +
    +
    Version
    +

    1.0 (2009-02-05)

    +
    +
    +
    + +
    +
    +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
    +

    Roe shallow water solver in 1d:

    +
    ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
    +cbar = sqrt( 0.5 * g * (h_l + h_r))
    +
    +W_1 = |      1      |  s_1 = ubar - cbar
    +      | ubar - cbar |
    +
    +W_2 = |      1      |  s_1 = ubar + cbar
    +      | ubar + cbar |
    +
    +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
    +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
    +
    +
    +
    +
    problem_data should contain:
      +
    • g - (float) Gravitational constant

    • +
    • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

    • +
    +
    +
    +
    +
    Version
    +

    1.0 (2009-02-05)

    +
    +
    +
    +
    diff --git a/dev/releases.html b/dev/releases.html index 2c98355d2..81d66d96c 100644 --- a/dev/releases.html +++ b/dev/releases.html @@ -91,7 +91,9 @@

    Other notes:
  • Please see Citing this work for the suggested way to cite the version of Clawpack that you are using in publications.

  • -
  • For changes in PyClaw, see the PyClaw changelog.

  • +
  • For older changes in PyClaw, see the PyClaw changelog. +Starting with v5.9.0, changes will be recorded in the release notes along +with those for other repositories.

  • See Changes to master since v5.8.2 for changes to the master branch on Github that are not in the most recent release.

  • The “dev” branch of the diff --git a/dev/searchindex.js b/dev/searchindex.js index 362daf4c5..712f2f5fb 100644 --- a/dev/searchindex.js +++ b/dev/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","fgout_tools_module","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","nearshore_interp","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","fgout_tools_module.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","nearshore_interp.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],fgout_tools:[35,1,0,"-"],kmltools:[60,1,0,"-"],topotools:[156,1,0,"-"],util:[48,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.fgout_tools":{FGoutFrame:[35,0,1,""],FGoutGrid:[35,0,1,""],get_as_array:[35,3,1,""],make_fgout_fcn_xy:[35,3,1,""],make_fgout_fcn_xyt:[35,3,1,""],print_netcdf_info:[35,3,1,""],read_netcdf:[35,3,1,""],read_netcdf_arrays:[35,3,1,""],write_netcdf:[35,3,1,""]},"clawpack.geoclaw.fgout_tools.FGoutFrame":{B:[35,2,1,""],eta:[35,2,1,""],h:[35,2,1,""],hss:[35,2,1,""],hu:[35,2,1,""],hv:[35,2,1,""],s:[35,2,1,""],u:[35,2,1,""],v:[35,2,1,""]},"clawpack.geoclaw.fgout_tools.FGoutGrid":{X:[35,2,1,""],Y:[35,2,1,""],extent_centers:[35,2,1,""],extent_edges:[35,2,1,""],read_fgout_grids_data:[35,2,1,""],read_frame:[35,2,1,""],set_plotdata:[35,2,1,""],write_to_fgout_data:[35,2,1,""],x:[35,2,1,""],y:[35,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[60,3,1,""],deg2dms:[60,3,1,""],dtopo2kml:[60,3,1,""],f2s:[60,3,1,""],fgmax2kml:[60,3,1,""],gauges2kml:[60,3,1,""],kml_build_colorbar:[60,3,1,""],kml_cb:[60,3,1,""],kml_png:[60,3,1,""],kml_timespan:[60,3,1,""],line2kml:[60,3,1,""],make_input_data_kmls:[60,3,1,""],pcolorcells_for_kml:[60,3,1,""],png2kml:[60,3,1,""],poly2kml:[60,3,1,""],quad2kml:[60,3,1,""],regions2kml:[60,3,1,""],topo2kml:[60,3,1,""],topo2kmz:[60,3,1,""]},"clawpack.geoclaw.surge":{storm:[150,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[150,5,1,""],Storm:[150,0,1,""],available_formats:[150,3,1,""],available_models:[150,3,1,""],fill_rad_w_other_source:[150,3,1,""],make_multi_structure:[150,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[150,2,1,""],plot:[150,2,1,""],read:[150,2,1,""],read_atcf:[150,2,1,""],read_geoclaw:[150,2,1,""],read_hurdat:[150,2,1,""],read_ibtracs:[150,2,1,""],read_imd:[150,2,1,""],read_jma:[150,2,1,""],read_tcvitals:[150,2,1,""],write:[150,2,1,""],write_atcf:[150,2,1,""],write_geoclaw:[150,2,1,""],write_hurdat:[150,2,1,""],write_imd:[150,2,1,""],write_jma:[150,2,1,""],write_tcvitals:[150,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[156,0,1,""],create_topo_func:[156,3,1,""],determine_topo_type:[156,3,1,""],fetch_topo_url:[156,3,1,""],get_topo:[156,3,1,""],read_netcdf:[156,3,1,""],swapheader:[156,3,1,""],topo1writer:[156,3,1,""],topo2writer:[156,3,1,""],topo3writer:[156,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[156,2,1,""],Y:[156,2,1,""],Z:[156,2,1,""],crop:[156,2,1,""],delta:[156,2,1,""],extent:[156,2,1,""],generate_2d_coordinates:[156,2,1,""],generate_2d_topo:[156,2,1,""],in_poly:[156,2,1,""],interp_unstructured:[156,2,1,""],make_shoreline_xy:[156,2,1,""],plot:[156,2,1,""],read:[156,2,1,""],read_header:[156,2,1,""],replace_no_data_values:[156,2,1,""],replace_values:[156,2,1,""],set_xyZ:[156,2,1,""],smooth_data:[156,2,1,""],write:[156,2,1,""],x:[156,2,1,""],y:[156,2,1,""],z:[156,2,1,""]},"clawpack.geoclaw.util":{bearing:[48,3,1,""],dist_latlong2meters:[48,3,1,""],dist_meters2latlong:[48,3,1,""],dms2decimal:[48,3,1,""],fetch_noaa_tide_data:[48,3,1,""],haversine:[48,3,1,""],inv_haversine:[48,3,1,""]},"clawpack.petclaw.geometry":{Patch:[91,0,1,""]},"clawpack.petclaw.state":{State:[103,0,1,""]},"clawpack.petclaw.state.State":{F:[103,2,1,""],aux:[103,2,1,""],fset:[103,2,1,""],gauge_data:[103,4,1,""],get_aux_global:[103,2,1,""],get_auxbc_from_aux:[103,2,1,""],get_q_global:[103,2,1,""],get_qbc_from_q:[103,2,1,""],keep_gauges:[103,4,1,""],mF:[103,2,1,""],mp:[103,2,1,""],num_aux:[103,2,1,""],num_eqn:[103,2,1,""],p:[103,2,1,""],problem_data:[103,4,1,""],q:[103,2,1,""],set_num_ghost:[103,2,1,""],t:[103,4,1,""]},"clawpack.pyclaw":{util:[106,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[101,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[101,4,1,""],kernel_language:[101,4,1,""],mthlim:[101,4,1,""],order:[101,4,1,""],setup:[101,2,1,""],source_split:[101,4,1,""],step:[101,2,1,""],step_hyperbolic:[101,2,1,""],step_source:[101,4,1,""],verbosity:[101,4,1,""]},"clawpack.pyclaw.controller":{Controller:[88,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[88,4,1,""],F_path:[88,2,1,""],check_validity:[88,2,1,""],compute_F:[88,4,1,""],compute_p:[88,4,1,""],file_prefix_p:[88,4,1,""],frames:[88,4,1,""],keep_copy:[88,4,1,""],nstepout:[88,4,1,""],num_output_times:[88,4,1,""],out_times:[88,4,1,""],outdir:[88,4,1,""],outdir_p:[88,2,1,""],output_file_prefix:[88,4,1,""],output_format:[88,4,1,""],output_options:[88,4,1,""],output_style:[88,4,1,""],overwrite:[88,4,1,""],plot:[88,2,1,""],plotdata:[88,4,1,""],run:[88,2,1,""],rundir:[88,4,1,""],runmake:[88,4,1,""],savecode:[88,4,1,""],solver:[88,4,1,""],tfinal:[88,4,1,""],verbosity:[88,2,1,""],viewable_attributes:[88,4,1,""],write_aux_always:[88,4,1,""],write_aux_init:[88,4,1,""],xclawcmd:[88,4,1,""],xclawerr:[88,4,1,""],xclawout:[88,4,1,""],xdir:[88,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[94,1,0,"-"],netcdf:[94,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[94,3,1,""],read_array:[94,3,1,""],read_patch_header:[94,3,1,""],read_t:[94,3,1,""],write:[94,3,1,""],write_array:[94,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[94,3,1,""],write:[94,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[91,0,1,""],Domain:[91,0,1,""],Grid:[91,0,1,""],Patch:[91,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[91,2,1,""],centers_with_ghost:[91,2,1,""],delta:[91,2,1,""],nodes:[91,2,1,""],nodes_with_ghost:[91,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[91,2,1,""],num_dim:[91,2,1,""],patch:[91,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[91,2,1,""],add_gauges:[91,2,1,""],c_center:[91,2,1,""],c_centers:[91,2,1,""],c_centers_with_ghost:[91,2,1,""],c_nodes:[91,2,1,""],c_nodes_with_ghost:[91,2,1,""],dimensions:[91,2,1,""],gauge_dir_name:[91,4,1,""],gauge_file_names:[91,4,1,""],gauge_files:[91,4,1,""],gauges:[91,4,1,""],get_dim_attribute:[91,2,1,""],num_dim:[91,2,1,""],p_center:[91,2,1,""],p_centers:[91,2,1,""],p_nodes:[91,2,1,""],plot:[91,2,1,""],setup_gauge_files:[91,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[91,2,1,""],delta:[91,2,1,""],dimensions:[91,2,1,""],get_dim_attribute:[91,2,1,""],level:[91,4,1,""],lower_global:[91,2,1,""],name:[91,2,1,""],num_cells_global:[91,2,1,""],num_dim:[91,2,1,""],patch_index:[91,4,1,""],upper_global:[91,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[89,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[89,3,1,""],beta_limiter:[89,3,1,""],cada_torrilhon_limiter:[89,3,1,""],cada_torrilhon_limiter_nonlinear:[89,3,1,""],cfl_superbee:[89,3,1,""],cfl_superbee_theta:[89,3,1,""],hyperbee_limiter:[89,3,1,""],limit:[89,3,1,""],mc_limiter:[89,3,1,""],minmod_limiter:[89,3,1,""],superbee_limiter:[89,3,1,""],superpower_limiter:[89,3,1,""],theta_limiter:[89,3,1,""],upper_bound_limiter:[89,3,1,""],van_leer_klein_sharpening_limiter:[89,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[101,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[101,2,1,""],aux_time_dep:[101,4,1,""],call_before_step_each_stage:[101,4,1,""],cfl_desired:[101,4,1,""],cfl_max:[101,4,1,""],char_decomp:[101,4,1,""],check_3rd_ord_cond:[101,2,1,""],dq:[101,2,1,""],dq_src:[101,4,1,""],dqdt:[101,2,1,""],fwave:[101,4,1,""],get_dt_new:[101,2,1,""],kernel_language:[101,4,1,""],lim_type:[101,4,1,""],num_ghost:[101,4,1,""],setup:[101,2,1,""],step:[101,2,1,""],tfluct:[101,4,1,""],tfluct_solver:[101,4,1,""],time_integrator:[101,4,1,""],update_saved_values:[101,2,1,""],weno_order:[101,4,1,""]},"clawpack.pyclaw.solution":{Solution:[100,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[100,2,1,""],patch:[100,2,1,""],plot:[100,2,1,""],read:[100,2,1,""],set_all_states:[100,2,1,""],start_frame:[100,2,1,""],state:[100,2,1,""],write:[100,2,1,""]},"clawpack.pyclaw.state":{State:[103,0,1,""]},"clawpack.pyclaw.state.State":{F:[103,4,1,""],gauge_data:[103,4,1,""],get_aux_global:[103,2,1,""],get_auxbc_from_aux:[103,2,1,""],get_q_global:[103,2,1,""],get_qbc_from_q:[103,2,1,""],is_valid:[103,2,1,""],keep_gauges:[103,4,1,""],mF:[103,2,1,""],mp:[103,2,1,""],num_aux:[103,2,1,""],num_eqn:[103,2,1,""],p:[103,4,1,""],problem_data:[103,4,1,""],set_aux_from_auxbc:[103,2,1,""],set_cparam:[103,2,1,""],set_num_ghost:[103,2,1,""],set_q_from_qbc:[103,2,1,""],t:[103,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[106,0,1,""],VerifyError:[106,5,1,""],add_parent_doc:[106,3,1,""],check_diff:[106,3,1,""],compile_library:[106,3,1,""],construct_function_handle:[106,3,1,""],convert_fort_double_to_float:[106,3,1,""],gen_variants:[106,3,1,""],read_data_line:[106,3,1,""],run_app_from_main:[106,3,1,""],run_serialized:[106,3,1,""],test_app:[106,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[106,2,1,""],increment:[106,2,1,""],reset_counter:[106,2,1,""],set_counter:[106,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":74,"000000e":143,"00000e":143,"0000ff":[3,60],"001000e":143,"00er2592":4,"00ff00":60,"00ffff":60,"01er25474":4,"020204mag_polici":30,"04d":160,"0_dockerimag":29,"0_geoclaw":29,"0d0":106,"10k":123,"1200x1680":52,"1440l":52,"1440p":52,"15e":156,"16m":73,"17th":101,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[45,79,81,140],"1drad":159,"1e6":67,"1e9":[32,39,61],"1rc":56,"1st":[89,101,141,143,145,159],"2013it":17,"2018300n26315":150,"2019ms001635":53,"224599074275750e":40,"25000000e":74,"259259000800000e":40,"260e":153,"27t06":60,"27t07":60,"288e":153,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[45,52],"2d_schlieren":3,"2nd":[93,98,101,141,143,145,159],"301e":153,"30x30":52,"34kt":150,"360x360":52,"373e":153,"3rd":[98,101,134],"3x3":40,"40000000e":74,"4th":101,"50kt":150,"5_x_x":56,"5d0":159,"5e3":144,"5r01ar53652":4,"639s":[37,152],"64kt":150,"793009258334999e":40,"8888ff":60,"88er25053":4,"8x6":52,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":52,"boolean":[3,52,67,94,141,142,144],"break":[28,30,49,52,60,72,113,120,137,144,156],"byte":35,"case":[5,6,8,13,16,19,22,30,32,34,39,42,45,46,49,52,59,60,64,67,68,69,72,79,85,91,94,96,98,100,106,108,112,113,116,119,120,121,122,123,128,132,135,136,142,144,150,154,156,157,159,162],"catch":[41,93],"class":[0,1,2,3,5,25,30,32,33,34,35,39,52,60,72,79,81,86,91,93,98,100,101,103,105,106,107,124,126,132,135,140,141,142,143,144,145,156],"const":32,"default":[0,1,2,3,13,18,22,28,30,32,34,35,42,45,46,48,50,51,52,54,59,60,61,63,64,68,69,72,73,79,81,85,88,90,91,94,95,96,97,100,101,103,104,106,112,115,121,125,126,128,132,136,142,143,144,150,154,156,159],"export":[42,52,58,59,68,73,96,104,139],"final":[5,30,35,42,55,61,68,72,85,88,95,105,110,115,132,134,141,143,145,156],"float":[3,30,32,35,45,48,60,88,91,103,106,141,142,144,145,150,156],"function":[0,1,2,3,5,7,15,17,22,23,25,27,28,30,32,35,40,45,46,51,52,54,63,64,65,69,70,72,78,79,80,85,86,88,89,90,92,94,97,98,99,100,103,106,107,112,113,115,116,119,120,121,122,123,128,133,135,137,138,140,141,142,143,144,145,150,154,155,156,157,159],"import":[0,3,5,22,28,32,34,38,39,40,45,49,52,54,57,59,60,64,65,67,72,75,79,81,85,86,88,90,91,93,94,95,96,97,98,100,101,102,103,105,113,121,126,133,134,135,136,137,141,142,143,144,145,154,156,158,160],"int":[1,2,3,30,32,60,88,89,91,94,95,100,103,141,142,144,150,156],"long":[28,30,48,49,52,71,93,120,128,142,156],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,35,39,40,41,42,45,46,48,52,53,54,56,59,60,61,63,64,65,67,68,73,79,81,84,85,86,87,88,94,96,98,101,103,110,112,115,118,119,120,121,122,123,124,125,126,127,128,132,133,135,136,137,139,141,142,144,150,154,156,159],"ond\u0159ej":4,"public":[4,13,21,131],"return":[0,1,2,3,30,33,35,38,48,52,60,64,67,68,79,81,88,89,91,94,95,98,99,100,101,103,106,113,122,133,135,141,143,145,150,152,156,159,162],"short":[24,49,98,128],"static":[30,72,123],"super":[23,28,123,156],"switch":[29,52,59,98,108,113,122,136,158],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,35,40,45,48,51,52,55,60,67,78,85,88,91,94,95,96,100,101,103,112,121,132,133,135,137,138,141,142,143,144,145,150,156],"try":[1,28,29,36,37,38,45,52,54,59,60,67,79,87,90,93,94,100,102,104,105,106,108,113,141,152,156,157],"var":[0,3,13,27,35,150],"while":[5,13,16,30,40,52,68,72,79,81,86,91,95,96,101,106,123,133,137,144,158],AND:[62,83],ARE:[62,83],AWS:13,Added:[89,115,117,119,120,122,126,129],Adding:[18,25,84,92],And:[6,20,55,58],Are:114,Axes:[140,150],BCs:[143,145],BUT:[62,83],But:[13,32,40,52,69,79,104,116,123,137,139],CMS:4,DAs:103,DMS:4,DNS:13,Doing:72,EBS:13,FOR:[62,83],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,34,36,38,39,40,42,45,48,49,50,52,54,55,56,63,64,67,68,69,70,72,73,78,79,81,82,85,86,90,91,93,94,95,96,98,101,102,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,140,141,142,143,144,145,147,150,151,153,154,156,158,159,162],GIS:[52,121,154],Going:[13,25,93],Ike:110,NOT:[60,62,79,83],Not:[30,52,121,128],OPS:48,One:[23,25,26,30,32,45,52,55,61,67,68,69,86,106,112,119,156],Res:17,SUCH:[62,83],Such:68,Sys:17,THE:[62,83],That:[36,38,40,105,154],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,88,89,91,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,112,113,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,156,157,158,159,160,161,162],Their:83,Then:[13,16,28,29,30,34,45,55,56,57,64,67,72,73,81,85,88,96,102,103,104,108,133,135,156,157],There:[3,6,13,22,34,37,41,52,55,56,63,67,72,74,81,82,95,102,110,122,123,140,141,151,152,159,161],These:[1,4,5,12,16,18,23,28,30,32,34,39,43,45,49,52,55,60,61,64,67,68,75,79,81,85,90,93,94,95,97,103,105,109,111,112,113,115,121,122,123,124,128,132,142,146,150,151,154,158,162],USE:[62,83],Use:[30,52,93,101,123,134,141,143,144,145,154,156],Used:134,Useful:[1,3,134,141],Uses:[30,134,156],Using:[0,1,2,3,7,17,22,42,43,46,52,54,77,78,79,81,91,92,93,125,141,148,149,153,156,157,162],WCS:158,Will:100,With:[6,22,28,45,50,52,59,67,75,112,120,133,135,141],__________________o:156,__file__:108,__future__:121,__init__:[56,98,108],__main__:[143,145],__name__:[143,145],_build1:55,_build:55,_compute_c_cent:91,_compute_c_nod:91,_compute_p_cent:91,_compute_p_nod:91,_fillvalu:94,_googleearth:52,_outdir:95,_output2:[79,81],_output:[5,13,14,32,34,36,37,45,51,61,68,79,81,90,95,97,100,120,127,157],_output_from_previous_run:45,_output_new:113,_output_old:113,_plot:[13,36,37,45,68,81,140,146],_plotindex:[1,45],_plots_new:113,_plots_old:113,_ptwise:133,_pyclaw_io:88,_static:55,_storm_modul:151,_subpackag:108,_surge_modul:110,_templat:[55,56],_theme:55,a351:[17,93],a377:[17,93],a_0:69,a_1x:69,a_2i:69,a_3xi:69,aabbggrr:60,abdullah:[4,83],abil:[42,119,121,125,150,156],abl:[13,55,108],abort:63,about:[3,5,7,13,14,16,18,22,25,33,34,35,36,37,41,48,49,54,56,60,63,65,68,74,80,82,85,93,96,101,108,113,120,124,126,133,140,142,143,144,154,157,159,162],aboutu:30,abov:[3,5,13,14,16,20,28,32,34,36,37,39,40,41,42,45,49,52,54,55,56,59,62,64,67,69,72,74,79,82,83,86,95,97,102,105,106,112,121,123,128,133,135,137,139,140,141,143,144,145,150,153,154,156,159],abs:[30,53,98,106,112,135,156],absolut:[95,112,113,123,142,143],absolute_import:121,abspath:[5,39],abstol:106,academ:104,acceler:53,accept:[45,85,95,101,141],accept_reject_step:101,access:[0,17,27,29,56,59,90,91,93,101,103,106],accid:28,accident:[28,79],accompani:[18,21],accomplish:[29,40,63],accord:[6,54],accordingli:[52,154],account:[13,24,28,56,87,96],accumul:[45,121,132],accur:[5,49,69,72,93,101,128,141,159,162],accuraci:[45,65,75,143,145],achiev:[20,86,148,149],acou:79,acoust:[16,29,36,37,49,84,85,88,90,93,101,102,119,133,143,159],acoustics1dheterogeneoustest:[37,152],acoustics3dheterogeneoustest:[37,152],acoustics_1d:[85,105],acoustics_1d_adjoint:5,acoustics_1d_example1:[36,37,71],acoustics_1d_heterogen:[37,152,159],acoustics_1d_homogen:[90,113],acoustics_2d:101,acoustics_2d_adjoint:5,acoustics_2d_radi:[143,159],acoustics_3d_heterogen:[37,152],acoustics_3d_vari:113,acquaint:105,acquir:79,across:[5,112,121,154,156],acsza1:30,acszb1:30,act:[89,156],acta:17,actanum2011:17,action:[13,14,86],activ:[24,32,34,39,55,101,110,144],actual:[6,27,30,34,54,59,60,68,72,79,89,94,106,110,136,144],adapt:[4,7,17,30,40,53,54,67,68,75,85,112,123,126,128,133,135,140,141,142,144,159],add:[0,11,12,13,16,17,27,28,30,45,48,52,55,56,58,59,64,67,68,70,72,78,85,90,91,95,96,98,106,116,119,121,122,123,126,134,145,150,154,156,160],add_colorbar:[30,156],add_colormap:[40,67,120,126],add_dimens:91,add_gaug:[91,95],add_label:45,add_param:[143,145],add_parent_doc:106,add_titl:79,add_true_solut:79,added:[3,12,16,18,20,22,24,28,34,35,45,48,54,56,59,60,61,65,68,79,91,95,108,110,112,115,116,118,119,120,121,122,123,124,125,126,127,132,137,141,142,144,150,153,156,160],addgaug:45,adding:[22,27,28,29,32,34,42,45,55,60,69,72,96,109,120,122],addit:[5,7,13,16,18,23,24,28,29,32,34,37,38,39,46,47,60,67,72,74,75,79,80,86,89,93,95,101,102,103,110,112,119,121,122,123,124,127,128,130,133,135,141,145,150,153,154,159,160],addition:[96,150],address:[52,55,121],adequ:49,adjac:[6,16,32,46,112,137,141],adjoint:[7,17,25,53,112,123,124],adjoint_flag:112,adjoint_modul:124,adjoint_outdir:5,adjointdata:[5,124,125],adjointsup_modul:124,adjust:[5,13,20,32,33,46,60,91,95,136,141,159],adjust_fgmax_1d:33,admiralti:135,adopt:[30,101],adv:17,advanc:[6,17,34,53,67,73,105,120,141,142,159],advantag:[12,34,45,61,78,94,107,113,135],advect:[17,79,93,96,133,134,145,159],advection2dannulustest:[37,152],advection_1d_example1:64,advection_2d_annulu:[37,152],advection_2d_flagregion:39,advection_2d_inflow:119,advection_2d_swirl:159,advection_3d_swirl:[119,153],advertis:128,advis:[62,83],affect:[18,22,63,121,122,128,141,154,157],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,34,36,37,40,45,49,55,56,58,60,61,63,64,67,68,70,74,79,86,87,88,90,95,101,103,108,112,113,115,119,120,134,137,141,142,143,145,150,159],afterax:[0,27,45,52,79],afterfram:[1,27,78],aftergrid:68,afteritem:[3,27],afterpatch:[3,27],again:[22,41,63,67,72,79,81,85,86,95,99,104,108,123,129,154,157],against:[106,113,120,152],agenc:[4,57,150,151],agency_pref:150,agre:[12,28,40,54,133,153,156,159],agreement:49,ahmadia:[4,17,83,93],aht:136,aid:86,aim:28,aks2203:4,albada:89,alg:143,alghamdi:[4,17,83,93],algorithm:[4,7,25,32,39,40,46,53,85,93,94,101,105,112,123,133,135,141,143,145,156],align:[32,34,40,52,60,67,126,128,144],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,34,35,36,37,40,41,42,45,46,49,51,52,54,55,56,57,58,60,61,62,63,64,68,69,71,72,73,74,75,78,79,81,82,83,85,88,89,91,93,94,95,96,98,99,100,101,103,106,107,108,111,112,113,115,116,119,120,121,123,126,128,131,132,133,134,135,137,140,141,142,143,144,145,146,151,152,153,154,156,157,159],alloc:[20,101,119,128,142],allocat:119,allot:60,allow:[4,6,13,18,22,27,28,29,32,34,35,39,40,45,46,48,51,52,54,55,59,65,67,68,72,73,75,78,79,88,93,94,95,101,103,106,107,108,112,113,115,116,119,120,121,122,123,125,126,128,133,135,141,143,144,145,146,150,154,156,158],almost:[34,141],alon:[16,52],along:[6,14,16,24,27,30,32,40,45,52,55,58,70,72,108,112,119,132,135,137,144,150,158],alpha:[52,56,101],alphabet:83,alreadi:[0,1,6,12,13,18,28,29,42,56,57,59,60,61,67,81,82,96,100,102,105,107,116,124,139,156],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,34,35,36,37,38,39,40,42,43,44,45,48,49,52,53,54,55,56,57,58,59,60,61,63,64,67,68,70,72,73,74,75,78,79,81,85,87,88,91,93,94,95,96,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,141,142,143,144,145,146,148,149,150,151,152,153,154,156,157,158,159,161,162],alter:52,altern:[30,34,36,37,45,46,48,52,57,63,68,78,93,96,108,112,119,120,121],although:[30,52,64,68,97,98,100,112,124,130,156],alwai:[16,22,26,27,28,32,34,35,42,54,55,59,68,85,94,111,112,115,116,128,137,141,143,145,154,159],amal:[4,17,83,93],amazon:25,amazonaw:13,amdq:[99,133],ami:25,among:126,amount:[45,49,55],amplitud:[5,121],amr:[4,7,8,16,18,20,23,25,27,28,32,34,35,39,45,46,53,60,68,69,74,75,78,83,91,120,122,123,124,126,128,137,140,141,143,145,153,159],amr_1d:124,amr_2d:[123,124],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:120,amr_level:[34,74],amr_level_max:143,amr_levels_max:[32,112,142,143],amr_modul:[73,112,119,125,126],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,37,39,40,42,44,45,46,47,53,56,57,58,59,61,67,68,70,73,74,75,82,93,102,108,109,112,113,132,133,135,138,139,141,144,148,149,152,153,157],amrdata:[5,22,32,112,126,128,142,143,144],amrflag:112,amrlib:119,amrnez:112,an11:55,anaconda:[52,102],anal:17,analog:[141,142],analysi:17,andi:4,angl:[16,30,48,72],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,34,35,36,37,38,45,46,49,51,52,55,56,58,59,61,62,63,65,67,68,69,71,73,74,75,79,83,89,90,91,93,94,95,96,98,100,102,106,108,111,112,113,119,123,125,132,135,136,137,140,141,142,144,150,159,162],anim:[12,16,18,34,43,52,119,126,127,146],animation_tool:[126,127],anisotrop:[6,22],anl:96,annot:[27,60],annual:24,anoth:[3,22,34,40,45,52,56,59,60,74,78,82,90,101,104,113,123,150,159],answer:24,anyth:[3,6,28,29,59,64,113,123],anywher:112,aoml:150,apach:13,apdq:[99,133],api:[48,123],app:[12,13,18,23,26,28,29,32,38,43,44,72,110,111,118,122,123,124,125,126,127,128,129,130,134],appar:[30,69,73],appeal:52,appear:[0,1,3,5,8,13,18,23,32,34,45,46,52,55,60,63,66,79,95,100,103,121,128,144,146,154],append:[5,20,32,34,39,40,45,52,61,79,88,100,112,120,121,132,133,143,144],appl:17,appli:[3,4,5,6,13,16,25,30,49,52,54,65,67,72,79,81,89,94,101,112,132,141,144,159],applic:[4,6,15,16,19,20,22,23,24,28,29,32,34,35,36,37,38,42,43,44,46,47,56,58,59,64,67,70,73,81,90,91,92,93,95,101,106,109,111,112,113,115,118,119,121,122,123,125,126,133,135,137,138,141,144,148,149,154,156,157,159,160],appreci:83,approach:[5,7,13,28,29,39,45,55,58,71,78,86,93,96,98,106,112,119,121,122,124,133,134,140,159,162],appropri:[4,5,6,13,16,24,28,46,49,50,52,56,58,60,61,65,68,70,71,73,85,88,89,90,94,96,97,98,99,100,113,125,133,136,141,150,159,162],approv:49,approxim:[6,16,25,33,49,52,69,72,133],april:[24,126,127,131],apt:[13,82],arbitrari:[32,34,60,101,115,135,144],arbitrarili:67,arc:136,arcgi:156,architectur:96,archiv:[12,21,37,52,56,113,146,152,156,158],arcminut:[72,154],arcsecond:[46,154],area:[15,22,46,101,110,121,137,138],arg:[91,100],argument:[0,1,2,3,27,30,35,46,48,51,52,54,79,85,86,90,91,94,98,100,101,103,106,113,123,133,135,140,141,142,150,156,159],argv:[143,145],aris:[62,83],arithmet:65,aron:[4,17,83,93],arora:89,arora_ro:89,around:[6,30,32,40,60,94,110,113,126,142,143,150,156,159],arrai:[0,3,6,15,20,22,27,30,32,33,35,39,45,46,48,50,54,60,79,85,86,88,89,91,93,94,95,98,99,100,101,103,105,106,107,115,116,117,121,123,126,128,133,134,135,138,141,142,143,144,145,150,154,156,159],arrang:156,arriv:[22,32,34,40,46,121,136,137],arrival_tol:32,articl:[4,17,93,146],artifici:[16,137],arxiv:53,asc:156,ascii:[18,34,45,54,68,85,88,95,100,121,132,141,143,145,154,160],ascii_output_format:70,ask:24,ask_us:156,aspect:[12,24,29,44,49,50,68,156],assert:[143,145],assess:[4,49,136],assign:[30,32,34,85,88,94,100],assist:[22,126],associ:[0,1,2,6,22,52,59,73,91,94,95,113],assum:[3,5,20,22,30,32,34,35,37,40,48,49,52,54,55,56,60,68,72,78,94,95,97,98,105,106,112,119,135,136,141,144,150,151,154,156,158,162],assumpt:[52,55],asteroid:4,astronom:136,atcf:[110,123,150,151],aterrel:4,atmospher:4,attach:[56,94,103],attempt:[5,8,11,20,33,36,37,63,94,100,106,113,115,129,150,156,157],attirbut:22,attr:[91,100],attribur:5,attribut:[5,7,22,30,34,35,39,45,67,72,78,80,81,85,88,91,94,96,98,100,101,112,115,120,124,132,140,141,142,144,150,156],attributeerror:79,aug:[17,124],augment:[67,134],august:[24,123,131],austin:4,author:[17,25,46,49,89,93,94,111],auto:[0,45,86],autom:[14,55,86,113],automat:[0,2,3,8,11,16,30,36,37,42,52,56,63,78,79,81,85,90,94,96,102,103,104,106,113,115,126,128,141,142,144,154],autonom:5,aux1:32,aux1d:159,aux:[5,6,15,20,22,27,45,54,86,93,94,95,98,100,101,103,104,115,116,121,123,133,134,138,141,142,143,144,145,159],aux_bc_low:98,aux_bc_upp:98,aux_l:[99,133],aux_out_field:45,aux_r:[99,133],aux_time_dep:101,aux_typ:[5,142,143],auxbc:[98,101,103],auxiliari:[22,86,88,94,99,101,103,133,141,143,145,159],auxillari:[94,100],auxl:133,auxr:133,auxtyp:143,avail:[0,4,5,10,12,16,22,23,29,32,34,40,44,45,47,49,52,59,63,67,68,69,75,78,80,81,85,88,93,94,95,97,99,101,104,105,106,107,108,112,122,133,134,136,141,143,146,150,151,154],available_format:150,available_model:150,averag:[4,6,15,17,32,40,46,49,50,54,68,69,103,116,128,133,137,138,154,156,159],avi:4,avoid:[40,52,55,60,63,68,91,95,112,115,116,120,121,128,130,132,141,144,162],awai:[28,136],awar:[49,96],awr11:17,axes1:[2,81],axes:[0,1,2,27,30,45,52,68,78,79,81,140,150,156],axescmd:[0,81],axesnam:[1,81],axessubplot:30,axi:[0,30,40,50,52,67,68,79,91,135],axxxx:94,azv:55,b0000:34,b0002:74,b4run:[25,127],b4step1:[15,64,159],b4step2:[15,138,159],b4step3:15,b4stepn:159,back:[13,27,29,55,56,122],backend:52,background:[2,78,123,140],backward:[5,28,30,48,60,72,94,116,117,156],bad:[108,113],bai:[67,136,158],balanc:[6,17,75,122,134,148,149],bale:17,balelevmitross02:[4,17,141,162],ball:156,band1:156,band:[52,156],bar:[13,55,150],barrier:[67,106],base:[5,6,13,18,20,21,22,28,29,30,32,33,34,46,48,52,53,54,55,60,61,64,65,67,68,72,75,86,88,89,91,93,94,99,100,101,103,105,106,112,114,119,122,124,128,136,141,142,143,144,145,150,156,159,162],base_subfault:30,baselin:52,basemap:150,bash:[42,52,58,59,68,73,96,108,139],bash_profil:[104,139],bashrc:[13,42,104,139],basi:[45,68],basic:[6,10,12,25,30,36,38,46,58,67,68,85,91,93,94,95,101,113,133,134,150,162],basin:110,bathymetri:[15,46,49,52,60,110,121,123,134,136,138,144,154,156],bc1:[64,106],bc1_inflow:64,bc2amr:[16,123],bc_arrai:101,bc_lower:[16,85,98,105,141,143,145],bc_upper:[16,85,98,105,141,143,145],bcn:[6,16,145,159],bcnamr:[6,16,123,141,143,159],beach:[40,67,134],beam:89,bear:[30,48],bearing_unit:48,becaus:[5,22,27,32,34,40,52,56,67,69,94,95,96,115,133,136,141],becom:[49,104,162],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,37,40,43,45,46,49,52,53,54,55,56,61,63,65,67,68,72,75,79,81,83,86,88,94,95,100,103,104,105,106,108,110,112,114,115,116,118,121,122,123,124,125,126,128,129,132,133,135,141,142,144,154,156,159],befor:[1,3,4,6,14,18,28,30,32,34,35,36,37,40,41,42,45,54,55,56,57,59,60,63,64,68,73,81,85,88,94,96,101,103,108,112,113,115,116,127,131,133,136,137,141,142,154,156,157],before_step:101,beforefram:[1,27,123],begin:[48,60,91,95,105,134,150],begin_d:48,behav:45,behavior:[35,46,55,69,112,113,120,126,128],behaviour:85,behind:[40,67,137,144],being:[1,3,4,8,13,32,34,40,45,49,54,59,67,69,81,88,94,99,100,101,106,108,110,112,120,122,124,133,135,137,141,144,150,157,159],believ:[49,107,121,126],belki:76,belong:[79,91,96,100,103],below:[3,6,13,15,16,18,22,24,28,29,30,32,34,40,46,52,53,55,56,59,60,65,68,72,81,83,85,87,95,105,108,109,112,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,138,139,140,141,142,143,144,145,148,149,150,154,156,159],benchmark:49,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,62,83],best:[3,4,16,22,26,28,34,42,52,54,56,57,63,69,71,73,78,79,94,98,110,111,112,113,123,131,133,144,147,150,154,159],besttrack:150,beta:[48,89,101,145],beta_limit:89,better:[0,6,22,32,40,45,67,68,69,73,74,78,101,110,112,120,121,122,125,126,128,129],between:[3,4,5,6,13,16,23,25,28,30,31,32,34,35,39,48,52,56,60,67,68,69,72,73,75,78,88,91,95,101,103,104,106,107,108,112,120,121,133,135,136,141,142,143,144,145,146,150,153,154,156,158,159],bewar:[108,156],beyond:[6,30,107,123],bfinal:35,bgr:60,bibliographi:[4,25],bibtex:[4,56],big:94,big_earthquak:30,biggest:93,bilinear:[6,32,40,45,54,69,115,116,154],bin:96,binari:[5,18,34,42,56,62,70,83,94,95,97,120,132,141,156,160],binary32:[18,34,94,141,143,145],binary64:[18,34,94,141,143,145],bind:[28,52,78,86,96],bisect:[142,143],bit:[16,22,30,56,94,96,104,134],bitbucket:96,black:[3,45],blank:[3,60,150],blast:122,blob:[120,134],block:[7,30,40,60,72,74,75,85,94,103,106,113,159],blossei:4,blue:[3,11,40,45,60,67,79,135,150,156],bmatrix:134,bndlist:123,boe:4,boisest:52,bollig:4,bolliger32:4,bom:150,bomb:[63,73],book:[4,12,17,25,29,82,100,133],bool:[0,1,2,3,48,60,88,94,100,101,103,106,144,150,156],border:[68,159],bore:49,both:[3,16,18,28,30,33,34,35,36,37,39,40,45,49,54,57,59,64,67,68,72,74,86,94,95,96,101,102,112,113,119,120,123,126,133,134,135,137,141,142,143,145,148,154,159],bottom:[13,15,30,36,37,46,49,65,67,72,85,98,99,121,122,138,148,149],boulder:24,bound:[33,35,86,89,96,135,141,156],boundari:[5,7,20,25,40,52,60,64,67,72,73,86,91,99,101,105,110,116,119,123,135,141,143,145],bounding_box:[7,33],bounds_error:35,boussinesq:49,bowl:125,bowl_radial_fgmax:32,box2kml:60,box:[5,30,33,52,60,135,156],branch:[15,18,25,29,42,51,53,56,58,59,109,113,122,123,124,125,126,127,128,129,130,131,138,148,149],brew:82,brief:[4,56,134,144],briefli:162,bring:[13,52,55,68,144],brisa:4,brisadavi:[4,124],broad:156,broken:[19,20,28,70,72,113],brought:28,brown:[83,156],brows:[11,24,43,52,68,146,159],browser:[13,28,29,36,37,52,55,146],bsd:[4,62,83,123],buffer:[30,40,45,112,120,121,142,143,156],buffer_length:156,buffer_s:[30,72],bug:[4,8,12,22,24,42,52,65,73,79,83,118,119,120,121,123,128,129,130],build:[4,17,28,29,55,56,68,86,96,106,122,135],buildsystem:96,built:[28,29,65,75,84,93,96,98,100,112,113,148,149],bulk:[19,85,105,133,143,159],bull:[17,30],buoi:46,burger:[93,133,159],busi:[62,83],butcher:101,button:[12,13,28,52,60,122],bzip2:126,c210:[17,93],c231:[17,93],c_center:91,c_centers_with_ghost:91,c_node:91,c_nodes_with_ghost:91,cach:[22,48,56,81,83,126,142],cache_dir:48,cada:89,cada_torrilhon_limit:89,cada_torrilhon_limiter_nonlinear:89,cake:76,cal:[133,159,162],calcul:[3,5,6,27,30,33,35,46,48,68,72,79,91,101,116,121,156],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,52],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,34,35,39,42,45,51,52,64,67,68,72,74,79,81,85,86,88,89,94,95,98,100,101,103,105,106,112,113,115,119,120,122,123,133,135,137,139,141,143,144,145,150,156,159],call_before_step_each_stag:101,call_setplot:79,callabl:[93,106],cambridg:17,came:14,camera:52,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,24,26,27,28,29,30,32,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,63,64,65,67,68,69,70,71,72,73,74,75,77,78,79,80,81,83,85,86,87,89,90,91,93,94,95,96,97,98,100,101,102,103,104,105,106,108,109,110,112,113,115,116,119,120,121,122,123,126,127,128,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,152,154,156,157,158,159,160,162],cannot:[53,59,94,128,137,150],canopi:102,capa:100,capa_index:[141,143,145],capab:156,capabili:123,capabilit:121,capabilti:123,capabl:[7,12,18,22,32,34,45,49,53,61,67,75,86,93,115,120,121,123,124,125,126,127,156,158],capac:[15,138,141,142,143,145],captur:[32,45,49,61,135,154],car_nam:150,care:[32,40,46,96],carefulli:[20,22,65],carri:34,cartesian:[32,47,60,86,144],cartopi:150,cascad:4,cast:156,cat_nam:150,catalog:158,categor:150,categori:150,category_color:150,caus:[22,34,49,52,55,62,63,69,75,81,83,104,113,120,121,122,124,128,140,142,154,156],caut:89,caution:49,cautionari:[25,46,64,144],cautiou:49,caxi:68,cb_file:60,cb_filenam:60,cb_kwarg:156,cb_name:60,cb_xfrac:60,cb_yfrac:60,cbar:156,cdot:[65,98,135],ceas:107,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,34,35,45,46,52,54,60,67,68,69,73,74,75,85,91,94,96,99,101,103,105,112,115,116,120,121,122,123,124,125,126,128,133,136,137,138,141,142,143,145,151,153,154,159,162],celledg:3,celledges_show:[3,22],cellgridintegr:115,cellgridintegrate2:115,cellsiz:[40,54,119,154],center:[4,5,27,30,32,33,34,35,40,45,52,54,60,69,72,85,91,98,99,105,112,123,135,137,142,143,144,150,151,154,159],centerlin:30,centers_with_ghost:91,central:[141,150,151],central_pressur:150,centroid:[30,72],certain:[14,32,46,58,67,95,112,120,135,141],certainli:96,certik:[4,83],cf2py:86,cfl:[6,95,101,105,115,120,141,143,144,145],cfl_desir:[101,141,143,145],cfl_max:[101,141,143,145],cfl_superbe:89,cfl_superbee_theta:89,challeng:122,chanc:83,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,34,41,42,51,52,53,54,55,56,59,60,63,64,65,67,68,70,73,74,75,78,81,85,86,92,94,95,103,106,107,110,111,112,113,131,133,137,138,141,142,143,144,145,148,149,154,157,159],changelog:[18,22,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],changes_to_mast:56,channel:24,chapter:[16,133,141,159],char_decomp:101,charact:48,characterist:101,charg:13,chava:144,cheaper:13,check:[6,14,15,16,20,32,36,37,41,42,51,52,53,55,56,57,59,63,68,79,82,85,86,88,93,96,100,101,103,105,106,108,109,112,116,125,135,137,138,142,143,148,149,150,156,157,158,159],check_3rd_ord_cond:101,check_diff:[106,113],check_lmm_cond:101,check_valid:88,check_valu:[106,113],checkout:[28,53,55,56,58],checkpoint:[25,45,120,121,123,125,128,141,143,145],checkpt_interv:[141,143],checkpt_styl:[120,132,141,143],checkpt_tim:[141,143],checksum:94,chen:[30,158],chile2010:[52,111,112,115,118,124,154],chile2010_adjoint:5,chile2010_fgmax:[32,34],chile2010a:[29,111],chile2010b:111,chile:[46,60,72],chile_2010:52,chile_dtopo:72,chk00006:[143,145],chk00100:120,chk:120,chkaaaaa:120,chkbbbbb:120,chknnnnn:[132,141,143,145],choic:[16,46,78,101,141,143,144,145,159],choos:[0,7,57,59,60,72,98,141,144],chose:65,chosen:[3,29,32,39,40,52,54,67,105,112,128,136,142],chri:4,chunk:94,chunksiz:94,circl:[3,48,79],circular:17,cise:17,citat:[4,56],cite:[25,56,58,131],cjvogl:4,clamshel:116,clarifi:22,clariti:39,clash:68,classic4:145,classic:[4,6,12,15,16,19,20,22,23,24,28,42,43,44,47,56,57,58,59,64,71,73,74,75,82,83,85,88,90,92,93,94,98,108,109,113,132,133,138,139,142,144,149,157,159],classic_1d:64,claw1:[64,106],claw1ez:64,claw:[5,6,8,11,12,13,14,15,16,19,20,22,24,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,48,50,51,53,55,56,58,59,60,63,64,68,71,72,73,80,85,88,90,93,94,95,96,102,104,108,109,110,111,112,113,115,116,118,119,122,123,125,133,137,138,143,144,145,147,148,149,152,153,154,156,157,159,160],claw_1dnoncon:162,claw_git_diff:[28,51,56],claw_git_statu:[28,51,56,127],claw_lib:70,claw_outdir:[63,79],claw_packag:101,claw_pkg:[141,142,143,144,145],claw_topo_download:156,claw_vers:59,clawdata2pyclaw:86,clawdata:[5,39,115,119,132,141,142,143,144,145],clawdev2013:55,clawdev:55,clawgraph:68,clawicon:55,clawlogo:55,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,40,42,43,45,46,47,48,49,51,52,59,60,61,62,64,67,68,71,72,73,77,78,79,80,81,82,83,84,85,87,88,90,91,92,93,94,95,96,97,98,100,103,104,105,106,107,108,111,113,114,115,116,117,118,119,120,121,132,133,135,139,141,142,143,144,146,147,150,152,154,156,157,159,160,162],clawpack_gpu:53,clawpack_src:[59,108],clawplotax:[1,2,3,27,79,123,128,140],clawplotdata:[2,3,27,45,52,79,81,88,140],clawplotfigur:[0,1,52,79,140],clawplotitem:[0,1,7,22,27,78,80,120,123,140],clawrundata:[5,45,60,124,132,141,142,143,145],clawsolut:1,clawsolv:[101,133],clawsolver1d:[85,88,101,105,133],clawsolver2d:101,clawutil:[5,11,14,19,20,23,28,41,42,51,56,57,58,63,108,113,139,141,142,143,145,156,157],clean:[22,55,56,106,119,123],cleaner:[28,121],cleanup:122,clear:[1,2,6,18,68,81],clearer:[125,128,129],clearfigur:1,clearfram:[1,81],cleargaug:45,clearli:[45,49,52,135],clf:2,clf_each_fram:2,click:[4,12,13,18,28,52,55,113,122,131],clifford:24,clint:17,clobber:[94,120],clockwis:[32,48,72,156],clone:[12,18,23,24,43,53,55,56,59,82,96,102,111,157],close:[13,40,52,55,60,67,68,94,112,126,142,150],close_fig:60,closer:[72,143],closest:150,cloud:13,cluster:[6,17,112,142,143],clustering_cutoff:[112,142,143],cma:150,cmap:[34,40,52,60,67,79,135,156],cmap_dri:[40,67],cmap_land:67,cmap_sea:67,cmap_sea_dri:67,cmap_slip:30,cmap_topo:67,cmax:[52,60],cmax_dz:30,cmax_slip:30,cmdline:108,cmin:[52,60],cmin_slip:30,cmmi:4,cname:55,coars:[3,32,34,52,112,121,128,141,154,159],coarsen:[54,112,123,124,142,154,156],coarsen_method:54,coarser:[3,16,54,121,137,141,142,159],coarsest:[6,34,52,74,115,132,141],coast:[40,67,112,137,156],coastal:[49,126,136,137,144,154],coastlin:[32,52,67,69,126,135,144,158],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,34,35,36,37,39,41,42,43,45,46,49,51,53,54,55,57,62,63,64,65,70,71,72,73,74,75,77,79,81,82,83,85,86,93,94,95,96,98,101,102,105,107,108,111,114,115,116,119,120,121,122,123,124,125,126,128,132,133,134,135,139,141,142,143,144,145,146,150,152,153,154],code_of_conduct:123,coeffici:[5,65,98,101,103,104,105,133,144],coincid:34,colella:[6,17],collabor:[52,146],collect:[12,25,26,28,30,32,72,78,85,101,146],collela:122,color:[3,30,40,52,60,67,68,78,135,140,150,156],colorado:24,colorbar:[3,40,60,67,123,126,135,156],colorbar_kwarg:123,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,40,47,52,67,68,78,80,120,126,156],column:[10,30,32,45,49,61,95,119,135,156],column_list:30,column_map:30,com:[12,13,23,24,26,28,29,53,55,56,58,59,94,96,98,102,118,120,121,122,131,134],combin:[20,55,60,120,158],combinatori:113,come:[3,28,79,81,90,96,101,119,154,159],comfort:[59,98],comm_world:106,command:[0,1,2,3,11,13,14,28,41,51,52,53,56,58,59,63,71,78,79,82,85,86,88,93,96,97,101,105,106,107,108,113,133,139,140,141,142,154,156],commenc:132,comment:[5,11,18,24,50,56,122,132],commit:[25,30,51,55,56,113],common:[3,23,28,36,37,41,42,63,64,75,78,85,99,101,103,104,121,123,126,157,159],common_sourc:64,commonli:[3,68,79,81],commun:[25,52,83,103,106,108,112,123],comot:4,compact:[67,154],compactli:135,compar:[5,22,37,45,49,52,56,79,95,112,113,136,142,152,158,162],compare_gaug:119,comparison:53,compat:[28,30,48,52,60,72,78,94,96,104,116,117,121,122,156],compens:156,compil:[13,25,36,37,41,47,59,64,73,75,81,82,86,93,94,98,102,106,115,133,134,139],compile_librari:106,complement:34,complet:[20,22,28,48,63,81,85,86,96,106,113],complevel:94,complex:[12,34,39,91],compliant:42,complic:[16,79,86,135,140],compon:[3,16,20,22,25,37,45,58,59,68,74,78,98,100,102,103,112,119,128,134,141,142,143,154,159],compos:[30,85],comprehens:113,compress:[30,94,156],compris:[22,93,156],comput:[3,4,5,6,13,16,17,18,27,29,30,32,33,34,35,40,45,48,52,54,59,60,61,63,69,70,72,78,79,81,86,88,91,93,94,95,96,101,105,108,110,112,115,116,120,121,125,128,133,137,141,143,144,145,151,154,159,162],computation:[86,101],compute_f:[88,95],compute_gauge_valu:95,compute_p:[85,88],concentr:110,concept:[25,133],concern:[22,46,142],conclud:69,conclus:[4,52],conda:52,condit:[5,7,20,25,62,64,75,83,84,85,86,88,95,101,109,115,116,119,123,136,141,143,144,145],conduct:123,conf:[55,56],confer:24,config:96,config_fc:157,configur:[79,85,96,156],confirm:49,conflict:[6,28,59,63,68,104,108],conform:[22,28,33,100,123,154],confus:[3,54,59,108,128,133],conjunct:[24,40,67,94,112],conlict:63,connect:[32,55,60,67,126,135],consequenti:[62,83],conserv:[4,5,6,17,95,101,103,124,134,159,162],consid:[6,40,49,59,67,86,108,139,146,156],consider:[49,85],consist:[6,25,32,34,48,52,56,60,96,107,121,133,135,144,154,159],consol:[13,95,144],consolid:119,constant:[30,32,34,49,60,65,69,96,133,134,135,137,144,156,159],constant_storm_modul:119,constrain:112,constraint:[40,45,135,142,162],construc:60,construct:[22,30,32,54,69,85,91,106,150,151,154],construct_function_handl:106,constructor:103,consult:104,contact:[12,90,93,102],contain:[1,3,5,12,13,20,23,25,26,30,32,33,34,35,36,37,38,41,43,44,45,46,48,50,51,52,53,54,55,56,60,61,63,64,67,68,70,74,75,79,81,82,85,86,88,89,91,93,94,96,98,99,100,101,103,105,106,107,108,112,113,115,116,123,124,131,133,135,140,141,144,146,150,154,156,157,159],containing_rect:30,contains:29,containt:132,contamin:141,contan:52,content:[4,6,23,35,52,56,75,86,93,144,154,159,160],context:[27,52,159],contigu:[74,94,103,135],contin:35,continent:[7,67],contingu:22,continu:[13,22,28,30,50,55,83,107,133,141,162],contour:[3,30,45,52,54,68,107,140,156],contour_color:3,contour_kwarg:[3,156],contour_level:[3,156],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[52,78],contract:[4,62,83],contrast:[54,135],contribut:[4,24,25,58,83,86,93,98,101,110,113],contributor:[4,24,62,93],control:[6,7,23,25,32,34,42,45,55,59,61,68,81,84,89,91,93,94,95,96,98,112,121,126,134,144],conveni:[1,27,32,34,36,37,40,45,52,81,88,90,93,95,97,105,159,162],convens:154,convent:[3,22,30,47,54,72,99,154],converg:[67,78],convers:[19,25,86,94,112,135,154,158],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,35,43,48,52,59,60,63,72,75,86,93,98,106,107,123,126,141,142,150,154,158],convert_fort_double_to_float:106,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[48,52],coordin:[4,23,30,32,34,48,74,78,85,91,95,96,105,112,135,144,156],coordinate_specif:[30,72],coordinate_system:[15,61,138,144],coorind:156,copi:[6,14,15,16,36,37,45,52,55,56,59,68,85,88,98,103,109,110,111,112,116,120,123,127,137,138,142,146,148,149,154,159],copyq1:64,copyright:[62,83],core:[4,12,75,113,123],corioli:[49,144,148,149],coriolis_forc:[49,144],corner:[3,30,32,54,72,74,91,135,141,143,145,154,156],correct:[20,28,42,55,56,64,65,68,79,85,96,100,106,115,116,120,137,141,143,144,145],correctli:[28,32,86,92,119],correspond:[3,6,12,23,25,27,30,34,35,45,48,49,54,55,56,60,68,72,79,85,89,91,94,95,98,100,103,112,113,133,135,136,141,142,143,144,145,150,154,158,159],correspondingli:32,cos:[40,48,50,67,85,98],coseism:144,cosin:85,cost:[13,101],costli:134,could:[5,12,13,27,32,35,36,37,40,45,54,61,67,69,72,73,79,81,85,91,95,103,104,108,119,128,135,137,142,143,144,145,156,159],council:4,count:85,count_from_zero:85,counter:[106,156],counterclockwis:72,coupl:[121,162],courant:[4,6,112,122,141,142,143,145],cours:[13,26,32,45,47,61,72,96,97,105,107,110,144,154],cover:[6,7,27,28,30,32,34,35,39,40,52,60,67,72,112,116,121,137,143,154],coverag:[93,113],covert:11,covid:24,cparam:[85,103],cpp:53,cpu:[13,53,120,123,125,153],crash:[120,141,142],creat:[0,1,2,3,5,6,7,18,19,24,25,28,30,32,33,34,35,36,37,39,41,43,45,46,47,51,53,55,59,60,63,72,74,78,79,81,86,87,90,91,93,94,97,100,103,104,105,106,112,113,115,119,120,121,123,124,125,128,135,140,141,142,143,146,147,150,156,158,159,160],create_dtopo_xi:[30,72],create_dtopographi:[30,72],create_topo_func:156,creation:[40,79,93,115],criteria:[6,7,22,25,32,67,103],criterion:[32,112,143],critic:[52,95,133],crop:[54,156],cross:28,crucial:[52,154],csdm:24,cse:24,csh:96,csv:[30,72,123],csvfault:[30,72],ctrl:[29,79],cube:68,cultu:67,cumul:123,current:[3,5,13,14,20,22,24,27,28,29,30,32,35,39,40,42,45,46,49,54,55,56,58,59,60,61,68,70,74,79,81,91,94,95,96,101,103,106,108,112,113,120,122,123,132,136,140,141,142,143,144,145,150,151,154,156,158],current_data:[0,3,25,45,78,79],curv:[3,45,78,135],custom:[0,13,16,20,22,25,64,68,75,78,86,92,98,137],custom_bc:98,customari:95,cut:142,cutoff:[6,143],cvf:56,cvs:52,cxx:96,cyber:17,cygwin:88,cython:96,dai:[6,13,52,144],dalcin:83,dam:[52,137],dam_break:134,damag:[6,62,83],damiansra:98,dark:135,darker:52,darryl:17,dart:46,dash:[3,96],daspect:68,dat:[30,150],data:[0,1,3,5,25,27,30,32,33,34,35,36,37,39,40,41,43,45,46,47,48,54,55,60,61,62,63,67,68,78,79,80,81,83,85,88,91,94,95,97,99,100,101,103,106,109,110,111,112,115,117,118,120,121,123,124,125,126,128,133,135,136,142,143,145,150,153,155,160],data_break:[40,67,156],data_fil:[33,35],data_limit:[40,67],data_storm:150,data_typ:106,databas:[13,30,72,106,110,123,154],datadir:120,dataset:[154,156,158],datatyp:35,date:[5,28,41,48,52,55,56,63,79,150,157],date_tim:48,datetiem:150,datetim:[48,150],datum:[48,49,136,144,158],dave:30,davi:[4,17],david:[4,17,83,93,101],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:60,dcp:60,deal:[30,49,78,95,96,103,150,156],dealt:[32,40],debri:34,debug:[7,18,42,63,74,78,95,103,108,113,141,143],debugg:79,decemb:[18,130,131],decid:[85,101],decim:[48,60],decimc:150,decis:52,declar:[20,22,103,128,159],decompos:[74,133,162],decomposit:141,decor:106,decoupl:55,decreas:[45,137,154],deduc:154,deep:[5,67],deeper:[135,144,154],deepli:105,def:[0,1,3,45,52,67,79,85,95,98,101,143,145,150],default_tfluct:101,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,34,35,39,40,42,52,60,61,63,67,68,72,79,81,85,88,91,97,98,100,101,103,105,106,112,115,123,128,133,143,145,150,154,156,157,159,162],definit:[30,68,85,112,118],deform:[17,30,33,35,46,72,158],deg2dm:60,degener:135,degrad:34,degre:[30,48,52,60,69,72],delet:[20,28,59],delimit:30,delin:144,delta:[69,89,91,98,101,133,156,159,162],delta_i:156,delta_limit:156,delta_x:156,dem:[32,46,54,60,123,154,156,158],demo:96,demonstr:[12,25,90,96],denot:[6,22,35,45,54,133,156],dens:151,densiti:[88,95,103,105,142,143,159],depart:[4,150],depdend:89,depend:[3,13,16,28,29,30,32,35,36,37,41,42,47,49,52,63,65,68,72,79,84,94,99,100,101,106,108,112,123,137,142,144,156,157,159,162],deprec:[7,18,30,46,55,59,119,123,154,156],depress:32,depth:[4,5,16,17,22,30,32,33,35,40,45,46,49,65,69,72,78,80,134,136,137,144,154],deriv:[62,72,83,88,92,93,103,113],describ:[3,4,5,6,7,13,14,16,18,19,26,28,30,31,32,34,36,37,39,40,45,47,48,49,52,53,55,56,58,60,61,63,64,67,68,72,74,75,78,79,80,91,93,94,100,106,110,112,113,121,124,125,133,135,136,140,141,142,144,150,151,154,156,158,159,162],descript:[3,4,6,9,22,23,25,30,35,60,68,72,75,78,93,94,106,110,112,133,134,144,150,154,162],design:[4,27,28,52,83,85,105,135,158],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,34,35,40,43,45,56,59,60,61,67,69,72,77,78,79,81,85,86,88,95,100,101,109,121,123,126,137,139,141,142,143,144,145,150,154,156,157],desktop:96,destin:52,detail:[4,5,10,16,22,23,25,26,28,29,30,32,34,36,37,39,42,45,47,49,52,55,58,59,61,62,63,67,68,72,75,79,83,88,89,90,93,94,95,96,97,98,99,101,111,112,113,116,121,123,128,133,135,140,141,144,146,150,154,157,158,159,162],detect:[52,63,94,102,106,157],deterimin:[144,156],determin:[3,5,6,30,32,35,40,45,46,49,51,52,55,60,69,72,79,89,91,94,103,108,112,116,120,121,132,135,136,140,141,142,144,156,159],determine_topo_typ:156,dev:[18,24,28,55,56,96,123,124,129,130,131],develop:[4,6,7,12,13,18,22,23,49,53,55,58,59,62,67,68,78,82,83,86,93,98,101,102,108,110,113,123,124,126,128,133,136,137,143],dict:[30,35,88,94,99,100,103,150,156],dictionari:[0,1,2,3,30,35,45,61,79,85,88,94,99,100,103,105,108,150,154,156],dicuss:30,did:[123,128,135,154],didn:118,died:115,diff:[18,51,56,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],differ:[1,3,6,7,12,15,16,22,28,30,31,34,35,36,37,40,45,47,49,51,54,58,60,63,65,67,68,72,73,78,81,85,86,88,90,91,93,94,99,101,106,107,108,109,112,113,119,120,121,122,123,126,128,129,133,136,137,138,139,141,142,143,144,148,149,154,156,157,158,159,162],differenti:[17,30],difficult:45,difficulti:[102,104,108],diffus:98,digit:[32,34,40,54,60,61,79,121,122,123,156],dike:[40,67,126,144],dim:[98,99,101],dimens:[5,6,7,16,20,22,25,45,48,54,60,68,69,85,86,88,94,96,98,99,100,103,105,112,123,126,133,141,142,143,145,156,159],dimension:[3,7,8,17,22,25,30,32,34,36,37,45,49,53,68,91,98,119,120,122,125,143,144,145,156,159],dimensional_split:[119,141,143,145],dip:[30,72],dir:[56,96,160],direct:[6,8,16,22,30,32,34,36,37,45,48,52,56,60,62,63,68,72,73,79,83,88,98,105,112,122,133,141,142,144,156],directli:[8,18,19,23,32,46,49,58,68,72,79,81,85,86,89,93,103,106,108,123,156,160],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,34,35,36,37,38,41,43,44,45,46,48,51,52,55,56,58,60,64,68,70,73,77,78,81,88,90,91,93,94,95,98,105,108,109,110,112,113,115,120,121,122,123,125,132,133,137,138,139,140,141,142,146,148,149,152,153,154,157,159,160],directorti:110,disabl:[50,102,144],disable_petsc:106,discard:[32,101],disclaim:[62,83],discontinu:[4,101,162],discov:65,discoveri:113,discret:101,discrib:4,discuss:[5,24,28,30,49,54,67,72,94,105,107,108,112,121,123,133,144,162],disk:[13,45,85,94,95,113,121],dispers:49,displac:[30,34,46,49,72,137,144,158],displai:[1,13,36,37,41,45,52,60,79,95,113,144],display_format:[45,61],display_landfall_tim:144,dist:56,dist_latlong2met:48,dist_meters2latlong:48,distanc:[30,34,48,52,72,144,154,156],distant:[110,112],distinct:[45,121],distinguish:40,distribut:[4,12,13,29,30,55,62,72,75,83,101,107,126],disturb:52,distutil:86,divid:[112,141],divis:[4,52],dlgeorg:4,dms2decim:48,dnetcdf:[42,154],doc:[18,23,24,28,30,52,56,89,106,107,108,122,123,124,125,126,127,128,129,130,147],docker:[18,25,56,57,122,123,124,125,126,127,128,129,130,161],docker_disk:29,docker_imag:56,dockerfile_v5:29,dockerhub:[29,56],dockeril:29,docstr:[86,90,113],doctest:91,documen:55,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,46,49,54,59,62,72,78,79,80,81,83,89,91,94,95,96,97,101,103,106,108,116,129,130,131,140,143,160,161],dodsc:[40,67],doe:[4,5,11,16,18,20,27,28,34,40,41,49,52,54,55,59,68,75,79,82,91,100,103,106,112,113,116,121,125,128,132,133,134,137,150,156,157,159],doesn:[28,32,59,64,103],doflag:112,doi:[4,17,53,56,58,126,127,128,129,130,131],doing:[6,11,18,19,25,28,33,34,40,45,49,51,53,55,59,64,79,81,91,93,112,113,120,121,122,123],domain:[5,6,16,17,18,33,34,39,40,49,52,55,60,72,74,84,85,86,88,96,98,100,103,110,112,142,143,144,145,154],don:[13,27,28,55,56,79,95,96,102,113,143,157],done:[1,6,7,8,11,13,16,19,20,28,34,36,37,40,45,47,52,54,55,57,60,63,67,68,72,78,79,81,85,89,90,93,106,112,116,120,121,125,132,133,135,140,142,144,153,156,157,158],donna:[4,17],donnabois:4,donor:[141,143,145],dontflag:112,dot:[41,45,52,59,60,63,157],doubl:[68,86,91,106,133,142],down:[13,30,95,120,150,154,156],download:[12,13,28,29,30,37,38,40,46,52,56,58,59,70,90,96,102,123,124,131,152,156,157,158],downstream:35,downward:72,doxygen:[6,7,25,122],dpc:60,dpi:[52,60],dpng:68,dprint:[142,143],dq_src:[98,101],dqdt:101,draft:56,drag:144,drag_law:144,draw:3,drawback:108,drawcontourlin:68,drawn:[30,52,140],driver:[20,64],drop:[13,55,82,126,128,137,141],dry:[16,17,25,32,46,126,129,134,137],dry_point:40,dry_points_sum:40,drytol:35,ds824:150,dst:60,dt_check:32,dt_initi:[115,141,143,144,145],dt_max:[141,143,145],dt_max_dtopo:[115,144],dt_variabl:[141,143,145],dtdtopo:118,dtdx1d:117,dtdx:89,dtdy1d:117,dtfe:101,dtopo2kml:60,dtopo:[25,30,33,46,49,54,60,72,108,115,117,118,126,128,137,144,154,156,158],dtopo_data:[115,144],dtopo_file_nam:60,dtopo_modul:115,dtopo_path:33,dtopo_typ:[30,33,60,72],dtopofil:[60,72,144],dtopographi:[30,72],dtopotool:[46,72,117,118,120,123,124,154,155],dtopotools_exampl:[30,72,111],dtopotyp:[144,154],due:[17,24,30,40,48,72,113,122,123,128,137,157],dummi:[86,101,159],dump:[18,34,74,141],dumpgaug:119,duplic:[79,118,132],durat:[30,128,136],dure:[5,22,32,40,45,60,72,75,115,136,137,143,144,145,154],dxc:86,dyc:86,dylib:52,dynam:[6,20,30,34,49,72,75,142],dynamic_slip:[30,124],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:45,e26:45,e68:[4,17],e_format_bst:150,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,35,45,48,52,54,55,56,60,61,64,67,68,69,72,73,74,77,78,79,81,85,86,89,91,94,95,96,98,99,100,101,103,105,112,113,115,116,120,121,123,124,126,132,133,134,135,137,140,141,142,143,144,145,150,153,154,156,158,162],each_fram:45,each_gaug:45,ear:4,earli:[6,20,137],earlier:[5,20,22,30,32,39,54,72,85,98,115,122,154,156],earth:[25,40,46,53,60,67,72,119,121,129,135,144],earth_radiu:144,earthquak:[25,30,46,49,111,137,144,151,154],eas:60,easi:[4,6,11,29,39,59,68,86,95,96,97,135,146,159],easier:[34,59,78,121,123,135,159],easiest:[19,28,42,75,79,81,112,159],easili:[3,13,28,32,52,55,68,79,86,102,106,113,126,146,150],east:[13,154],easy_instal:96,ec2:25,echo:108,ecosystem:[4,17],edebug:[142,143],edg:[3,6,15,16,27,30,32,33,34,35,39,60,72,91,99,133,135,138,142,143,145,159],edgecolor:135,edit:[52,55,56,59,81],editabl:28,editor:74,edu:[30,52,70,94,125],effect:[45,52,65,68,95,112,113,136,144,156],effici:[49,53,83,93,94,95,103,112,135,142],effort:94,efix:134,egg:[29,59],eigenvalu:5,eigenvector:[5,133,162],either:[12,16,20,30,32,34,40,46,47,52,61,63,67,68,72,79,81,85,93,94,95,101,106,108,112,113,119,120,121,123,133,135,137,142,144,150,154,156,159,162],elast:[13,72],element:[0,3,22,35,60,99,101,103,141,142,143,144],elementwis:95,elev:[22,25,32,40,46,47,49,52,54,60,69,78,109,112,126,135,136,144,154,156,158],elif:[143,145],elimin:[8,22,67,86,108,123,144],ell:133,els:[27,28,59,67,103,123,135,137,145],elsewher:[5,24,40,93,135],emerg:4,emmanuel:144,emmett:[17,83,93],empir:[49,65],empti:[12,34,45,100,103,106,108,141,144,150,156],empyclaw:98,enabl:[95,102,106,121],encapsul:49,encount:[41,52,79,102,104],encourag:68,end:[13,29,30,32,34,45,48,52,56,60,88,95,105,107,110,112,120,121,123,132,134,135,143,145,150,153],end_dat:48,enddo:159,endian:94,endors:[62,83],energi:95,enforc:135,eng:150,engin:[17,52],enhanc:[65,83,123],enlarg:121,enough:[5,45,55,61,67,142,151,153,154],ensembl:150,ensur:[36,37,38,68,110],enter:[68,94,96,102],enthought:[102,104],entir:[5,6,34,39,49,52,60,67,69,72,73,75,85,95,100,110,112,116,135,156],entireti:88,entri:[52,61,85,95,106,150],entropi:134,enumer:101,environ:[14,25,28,36,37,38,41,51,52,55,58,59,68,71,73,75,97,104,106,108,121,156,157],envis:16,epd:104,eprint:[142,143],epsg:52,epsilon:89,eqn:162,eqnarrai:105,equal:[16,30,32,33,34,35,52,69,72,96,98,112,132,135,141,143,145,154,156],equat:[4,5,16,17,25,36,37,46,49,61,65,79,84,85,86,88,93,94,95,98,101,102,103,116,119,121,123,124,133,141,143,144,145,154,159,162],equiv:162,equival:[6,45,53,54,60,61,125,154],err:143,errest:112,erron:[30,72],error:[5,16,20,36,37,41,52,59,68,73,79,88,93,94,95,106,112,113,124,128,142,143,150,157],escap:[112,143],escienc:13,especi:[28,52,86,98],esri:[54,154],essenti:[5,54,68,101,144,154],est:143,establis:123,establish:4,estim:[5,65,112,142,144],estimat:[5,143],eta:[25,30,34,35,40,45,46,69,112,119,126,136,144],eta_init:137,eta_plot:34,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,34,49,52,55,58,60,64,74,78,86,133,140,141,144,150,159],etopo1:[123,135,136,154,156,158],etopo_sample_2min:156,etopotool:[123,154],euler:[61,93,101,117,119,122,124,133,159],euler_2d:[36,38,93,98],evalu:[17,27,30,34,35,65,69,85,101,156,159],even:[40,49,52,59,62,72,83,106,112,126,142,143,154,157,159],evenli:[52,95],event:[33,46,49,60,62,72,83,136,137,141],event_tim:60,eventu:[13,46,126],ever:[140,144],everi:[6,12,28,32,34,45,61,63,64,85,88,90,94,95,103,112,113,121,122,133,137,139,141,143,145,150,154,156,159],everyth:[32,56,59,73,96,105,106,113,123],everywher:[39,40,48,65,103,137],evolv:[22,85,88,101],evolve_to_tim:[85,101],exactli:[28,33,34,51,53,69,103,135,141],exam:79,examin:[16,18,36,37,45,67,108],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,20,22,24,27,28,29,30,35,39,41,42,44,46,48,54,55,56,57,58,60,61,63,64,65,69,70,72,73,74,78,79,81,83,84,85,86,88,91,92,94,95,98,99,100,101,102,105,106,107,108,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,132,133,134,136,137,139,140,141,142,143,144,145,146,150,152,153,154,156,157,158,159],exce:[32,52,112,142],exceed:[112,123],except:[22,27,30,40,94,99,106,126,141,144,150,154],excerpt:96,exclud:64,exclude_modul:64,exclude_sourc:64,exe:[36,37,88],exec:[0,1,3,79],execut:[0,1,3,14,16,19,27,32,36,37,45,60,68,79,81,88,90,96,108,113,133,139,157],exemplari:[62,83],exercis:[29,46,111,113],exist:[1,21,30,31,34,36,37,52,59,63,67,68,79,91,95,98,100,103,106,116,122,123,137,150,156,158],exit:[29,79,96,102],exp:[85,95,105],expand:[26,40,52,60],expect:[32,69,105,106,107,113,123,124,126,128,143,144,145,150],expens:[101,112,116,121],experi:[24,49,101],experiment:[5,83],expert:49,explain:[13,32,49,67,128,141,146],explan:28,explicit:[106,142],explicitli:[32,64,68,93,128,141,157,162],explor:[4,34,60,79,81],expon:65,expos:[13,75],express:[4,30,62,83,102,135],extend:[8,16,22,40,60,67,68,91,123,135,137,144,154,156,162],extens:[4,17,22,24,28,30,49,52,55,59,64,68,86,93,94,106,121,122,128,141,152,156,162],extent:[35,39,40,49,57,60,65,67,68,85,91,103,115,128,135,154,156],extent_cent:35,extent_edg:35,extra:[3,52,134],extra_fil:55,extract:[35,52,56,94,150,156,158],extran:119,extrap:[16,98,105,141,143],extrapol:[5,7,16,22,69,98,105,123,141,142,143,145],extrem:[52,104],extropl:16,eye:[150,151],eye_loc:150,f2py:[59,75,86,93,98,106,133],f2py_flag:106,f2s:60,f49620:4,f77:[42,157],f90:[5,9,15,20,31,32,34,40,45,53,63,64,73,82,98,109,112,115,119,121,123,124,125,126,128,129,133,134,137,138,148,149,154,157,159],f95:106,f_file_nam:[88,95],f_path:88,facecolor:[2,79,140],facilit:[45,61,93,113,119,121,126,146,150],fact:[34,52,69,94,103,107,112,137],factor:[6,52,142,144,153,156],faculti:30,fade:79,fail:[28,94,96,106,113,119,150],failur:[113,124,137],fairli:[16,49,121],fall:[136,144],fals:[0,1,2,3,5,30,35,40,49,50,51,52,60,67,88,91,94,100,101,103,106,120,121,126,132,134,141,142,143,144,145,150,156],famili:[101,143,145],faq:[13,25,78],far:[16,18,39,43,67,78,124,126,128],farther:67,fashion:132,faster:[125,126,128,156],fastest:[94,102],fault:[17,25,30,46,111,123,130,154,158],fault_plan:30,favor:[119,123,142,156],favorit:78,fbound:42,fc02:4,fcompil:157,fdefault:106,featur:[18,22,25,28,32,40,52,55,68,79,86,112,113,118,120,121,123,128,131,150,154],februari:[24,122,128,129,131],feet:[136,158],fellowship:4,fetch:[13,48],fetch_noaa_tide_data:48,fetch_topo_url:156,few:[6,12,13,22,26,29,37,49,55,67,68,86,101,105,107,112,113,126,136,152,154,159],fewer:[67,112,156],ff0000:[3,60],ff9999:140,ffff00:79,fflag:[28,41,63,70,73,86,106,154],ffpe:42,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgframe:34,fgmax0001:32,fgmax0002:32,fgmax2kml:[60,126],fgmax:[34,39,46,60,69,73,116,118,121,122,126,127,144],fgmax_data:[32,144],fgmax_grid:[32,33,60,126,144],fgmax_interp:[32,128],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:67,fgmax_tool:[32,118,126,144],fgmax_valu:32,fgmaxgrid:[32,33,144],fgno:[32,33,34,35],fgout0001:34,fgout1:35,fgout2:35,fgout:[18,45,46,69,144],fgout_data:[34,144],fgout_fram:35,fgout_grid:[34,35,144],fgout_interp:34,fgout_modul:34,fgout_tool:[34,144],fgout_writ:34,fgoutfram:35,fgoutgrid:[34,35,144],fid:[33,35],field:[18,35,45,60,98,100,103,121,123,150,151],fig:[60,135],fig_kwarg:[30,156],fignam:[1,81],figno:[1,2,45,52,79,81,140],figsiz:[2,40,67,79,135,140],figur:[0,1,2,4,13,18,30,36,37,40,43,45,54,60,67,68,78,81,100,108,133,135,140,156],file1info:144,file2info:144,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,37,39,41,42,43,45,46,47,49,51,53,59,60,61,63,67,70,72,74,75,78,80,83,86,88,90,91,93,94,95,96,97,98,100,103,104,106,108,109,110,112,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,136,137,138,139,140,141,142,143,145,147,148,149,150,151,153,156,157,158,160],file_format:[45,94,100,150],file_prefix:[34,94,100],file_prefix_p:88,fileio:74,filenam:[31,52,119,156],fill:[0,3,4,6,16,24,52,67,91,94,103,110,121,137,141,150,153,156,159],fill_between:3,fill_mwr:150,fill_rad_w_other_sourc:150,fill_topo:156,fill_valu:[35,94,156],fill_var2:3,fill_wher:3,filpatch:[9,40,121,125,128],filter:[94,156],filter_region:156,filval:40,find:[1,3,4,6,12,24,27,28,29,30,48,52,59,63,70,72,75,78,83,90,98,103,104,106,108,110,123,150,157],fine:[3,32,33,34,40,55,71,75,93,98,112,121,128,135,137,141,142,144,154,159],finer:[3,7,32,52,112,115,116,135,141,142],finest:[3,32,34,40,45,69,123,153,156],finish:[13,79,85],finit:[4,17,32,34,43,54,60,67,68,69,72,101,126,135,144,153,154,159],finlin:106,first:[1,3,5,13,14,19,20,22,28,30,32,34,35,36,37,38,39,40,52,55,56,59,60,63,67,68,79,81,85,86,91,94,95,96,98,101,102,103,105,106,108,110,112,115,119,124,133,134,135,137,141,143,144,150,152,154,156,162],first_test:36,fist:67,fit:[62,83],fix:[6,18,19,20,22,25,33,35,39,45,46,55,56,60,61,63,67,69,83,94,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,134,141,143,145,156],fix_links_top_level:55,fixedgrid:[18,34,46],flag2refin:[5,7,22,142,143],flag2refine_tol:[5,112,142,143],flag:[7,12,13,22,25,28,29,39,41,42,46,53,59,70,73,86,104,106,108,119,124,128,143,144],flag_richardson:[5,112,120,142,143],flag_richardson_tol:[5,112,142,143],flagregion:[7,25,67,112,126,128,135,142,144],flagregiondata:[39,126],flask_loc:55,flat:72,flavor:[12,21,94],fletcher32:94,flexibl:[22,30,60,86,119,122,133,135,142],float32:[18,34,141],float64:[18,34,141],flood:[52,67,137],floor:[30,46,72],flow:[4,16,17,23,32,33,46,47,49,75,93,110,126,133,141,144,154,159],flowchart:[6,7,25],fluctuat:[99,101,162],fluid:[32,34,49,61,69,136],flush:120,flux2:86,flux2_dimsplit:119,flux3_dimsplit:119,flux:[5,17,32,34,35,101,133,141,162],fly:25,fmt:3,fname:[40,60,128,135,143,144,145],fname_fgmax_mask:67,fname_force_dry_init:40,fname_nc:35,focu:[4,46],fold:16,folder:52,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,36,37,38,40,45,47,52,54,55,56,57,59,62,67,68,70,72,74,79,80,82,83,85,86,87,90,91,94,95,96,98,99,100,102,103,105,106,108,113,123,128,132,133,135,139,140,141,142,144,150,152,153,154,157,159,161],fontsiz:79,foot:72,fopenmp:[42,73,106],forbidden:112,forbiddn:142,forc:[22,25,41,46,63,67,106,112,126,134,137,142,151,156,157],force_dri:[40,60,126],force_dry_arrai:67,force_dry_init:[46,126],force_dry_init_topo:40,force_dry_list:[40,144],forcedri:[40,144],forecast:150,forestclaw:[108,119],forget:157,fork:[24,55,56],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,34,36,37,39,43,44,45,48,52,56,61,62,65,72,74,83,86,95,101,105,106,112,116,123,124,125,126,132,133,135,141,142,143,144,148,154,156,159,162],format:[1,3,5,13,14,25,30,36,37,40,45,46,47,49,50,52,54,60,61,63,67,68,70,72,78,79,85,88,94,95,97,98,100,106,110,120,121,123,126,128,141,144,150,151,156,158,160],format_str:45,former:[79,159],formerli:119,formul:[4,5,49,65,133,141],formula:[65,137],fort:[1,8,27,32,34,45,68,70,78,94,100,116,120,121,122,132,141,142,143,145,153,160],fortfil:[36,37],fortran:[6,9,11,13,14,18,20,23,27,28,30,32,33,34,35,36,45,46,47,54,57,59,63,64,65,69,73,74,75,78,81,83,85,86,88,93,94,96,98,99,101,102,103,106,108,119,120,121,123,124,125,133,134,139,142,143,144,145,150,152,153,154],fortran_modul:103,fortran_src_wrapp:86,forward:[5,61,101,112,124,159],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,37,41,43,45,48,49,51,55,60,63,64,69,77,79,80,81,85,89,96,100,104,106,108,110,113,120,123,132,136,140,150,156,157],founder:4,four:[24,69,91,112,113],fourth:[32,54],fpe0:42,frac:[65,105,162],fraction:[6,13,30,112,141,159,162],fragil:103,fragment:3,frame0000:68,frame0005fig1:52,frame0005fig1_tmp:52,frame:[1,2,3,27,34,35,45,52,68,70,74,78,79,81,85,88,92,94,96,100,102,106,121,132,140,143,145,146],framecount:106,framenam:68,frameno:[1,3,27,35],framesoln_dict:1,frametool:[1,27,81,126],framework:[4,83,86,120,121],free:[13,52,63,72,83,87,98,102,104],frequenc:[61,72,101],frequent:[5,18,20,27,34,45,61,104,120],friction:[25,46,49,144,148,149],friction_depth:[65,144],friction_forc:144,friction_modul:119,friedemann:89,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,36,37,39,44,45,46,49,52,53,54,56,57,58,59,61,62,63,64,68,69,71,72,74,78,79,83,84,85,87,88,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,108,109,110,112,113,115,116,119,120,121,123,126,127,128,131,132,133,134,136,137,138,141,142,143,144,145,148,149,150,151,152,154,157,158,159,160],frommm:89,front:[25,32,39,40,46,68,100,106,135],fset:103,fstr:68,ftrapuv:42,fuca:135,fuction:40,full:[5,6,14,18,35,56,58,59,60,79,88,95,101,105,139,141,154,159],fulli:[6,49,52,53,122,126,133,144,150,151],fun:106,func:[106,150],function_nam:106,fund:[25,57,93],funrol:106,further:[6,16,18,25,32,34,42,49,60,63,68,93,107,112,113,142],furthermor:[52,105],futur:[13,22,25,26,36,37,40,49,54,60,65,85,101,107,120,121,123,126,142,150,154],fvmbook:[12,43],fvmhp:[4,12,16,17,25,75,133,141,159,162],fwave:[101,133],g77:104,gain:94,galerkin:101,galleri:[12,25,36,37,38,43,56,77,78,90,93,107,113,118,122,146,152,159],gallery_classic_amrclaw:[8,36],gallery_fvmbook:17,gallery_geoclaw:[32,46],gamma:65,gap:156,garret:144,gas:6,gauag:34,gaug:[7,25,32,34,46,60,69,91,92,103,110,115,119,120,121,122,123,126,132,136,143],gauge00001:[45,61,121],gauge_coord:91,gauge_data:103,gauge_dir_nam:91,gauge_fil:91,gauge_file_nam:91,gauge_id:45,gaugedata:[45,61,143],gaugeno:[45,61,143],gauges2kml:60,gauges_modul:[45,119,121],gaugesolut:45,gaugetool:[45,119],gaugexxxxx:[45,121,132],gauss_pt:30,gaussian:[5,85,105,145],gave:123,gca:[40,50,67],gcc:[96,102],gcs:52,gdal_data:52,gdal_test:52,ge_xlim:52,ge_ylim:52,gear:13,gen_vari:[106,113],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,34,39,40,41,42,46,49,52,54,56,58,61,63,64,65,69,72,73,74,78,79,80,81,83,86,87,89,91,96,97,98,100,101,102,105,106,108,110,112,115,119,121,132,135,136,139,141,142,146,151,153,154,159,160],generate_2d_coordin:[40,67,156],generate_2d_topo:156,geo:[46,65],geo_data:[61,144],geo_gpu_pap:53,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,35,37,39,42,44,45,53,54,56,57,58,59,60,61,65,67,69,70,72,75,78,82,93,102,108,110,111,113,132,133,134,136,137,139,141,142,150,151,152,153,154,155,156,157,158,159],geoclaw_modul:119,geoclaw_riemann_util:122,geoclawdev:55,geograph:52,geohazard:49,geol:30,geolib:[70,115,119],geom:103,geometr:159,geometri:[25,30,72,93,94,98,100,103,119],geophi:17,geophys:[4,16,17,23,46,49,75,141],geoplot:[34,50,52,80],georefer:52,georeferenc:52,georg:[4,17,30],geoscientist:49,geospati:52,geotiff:129,geq0:67,get:[0,10,13,24,28,41,46,52,54,55,57,58,59,63,64,67,78,82,85,86,91,94,95,96,102,104,105,106,107,110,111,113,122,133,135,142,150,156,157],get_as_arrai:35,get_aux_glob:103,get_auxbc_from_aux:103,get_cmap:79,get_count:106,get_dim_attribut:91,get_dt:101,get_dt_new:101,get_q_glob:103,get_qbc_from_q:103,get_remote_fil:[126,156],get_topo:156,getax:1,getcwd:79,getfigur:1,getfram:[1,3,81],getgaug:45,gethandl:[0,2,3],getitem:1,getlogg:95,getsitepackag:108,getusersitepackag:108,gfortran:[13,59,73,82,84,104,139,157],gfortranbinari:102,ghamdi:4,ghost:[7,16,73,74,91,94,101,103,121,128,141,143,145,153,159,162],gica2937:30,gigabyt:154,git:[12,13,23,24,25,26,29,53,56,59,93,102,113,125],git_statu:51,github:[12,15,22,23,24,25,26,29,53,55,58,59,90,98,102,109,113,118,120,121,122,131,133,134,138,148,149,157],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,34,36,37,45,53,60,61,67,69,72,73,74,79,81,96,97,101,113,116,120,121,125,128,135,141,144,154,156,158],given:[5,30,40,48,52,54,60,65,68,72,89,96,100,101,103,106,112,128,135,136,137,144,150,154,156,159],glitch:118,global:[6,14,91,103,106,136,154,158,159],gloss:158,glu:16,gmt:48,gnu:102,gnufcompil:157,goal:6,godaddi:55,godunov:[4,101,141,143,145,159],goe:[30,46,55],going:[5,16,22,56,67,85,88,90,94,99,114,128,146,154,162],gone:95,good:[16,28,49,52,62,73,83,105,110,113,121,128,133],googl:[24,25,28,40,46,60,67,90,94,96,104,119,121,129,133,135],googlecod:96,googleearth:[52,60],googleearth_darkblu:52,googleearth_lightblu:52,googleearth_transpar:52,gori:10,gotten:40,gov:[30,40,48,67,72,96,150],govern:[32,144],gprint:[142,143],gpu:[25,125],gradi:[4,17,83],gradient:[122,162],gradylemoin:4,grai:150,grant:[4,83],graph:9,graphic:[23,28,53,68,78],grav:134,gravit:[65,144,159],graviti:[134,144],great:[48,90],greater:[5,32,60,65,67,102,112,132,141,142,144],greatest:[69,112],greatli:[26,34,83,136],green:[12,60,67,72,79,113,150,156],grid1d:91,grid:[4,7,17,18,19,20,22,23,25,27,28,39,40,45,46,47,49,52,53,60,67,68,69,74,75,78,83,85,93,95,96,98,99,100,101,103,105,112,113,115,116,118,119,121,122,123,126,128,130,133,134,135,136,137,141,142,143,145,151,153,154,156,158,159,162],grid_files_scanf:160,grid_numb:74,grid_registr:[54,156],griddata:156,gride:151,grideges_show:22,gridlin:68,gridlines_show:22,ground:[32,72,126],groundoverlai:52,group:[3,13,24,28,30,49,90,94,96,104,120,133],gtype:61,guarante:[46,49,101,111],guard:120,gui:[22,160],guid:[7,13,17,18,23,24,25,46,47,53,58,93,107,112,122,126,147],guidelin:93,gzip:[56,126],h_l:134,h_r:134,hack:103,had:[34,45,53,54,121,122,123,124,128,137],hadjimichael:[4,17,83],half:[0,16,17,18,72,101,141,159],halfspac:72,hand:[3,5,18,19,20,65,85,113,135],handi:[28,63],handl:[0,2,3,6,32,40,42,46,54,60,73,75,78,91,94,98,100,101,103,104,105,106,108,115,116,118,119,121,123,124,125,126,134,137,150,156],hang:72,happen:[31,52,63,85,100,103,126,157],har:133,harbor:32,hard:[50,55,73,79,156],hardcopi:[1,79,81,140],harder:141,hardest:70,hardwir:73,harm:108,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,37,40,45,51,52,53,54,55,56,60,61,63,65,67,68,69,72,74,75,79,83,86,88,91,95,98,99,100,103,104,106,108,109,110,112,113,114,115,116,121,122,123,124,125,126,128,131,133,135,136,141,142,144,150,153,154,156,159,160,162],hash:[51,55,113],hasn:55,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,34,35,36,37,38,40,42,43,45,46,49,52,53,55,56,57,59,63,64,65,67,68,69,70,72,73,74,78,79,81,82,83,85,86,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,110,112,113,115,116,118,119,120,121,122,123,125,126,128,129,132,133,134,135,136,141,142,144,146,150,154,156,157,159],haven:[105,107],haversin:48,hazard:[4,32,46,65,136],hdf5:95,hdf:94,head:[28,30,55],header:[11,30,32,34,40,45,54,67,72,74,94,100,119,121,123,150,154,156],header_styl:156,heavili:86,height:[52,156],held:[24,49],hello:96,help:[5,7,9,23,24,25,28,29,40,41,50,55,57,63,78,81,93,96,102,106,113,120,126,133,146,157],helzel:17,henc:[5,54,55,64,69,101,107,108,112,137],here:[4,13,16,29,34,39,40,49,56,59,60,67,75,79,81,85,88,93,94,96,98,99,104,105,108,110,112,119,133,134,135,151,156,162],heterogen:159,hex:[60,79],hidden:[3,63,79],hide:[52,68],hierarchi:[34,52,91,108],high:[4,17,32,49,52,67,69,72,75,86,93,101,133,136,137,158,159],higher:[3,6,52,91,101,102,112,126,133,135,136,137],highli:[123,137],highlight:[11,13],hilo:[136,158],hint:[16,25,46,78,81,108,144,157],histor:[49,72,158],histori:[28,35,56,59,81],hit:[16,34,68,81,95,141],hko:150,hlle:124,hmin:32,hoc:86,hold:[3,35,81,105,112],holder:[62,83],holland:[123,144,151],holland_storm_modul:119,home:[13,29,30,59,139],homebrew:[52,82],homepag:[21,25],homogen:[72,101,159,162],hood:[78,93],hope:[26,113],horizont:[52,156],host:52,hour:[13,34,52,60],how:[1,6,7,12,16,22,24,28,29,30,32,34,36,37,39,40,42,45,47,52,56,60,61,63,67,72,73,74,78,88,90,92,93,94,98,101,105,106,108,110,111,112,113,116,121,123,125,126,131,132,133,140,141,144,146,154,156,160],howev:[6,13,16,22,29,32,36,37,40,42,47,49,52,59,62,64,67,69,72,73,74,83,86,93,112,113,121,123,125,136,137,140,144,153],howto:107,hpc:24,hrd:150,hss:[34,35],html:[1,12,13,17,23,28,30,36,37,41,44,45,52,55,56,72,78,79,90,96,97,107,108,113,124,126,150],html_plot:97,html_theme:55,htmlplot:90,http:[4,12,13,17,24,26,28,29,30,40,48,52,53,55,56,58,59,62,67,70,72,82,83,86,87,94,96,98,107,108,118,120,121,122,124,125,128,129,130,131,134,150,156],huge:[61,67,137,154],human:150,hundr:34,hurdat:[123,150,151],hurrican:[110,150],hurt:[12,64],hwrf:[123,144,151],hydrodynam:17,hyperbe:89,hyperbee_limit:89,hyperbol:[4,5,6,17,43,75,86,93,98,99,105,133,141,144,159,162],hyperol:141,ian:4,ibm:102,ibtrac:[123,150],ico:55,icon:55,idea:[10,24,30,67,68,75,85,105,116,156,162],ideal:[56,136],ident:[40,64,91,94,96,113,156],identifi:[5,36,37,40,52,67,86,112,126,150],idl:13,ids:45,ieee:17,ifort:42,igetsp:119,ignor:[16,52,60,94,119,128,136,156],iinstal:96,ike:110,illustr:[12,25,30,32,36,44,52,67,68,72,111,118,119,123,125,133,135,146,156],imag:[13,36,37,40,56,60,67,113,123,135],imd:[150,151],immedi:[24,49,68,85,87,88,95],impact:[5,72],impati:98,imped:[85,105],implement:[1,4,5,7,14,16,30,40,60,61,64,71,83,98,101,105,106,113,118,121,124,126,128,133,134,141,156,159,162],impli:[62,83,144],implicit:[83,101],implicitli:[128,144],importantli:96,impos:[16,86,112,148,149,162],imposs:[49,141],improperli:55,improv:[4,13,22,24,32,34,52,55,94,107,115,116,118,119,120,121,122,124,125,126,127,128,129,141],imread:[40,67],imshow:[40,67,156],in_poli:156,inaccur:49,inaccuraci:49,inadequaci:65,inadvertantli:79,inbound:13,inc:[4,17,68],incept:4,inch:[2,52,60,79,140],incident:[62,83],includ:[4,6,13,18,21,22,23,27,28,29,30,32,34,35,36,37,39,41,42,44,45,49,52,54,56,58,59,60,62,64,65,67,68,69,70,72,73,75,78,79,81,83,85,86,90,91,93,94,95,96,97,98,100,101,102,103,105,108,110,112,113,115,121,122,123,124,125,126,127,128,129,130,133,134,135,139,141,143,144,146,147,150,151,153,154,156,159],include_b0:35,include_bfin:35,inclus:135,incom:16,incompat:[28,52],incompress:17,inconsist:120,incorpor:[22,49,55,83,101,115,122,134,156],incorrect:[123,124,137,150],incorrectli:120,increas:[34,35,52,60,73,135,144],increasingli:28,increment:[32,45,52,106,141,143,145],ind:91,inde:[86,96],indent:[48,60],independ:[12,23,30,34,35],index:[1,6,13,22,23,27,35,45,55,56,79,91,93,96,98,99,106,123,128,141,142,143,144,145],indian:150,indic:[7,16,20,22,25,29,30,32,34,39,40,42,45,46,52,54,56,59,64,68,69,77,81,91,95,96,99,101,105,108,112,113,121,126,128,133,134,141,142,143,144,145,154,156,159],indirect:[62,83],individu:[4,22,23,52,60,63,64,68,91,112,113,150],inf:156,infer:156,infinit:141,inflat:16,info:[17,29,30,33,34,35,45,56,60,68,88,91,95,101,121,142,143,150],info_sz:30,inform:[13,14,22,25,32,33,35,36,37,47,48,49,50,51,59,64,74,79,80,81,85,86,91,93,95,96,97,99,100,106,108,120,123,124,126,131,132,133,136,139,141,142,144,150,153,154,157,158,159,160],inhabit:85,inherit:[79,101],init:[12,25,28,40,46,53,58,136,144],initi:[4,5,7,12,13,22,25,30,34,35,45,46,48,49,52,56,61,64,68,69,72,75,81,83,84,85,86,88,89,91,92,94,95,100,101,103,104,106,109,112,120,123,126,128,133,136,141,142,143,145,150,154,156],initialize_sourc:86,inland:[40,67,144],inlet:135,inlin:[40,134],inlinelimit:64,inner:[5,112,124],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,35,41,46,52,60,64,67,68,85,88,89,91,93,99,100,101,106,110,120,123,124,125,133,143,144,145,150,151,154,156,159],input_filenam:86,input_path:154,input_unit:30,inputfil:[106,156],ins:22,insert:[11,16,72,94,139],insid:[39,91,96,100,133,135,156],insidi:121,inspect:[19,20,52],instabl:[121,128],instal:[12,13,18,23,25,29,36,44,52,55,56,81,83,84,87,92,94,105,107,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,139,161],install_fortran:37,install_prerequisit:36,installing_fortcod:56,installing_opt:59,installing_pip:56,instanc:[3,28,35,52,72,75,81,85,86,88,91,94,95,98,135,144],instantan:101,instanti:[7,88,96,98,101,103,143,145],instati:[72,156],instead:[3,13,32,36,37,40,42,45,53,55,56,59,63,64,70,102,103,106,108,120,121,124,128,132,133,134,135,144,154,156],institut:4,instruct:[13,18,24,25,29,36,37,40,52,53,55,56,70,85,87,93,96,102,105,108,122,129,131,132,157],insur:[51,55,63,81,112,115,119,142,144,154],int_a:5,intact:[71,120],integ:[3,32,33,34,45,52,60,65,67,79,86,100,112,122,125,133,141,144,150,156],integr:[5,22,54,61,83,93,95,101,115,116,120,143,145,153,154,159],intend:[49,86,123],intens:[86,150],intent:[86,133],intepol:34,inter:[28,122],interac:95,interact:[1,13,22,36,37,41,45,47,63,75,78,79,86,96,97,102,105,108,120,121,135],interactive_plot:[97,105],interactive_test:120,interdepend:103,interest:[5,12,16,18,23,27,29,32,34,35,40,50,68,69,86,103,110,112,113,122,123,124,125,126,127,128,129,130,137,141,150],interfac:[4,19,22,68,83,86,89,93,94,99,101,106,133,159,160,162],interface_funct:106,interior:[6,16,40,74,103],interleav:83,intermedi:[19,32,35,72,159],intermit:[45,121],intern:[6,30,45,54,60,72,121,142,154,156,162],interp_dz:33,interp_kwarg:150,interp_method:32,interp_unstructur:156,interpol:[5,6,16,18,25,30,33,35,40,45,46,54,60,61,68,72,79,121,128,135,136,137,150,151,156],interpret:[30,54,72,123,154],interrupt:[62,83],intersect:[32,67,72],intersphinx:55,interv:[5,45,48,85,105,112,128,135,141,144],introduc:[5,16,19,32,33,34,35,40,79,126,128,135,137,142,162],introduct:25,introductori:24,intuit:93,inund:[32,46,52,65,112,126,136,158],inundataion:[136,158],inv_haversin:48,invalid:[42,100],invert:48,invest:49,investig:113,invis:[41,119],invok:[11,14,73,137,157],involv:[24,98,101,110,151],ioerror:100,ioexcept:106,iout:145,ipdb:79,iplot:[36,38,90,93,96],iplotclaw:[1,13,22,36,37,45,47,78,79,97,108],iplotclaw_:79,iplotclaw_figno:1,ipynb:[29,30,32,40,72,111,120,134,135],ipynotebook:120,ipython:[13,75,79,81,86,87,93,95,102,105,108,119,120],ipython_displai:115,is_valid:[100,103],island:[32,40,67,135],isn:[63,73,74,157],iso:150,isosurfac:68,isotrop:72,issu:[22,24,26,55,56,59,68,85,90,91,93,101,102,104,113,115,120,121,122,123,133,144,157],item1:[0,81],item:[0,1,3,68,78,81,106,128,140],itemnam:[1,81],iter:[30,40,67],ith:99,its:[4,6,13,22,29,40,49,52,62,64,67,72,74,83,88,89,90,91,93,98,100,101,103,106,112,143,156,162],itself:[4,72,78,107,126,133,144,156],ixi:[39,67,133,135],jacobian:[133,162],jan:[4,56],januari:[107,114,121,131],japan:[52,60],japanes:150,javascript:146,jed:83,jet:[30,68],jma:[123,150,151],job:[13,130],join:[24,79],journal:[4,17,53,93,146],jovyan:29,jpg:[55,68],jsanim:[115,119],jsanimation_frametool:117,juan:135,juli:[116,117,131],jump:[4,5,68,81,101,121,141,162],junction:32,june:[122,123,124,125,131],jupyt:[25,44,72,75,93,107,111,119,120,126,133],just:[0,6,28,32,41,56,85,86,88,90,94,95,96,97,98,103,106,116,123,141,159],justifi:72,kappa:[105,162],kappa_i:162,karg:100,katrina:110,kaust:[4,24],keep:[14,25,28,32,33,35,36,37,73,85,88,93,103,106,113,116],keep_copi:[85,88,95],keep_gaug:103,kei:[0,1,2,13,28,30,45,94,101,105,106,150,156],kemm:89,kemm_2009:89,kentzo:56,kernel:106,kernel_languag:[101,106,113],ketch:4,ketcheson:[4,17,76,83,93,101],ketchesonmandliet:[4,17],ketparlev13:[4,17,75,93,133],keyboard:68,keypair:13,keyword:[2,3,79,85,90,91,94,100,106,113,123,140,150,156],kind:[18,34,88,90,95,125,133,141],kinemat:[30,46],king:[4,83],kitsap:135,klein:89,kml:[60,119,121,122,123,126,127,135],kml_build_colorbar:[52,60],kml_cb:60,kml_colorbar:52,kml_dpi:[52,60],kml_figsiz:52,kml_footer:60,kml_gaug:60,kml_header:60,kml_index_fnam:52,kml_map_topo_to_latlong:52,kml_name:52,kml_png:60,kml_publish:52,kml_region:60,kml_starttim:52,kml_tile_imag:52,kml_timespan:60,kml_timezon:52,kml_tz_offset:52,kml_use_figure_limit:52,kml_use_for_initial_view:52,kml_user_fil:52,kml_xlimit:52,kml_ylimit:52,kmltool:[46,126,127,129,155],kmw6h:[4,56,131],kmz:[60,121],kneplei:[17,83,93],know:[49,59,63,72,83,110,122,126,128,133,136,156,157,158],knowledg:49,known:[32,42,68,72,73,79,102,104,113,122,141],kristof:83,kutta:[93,101],kwarg:[2,30,60,79,106,113,140,150],kyle:[4,17,83,89,93,94],label:[30,34,50,52,54,60,119,135,154,156],lack:3,lagrangian:[25,45,46,126],lagrangian_gaug:126,lake:[40,46,67,137,144,154],lambda:[91,156],land:[16,40,46,47,52,55,56,60,67,69,80,126,137,144,156],land_cmap:40,land_color:34,landfal:123,landslid:49,langseth:[4,17],langsethleveque00:[4,17],languag:[11,78,106],lapack:115,laptop:[29,93],larg:[5,6,12,18,20,34,35,36,37,40,49,52,54,55,68,73,78,93,95,96,112,113,120,128,132,135,137,141,142,156,158],larger:[13,20,32,52,60,72,73,74,79,91,115,121,128,142,144,154],largest:[112,136],last:[3,18,27,32,34,56,58,79,85,86,98,105,120,141,150],lat:[30,48,52,54,154,156],later:[13,34,35,40,51,52,59,81,101,132],latest:[23,44,52,55,56,58,59,87,96,102,116,120],latex:[1,52,78,97],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,35,47,48,54,72,78,119,135,138,144,150,156],latitude_max:52,latitude_min:52,latitudin:48,latitutd:30,latlong:[30,52],latter:[15,67,69,98,126,135,138,141,150,159],launch:[38,90,96,97,102],law:[4,17,60,144,162],lax:[101,141,143,145,162],layer:[17,25,45,60,91,115,117,120,121,123],layout:55,lazi:34,lbla:104,ldot:135,lead:[6,13,22,32,34,49,52,65,68,72,108,111,128,137,142],learn:[49,90,107],least:[4,5,6,13,35,45,52,60,61,67,68,104,112,113,120,121,128,141,143,154,156],least_significant_digit:94,leav:[12,13,16,45,59,142,156],lectur:24,led:[20,124],leer:[89,101,141,143,145],left:[3,5,10,13,16,18,25,27,32,54,74,81,91,98,99,105,122,128,131,132,133,136,142,154,156,158,162],legaci:[23,56,59],legend:[122,135],legend_tool:122,lemoin:[4,17,83],len:[5,30,35,91,143,145,156],lenght:141,length:[15,30,35,49,60,72,98,103,121,128,138,141,142,143,144,159],leq:[5,135],less:[40,49,52,61,65,73,101,112,113,128,141],let:[16,46,59,83,110,122,128,133],level:[3,6,7,16,23,27,29,32,34,39,40,45,46,47,48,49,52,55,56,58,59,68,69,73,74,86,88,91,93,94,95,101,108,109,112,113,115,116,120,121,123,126,132,135,136,139,141,142,143,145,153,154,156,158,159],levequ:[4,16,17,24,30,53,75,89,93,101,107,133,141,159,162],leveque09:17,leveque1996:17,leveque1997:93,leveque96:17,leveque97:[4,17],leveque_book_2002:99,levequegeorgeberg:[4,17],levi:[67,126,144],levyon03:17,lgomp:106,liabil:[46,49,62,83,111],liabl:[62,83],lib:[64,108],libgdal:52,liblzma:52,librari:[6,13,15,16,20,22,25,27,28,32,34,36,37,42,45,53,60,63,70,73,74,75,83,89,94,96,101,106,108,109,112,121,126,137,138,142,148,149,157,159],library_path:106,licens:[25,46,49,93,111,123],lie:[6,32,33,35,67,69,112,126,135],lies:[6,16,32,35,69,112,135],light:[52,68,112],lighter:52,like:[12,13,24,28,29,40,42,52,55,56,60,61,68,70,81,86,88,91,94,95,96,99,100,101,103,107,108,113,120,133,135,140,153,154,157],lim_typ:101,limit:[0,4,6,12,25,30,33,39,49,52,60,62,68,73,78,83,85,86,93,101,112,117,135,141,142,143,145,150,154,156,162],lin:144,line2kml:60,line:[1,3,4,16,28,29,30,32,40,42,45,46,47,48,51,52,54,55,60,61,63,64,68,70,74,78,79,93,94,96,101,105,106,107,108,115,116,119,121,128,135,140,141,143,150,154,156],linear:[4,5,17,30,34,35,45,52,69,72,79,85,89,101,124,133,134,135],linearli:35,liner:[0,30],linestyl:156,linewidth:[79,135],link:[4,11,13,15,17,18,19,20,24,25,28,42,43,46,52,53,54,55,56,58,60,70,107,108,109,122,131,133,134,136,138,145,148,149,154,158],linspac:[33,68,88,105,135],linux:[13,71,82,104,113,139],lisandro:83,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,34,35,36,37,38,39,41,45,52,54,55,57,58,59,60,62,63,64,65,68,69,72,73,79,81,83,85,88,89,91,94,95,97,98,99,100,101,103,104,106,108,112,119,121,123,128,132,135,139,141,142,143,144,145,150,151,153,156],listofgrid:123,literalinclud:55,literatur:[49,133],littl:[49,72,94,136],live:103,llapack:104,llcenter:[54,154,156],llcorner:[54,154,156],lmm:101,lnetcdf:[42,70],lnetcdff:70,load:[13,60,95,97,100,106,113,156,160],load_sift_unit_sourc:30,loc:[135,156],local:[13,17,20,25,28,52,55,60,63,64,68,89,91,98,103,121,123,137,154,156,159],local_fnam:156,local_path:106,localhost:29,locat:[5,6,7,13,30,32,34,47,48,52,54,56,59,61,68,69,74,91,95,97,99,100,106,108,110,112,120,122,136,137,144,150,151,156],log:[14,25,28,29,92,93,100,101],logger:[95,103],logic:[6,16,17,32,128,144],logical_and:[40,67],logical_not:[40,67],logical_or:135,logo:[55,122],lon:[54,154],long_lat:156,longer:[20,28,45,55,56,60,82,107,121,123,126,128,132,133,144,154,158],longitud:[30,32,35,47,48,54,67,72,78,119,135,144,150,156],longitude_max:52,longitude_min:52,longitude_shift:30,longitudin:48,longtitud:52,look:[13,14,22,25,28,30,40,52,55,56,60,68,70,79,81,86,91,96,100,101,105,106,108,113,116,123,135,141,142,144,153,156,157],lookup:123,loop:[45,68,78,106,112,123,126,128,133,137,140,141,159],lose:120,loss:[62,83],lossi:94,lot:[28,40,126],love:[90,133],low:[52,67,86,156,158],lower:[3,22,30,32,33,39,54,67,74,91,96,135,137,141,143,145,154,156,158],lower_glob:91,lowerg:96,luna:[17,83,93],lxml:52,lying:[6,67],m_w:162,mac:[73,82,104,113,139],machin:[13,25,73,75,113,121,139],maco:82,macport:52,made:[4,18,22,28,30,35,59,100,103,115,116,121,123,126,128,135,137,144,151,154,156,159],magic:60,magnitud:[5,30,112,123,144],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,34,35,36,37,38,40,41,42,47,48,49,50,52,54,55,58,59,62,63,65,67,68,69,70,72,73,78,79,81,82,83,86,87,90,91,93,94,95,98,100,101,104,106,108,112,113,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,139,140,141,142,143,144,150,151,152,154,156,157,159],mail:[98,104],main:[5,11,12,19,28,40,44,55,56,67,68,75,86,88,94,98,105,106,113,122],mainli:96,maintain:[12,28,107,123,142,154,159],mainten:83,major:[4,22,55,56,83,86,114,115,116,117,122,124,129],make:[1,5,11,13,14,18,19,20,22,24,25,27,28,32,34,36,37,39,41,42,45,47,49,51,52,55,56,59,60,61,63,64,65,68,73,75,78,81,82,85,86,88,91,92,93,94,98,100,106,111,113,115,119,120,121,122,123,125,126,127,128,129,133,135,141,154,156,158,159],make_colormap:[40,67,79],make_fgout_fcn_xi:35,make_fgout_fcn_xyt:35,make_input_data_kml:60,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:150,make_shoreline_xi:156,makefil:[5,6,11,14,15,16,19,20,23,25,28,34,36,37,42,55,70,73,75,79,81,86,92,93,112,115,119,121,123,124,126,137,138,141,143,144,145,146,148,149,154,157,159],makefile_kml:119,maketopo:[124,154],man:[17,25,46,49,144,148,149],manag:[4,12,13,52,95,150],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,83,89,93,94],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,34,36,37,38,42,43,44,47,52,53,55,60,61,63,64,67,72,73,74,79,81,82,83,85,90,93,98,100,105,106,112,114,115,121,123,124,125,126,130,133,135,140,141,142,144,154,159],manifold:68,manipul:[34,45,156],manner:[5,34,40,45,52,61,67,72,78,123,137,141,148,149,154],manning_break:144,manning_coeffici:144,manual:[38,86,95,102,104,113,152],manuel:[17,83,93],maojr:120,map2d_to_1d:27,map:[3,16,29,30,40,60,67,68,79,83,86,91,93,98,112,119,123,128,134,150,156,162],map_2d_to_1d:3,map_cart_to_latlong:52,map_topo_to_latlong:52,mapc2p:[3,25,27,68,86,91,128],mappedgrid:[3,68],march:[24,25,32,39,40,46,115,116,131,135],marching_front:[40,67,126],marchingfront:40,margin:[32,46],mark:[16,52,67,112,113],mark_cent:91,mark_nod:91,marker:60,markup:11,marsha:[4,6,17],mask:[33,40,46,50,135,156],mask_dri:40,mask_dry_onshor:40,mask_outsid:[7,67],mask_outside_zlim:60,masked_arrai:[40,67,135],masked_wher:34,maskedarrai:156,mass:[6,95],massiv:93,massless:34,master:[13,15,25,29,55,56,59,98,109,120,121,122,123,124,125,126,127,128,129,130,131,134,138,148,149],match:[30,34,39,52,60,94,100,113,150,156],materi:[4,62,72,83,110,126],math:[17,52,105],mathemat:4,mathwork:68,matlab:[7,22,25,36,37,77,78,79,97,107,123,126,127],matlabpath:68,matplotlib:[0,2,3,13,30,40,50,52,67,78,79,82,84,87,107,127,134,140,150,156,157],matric:[5,133,162],matteo:[4,17,83,93],matter:[64,119],matthew:[17,83,93],maux:[22,133,159],max1d:[73,126,142],max:[0,30,32,40,68,112,116,137,143,145,150,156,162],max_buff:[45,121],max_inch:60,max_it:[40,67],max_step:101,max_vertices_in_descript:60,max_wind_radiu:150,max_wind_radius_fil:150,max_wind_spe:150,maxgr:123,maxima:[32,73],maximum:[3,22,30,32,33,34,46,68,69,101,105,112,115,116,123,126,141,142,143,145,150,151],maxlevel:[39,68,112,128,135,142,143,144],maxm:133,maxmi:[20,86],maxmx:[20,86],maxmz:20,maxwell_1d_homogen:98,maxwelton:[40,67],mayb:156,mbc:159,mc_limit:89,mcs:96,mean:[3,13,22,28,32,40,45,49,53,59,68,69,95,96,112,133,136,141,143,145,158],mean_latitud:50,meant:[42,91,101,150],measur:[30,45,48,72],mechan:[59,103,131],media:17,medium:[143,159],meet:24,member:[52,98,100,105],memori:[20,22,73,74,75,85,88,95,103,128,142,143],memsiz:[128,142],mention:[93,141,142],menu:[13,18,25,55,60,122,131,136,158],meqn:[45,74,133,159],merchant:[62,83],mercuri:96,merg:[6,13,25,28,53,55,56,59,119],mesh:[4,7,17,33,53,67,68,75,78,85,112,126,140,141,159],meshgrid:[85,98,135,156],mess:55,messag:[28,41,48,55,59,68,73,88,95,97,100,101,103,104,128,141,143,145,157],met:[32,62,83],metadata:[35,74,154,156],meteorlog:150,meter:[30,48,52,67,69,72,112,136,144,150,156,158],meterolog:150,method:[4,5,7,17,32,34,35,39,43,45,54,67,69,79,81,85,88,89,91,96,100,101,106,112,113,119,133,140,141,142,143,145,150,153,154,156,159],method_t:35,method_xi:35,metric:48,mhd:125,mhhw:136,mhw:[40,46,49,136,154,158],micro:13,mid:79,middl:120,midpoint:[69,91],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,40,48,52,54,55,59,64,67,68,69,73,79,82,85,95,108,110,111,112,115,141,142,154,156,158,159],migrat:19,millimet:156,million:126,mimic:123,min:[0,150,156,162],min_level_check:32,min_time_incr:[45,61],mind:28,minim:[6,59,67,94,135,142,156],minimalist:34,minimum:[3,32,45,52,72,105,121,144,156],minisymposterium:24,minlevel:[39,112,128,135,142,143,144],minmod:[89,101,141,143,145],minmod_limit:89,minor:[11,52,55,95,115,116,117,118,119,120,121,122,123,124,126,128,130],minut:[34,40,48,52,55,60,136,156,158],mis:79,misc:[4,125,127],miscellan:99,mislead:[40,69],miss:[22,25,94,125,150,154,156,157],mitig:[4,49],mitran:[4,17],mix:[30,39,52,72],mjb:[6,17],mjberger:4,mlc:150,mllw:158,mode:[1,13,28,106,153],model:[5,12,16,17,24,25,30,32,42,46,47,53,54,65,95,112,120,125,126,127,135,136,137,144,150,151,154],modern:[102,123,133],modif:[28,41,62,68,79,83,89,144],modifi:[6,9,14,15,16,20,22,27,32,36,37,40,45,46,55,56,59,61,63,68,71,79,86,89,91,93,98,108,109,110,111,112,118,120,121,122,123,128,135,137,138,141,143,144,145,148,149,154,156,159],modul:[0,7,8,12,25,28,29,32,34,40,42,46,50,52,53,54,59,61,64,67,72,73,78,79,80,81,85,86,89,90,94,98,99,100,103,107,108,113,116,117,119,122,123,124,125,126,132,135,141,142,144,150,154,155],module_nam:106,modulu:[30,105,143,159],molsolv:101,moment:[27,30,124],momenta:61,momentum:[16,32,34,35,49,61,65,95,128,134,144,154],monitor:[18,22,25,33,34,39,46,67,69,73,116,118,121],monoton:[141,144],monster:10,month:[17,52,93],more:[1,2,3,4,5,7,10,12,13,14,16,17,18,20,22,24,26,28,29,30,32,34,36,39,45,46,47,49,52,54,55,56,58,59,60,61,62,63,67,68,69,72,78,79,80,81,82,83,86,88,89,91,93,94,95,96,97,98,99,101,102,103,105,106,108,111,112,113,115,116,119,121,122,123,124,125,126,127,128,129,130,131,133,135,136,137,139,140,141,142,143,144,146,150,152,153,154,156,157,158,159,162],moreov:72,most:[3,18,20,22,27,29,32,34,36,37,41,42,45,49,51,52,53,54,55,58,60,63,67,68,73,75,78,79,81,83,91,95,96,101,104,105,107,112,113,120,122,128,131,132,133,134,135,136,140,141,142,144,147,159],mostli:[3,78,93,126],motion:[72,154],motlei:53,movabl:30,move:[16,32,36,37,46,55,59,61,72,98,112,115,117,122,144,154,155],movement:30,movetopo:115,mparsani:4,mpi:[75,96],mpich:96,mpiexec:96,mpirun:[96,102,113],msl:[136,158],mthlim:101,much:[13,18,28,32,34,42,52,55,74,75,78,82,107,112,115,119,126,135,141,144,153,156],muct:101,multi:[17,52,85,115,117,120,123,159],multicor:[73,121],multidimension:[86,93],multilay:[45,116,119,122,123,124],multipl:[4,5,6,13,23,28,32,33,40,45,78,85,91,94,95,106,108,113,115,121,125,132,133,142,150,151],multistep:101,multivers:55,must:[5,6,13,16,20,22,28,30,32,34,40,44,47,52,55,58,62,63,64,67,68,72,73,74,83,86,93,94,95,98,100,101,103,104,105,106,108,112,115,119,133,135,136,137,141,142,143,144,145,150,156,157,158,159,162],mwave:133,mx1d:159,mxnest:22,my_acoustics_rp:85,my_custom_bc:101,my_geoclaw_storm:150,my_initial_solut:88,my_riemann_solv:133,my_rp_modul:85,my_setplot_fil:81,my_solv:88,my_storm:150,n00014:4,n12:32,n23:32,nadi:150,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,34,35,36,37,39,40,41,45,52,55,56,60,62,68,70,79,81,83,86,88,90,91,94,95,99,100,105,106,108,120,123,128,132,133,135,140,141,142,143,144,145,150,156,159,160],namespac:86,nan:[35,48,156],nasa:4,nation:[4,49,150],nativ:94,natur:[32,55,133,162],naux:74,navd88:154,navig:[12,29,55,146],nbconvert:126,nbtool:119,nbviewer:120,nc_param:156,ncar:4,ncei:[40,67,136,154,158],ncol:[40,119],nctr:[30,72],ndarrai:[48,89,91,99,103,150,156],ndarrari:91,ndim:[22,74,81,141,142],ndip:30,nearbi:[69,136],nearest:[35,40,45,156],nearfield:137,nearli:91,nearshor:[25,32,34,45,46,49],necessari:[5,6,13,34,35,36,37,47,49,52,55,56,59,60,68,72,74,75,81,85,86,94,119,121,123,132,133,140,141,142,154,157,159],necessarili:[4,40,94,113],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,34,35,36,37,38,40,41,42,45,49,50,54,55,56,57,59,60,61,63,64,67,68,70,72,73,74,75,81,82,85,86,88,93,94,95,96,98,101,105,107,108,110,112,113,116,120,121,123,124,128,130,132,133,135,137,138,139,141,142,143,144,145,148,149,150,151,152,154,156,158,159,162],neg:[22,40,137,144,154,156],negat:[48,154],neglig:[62,73,83,144],neighbor:[4,34,40,67,69,112,121,137,142,143,156],neither:[52,60,62,83,121],ness:94,nest:[115,121,142,143],netcdf3:94,netcdf3_64bit:94,netcdf3_class:94,netcdf4:[94,154,156],netcdf4_class:94,netcdf4_dir:42,netcdf:[13,35,42,46,120,123,125,127,150,156,158],neumann:150,never:[32,69,98,103,109,112,126,135,141,143,145,157],nevertheless:52,new_featur:28,new_frame_num:106,new_plotax:[0,2,45,52,79,140],new_plotfgur:79,new_plotfigur:[1,2,45,52,79,140],new_plotitem:[0,3,45,52,79,140],new_userdata:[143,145],newdelhi:150,newdir:71,newer:[28,73,89,123],next:[2,3,6,13,18,34,36,38,45,55,56,68,74,79,81,84,85,93,94,96,101,105,110,112,113,141,142,144],nfr:4,ngdc:[40,67,136],nghost:74,ngrid:74,nhc:150,nhtmp:49,nice:[28,60,86,98,116,135],nicer:81,nih:4,nnnnn:[132,141],no_data_valu:156,noaa:[30,40,48,54,67,72,123,136,150,154,158],nodal:123,nodata_valu:[40,156],nodataerror:150,nodatav:154,nodatavalu:[54,154],node:[91,123],nodes_with_ghost:91,nohup:116,non:[5,16,56,67,75,86,98,105,124,126,141,143,145,150,162],nonconserv:162,none:[0,1,2,3,16,24,27,30,33,35,40,45,48,52,60,67,88,91,94,95,100,101,103,106,113,115,121,123,124,125,126,127,130,132,141,143,145,150,156],nonlinear:[4,5,17,49,89,133,141,162],nonoverlap:6,nonphys:45,nonuniform:68,nor:[62,83],norm:[40,60,67,112,156],norm_dri:[40,67],norm_topo:67,normal:[16,33,34,53,55,61,79,98,108,133,134,141,142,143,144,145],north:[32,40,48,67,72],northernmost:154,norwegian:4,nose:[28,37,38,84,96,113,152],nosetest:[28,37,38,96,102,113,152],notat:[30,48,60,133],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,34,35,39,40,41,42,45,48,52,53,54,55,56,57,58,59,60,63,64,67,72,73,79,81,86,89,90,91,93,94,96,98,102,103,106,107,109,112,132,133,135,136,137,138,140,141,142,143,144,145,148,149,150,151,153,154,156,158,159],notebook:[25,30,32,40,44,55,67,72,75,87,93,95,111,119,120,126,133,134,135,156],notebook_html:126,noth:[15,61,103,124,138,148,149,156,159],notic:[52,62,83,105,113],nout:[34,145],nov:[17,93],novemb:[120,121,131],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,34,35,39,40,42,51,54,55,56,65,67,69,72,74,79,85,86,93,94,95,96,97,98,100,101,102,105,110,112,113,115,116,119,120,121,122,123,125,126,128,129,136,140,142,146,154,161],npoint:33,nprint:[142,143],npt:32,npy:156,nrm:60,nrow:40,nrule:135,nsf:4,nstate:94,nstepout:[88,95],nstrike:30,nthmp:49,ntime:143,ntot:145,num_aux:[5,86,94,96,98,99,103,133,141,142,143,145,159],num_cel:[8,22,91,133,141,142,143,145],num_cells_glob:91,num_digit:60,num_dim:[22,39,91,94,98,141,142,143,145],num_entri:106,num_eqn:[74,85,86,89,94,96,98,99,100,103,105,133,141,143,145,159],num_fgmax_v:[32,144],num_ghost:[86,91,94,98,99,101,103,133,141,143,145],num_output_tim:[5,85,88,95,132,141,143,145],num_proc:121,num_var:94,num_wav:[89,99,133,141,143,145],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,34,35,36,37,44,45,52,55,60,63,68,73,74,75,81,85,86,88,89,90,91,93,94,95,96,98,100,101,103,105,106,107,110,112,113,115,116,118,119,120,121,122,123,125,132,133,135,141,142,143,144,145,150,151,152,156,159],numer:[4,17,52,107,124,150],numerica:17,numpi:[3,13,30,32,34,35,40,48,67,82,84,85,86,88,91,98,103,104,105,107,113,134,135,143,156,157],nxpoint:156,nypoint:156,nyu:4,object:[0,1,2,3,5,22,27,30,32,34,35,39,45,52,60,67,72,78,79,81,85,86,88,94,95,96,98,100,103,104,105,106,115,124,132,133,141,142,143,144,145,150,156],obliqu:16,obscur:22,observ:[32,49,115,128,136,141,144,151,158],observatori:4,observerd:151,obtain:[4,6,12,32,44,45,47,49,59,60,69,94,95,96,112,128,133,137,146,154,162],obviou:[8,52],occasion:[113,121],occupi:52,occur:[34,63,72,150,151],ocean:[5,16,17,32,49,52,110,112,135,144,148,149,154],octob:[117,118,119,125,126,129,130,131],off:[12,13,45,49,52,60,68,81,88,95,112,142,156],offer:[41,52,113],offic:4,offici:[56,82,123],offset:[50,52,60,150,156],offshor:[60,65,67,135,137],oft:99,often:[6,11,13,16,20,27,29,32,35,36,37,41,42,45,46,49,50,51,60,61,65,69,72,74,95,107,108,112,113,128,132,133,135,136,137,140,141,144,150,154,158,159,162],okada85:[17,30,72],okada:[17,25,30,46,111,154,158],okadamap:30,olav:4,old:[1,7,18,20,22,32,40,55,56,81,88,96,97,98,101,113,120,122,123,128,133,144,154],older:[22,42,53,55,58,59,101,127,142],olig:[6,17],omega:85,omit:[59,113,121,132,144],omp:142,omp_num_thread:[42,73,121,153],omp_stacks:73,on_lower_boundari:91,on_upper_boundari:91,onc:[1,5,13,22,28,29,36,37,52,56,57,58,59,67,68,72,81,85,95,96,97,98,103,106,121,123,129],ondrej:83,one:[0,1,2,3,4,5,6,8,13,15,16,18,20,22,24,25,27,28,29,30,32,34,35,36,37,40,45,47,52,54,55,56,57,58,59,60,61,65,67,68,69,70,71,72,74,75,78,79,85,91,94,95,96,98,100,101,102,105,106,108,110,112,113,120,121,123,128,132,133,134,135,137,138,140,141,142,143,144,145,146,148,149,150,154,156,159,160],ones:[29,85,86,103,123,141,142],onli:[1,3,5,6,8,12,13,16,18,19,22,27,28,29,30,32,34,35,39,40,44,45,49,52,55,56,57,59,60,61,64,65,68,69,72,73,74,75,79,85,88,91,94,95,96,98,100,101,102,103,105,106,107,110,112,115,120,121,122,123,126,128,132,133,134,135,136,137,139,140,141,142,143,144,145,150,154,156,157,158,159,162],onlin:[24,107,111,123,147,154],onr:4,onshor:[32,60,65,67,135,137],onto:[28,30,52,137,156],open:[4,13,17,25,28,29,30,52,60,78,83,87,91,94,106,135,139,158,160],opendatafil:64,opendiff:113,openli:23,openmp:[22,25,42,75,106,112,120,126,153],opensourc:[62,83],oper:[50,113,121],opinion:4,oppos:[28,151],opposit:[6,16,94],optim:[42,83,106],option:[2,12,13,16,18,20,22,25,28,29,30,32,34,35,36,37,41,42,48,51,54,57,59,63,68,70,78,79,85,86,88,90,91,92,94,95,97,100,101,102,105,106,108,109,112,113,116,119,120,121,124,126,129,135,139,140,141,143,144,145,146,150,156],orang:150,order:[4,5,6,13,16,17,29,30,32,34,45,49,54,59,61,64,67,68,69,72,74,75,79,81,82,83,85,88,89,91,93,94,95,97,98,101,105,106,107,108,112,119,123,128,133,135,137,140,141,142,143,145,150,154,156,157,159,162],ordinari:133,ordinarili:104,org:[4,17,46,53,55,56,62,83,86,87,94,96,107,108,120,122,124,128,129,130,156],organ:[22,23,36,37,88],orient:[72,86],origin:[3,6,13,16,20,28,30,34,35,45,53,55,67,73,74,86,101,106,115,121,128,132,142,143,144,145,156],orlean:110,oscil:[45,162],oscillatori:156,osf:[4,131],osher:101,osx:[52,82],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,34,35,36,37,39,45,46,47,49,52,53,54,56,57,58,59,62,63,65,67,68,69,70,72,73,74,78,81,83,85,86,88,91,93,95,97,98,99,102,105,107,108,112,113,115,116,118,119,121,133,136,139,140,141,144,146,150,154,156,158,159,160],otherwis:[5,30,55,59,62,67,83,95,100,101,102,103,106,112,141,156],ought:101,ouput:88,our:[54,64,85,110],out1:64,out:[3,16,24,26,29,30,32,34,35,36,37,40,45,46,51,53,54,55,56,59,60,61,62,63,68,72,79,82,83,85,86,88,94,95,96,97,100,105,107,108,110,113,121,123,125,126,133,135,142,143,145,150,156,157],out_path:150,out_tim:88,outaux:27,outdir:[1,3,33,34,35,36,37,45,51,63,78,81,88,90,91,95,120,143,145,157],outdir_p:88,outfil:156,outflow:[16,141,143,145],outgo:16,outlin:[60,68,81,126,133,140],outn:27,output:[1,5,7,8,13,14,16,18,25,27,28,29,30,33,35,36,37,41,42,45,46,47,48,50,51,52,56,61,69,72,78,79,81,86,88,89,90,91,92,93,96,97,99,100,101,102,103,105,106,108,115,119,120,121,122,123,125,126,127,133,140,143,145,150,151,152,153,156,159,160],output_aux_compon:[141,143,145],output_aux_onlyonc:[141,143,145],output_file_prefix:[88,95],output_filenam:86,output_format:[5,18,34,35,88,95,141,143,145],output_opt:88,output_path:154,output_q_compon:[141,143,145],output_step_interv:[141,143,145],output_styl:[74,85,88,95,132,141,143,145],output_t0:[132,141,143,145],output_tim:[95,132,141,143],output_unit:30,outputdir:68,outputfil:156,outsid:[6,16,39,60,67,126,135,137,154,156],outsiz:60,over:[1,3,5,6,13,16,17,22,28,30,32,34,39,40,45,46,47,49,52,54,60,61,67,68,69,72,78,94,95,101,112,115,116,124,126,133,135,137,140,142,143,144,153,154,159,162],overal:[10,85],overflow:[42,122],overhead:[6,73,112,153],overlai:[60,129],overlaid:[52,60],overland:52,overlap:[34,112,115,116,154],overrid:[28,42,52,85,86,106],overridden:[68,101,103],overrul:3,overview:[46,52,78,114,117,126],overwrit:[1,88,95,100],overwritten:[45,94,95,121,132,159],own:[16,20,24,28,34,59,85,86,92,93,102,103,110,112,123,133,146],owner:123,p_center:[91,105],p_function:95,p_node:91,p_t:105,p_x:105,packag:[4,25,28,29,36,37,52,56,57,64,75,78,82,83,85,91,93,95,97,98,100,102,105,107,108,125,126,150,157,160],pad:67,page:[1,4,9,11,13,15,17,18,22,24,28,49,54,56,57,58,59,90,93,96,97,104,107,109,113,122,126,136,138,140,146,148,149,158,159],pair:[13,94,113,156],panel:52,paper:[4,5,6,16,30,46,55,89,93],paragraph:32,parallel:[4,22,23,45,73,84,90,92,93,95,98,100,102,106,112,113,121,142],paramet:[1,6,7,9,16,20,25,27,30,32,33,34,36,37,40,41,43,46,47,49,52,54,63,64,65,68,72,73,74,78,84,85,88,89,94,95,97,100,103,106,109,112,115,121,126,128,132,133,134,136,137,143,145,151,154,156,157,159],parameter:[110,123,135,144,150,151],parametr:151,parent:[3,27,91,103,106],pars:[45,106],parsani:[4,17,83,93],part:[4,5,22,24,30,34,46,49,59,60,61,70,83,86,96,102,103,105,107,111,113,125,159],partial:[17,75,110],particl:[18,25,34,45,46,126],particle_tool:[61,126],particular:[4,6,12,20,22,28,30,32,42,45,46,47,49,52,53,56,62,63,64,68,75,79,80,82,83,85,99,100,101,103,105,110,111,112,113,116,119,120,121,122,123,125,126,128,140,150,151,162],particularli:[16,27,29,32,34,51,52,57,58,59,72,74,108,116,119,123,128,137,154],partit:96,pascal:[30,150],pass:[16,19,20,28,30,35,45,52,60,73,79,85,88,90,92,98,101,103,104,106,113,133,143,150,156,159],passiv:134,password:28,past:[4,21,25,55,61,67,100,121,124,128,131,135,136,144],patch:[3,6,7,16,22,27,32,40,52,68,72,73,74,78,79,94,96,100,103,112,121,123,126,128,137,140,142,153,154,159],patch_index:91,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,35,39,40,42,45,48,52,55,58,59,61,63,67,71,78,79,88,93,94,96,100,106,122,123,126,139,144,150,156,157],path_to_atcf:150,path_to_ibtrac:150,pathtool:68,pattern:[20,47,52,136],pcolor:[3,45,78,107,156],pcolor_cmap:[3,52],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcel:[34,40,67,126,135],pcolorcells_for_kml:[60,126],pcolormesh:[60,67],pdb:79,pde:[4,5,17,57,58,59,75,82,93,105,141,159],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:83,pedant:42,peerj:[4,17],pem:13,pend:3,peninsula:135,peopl:[4,12,13,83],pep8:28,per:[13,30,35,45,52,60,68,73,94,142],perfect:16,perfectli:16,perfom:113,perform:[5,6,17,22,27,49,52,54,73,75,78,79,88,94,98,101,106,113,125,128,132,133,139,144,152],perhap:[6,12,32,40,45,55,79,103,106,112,135],perimet:32,period:[5,6,16,32,63,85,98,112,141,143,145],perman:[68,126,127,128,129,130],permiss:[56,59,62,83],permit:[62,83],permut:20,perturb:[109,144,154],petclaw:[83,96,97,98,100,106,108,113],peter:4,petsc4pi:[96,102,103,113],petsc:[22,23,75,83,85,92,95,102,103,104,106],petsc_arch:96,petsc_dir:96,petsc_hello_world:96,phase:[96,107,120,126,142],phd:17,phi:5,philim:86,phoni:79,photo:[24,25],php:[30,62,83],phy:17,physic:[16,45,52,86,91,93,105,112,162],pick:[85,101],piec:[16,49,91],piecewis:[30,32,40,45,54,69,72,116,133,135,154],piecewiselinear:39,pink:[40,60,79,140],pinkfig:79,pip3:56,pip:[18,25,28,29,52,56,57,87,93,96,102,104,108,122,123,124,125,126,127,128,129,130,131,139],pixel:[52,60],pkg:[56,145],place:[5,16,20,24,28,36,37,52,55,59,63,64,71,93,95,96,98,102,108,115,121,159],placemark:52,plaid:52,plain:50,plan:[24,28,49,57,58,59,65,94,101,150],planar:[72,133,134],plane:[30,72,120,135,158],planetari:4,platform:[13,52,88,96,107,113],pleas:[4,24,28,55,57,58,59,83,85,88,90,93,94,96,98,100,101,102,104,110,123,128,131,133,150],plot:[0,1,2,4,7,8,12,18,27,29,30,36,37,38,40,41,42,43,46,54,56,57,60,67,74,84,85,87,88,91,92,93,95,100,102,104,105,107,108,110,118,119,120,121,122,123,125,126,127,135,141,150,152,156],plot_box:[30,156],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:45,plot_packag:150,plot_phas:134,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[123,125],plot_topo_fil:[80,119],plot_typ:[0,22,45,52,79,81,140],plot_var2:3,plot_var:[3,27,45,52,79,80],plotax:[3,45,79,126,140],plotclaw1:68,plotclaw2:68,plotclaw3:68,plotclaw:[45,78,79,81,140],plotdata:[27,34,35,45,70,79,81,88,120,121,140],plotdir:[1,81,140],plotexampl:79,plotfigur:[45,79,140],plotfram:1,plotgaug:45,plotitem:[3,27,45,79,140],plotloop:[79,81],plotstyl:[3,45,79,140],plotter:[1,3,27,81],plotting_makeplot:[36,37],plottool:[34,40,67,126],plottyp:68,plt:[60,134],plu:[79,115,143,145,156],pmel:[30,72],png2kml:60,png:[1,13,36,37,40,41,52,60,67,68,121,126,135],png_extent:60,png_file:60,png_filenam:60,png_name:60,point:[3,5,6,13,15,16,17,20,28,30,33,34,36,37,39,40,42,45,46,47,48,49,52,54,55,56,58,59,60,61,68,69,70,72,85,95,96,100,106,107,108,112,122,124,126,132,133,135,136,137,138,139,141,142,143,144,148,149,150,154,156,157,159],point_styl:[32,33,67,118],pointer:[4,16,55,72,78,81,101,106,119],pointwis:[25,32,54,103,119,154],poisson:72,poli:60,poly2kml:60,polygon:[3,7,39,52,60,126,156],polynomi:[69,133],poor:28,poorest:94,popup:13,port:[13,29,92,93,98,142],portion:[6,18,34,40,52,67,86,153],posit:[32,40,52,72,75,106,144,154,156],possibl:[5,6,13,22,26,28,30,32,34,35,45,48,49,52,61,62,63,67,72,79,83,85,91,94,96,97,101,106,108,112,120,133,135,136,137,141,142,154,158,159],post:[18,24,25,26,28,34,52,96,129,130,141,146],poster:17,posteriori:101,postprocess:[74,95],potenti:[25,68,121,136],powel:144,power:[52,57,78],pprint:[142,143],practic:[28,108,110],pre:[3,13,33,56,87,94],preced:79,preceed:[74,159],precis:[34,35,42,60,86,91,94,133,141,156],precompil:93,predefin:79,predict:48,prefer:[60,96,98,139,142,150],prefix:[56,88,94,95,100],preliminari:[48,123,158],prepar:28,prepc:128,prepend:88,preprint:17,preprocess:[32,119],prerequisit:[37,38,57,59],present:[6,24,60,69,100,101,106,146,159,162],preserv:[67,75,101],press:[17,96,102],pressur:[45,68,81,95,105,122,123,144,150,151],pressure_forc:144,pressure_index:144,presum:136,pretti:13,prev_pts_chosen:67,prevent:52,previou:[1,28,29,45,54,56,58,59,64,67,68,81,85,101,110,115,120,121,122,123,128,132,137,141,142,143,145,154,156],previous:[6,22,32,67,81,119,126,137],previous_pts_chosen:46,price:13,primari:[22,28,29,46,110,113,150],primarili:[53,123,124],prime:113,principl:[5,156,159],print:[1,3,7,29,35,40,52,54,60,61,67,68,79,91,95,96,97,103,105,107,108,115,116,119,121,122,123,130,135,141,143,145,150,157],print_figno:[1,52],print_format:[1,52],print_frameno:[1,52],print_funct:121,print_git_statu:51,print_netcdf_info:35,printenv:157,printfig:1,printfram:[1,78],prior:[45,61,62,83,131,137,143,145,159],probabl:[13,28,52,65,67,107,108],probdata:[143,145],problem:[4,5,7,16,17,20,24,25,27,28,29,36,37,40,43,46,59,63,67,68,69,72,75,79,82,84,85,90,92,93,96,99,101,104,108,113,115,116,118,119,122,126,128,133,135,137,141,142,143,144,145,146,153,157],problem_data:[85,99,100,103,105,134],problemat:95,proce:[6,28,144],procedur:[6,16,40,46,56,159],proceed:55,process:[18,25,34,36,37,46,52,53,72,85,90,91,96,102,103,106,113,121,141,157],processor:103,procur:[62,83],produc:[1,3,22,27,30,35,36,37,41,45,46,52,54,55,60,68,73,77,78,94,112,113,128,140,156],product:[5,30,62,83,106,112,124],professorship:4,profil:[151,156],profit:[62,83],program:[4,47,49,64,75],programmat:83,progress:[24,28,101,110,119,154,156],prohibit:22,proj:143,project:[4,5,24,25,30,49,52,55,56,72,83,87,121,122,142,156],projection_zon:30,promot:[62,83],prompt:[28,29,68,79,81,90,93,105,156],propag:[4,5,6,17,25,30,49,52,53,72,93,101,112,121,133],proper:[6,15,40,45,53,54,56,60,65,67,68,94,106,115,121,138,142,143,148,149,150,159],properli:[20,32,36,37,40,41,49,52,54,55,59,60,67,71,88,113,115,118,123,126,128,139,141,144,154,156,157,159],properti:[30,35,61,68,85,88,91,100,103,156],propos:[28,162],protect:[67,126],provid:[0,2,4,7,10,16,20,27,28,30,32,34,35,39,42,46,47,48,49,52,54,55,60,62,64,69,72,74,78,83,86,88,89,95,96,98,100,101,105,106,107,110,111,113,120,128,131,133,141,149,150,153,154,156,159],proximity_radiu:156,prune:29,ps4_to_arrai:33,pseudo:[52,68],psi:[98,159,162],pt_chosen:67,pth:59,pts:[142,143],pts_chosen:[67,135],pts_chosen_nearshor:67,pts_chosen_shallow:67,pub:[30,150],publicli:146,publish:[4,17,55,93],puget:[40,67,135],puget_sound_13_mhw_2014:[40,67],pull:[12,24,26,29,55,56,58,90,98,113,118,121,122,128,133],pull_al:[28,56],pupyner:94,pure:[17,53,81,93,94,96,101,113,134],purpos:[32,34,46,49,54,62,68,74,83,91,111,113,132,135,141],push:[28,55,56],put:[1,11,16,28,29,42,55,56,59,60,68,85,90,98,121,139],pyclaw:[1,3,4,12,17,23,24,27,28,29,44,45,56,57,58,74,75,81,82,92,96,98,104,108,131,133,134,139],pyflak:93,pykml:52,pylab:[0,40,79],pylint:93,pypa:82,pypi:[59,94],pyplot:[60,134,150,156],pyport:107,pyramid:52,python2:[82,128],python3:[108,122,128],python3stat:107,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,34,35,36,37,38,41,43,45,46,47,48,51,52,54,55,56,57,58,59,60,72,74,75,78,79,80,83,84,86,90,93,94,96,97,98,99,101,104,105,106,113,116,117,119,121,122,123,124,125,128,133,134,139,144,154,156,157,160],python_io:74,pythonpath:[58,59],pyweno:[83,101],q0000:[34,68,141],q0001:[68,70],q000n:[1,8],q0_vs_radiu:3,q1d:159,q_i:[133,162],q_l:[99,133,134],q_out_field:45,q_r:[99,133,134],q_t:[5,98,101,105,159,162],q_x:[5,105,162],qbc:[98,101,103],qcor:86,qin:[4,53],qinit:[5,20,22,40,46,63,64,86,128,136,137,159],qinit_data:[40,137,144],qinit_modul:40,qinit_typ:[144,154],qinitdata:144,qinitfil:144,qoi:[32,35],qoi_arrai:35,qopenmp:42,qquad:162,qtrue:79,quad2kml:60,quad:60,quadrat:[30,72],quadrilater:[32,60],qualiti:[52,127],quantiti:[15,32,35,60,68,69,88,92,93,99,103,134,138,144],quantiz:94,queri:[86,91,106],question:[24,28,100],quezada:[17,83,93],quick:[13,25,37,46,47,57,82,113,152],quicker:[13,135],quickli:[45,55,60,87,121,137,156],quit:[29,68,79,81],quot:60,qxxxx:94,r_refin:144,radial:[3,32,48,144,159],radial_dam_break:134,radian:48,radii:150,radio:60,radio_styl:60,radiu:[3,144,150,151,156],rai:156,rais:[24,30,59,94,100,102,106,150,156],rake:[30,72],ran:[37,152],randal:[4,17,93],randi:[24,30,89],rang:[3,5,13,30,45,48,52,112,115,120,134,135],rare:[72,121],raster:[52,54,154],rate:13,rather:[5,6,20,22,28,29,32,34,35,40,55,56,59,63,64,65,71,72,96,98,101,108,109,112,119,120,121,123,125,126,128,131,132,135,140,141,142,150,151,154,156,159,162],ratio:[6,15,22,50,68,72,89,101,138,141,142,143],raw:[18,34,141],rcl:52,reach:[5,112],reachabl:100,reaction:98,read:[1,4,5,7,28,30,32,33,35,36,37,45,46,49,50,54,59,60,61,64,67,68,72,74,78,86,88,94,95,100,106,120,121,123,124,129,143,144,145,150,154,156,159,160],read_:[94,100],read_arrai:94,read_atcf:150,read_aux:[94,100],read_data_lin:106,read_fgmax_grids_data:33,read_fgout_grids_data:35,read_fram:[34,35],read_geoclaw:150,read_head:156,read_hurdat:150,read_ibtrac:150,read_imd:150,read_jma:150,read_netcdf:[35,40,67,123,124,154,156],read_netcdf_arrai:35,read_output:[32,33],read_patch_head:94,read_t:94,read_tcvit:150,readabl:[150,151],reader:160,readi:[85,86,88,102],readlin:135,readm:[55,56,126,133,139,159],real:[49,56,65,106,133,158],realist:52,realiti:49,realli:[6,69,113,159],rearrang:123,reason:[5,49,52,60,72,73,75,96,98,112,141],rebas:28,rebuild:55,rebuilt:55,recal:[1,12,40,142],recalcul:116,recangl:72,receiv:[52,113],recent:[4,13,22,27,30,51,55,58,63,65,73,79,81,82,120,124,125,126,127,128,129,130,131,133,158],recogn:[47,54,59,154],recomil:32,recommend:[4,18,30,32,34,36,37,55,56,57,59,73,78,87,93,96,97,101,102,104,105,112,123,141,143,145,160],recompil:[28,41,42,63,73,106,126,142,159],recomput:[81,85,116,125],reconstruct:[35,93,101,150],record:[32,45,61,103,150,158],recov:[28,33],recreat:[28,41,63,126],rect:[30,135],rectangl:[6,7,25,30,34,67,72,112,126,156],rectangular:[6,7,16,17,18,30,32,35,39,40,46,47,60,67,91,112,123,126,142,144,154],recurs:[55,71,115],red:[2,3,28,45,60,79,113,140,150],redirect:55,redistribut:[62,83],redraw:[68,81],reduc:[6,16,34,40,52,120,122,162],redund:150,refactor:[115,116,117,119,121,122,124,128],refer:[4,5,20,30,32,33,34,36,37,39,46,47,52,63,64,68,72,85,89,91,94,95,99,101,103,108,110,123,125,132,133,135,144,150,154,156,158,159],referenc:[52,131,136,154],refin:[3,4,5,7,8,17,22,34,46,49,52,53,54,67,68,74,75,85,121,123,124,126,128,135,137,140,141,142,143,153,154,159],refinement_data:144,refinement_ratios_i:[8,142,143],refinement_ratios_t:[142,143,144],refinement_ratios_x:[142,143],refinementdata:118,reflect:[4,5,16,28,112,123,141,143,145],refresh:[13,45],regard:[4,39,120,150],regardless:[13,35,40,67,112,141],regener:63,region00:60,region1:[40,67],region1_png:[40,67],region:[3,6,7,13,16,22,32,34,39,40,46,49,50,52,60,65,69,72,75,110,123,126,128,136,137,142,143,154,156],region_domain:39,region_tool:[39,40,67,126,127,135],region_trapezoid:39,regiondata:[39,112,143,144],regions2kml:60,regist:57,registr:[25,46,123,154,156],regress:[22,25,28,51,93,96,121,122,152],regression_test:[37,152],regrid:[5,10,112,115,116,121,124,125,142,143,153],regrid_buffer_width:[112,142,143],regrid_interv:[112,142,143],regular:[32,156],regulargridinterpol:35,reiniti:[32,121],reject:[95,101,141],rel:[13,20,30,41,47,49,52,72,73,79,93,106,108,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,136,142,144,146,154,158],relat:[3,7,22,24,55,75,99,110,122,126,128,136],releas:[4,18,22,25,28,29,44,52,57,58,59,87,93,101,102,107],release_5_x_x:56,relev:[22,27,40,42,46,52,55,94,112,113,150],reli:[75,86,97,107,121],relief:[136,158],reload:156,reltol:106,remain:[52,59,98,106,108,115,148,149,150],remak:55,rememb:[15,27,73,79,96,138,148,149],remot:[13,52,56,123,156,158],remote_directori:156,remote_topo_url:[154,156],remov:[1,3,20,29,34,41,53,59,60,63,70,81,96,108,115,118,119,137,144,156,157],renam:[20,22,36,37,63,98,101],render:[12,22,44,52,60,160],reorder:[20,22],reorgan:[22,86,114,129],repack:56,repeat:[40,67,81,132,142,144],repeatedli:[3,96,102,142],replac:[6,13,18,29,34,39,45,49,53,55,56,58,61,63,78,86,90,94,96,97,98,99,103,106,113,115,121,123,125,126,132,133,137,156,157],replace_no_data_valu:156,replace_valu:156,replot:81,repo:56,report:[24,30,32,51,108,113,120,123,139,141,143],repositori:[22,24,25,26,29,32,37,38,43,44,46,53,58,59,63,64,93,101,108,110,111,113,118,121,147],repres:[30,85,91,94,98,99,101,103,156,162],represent:[54,91,94,100,106,156],reprint:83,reproduc:[17,54,62,83],request:[12,24,26,30,34,35,55,58,74,85,90,91,95,98,100,113,121,123,128,133,144,150,156],requir:[3,4,16,18,20,22,25,27,30,32,34,35,36,37,41,46,48,49,56,59,67,68,72,75,78,81,82,85,86,91,94,97,98,101,102,103,105,106,107,112,113,115,116,119,121,124,126,128,133,134,135,140,141,142,143,144,145,150,151,154,157,160,162],rerun:[42,45,54,56,59],rescal:30,research:[4,17,46,49,83,101,111],reserv:[62,83],reset:[40,42,55,106],reset_count:106,resetplot:[79,81],resid:[55,63,91],resiz:123,resolut:[4,6,17,18,30,32,34,40,45,61,69,72,91,101,105,106,115,119,123,124,133,136,154,156,158,159],resolution_limit:156,resolv:[4,32,34,52,55,59,110,123,137],resourc:[17,24,28,47,107],resp:[20,30,128],respecitv:30,respect:[30,32,52,60,93,94,99,156],respons:[13,49,85,100],rest:[5,22,81,110,123,136,148,149,154,156],restart:[13,25,45,81,93,120,121,122,123,125,128,141,143,145],restart_fil:[132,141,143,145],restor:6,restrict:[39,52,123,135,144,154],restructur:[11,55],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,36,37,38,43,44,45,46,48,49,54,55,56,59,60,63,65,68,69,72,78,79,80,81,84,88,90,93,95,99,102,106,112,113,115,119,121,122,123,124,126,128,137,141,142,143,145,152,154,156,158],retain:[62,83,94],retak:[141,143,145],retir:55,retriev:[13,35,48,81,86,101,156,158],return_topo:156,return_xarrai:156,reunion:150,reutil:86,reval:134,reveal:[45,105],revert:52,review:[17,89],revis:[6,121],rewritten:30,rgb:79,rho:[68,105,143],rhou:68,rhov:68,richardson:[5,7,22,142,143],rid:28,ride:126,ridg:52,riemann:[4,5,8,20,22,23,28,29,46,56,59,64,75,83,85,92,101,102,103,105,108,139,141,143,145,148,149,162],riemann_aug_jcp:122,riemann_book:134,riemann_interact:120,riemann_solut:134,riemann_solv:101,riemann_tool:[119,134],right:[5,32,62,65,72,83,91,96,98,99,103,105,128,132,133,135,162],rigid:[30,123],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,72,136,137],rise_fract:[30,72],rise_shap:30,rise_tim:[30,72],rise_time_end:[30,72],rise_time_start:[30,72],risen:150,rjl:[6,17,108,125],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:123,robust:[46,123,134,156],robustli:124,rock:72,roe:[89,128,133],root:[29,59,94,95,100],rootgrp:35,rossby_wav:134,rossmanith:17,rotat:[40,50],rough:65,roughli:[53,135,153],round:52,roundoff:91,routin:[4,5,6,16,20,25,27,30,32,36,37,45,46,47,52,53,63,68,69,70,73,74,75,78,81,83,86,88,94,97,98,101,103,104,112,115,116,119,121,123,124,126,133,137,141,143,145,150,156,157,159,160,162],row:[30,32,54,89,112,154,156],rp1:[133,162],rp1_acoustics_variable_adjoint:5,rp1_advect:64,rp1_ptwise:133,rp1_shallow_bathymetry_fwav:134,rp1_shallow_hl:129,rp1_shallow_roe_trac:134,rp1_shallow_roe_with_efix:134,rp_:99,rp_sourc:98,rpn2:[5,133],rpn2_geoclaw:134,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:133,rpn2_shallow_bathymetry_fwav:134,rpn2_shallow_roe_with_efix:134,rpn2_shallow_spher:134,rpn2_sw_aug:134,rpn2_vc_advect:117,rprint:[142,143],rpt2_geoclaw:[128,134],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:133,rpt2_shallow_roe_with_efix:134,rpt2_shallow_spher:134,rr2:135,rr_admiralti:135,rr_name:135,rrzigzag:135,rsmc:150,rsphere:[48,86],rst:[55,56,126],rsync:55,rsync_clawpack:55,rule:[7,13,25,60,67,86],ruled_rectangl:126,ruledrectangl:[39,67,126,135],ruledrectangle_admiraltyinlet:135,ruledrectangle_covering_selected_point:[67,135],ruledrectangle_trapezoid:39,run1:63,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,34,35,40,41,43,44,45,46,51,52,53,55,56,57,58,59,60,61,63,65,68,70,74,75,78,79,81,82,84,86,88,91,92,93,95,98,102,104,105,106,108,110,112,115,116,120,121,122,123,124,125,127,128,130,132,133,143,144,145,150,152,153,156,159],run_app_from_main:106,run_data:88,run_exampl:156,run_seri:106,runclaw:[14,51,116,125,127,133],rundata:[5,22,32,34,39,40,45,60,61,112,115,126,132,137,141,142,143,144,145],rundatat:39,rundir:[14,88],rung:[93,101],runmak:88,runnabl:106,runtest:[37,96,152],runtim:[34,106],runup:65,ruptur:[30,46],rupture_tim:[30,72],rupture_typ:[30,72],s_1:135,s_2:135,safe:73,safer:63,safeti:89,sagemath:87,sagemathcloud:87,sai:[5,13,16,28,60,104,112],same:[3,5,6,8,13,16,22,25,28,31,32,34,35,40,42,45,47,48,49,52,54,56,59,60,61,63,65,67,70,72,75,78,79,80,81,85,89,91,93,94,95,98,99,101,106,107,115,116,120,121,126,128,132,133,135,141,142,143,144,148,154,156,159],sampl:[7,8,14,17,18,25,29,32,42,45,46,52,61,72,108,113,132,135,141,142,154,156,159],santiago:52,satisfi:[32,40,67,101,112,135,162],save:[5,13,25,26,34,35,40,51,60,74,88,92,101,120,121,123,128,132,151,156],savecod:88,savefig:60,scalabl:[17,93],scalar:[27,30,40,95,103,133,137,141,162],scale:[4,30,50,52,68,75,93,94,115,121,123,128,144],scan:42,scatter:[3,22,68],scenario:[49,136],schedul:24,scheme:[89,99],schlieren:[3,68],schwarzschild:4,sci:17,scienc:[4,17,83],scientif:[4,17,82,93,96,107],scipi:[13,35,86,107,150,156],scipysuperpack:82,scp:13,scratch:[48,67,105],screen:[13,28,52,60,88,95,96,120,143,145],screenshot:[13,52],script:[11,19,20,28,30,32,41,45,52,55,63,68,75,78,83,86,90,92,93,95,96,101,106,108,113,123,127,133,140,144,145,156],scriptstyl:135,scroll:13,sdist:56,sea:[30,45,46,47,49,52,69,72,109,119,126,136,154,156,158],sea_cmap:40,sea_cmap_dri:40,sea_level:[25,32,40,46,49,60,126,137,144,154,156],seab:65,seafloor:[30,49,72,137,158],sealevel:[],search:[1,13,14,59,78,93,106,108,121,123,135,139],sec:30,second:[3,16,30,32,37,45,48,52,56,60,68,85,95,101,112,115,121,132,141,144,150,152,153,156,159,162],section:[6,13,16,34,36,37,40,42,47,49,55,56,64,68,78,81,93,113,128,132,141,144,156],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,61,62,63,64,65,67,68,69,70,71,72,73,74,77,78,79,80,81,82,83,86,88,90,91,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,139,140,141,142,143,144,146,147,148,149,150,152,153,154,156,157,158,159,160,161,162],seem:[103,108,126,140],seen:[12,22,32,36,37,38,49,73,98,141,146],segement:156,segment:[130,135],segmentedplanefault:[30,72],seism:[17,30],seismic:[30,35,46,72],select:[7,12,13,15,16,28,32,40,67,95,101,109,112,115,122,126,131,138,141,144,148,149,158],select_by_flood:[40,67],self:[30,33,35,101,156],semi:101,send:[13,24,98,133],sens:[27,52,61,123,128,162],sensit:[49,65],sent:[95,103],separ:[1,28,32,34,44,52,55,60,64,69,93,101,135,156],seper:106,sept:[56,128],septemb:[127,131],sequenc:[20,22,34,35,64,67,69,96,102,105,106,113,115,122,133,159],sequenti:[32,34],seri:[34,45,61,69,150],serial:[96,100,106,153],serv:29,server:[13,29,40,52,55,56,67,123,154,158],servic:[25,62,83],session:[1,36,37,38,97,102],set:[0,1,2,3,5,6,8,13,14,15,16,18,22,25,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,45,46,48,49,50,51,52,55,56,58,59,60,61,63,64,67,69,71,72,73,74,75,77,78,85,86,88,90,91,92,93,94,95,96,100,101,102,103,104,105,106,108,109,112,113,115,116,119,120,121,123,125,126,128,132,133,134,135,138,140,141,142,143,144,145,146,150,151,154,156,158,159,162],set_all_st:100,set_aspect:[40,50,67],set_aux_from_auxbc:103,set_corn:30,set_count:106,set_cparam:[85,103],set_dynamic_slip:30,set_eta_init:[126,137],set_num_ghost:103,set_plotdata:35,set_printopt:91,set_q_from_qbc:103,set_subfault:30,set_xyz:[40,156],setaux:[20,22,64,86,115,116,133,141,143,145],setaux_default:55,setenv:96,setgaug:[45,120],setlevel:95,setplot1:68,setplot2:68,setplot3:68,setplot:[0,1,2,3,7,19,20,22,25,43,45,46,70,77,78,97,98,106,121,157,160],setplot_fil:52,setplot_kml:52,setprob:[40,64,143,145,159],setrun:[5,6,7,8,14,16,18,19,20,25,32,33,34,35,36,37,39,40,41,43,46,47,49,60,61,63,65,67,74,75,79,93,109,110,112,115,119,120,121,124,126,128,132,133,136,137,150,154,157,159],setrun_setgeo:144,setup:[38,56,85,86,90,93,96,98,101,102,103,111,139,157],setup_gauge_fil:91,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,34,35,36,37,41,45,47,49,52,56,59,61,68,69,72,78,102,112,113,114,115,116,119,120,121,122,124,125,126,128,135,140,144,152,154,156,159],sftp:13,shaheen:95,shall:[62,83],shallow:[5,15,16,17,25,32,34,40,46,49,53,67,75,86,93,109,116,117,119,121,123,124,133,137,138,144,148,149,154,159],shallow_1d:134,shallow_1d_pi:134,shallow_2d:134,shallow_bathymetry_fwave_1d:134,shallow_bathymetry_fwave_2d:134,shallow_fwave_1d:134,shallow_hll_1d:134,shallow_roe_1d:134,shallow_roe_tracer_1d:134,shallow_roe_with_efix_1d:134,shallow_roe_with_efix_2d:134,shallow_spher:[86,113,134],shallow_sphere_2d:134,shallow_trac:134,shallowest:72,shape:[30,35,40,48,60,67,86,91,96,103,135,156],shapshot:13,share:[25,26,52,59,73,75,91,94,96],sharp:60,sharpclaw:[4,23,25,75,83,90,92,93,98,115,133],sharpclawnd:101,sharpclawsolv:101,sharpclawsolver1d:101,sharpclawsolver2d:101,sharpen:89,sharper:[52,60],sharpli:5,shear:[17,30],shelf:[7,67],shell:[28,58,59,73,79,81,96,102,105,108,121,139],shg:68,shift:[5,30,49,54],ship:32,shoal:135,shock:[6,17,49,101,112],shock_bubble_interact:[36,38,90,93,102],shockbubbl:98,shoot:[78,93],shore:[34,40,46,112,126,137],shorelin:[40,52,156],shoreline_xi:156,shorter:[3,112,156],shortli:[28,113],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,45,49,52,54,55,56,57,58,59,60,63,65,67,68,70,71,72,73,78,79,81,86,93,94,95,96,98,100,101,102,103,104,105,106,108,109,112,113,115,116,119,121,122,123,126,132,133,134,136,137,139,140,141,142,143,144,145,146,150,152,154,156,157,159,161,162],shouldn:90,show:[0,2,3,9,10,12,14,18,28,30,36,37,40,44,45,52,55,56,60,63,67,68,81,91,105,108,113,119,129,130,135,156,157,159],showcolor:79,showgridlin:68,showitem:1,shown:[3,13,55,60,64,65,68,75,95,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,135,156,159],showpatchbord:68,shrink:156,shu:101,shuffl:94,siam:[17,24,25,93,133],sid:150,side:[6,16,18,32,52,55,65,72,94,113,133,162],sidebar:[52,55],siesmic:137,sift:[30,72,123],sift_slip:30,siftfault:[30,72,123],sigma:85,sign:[13,24,79,128,150],signatur:[3,86,89,92,94,99,150],signific:[18,34,65,131,136,156],significantli:[94,123],signitur:100,silenc:95,silent:94,sill:134,silo:160,similar:[4,13,16,28,32,34,37,45,52,61,85,86,94,98,101,105,123,128,144,150,151,152,154],similarli:[34,41,53,90,96,98,135,153],simpl:[7,29,36,37,39,46,56,69,72,86,93,98,101,106,111,113,156],simplest:[59,71,105],simpli:[5,13,34,36,37,38,40,45,52,54,63,64,67,69,85,87,88,90,95,96,102,113,133,135,146,150,156,159,160],simplifi:[72,78,79,94,113,122,123,159],simul:[32,36,37,38,40,47,49,52,68,69,88,91,93,95,96,98,102,105,110,121,122,123,125,135,137,150],simultan:[52,121],sin:[48,79],sinc:[0,3,4,5,6,16,20,22,28,32,34,40,42,48,49,52,54,55,56,59,60,63,64,69,72,73,74,78,79,85,86,87,94,95,112,113,115,119,120,121,122,124,125,126,127,128,129,130,131,132,133,135,136,141,142,144,154,157,158],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,34,35,40,45,47,52,54,55,56,60,61,63,68,72,73,74,75,85,91,94,95,100,106,113,118,119,121,131,133,137,141,142,143,144,154,156,158,159],single_storm:150,sisc:[17,93],sit:13,site:[28,52,59,108],situat:[52,67,68,128],size:[20,30,34,35,40,45,52,60,73,74,78,91,94,96,101,121,126,142,143,145,154,156],size_x_inch:52,size_y_inch:52,skinni:0,skip:[30,126],skip_patches_outside_xylimit:[126,128],skiprow:30,slack:24,slice:[3,68,133],slide:24,slider:[52,60],slightli:[16,40,54,121,122,128,135],slip:[25,30,46,111,154,158],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,101,128],slope_i:52,slope_x:52,slosh:125,slow:[13,52,95,104],slowest:94,slowli:60,slu:7,small:[5,16,34,40,45,65,67,112,113,115,120,132,141,143,144,154,156,158],smaller:[13,18,34,52,65,75,91,95,115,137,141,143,144,145,156],smallest:[112,135],smear:60,smooth:[30,69,101,112,159],smooth_data:156,smoothli:[54,69],smv_branch_whitelist:55,snapshot:[5,28,95,124],soc:[17,30],softwar:[6,13,24,25,29,46,49,62,70,83,93,94,95,146,154],sol:85,sole:133,solid:[3,16,52,72,98,140,141,143,145],solitari:17,solut:[1,3,4,5,16,18,22,25,27,29,34,35,37,45,48,61,68,72,74,78,81,86,88,91,93,94,95,98,101,103,104,105,112,113,119,120,124,132,133,140,141,142,143,145,152,159,162],solv:[4,5,8,16,17,20,26,36,37,49,57,59,61,84,86,88,91,93,98,99,102,124,133,134,141,154,159,162],solver:[4,5,6,20,22,23,25,28,46,57,58,59,64,82,83,84,88,92,95,103,117,119,121,122,123,124,125,126,128,141,143,145,148,149,162],solver_nam:133,solver_typ:[90,101],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,34,35,36,37,40,42,43,45,46,47,49,50,52,53,54,55,56,59,64,67,72,73,74,78,80,81,83,86,87,89,93,94,95,97,98,100,102,103,104,105,107,108,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,136,137,140,141,142,143,145,146,150,151,153,154,156,159],someon:[28,63],someth:[13,27,28,55,63,71,78,95,100,101,108,154,157,159],sometim:[59,63,67,75,79,85,95,123,130,136,137,144,151,158],somewhat:[73,78,112,113,121,141],somewher:[70,119],sonel:158,soon:101,sorin:4,sort:[13,40,123,140,157],sound:[40,67,85,105,135],sourc:[4,17,23,25,28,30,42,46,52,53,55,56,58,59,60,62,64,65,78,83,86,90,92,101,102,104,105,106,110,111,113,121,122,123,134,136,141,143,144,145,147,148,149,150,154],source_list:106,source_split:[101,141,143,145,159],south:[32,154],space:[5,6,7,16,17,18,30,32,33,34,35,45,52,54,72,91,95,98,112,119,132,135,141,142,143,144,145,154,156,159],spacial:137,span:[48,52,60],spatial:[6,17,25,30,34,35,39,40,45,46,61,65,69,98,112,115,119,126,128,133,136,142,143,144,145,162],spatial_region:39,spatial_region_fil:39,spatial_region_typ:39,spawn:113,specfi:156,special:[4,7,16,46,47,52,62,75,83,112,135,156],specif:[3,5,12,22,28,30,45,46,48,52,53,59,62,64,65,83,84,86,88,93,94,95,100,106,110,121,122,123,126,140,141,142,143,145,151,154],specifi:[0,1,2,3,4,5,6,7,15,16,18,20,22,25,27,28,29,30,32,33,34,35,40,41,42,43,45,46,47,48,49,51,52,54,60,63,64,65,67,68,69,72,73,74,75,77,78,80,85,88,91,94,95,98,100,101,104,106,108,109,110,113,115,118,119,120,121,122,123,126,128,132,133,135,136,137,138,143,145,146,148,149,150,151,153,154,156,157,158,160,162],speed:[32,34,35,85,89,99,105,121,126,133,134,141,144,150,151,156,159,162],speed_toler:144,spell:79,spend:120,spent:[142,153],sphere:[48,86,116,134,144],spheric:[17,52],sphinx:[11,23,25,56,122],sphinx_web:55,sphinxcontrib:55,spite:[64,67,108],split:[5,6,73,94,101,119,120,128,141,142,143,145,153,159,162],spot:79,sprint:[142,143],spuriou:[16,32,113],sqrt:[3,32,35,65,85,98,105,143],src1:[64,149,159,162],src1d:149,src2:[86,149,159],src3:[149,159],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,34,35,40,41,42,48,51,53,56,59,60,63,64,68,72,73,80,97,98,106,108,109,112,113,116,119,120,122,123,124,125,126,128,133,137,138,141,143,145,148,156,157,162],src_split:[141,143,145],srcn:[141,159],ssh:[13,28],ssp104:101,ssp33:101,ssplmm32:101,ssplmm43:101,ssplmm:101,ssprk22:101,stabil:[101,128,141],stabl:[82,128],stack:[73,82,119,135],staff:125,stage:[101,136,137,154,156],stai:[26,32],stand:[4,128],standard:[6,16,30,32,34,52,54,68,74,86,89,101,108,112,113,143,144,145,146,154,159,162],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,34,36,37,38,39,40,41,45,46,48,52,54,55,57,58,59,60,63,67,71,72,79,81,85,96,100,101,107,108,112,113,120,123,128,132,133,135,137,144,150,152,154,159],start_dat:150,start_fram:100,start_max:32,state:[4,13,17,25,28,55,72,79,85,86,88,93,94,95,96,98,99,100,101,104,105,113,128,129,133,134,135,141,154,162],statement:[36,37,68,74,107,108,121,130,143],station:[48,136,158],stationari:[61,154],statist:[25,120],statu:[13,28,51,88,105],stdout:113,steadi:[72,154],steep:[67,162],steepli:137,stencil:103,stencil_width:103,step1:64,step2:86,step2i:119,step2qcor:86,step2x:119,step3i:119,step3x:119,step3z:119,step:[5,6,10,16,18,19,28,32,34,36,37,38,45,52,55,56,61,68,75,78,81,83,84,85,86,88,95,98,101,103,105,110,112,115,120,121,132,133,139,141,142,143,144,145,154,162],step_hyperbol:101,step_index:101,step_interv:143,step_sourc:[98,101],stepgrid:153,stepgrid_dimsplit:119,steps_max:[141,143,145],stiff:141,still:[1,5,7,8,13,16,22,24,26,32,40,52,53,64,67,68,74,78,83,101,107,112,113,119,120,121,122,123,124,126,132,133,144,150],stnd:48,stommel_storm_modul:119,stop:[32,73,79,115,123,143,145,156],storag:[120,128],store:[0,1,13,33,35,41,52,54,55,68,74,94,95,98,103,104,105,113,115,121,140,142,144,150,153,154,156],storm:[12,17,24,25,46,119,122,123,124,125,127,128,129],storm_atcf:150,storm_fil:[144,150],storm_ibtrac:150,storm_modul:119,storm_nam:150,storm_radiu:150,storm_radius_fil:150,storm_specif:144,storm_specification_typ:144,storm_targ:150,str:[0,1,3,30,60,94,141,142,150,156],strait:135,strang:[101,141,143,145,159],strategi:6,stream:79,stress:[85,95],stretch:[67,156],strict:[62,83],stride:[22,156],strike:[30,72],strike_direct:30,string:[0,1,3,7,30,32,35,45,48,52,54,60,61,79,86,88,89,91,94,95,100,106,108,141,144,150,156],strip:[60,135,156],strip_archive_extens:60,stripe:52,strong:[101,107],strongli:[68,107],structur:[7,10,22,32,34,35,39,56,59,63,75,100,101,121,135,140,156],stub:123,student:4,studi:[49,65],style:[6,22,28,30,34,39,50,52,67,74,79,83,88,123,144],sub:[30,113,156],subclass:30,subdirectori:[5,12,20,22,23,36,37,55,56,59,63,71,81,90,95,108,113,140,144,146,152,156],subdivid:[30,72],subdividedplanefault:30,subdivis:30,subduct:[49,72],subfault:[30,46,123,124,158],subject:[52,67,112,142,144],submodul:[26,28,53,56,58],subpackag:108,subplot:[0,30,67,81,135],subprocess:125,subrepo:56,subrepositori:[28,56],subroutin:[4,6,9,16,22,32,34,64,112,119,133,141,142,153,159,162],subsampl:[54,154,158],subsequ:[3,10,68],subset:[30,32,40,67,123,135,154,156,158],subsid:[126,137,144],substanti:[28,55,83,119,125,128],substitut:[62,83],subsurfac:154,subtleti:67,succeed:101,succesfulli:86,success:[68,100,156,159],successfulli:[63,100],suffici:[13,16,18,20,34,72,73,110,115,141,144],suffix:[63,156],suggest:[4,24,29,48,54,55,57,59,81,82,107,131,133,144,161],suit:[28,52,113],suitabl:[5,8,16,20,46,49,52,100,111,133,136,150,156],sum:[40,45,72,95,103,153],sum_:162,sum_p:162,summar:[3,28,31,112,114,159],summari:[24,25,56,123,141,142,143,144],superbe:[89,141,143,145],superbee_limit:89,superclass:101,supercomput:[93,95,96],superposit:72,superpow:89,superpower_limit:89,supplement:[39,67,146],supplementari:113,suppli:[112,150,159,162],support:[4,8,13,18,22,34,35,39,42,49,52,57,58,72,82,83,85,86,94,95,97,101,112,119,121,122,123,124,128,129,133,135,141,142,144,150,151,154,157,160],suppos:[16,64,67,68,79,108,112],suppress:[0,2,3,28,52,60,120,122,141,142],sure:[1,20,28,41,55,56,57,58,59,68,75,85,94,96,98,100,104,106,136,156,157,158],surfac:[17,22,25,30,32,34,35,40,45,46,47,49,52,69,72,78,80,86,93,105,109,112,119,135,136,144,154],surface_or_depth:[52,80],surg:[12,17,24,25,46,119,122,123,124,125,128,150],surge_data:144,surround:[112,156],surviv:83,sw_aug_2d:134,swag:24,swap:156,swaphead:156,sweep:[8,133],symbol:[3,68,108],symmetr:[3,48,159],symmetri:16,syntax:[11,58,139],sys:[40,67,88,143,145],system:[4,16,17,23,37,38,52,53,59,60,64,73,74,83,93,95,96,98,99,102,105,108,113,133,141,143,145,152,159,162],systemat:22,t0000:[34,68],t0001:[68,70],t0002:68,t_end:101,t_r:5,t_stays_dri:40,tab:[13,55,131],tabl:[60,65,78,94],tackl:[24,28],tag:[15,52,56,58,109,138,142,143,148,149],take:[5,6,22,27,28,30,32,35,48,55,65,67,68,72,79,85,98,101,105,106,107,112,113,118,124,137,141,142,143,144,156,159,162],take_one_step:101,taken:[6,32,67,72,95,101,112,141,159],tall:0,tan:79,tank:[16,49],tar:[13,60,125,131],tarbal:[56,157],tarfil:[18,56,59,122,123,124,125,126,127,128,129,130],target:[5,59,79,86,98,126],task:78,tchknnnnn:132,tck00100:120,tck:120,tckaaaaa:120,tckbbbbb:120,tcp:13,tcsh:96,tcvital:[123,150,151],td9635:150,td9636:150,teach:[46,49,111],team:[4,24,62],techniqu:[17,26],technolog:[4,83],tell:[54,70,74,79,85,94,108,113],templat:86,tempor:[34,45,61],temporari:103,temporarili:68,ten:[4,75],tend:[34,40,101],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,46,49,62,72,86,92,101,112,122,123,134,141,143,144,145,148,149],termin:[87,139,141,142],terrain:65,terrel:4,test:[22,25,30,36,39,42,51,52,56,57,58,59,65,78,83,84,86,92,93,106,107,112,116,120,121,122,123,126,128,133,145,150,153,154,156],test_acoust:113,test_app:[106,113],test_bind:29,test_dtopotool:30,test_etopo1:[123,154],test_shallow_spher:113,test_topotool:[116,156],testpypi:56,teton:52,tex:1,text:[11,55,56,60,74,88,94,101,119],tfinal:[5,85,88,105,132,141,143,145],tfluct:101,tfluct_solv:101,than:[3,5,6,13,16,18,20,22,28,29,30,32,34,35,40,45,52,55,56,59,60,61,63,64,65,67,69,71,72,74,78,81,85,86,88,91,94,95,96,98,99,101,106,108,112,113,115,118,119,120,121,122,123,125,126,128,131,132,135,136,137,140,141,142,144,150,151,153,154,156,159,162],thank:[4,93],thei:[3,5,6,13,16,24,27,28,30,32,34,39,40,45,49,52,55,56,59,60,61,64,67,68,74,78,91,93,98,101,106,112,113,121,128,137,140,144,150,154,156,159],them:[5,13,18,22,28,29,30,32,45,52,55,68,70,75,83,85,90,94,95,96,98,106,110,113,116,125,135,147,150,156,159],theori:[62,83,162],therefor:[86,96,123,154],thereof:13,thesi:[17,101],theta:89,theta_limit:89,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,45,46,47,48,49,51,52,53,54,56,57,58,59,60,61,62,63,64,65,67,68,69,70,72,73,74,78,79,81,82,83,85,86,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,115,116,118,119,120,121,122,123,124,125,126,128,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,150,151,152,153,154,156,157,158,159,160,161,162],thing:[0,13,16,22,28,29,40,49,55,60,81,90,112,113,122,127,132],think:[59,65,67,69],third:[16,32,54,89,153,156],thn:141,thoroughli:94,those:[4,6,10,12,22,24,49,52,53,56,67,75,85,86,88,95,98,103,112,113,115,126,128,132,146,152,156,159],though:[3,40,75,150,154],thought:[128,136],thousand:[4,75],thread:[42,73,112,126,153],threat:4,thredd:[40,67,154,158],three:[3,13,17,22,30,32,35,49,52,64,68,72,96,100,106,113,135,141,144,154,156,159],threshold:65,through:[4,13,28,34,36,37,45,49,52,67,68,75,78,86,98,103,105,106,108,111,112],throughout:[34,69,121],thu:[6,34,48,95,98,123,150],tick:52,ticklabel:118,ticklabel_format:[40,50],tidal:[95,136],tide:[45,46,48,123,136,156],tidesandcurr:48,tier:13,tild:162,time:[0,1,5,6,7,10,14,16,18,20,22,25,27,28,30,32,34,35,36,37,39,40,41,42,43,45,46,47,48,49,52,54,55,60,61,68,69,70,72,73,74,75,79,83,85,88,89,93,94,95,101,103,105,112,113,115,118,120,121,123,124,125,128,132,133,135,137,139,140,143,145,150,154,157,158,162],time_files_scanf:160,time_integr:101,time_offset:150,time_zon:48,timer:122,timespan:60,timestep:[88,95,120,122,141,143,145,150],timezon:60,timing_plot:125,tip:[24,46,59,78,92,93,98,107],tipe:105,titl:[0,1,4,17,24,40,45,52,60,67,78,93,121,135,156],title_with_t:[0,79],todo:[16,133,150,156,162],togeth:[5,16,18,28,29,30,55,57,72,112],toggl:143,token:29,tokyo:150,toler:[5,32,106,112,113,121,142,143,144],tolsp:112,too:[6,48,52,55,56,120,135,143,145],took:24,tool:[7,8,17,22,23,28,30,32,33,34,35,36,37,40,46,47,48,49,52,54,57,58,59,60,68,72,77,78,79,80,82,93,108,111,116,117,121,122,126,127,144,146,154,156,158,160],toolkit:[96,160],top:[0,1,3,11,23,29,30,34,52,55,56,58,59,72,79,93,98,99,108,113,132,139],topgraphi:156,topic:68,topo1:154,topo1writ:156,topo2kml:60,topo2kmz:[60,129],topo2writ:156,topo3writ:156,topo:[25,32,40,46,49,52,54,60,67,69,80,108,115,117,123,125,128,136,144,154,156],topo_data:144,topo_fgmax_mask:67,topo_fil:156,topo_file_nam:60,topo_fnam:156,topo_func:156,topo_miss:125,topo_styl:33,topo_typ:[32,40,54,60,67,119,120,123,126,154,156],topo_upd:115,topo_xlim:52,topo_ylim:52,topofil:[32,54,60,123,124,125,126,144,154,156],topograph:52,topographi:[16,17,25,32,33,34,35,45,46,49,54,60,65,69,72,80,110,111,115,116,117,119,120,123,126,129,135,136,137,148,149,155],topograpi:154,topoplotdata:119,topotool:[40,46,48,54,60,67,116,117,118,119,120,123,124,129,154,155],topotools_exampl:[111,156],topotyp:[128,144,154],topotype1:156,torrilhon:89,tort:[62,83],total:[6,30,34,52,72,95,101,141,142,143,145,153],total_energi:95,total_step:[141,143,145],touch:67,tout:145,toward:[4,30],tprint:[142,143],trace:95,traceback:79,tracer:[34,134],track:[18,24,25,28,32,33,34,45,46,52,55,57,59,73,85,93,106,113,115,124,126,129,134,150],track_color:150,tracker:28,tradeoff:112,tradit:[88,94],traffic:[133,159],trail:[59,60],tran:17,tranpsort:141,transect:[32,144],transfer:29,transform:[5,42],translat:72,transmiss:101,transmit:141,transon:121,transpar:[52,60],transport:[141,143,145],transpos:5,transvers:[8,121,128,133,134,141,159,162],transverse_wav:[141,143,145],trap:42,trapezoid:39,travel:142,travi:[22,128],tree:[53,59,98,139],tri:150,triangl:72,triangular:[30,46,123],trickeri:56,trigger:94,troubl:[36,37,78,93],troubleshoot:[25,57,58,93],trucat:18,truli:100,truncat:[16,34,94,141],tscale:60,tstart:[34,101],tstart_max:32,tsunami:[4,5,16,17,24,25,32,34,40,46,47,53,65,72,95,112,115,118,124,125,135,136,137,144,151,154],tsunami_colormap:34,tt3:[72,156],tulan:24,tune:[26,142],tupl:[3,30,48,60,72,79,91,95,156],turbul:[49,101],turn:[45,47,49,60,76,79,95,113,120,126],tutori:[13,29,56,81,84,88,93,102,108,111],tvd:[85,101,162],twice:[35,52,141],twine:56,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,34,35,45,48,52,53,55,60,68,69,74,79,85,91,94,95,98,101,104,106,110,111,112,113,115,119,120,123,125,132,133,135,138,139,143,154,156,159,162],two_d_classic_sourc:86,txt:[28,32,45,51,56,61,83,95,121,122,123,132,150],txxxx:94,type:[3,4,7,13,20,28,30,36,37,41,45,52,63,68,79,80,81,85,86,87,89,91,96,97,101,102,105,106,135,142,143,144,150,151,154,156,162],typic:[3,20,40,63,64,68,69,72,74,75,81,86,96,98,101,103,112,142,143,153,154,157,158,159,162],typo:124,u_l:134,u_r:134,u_t:105,u_x:105,ubuntu:13,ucar:[70,94],ucsb:[30,72,158],ucsbfault:[30,72],ulimit:73,ultim:39,ultrabe:89,unaccept:52,unalt:52,unapp:52,unavail:27,uncertainti:[49,65],unchang:[5,68],unchosen:67,uncommit:[28,51,56],undefin:104,under:[4,7,22,32,34,38,52,53,55,58,62,64,78,83,91,93,113,121,123,131],underflow:115,underli:[3,52,121],underlin:28,understand:[9,25,36,37,49,78,93,105,112,133],understood:49,underwat:[46,52],undesir:132,undivid:112,unequ:135,unexpect:[48,52,60,63,150],unidata:[70,94],uniform:[30,32,34,35,67,72,75,86,123,154],uniformli:154,unind:[60,150],uninstal:[56,59,108],union:[135,154],uniqu:[1,74,120,150],unit:[30,47,48,53,72,91,121,150],univers:[4,17,24,55,62,83,100],unives:24,unix:[41,71],unknown:[30,103],unkown:103,unless:[6,32,41,42,60,107,136,141,142,156],unlik:[28,32,55,56,74],unlimit:[73,94],unmap:91,unnam:150,unnecessari:128,unnecessarili:116,unneed:120,unpack:[56,126],unphys:34,unpredict:68,unrealist:[32,69],unrecogn:106,unset:[67,112],unsplit:[141,143,145],unstabl:120,unstructur:156,unsuccess:100,unsur:141,untar:58,unterweg:83,until:[13,32,61,67,137],unus:[2,94],unzip:52,upbnd:[142,143],updat:[6,12,13,22,23,25,32,50,53,58,59,61,81,93,101,103,104,107,110,115,119,121,122,123,124,125,126,133,142,143,145,147,150,153,159],update_saved_valu:101,updip:[30,72],upgrad:82,uplift:[126,137,144],upload:56,upon:[5,103],upper:[22,32,33,39,89,91,98,135,141,143,145,154,156],upper_bound_limit:89,upper_glob:91,uprint:[142,143],upstream:56,upstrik:[30,72],upward:49,upwind:141,url:[4,12,17,52,56,123,124,154,156],usa:150,usa_ag:150,usag:[0,1,2,3,13,46,52,57,94,123,150,156],use:[3,4,5,12,13,14,20,21,22,25,26,28,29,30,32,34,36,37,39,40,41,42,45,46,47,48,49,52,53,54,55,56,57,58,59,61,62,63,64,65,67,68,69,70,72,73,74,77,78,79,81,82,83,85,86,87,88,89,90,91,93,94,95,96,98,101,102,103,104,105,106,107,108,110,112,113,116,118,119,120,121,122,123,127,128,131,133,134,135,136,139,141,142,143,144,145,150,154,156,157,158,159,160,161,162],use_adjoint:5,use_for_kml:52,use_fwav:[133,141,143,145],use_petsc:[90,96],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,34,35,36,37,39,40,41,42,43,45,46,48,49,51,52,53,54,55,56,58,59,60,61,62,63,64,65,67,68,70,72,73,74,75,78,79,81,83,85,86,88,89,90,91,93,94,96,98,99,100,101,103,105,106,108,109,112,113,116,120,121,122,123,124,125,126,127,128,132,133,135,136,137,139,140,141,142,143,144,145,148,150,153,154,156,159,160,162],useful:[0,3,10,19,25,27,28,32,34,35,36,37,42,45,47,50,51,52,54,57,58,60,67,73,74,80,83,86,95,107,108,112,113,123,126,133,135,141,142,154,156,157,162],useoffset:[40,50],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,34,35,42,49,52,57,59,60,65,68,72,79,86,87,90,94,96,104,106,107,108,112,119,121,123,125,133,141,143,144,145,147,156,162],user_bc_low:98,usernam:[28,29],uservari:68,uservariablefil:68,uses:[29,30,36,37,46,52,54,55,68,75,86,88,91,96,106,113,121,133,134,137,144,153,156,162],usg:[4,30,158],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,19,22,23,25,26,28,29,30,32,33,34,35,36,37,38,40,42,45,46,47,48,50,52,53,54,55,56,57,58,59,60,63,64,65,67,69,70,71,72,73,74,75,78,79,80,81,82,85,86,87,88,89,91,93,94,96,97,98,101,103,104,105,107,108,112,113,119,122,123,125,126,128,131,133,135,137,141,143,144,149,150,153,154,156,157,158,160,162],usr:70,usual:[0,2,3,5,6,30,34,40,45,47,52,60,63,70,72,74,90,91,96,98,99,101,106,110,112,121,133,141,142,143,144,145,157,159],utah:24,utc:[52,60],util:[23,25,28,35,46,52,74,78,81,93,108,113,140,155,156,157],uwamath:13,valid:[3,49,72,88,95,100,103,121,144,150,151,156],valout:[70,74,123,126,153],valout_geo:70,valout_nc:70,valout_nc_geo:70,valu:[3,5,6,7,16,18,20,22,27,30,33,34,35,36,37,39,40,42,45,46,48,50,51,52,54,60,61,63,65,67,68,69,72,73,74,79,86,91,93,94,95,98,99,100,101,103,105,106,112,113,115,116,118,119,121,123,125,126,128,132,133,135,136,137,141,142,143,144,145,150,151,154,156,157,159,162],valueerror:[30,150,156],valuemax:32,van:[89,101,141,143,145],van_leer_klein_sharpening_limit:89,vancouv:135,vanish:5,vanleer:[85,101,141,143,145],vari:[3,15,17,25,30,40,46,54,65,69,98,100,119,126,133,134,136,138,142,144,162],variabl:[0,3,5,13,14,18,22,25,27,28,30,32,35,36,37,38,41,45,46,51,52,55,58,59,68,71,73,75,79,85,86,94,96,100,101,103,104,106,108,119,120,121,123,125,132,133,141,142,143,145,150,154,156,157,159],variable_dt_refinement_ratio:[142,144],variable_eta_init:[137,144],variant:[20,57,106,113],varieti:[45,88],variou:[12,20,22,30,34,39,44,49,55,68,69,72,79,81,91,105,107,108,112,121,133,140,144,150],vastli:136,vector:[5,22,85,89,95,103,123,133,134],veloc:[16,18,32,34,48,61,68,81,98,105,121,136,141,142,143,144,145,159],verbatim:55,verbos:[28,30,33,35,48,60,67,88,95,101,113,135,141,143,145,150,156],verbosity_regrid:[127,142,143],veri:[3,5,16,18,22,49,52,56,57,60,72,79,83,86,94,95,96,97,98,101,113,116,120,135,137,141,151,154],verifi:[48,106,113,158],verifyerror:106,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,39,40,42,45,46,47,49,52,54,57,58,60,61,64,65,67,68,70,72,73,75,78,79,81,82,86,89,93,94,96,101,102,104,107,109,112,113,115,116,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,141,142,143,144,145,148,149,150,154,156,159,162],versu:156,vertic:[30,39,49,52,60,67,135,136,144,156,158],via:[5,13,22,23,24,28,29,30,34,36,37,42,43,45,47,49,52,55,56,58,59,61,63,67,68,72,73,75,79,82,85,91,94,97,100,102,104,108,112,113,123,126,133,135,139,144,146,148,149,154,156,159],vice:5,video:[24,110,126],view:[3,4,22,34,36,37,45,46,52,54,55,60,74,78,80,81,85,96,102,107,119,123,146,147],viewabl:[52,88],viewable_attribut:88,vim:28,violat:[101,156],virtual:[4,13,25,27,103],vis:88,visclaw:[1,7,13,22,23,24,28,34,40,45,46,47,50,52,56,57,58,59,63,67,68,75,79,80,81,82,93,97,102,108,139,140,146],visibl:[12,13,44,52,111,146],visit:[22,25,78,131],visual:[23,24,28,34,36,37,45,46,58,59,68,74,75,78,93,97,98,108,119,126,160],vogl:4,volcano:4,volum:[4,17,29,32,34,43,54,60,67,68,69,93,126,135,142,144,153,154,159],vrt:52,vstack:135,wai:[5,6,13,16,26,28,34,36,37,39,40,45,52,54,55,58,59,60,62,63,79,81,82,83,85,88,90,91,96,98,100,102,105,107,108,110,111,115,121,122,123,126,131,133,135,140,141,147,151,154,159,161,162],wait:13,wall:[16,42,98,105,120,123,125,141,143,145,153],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,34,35,36,37,38,40,41,42,45,48,51,52,55,56,58,59,60,63,64,65,67,73,79,81,85,86,87,88,94,95,96,108,111,113,120,123,126,131,133,134,135,139,140,143,147,150,154,156,157],warm:89,warn:[24,28,94,95,101,128,141,157],warp:52,warranti:[62,83],washington:[4,17,24,55,62,125,135,156],water:[5,16,17,25,34,40,45,46,47,48,49,60,67,75,78,86,93,116,117,121,123,124,133,135,136,137,144,154,156,158,159],water_level:48,wave:[4,5,6,16,17,25,32,40,49,52,53,72,89,93,98,99,101,112,119,121,122,128,134,135,136,141,142,143,144,145,159],wave_toler:[112,144],wavelength:49,web:[23,25,28,36,37,52,55,56,123,146,156],webinar:24,webpag:[22,24,36,37,43,47,52,56,63,124,136],webserv:13,websit:[16,52,55,146,156],weight:52,welcom:[24,83],well:[4,6,18,28,33,46,52,53,55,59,60,67,72,73,74,75,78,81,82,100,101,110,122,123,126,134,137,141,142,148,149,150,159,162],wellington:150,wendroff:[101,141,143,145,162],weno:[75,93,101],weno_ord:101,went:[59,134],were:[4,6,14,18,20,32,45,55,61,64,68,69,70,86,112,115,121,124,128,135,137,154],weren:127,west:154,western:156,wet:[40,46,67,69,135,144],wet_point:[40,67],wetland:[40,67],what:[5,6,9,13,14,22,25,28,30,31,32,39,49,51,52,55,56,58,59,60,63,64,67,68,69,70,74,78,85,88,92,100,103,105,108,111,112,113,120,135,136,140,141,143,144,145,146,150,154,156,158,159],whatev:[29,70,85,100,133],when:[5,14,15,16,20,28,29,30,32,34,35,40,41,42,45,50,51,52,54,55,56,58,59,61,65,67,68,72,73,74,75,78,79,81,85,92,93,94,96,97,101,104,108,112,113,115,116,118,120,121,122,126,128,130,133,135,136,137,138,140,141,142,143,144,145,146,150,154,156,157,158,159,160,162],whenc:95,whenev:[28,120,159],where:[1,3,5,6,12,13,16,22,27,30,32,34,35,36,37,39,40,41,45,46,49,52,54,59,60,61,63,65,67,68,69,70,74,75,81,88,91,92,93,94,96,99,108,112,115,116,119,120,121,126,128,132,134,135,136,137,140,141,142,143,144,145,150,153,154,156,159,162],wherea:[34,45,52,69,78,96],wherev:[29,157],whether:[3,6,13,16,22,48,54,57,59,61,62,63,68,83,94,95,100,101,112,113,121,133,135,141,142,144,156],which:[0,1,3,4,5,6,7,11,12,13,14,16,18,20,22,25,28,29,30,32,33,34,35,36,37,38,39,40,44,45,47,49,52,54,55,56,57,58,59,60,61,63,65,67,68,69,72,73,74,79,81,82,85,86,88,89,90,91,93,94,95,96,97,98,99,100,101,102,104,105,106,107,110,112,113,115,116,119,121,123,124,126,128,132,133,134,135,136,137,141,142,143,144,150,151,154,156,158,159,161,162],whichclaw:157,whidbei:[40,67,135],white:60,white_r:40,whith:86,who:[10,12,19,22,24,32,42,49,57],whole:[28,52,95,96],whose:[3,79,86,98,99,137,141,142,156],wide:[59,108,134],wider:79,width:[30,34,52,60,72,74,91,98,103,112,135,143,145],wiki:102,wikipedia:54,wind:[123,144,150,151,156],wind_forc:144,wind_index:144,wind_refin:144,wind_spe:150,window:[13,30,68,81,139],wisdom:60,wise:[28,101],wish:[4,13,14,15,22,29,36,37,49,52,59,68,77,78,93,98,101,102,104,108,110,112,121,138,146,148,149,157],within:[6,16,28,29,34,35,55,59,67,69,75,79,97,106,108,112,133,135,140,146,156],without:[16,22,41,45,49,60,62,63,64,67,68,79,81,83,89,93,94,95,106,108,113,135,139,143,145,150,157,159],wkt:52,wmo:150,wmo_:150,wmo_ag:150,won:[12,13,67,86,156],woodward:122,word:[95,123,150],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,34,36,37,41,46,49,52,53,54,55,56,57,58,59,60,67,68,71,72,73,79,82,83,84,85,87,88,89,93,94,95,96,99,101,102,107,108,110,111,112,113,117,118,119,120,121,122,123,126,128,129,131,133,139,140,141,142,146,151,154,157,161],workflow:[110,146,150],workshop:[110,126],workspac:[24,68,103],world:[49,65,93,96,150],worst:136,worth:103,worthwhil:98,would:[2,3,12,13,16,24,27,28,32,34,39,42,52,54,56,59,61,63,64,67,69,72,74,79,83,85,88,91,95,106,113,121,135,136,137,140,141,144,150,154,159],wouldn:64,wpalg:17,wrap:[60,83,86,101,106,150],wrapper:156,write:[7,28,30,33,34,35,39,40,45,46,51,54,55,65,72,74,75,78,85,88,91,92,94,95,96,100,121,123,143,145,150,154,156],write_:94,write_arrai:94,write_atcf:150,write_aux:[94,100],write_aux_alwai:[85,88,95],write_aux_init:[85,88],write_aux_int:95,write_geoclaw:150,write_hurdat:150,write_imd:150,write_jma:150,write_netcdf:35,write_p:[94,100],write_tcvit:150,write_to_fgmax_data:33,write_to_fgout_data:35,written:[6,11,25,30,32,34,35,41,45,59,60,61,62,72,74,75,79,83,92,93,94,98,121,133,141,142,143,144,145,150,156,159],wrong:[59,64,68,95,108],www:[4,13,17,30,40,46,55,62,67,70,83,86,94,96,122,124,150,156],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,135],x_2:[5,135],x_c:135,x_cell:60,x_center:135,x_edg:[60,135],x_i:[133,159,162],x_inch:60,x_mask:156,xarr:91,xarrai:156,xarray_d:156,xclaw:[36,37,88],xclawcmd:88,xclawerr:88,xclawout:88,xcode:82,xdir:88,xiaom:30,xinsheng:[4,53],xinshengqin:[4,53],xleft:[142,143],xlf:102,xlimit:[0,45,52,126],xllcenter:[54,123,154],xllcorner:[54,154],xllower:123,xlow:74,xlower:[0,3,16,22,27,40,86,123,143,145,154,156,159],xlowerg:86,xmax:[0,35],xmin:[0,35],xrang:98,xtick:[40,50],xupper:[0,22,143,145,156],xxdiff:113,xxx:154,xxxx:68,xy_fil:32,xy_fnam:33,xylim:30,xzf:58,y_c:135,y_cell:60,y_center:135,y_edg:[60,135],y_inch:60,year:[4,17,22,52,60,93,114,124,150],yellow:[60,79,150],yellow_red_blu:79,yes:68,yet:[1,13,18,20,25,49,53,55,58,60,78,101,121,122,123,124,125,126,127,128,129,130,131,133,141,143,161],yianni:[4,17,83],yield:3,yleft:[142,143],ylimit:[0,45,52,126,140],yllcenter:[54,123,154],yllcorner:[54,154],yllower:123,ylow:74,ylower:[3,22,27,40,86,123,143,154,156],ylowerg:86,ymax:[0,35],ymin:[0,35],yml:113,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,34,35,36,37,38,39,41,42,43,45,48,51,52,53,54,55,56,57,58,59,60,63,64,67,68,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,90,93,94,95,96,97,98,101,102,103,104,105,107,108,109,110,111,113,115,120,121,122,123,126,128,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,152,154,157,158,159,161],your:[4,6,15,16,19,20,24,25,26,34,36,38,42,45,54,55,56,57,58,59,70,73,78,79,81,83,84,85,86,87,90,92,93,95,104,105,107,108,109,110,112,113,115,123,133,138,139,148,149,154,157,159],yourself:[42,45,58],youtub:[24,110,126],yupper:[22,143,156],z_allow_wet:40,z_dry:40,z_format:[40,67,156],zdry:[40,67],zenodo:[4,58,126,127,128,129,130,131],zero:[3,16,30,32,40,42,45,60,68,69,85,98,103,105,128,135,136],zip:[12,52,56],zipinfo:52,zlib:94,zlim:60,zlower:22,zmask:67,zmax:[40,67],zmin:[40,67],znearshor:67,zone:[49,52,60,142,143],zoom:[24,52],zsh:96,zshallow:67,ztopo:67,zupper:22,zvar:156},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with fgmax grids","Fixed grid output","fgout_tools module for working with fgout grids","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Nearshore interpolation","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sea_level","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":137,"catch":28,"class":[85,88,150],"default":[15,109,137,138,148,149],"final":56,"function":[14,48,60,66,67,81,95,101,162],"import":108,"new":[47,55,71,90,113],"switch":68,"true":79,Adding:[28,52,90,98,133],For:6,Going:92,One:[133,134,162],The:[52,66,67,68,105],Use:104,Using:[5,13,25,29,34,39,53,59,64,70,73,95,98,101,133,140,159],about:[4,83],abov:29,access:81,acoust:[99,105],adapt:[6,16,25,39],add:79,addit:[52,142,144],adjoint:5,adjust:[137,144],advect:99,after:132,afterfram:68,algorithm:[6,17,67,75,162],alias:52,all:[3,59,67],along:67,altern:61,amazon:13,ami:13,amr:[3,5,6,22,67,73,112,135,142,144],amrclaw:[7,8,9,10,18,25,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,142,143,159],anoth:79,app:56,applic:[11,12,17,25,26,63,71,96],approach:8,arcsecond:[40,67],area:67,argument:67,arrai:[34,40,67,74,104],arriv:144,artifact:52,ascii:[74,94],attribut:[0,1,2,3,27,32,52,79,135],author:4,auto:[30,33,35,48,60,156],aux:[74,85],auxiliari:98,avail:[24,43],axes:50,b4run:14,b4step:[15,159],background:79,backward:[18,123,124,125,126,127,128,129,130],base:63,basic:[52,84,97],bathymetri:158,befor:159,behavior:137,below:67,better:29,between:[29,79],bibliographi:17,binari:74,binder:29,book:43,boundari:[6,16,98,159,162],bounding_box:135,branch:[28,55],buffer:67,bug:28,built:[55,90],buoi:158,burger:99,candid:56,capac:162,cautionari:49,cell:[6,40,135,144],cfl:89,chang:[18,22,79,101,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],chardiff:113,check:[28,113],checkpoint:132,chile:52,choic:[32,34],choos:[6,67],cite:[4,93],clamshel:16,classic:[18,25,36,37,101,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,141,145,152],claw:[76,139],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,44,53,55,56,57,58,63,75,76,86,89,101,102,122,123,124,125,126,127,128,129,130,131,134,145,161],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,79],clawutil:[18,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],clinic:24,clone:[28,58],cloud:87,code:[11,25,28,40,47,58,59,76,113,157,159],color:79,colorbar:52,colormap:79,command:[29,38,68,81,90,157],commit:28,commun:[24,28,76],comparison:113,compat:[18,123,124,125,126,127,128,129,130],compil:[42,63,70,104,147,157],compon:[23,79],comput:[75,132],condit:[6,16,98,105,159,162],configur:55,contain:29,content:[7,25,28,40,46,67,79,85,95,101,113,135],continent:135,continu:113,contourf:79,contribut:[26,28,134],contributor:83,control:[85,88,105],convers:20,convert:[11,19,20],convex:135,coordin:[50,52],copi:71,correctli:96,cover:135,coverag:28,creat:[13,29,40,52,56,67,68,71,85],creation:85,criteria:112,current_data:[27,81],curv:79,custom:[101,133],dart:158,data:[52,74,140,144,151,154,156,157,158,159],debug:[79,142],defin:[16,135],deform:137,dem:[40,67],demonstr:134,depend:[89,102],deprec:[8,144],depth:50,deriv:[85,95],describ:17,descript:[7,46],desir:140,detail:[6,7,46],determin:67,dev:76,develop:[24,25,28,76],diff:113,differ:[32,52,59,64,75,79],dimens:[91,134,162],dimension:133,directli:[13,34],directori:[59,63,71,79],displac:154,doc:55,docker:29,dockerfil:[29,56],docstr:[30,33,35,48,60,156],doctest:113,document:[9,11,30,33,35,48,55,56,60,93,122,123,147,156],doing:56,domain:[91,105],done:159,download:154,doxygen:9,drop:107,dry:[40,67,144],dtopo:155,dtopotool:30,duplic:63,each:[28,159],earth:52,earthquak:[72,158],easi:108,ec2:13,elev:[50,67,137],environ:[42,139],equat:[99,105,134],error:[28,104],eta:137,euler:99,event:[24,52],exampl:[12,25,26,32,34,36,37,38,40,43,45,47,52,59,67,68,71,77,90,93,96,135],exe:157,exist:71,experi:59,extra:55,extrapol:112,f2py:157,faq:79,faster:52,fault:72,featur:93,fflag:42,fgmax:[32,33,67],fgmax_tool:33,fgout:[34,35,61],fgout_tool:35,figur:[52,79],file:[13,29,31,32,34,40,52,54,55,56,58,64,68,79,81,113,132,135,144,154,159],fileio:94,find:[13,67,79],finer:6,fix:[28,32,34,73,144],fixedgrid:144,flag2refin:112,flag:[5,6,63,67,112,135,142],flagregion:39,flow:[25,85],flowchart:10,fly:78,forc:[40,144],force_dry_init:40,fork:28,format:[32,34,74,154],formul:162,fort:[74,79],fortran:[22,25,31,37,40,41,42,58,82,104,113,157,159],found:68,frame:95,framework:56,friction:65,from:[13,19,20,22,25,28,30,33,35,38,40,43,48,55,60,67,81,86,90,97,135,156],front:67,full:25,fund:[4,83],further:92,fvmhp:43,galleri:[44,55,68],gaug:[45,52,61,95,158],gdal:52,gener:[18,22,30,33,35,48,55,60,123,124,125,126,127,128,129,130,144,156],geo:144,geoclaw:[5,15,16,18,22,25,29,40,46,47,48,49,50,52,73,76,80,109,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,135,138,144,148,149],geometri:91,geophys:25,get:[25,29,47,68],gfortran:[42,102],ghost:6,git:[28,51,55,58,82],github:[28,56],given:67,global:121,godunov:162,googl:52,gpu:53,grid:[6,16,32,33,34,35,54,61,73,91,144],guid:[5,28,55,56,110,111],guidelin:28,hack:76,hazard:49,hdf5:94,help:68,high:162,hint:[49,79,107],hll:134,host:29,how:[79,81,95],hpc3:76,html:[11,81],imag:[29,52],imagediff:113,implement:112,includ:[12,55],independ:89,indic:[67,93],init:137,initi:[6,40,67,98,105,137,144,159],input:[22,32,34,94,141,142],instal:[28,37,38,57,58,59,70,75,82,93,96,102,104,108,152,157],instanc:13,instanti:135,instruct:[28,59],integr:113,intel:42,interact:[81,90],interfac:75,intern:40,interpol:[32,34,69],interpret:38,iplotclaw:81,ipython:[38,90],issu:28,item:79,jupyt:[12,29,38,146],kaust:76,keep:51,kinemat:72,kml:52,kmltool:60,kmz:52,lagrangian:61,latest:28,latex:81,latitud:[50,52],launch:13,layer:134,level:[28,137,144],lflag:42,librari:[52,64],licens:[4,62,83],limit:89,line:[38,81,90,113,157],link:21,load:52,local:147,locat:45,log:[13,95],longitud:[50,52],machin:[29,161],make:[79,96,146,157],make_kml:135,makefil:[41,63,64,98,132],man:65,map:52,mapc2p:66,march:67,mask:67,mask_outsid:135,master:[18,28],math:87,matlab:68,matplotlib:102,maxfram:68,maximum:144,mesh:[6,25],method:[0,1,2,3,135,162],mhw:67,migrat:25,miss:134,model:[49,72,110,111,158],modif:40,modifi:[28,64,132],modul:[30,33,35,48,60,93,106,143,145,156],monitor:[32,144],more:[6,37,41],most:28,move:[29,30],multipl:52,name:[63,64],nearshor:69,need:52,netcdf:[54,70,74,94,154],never:28,next:[57,58,59,102],nose:102,note:[114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],notebook:[12,29,38,107,146],number:56,numpi:102,object:[91,140],obtain:102,okada:72,old:8,older:25,onli:67,open:56,openmp:73,oper:82,option:[52,58,81,96,98],order:104,osf:56,other:[17,18,23,24,29,32,55,79,122,123,124,125,126,127,128,129,130,131,135,137],out:[28,67],outdir:79,output:[32,34,63,67,68,70,73,74,85,94,95,113,132,141,142,144,157],overlai:52,overview:[25,140],own:[13,29,98],packag:[22,59,94,99],page:55,paper:17,parallel:[75,91,96,97,103],paramet:[22,45,79,81,105,141,142,144],particl:61,pass:96,patch:91,path:[68,108],pcolor:79,petclaw:[91,103],petsc:96,photo:76,pip:[59,82,157],pixel:113,plot:[3,13,22,25,32,34,45,47,50,52,61,63,68,70,77,78,79,80,81,90,96,97,113,140,146,157,160],plot_typ:3,plotax:52,plotclaw:68,plotdata:52,plotfigur:52,plotitem:52,point:[32,67],pointwis:133,polygon:135,port:86,post:78,potenti:134,ppflag:42,pre:42,prepar:56,prerequisit:82,previou:[24,55],previous_pts_chosen:67,print:142,printfram:81,problem:[8,86,98,105,159],procedur:[32,34],process:[32,78],processor:42,produc:[34,81],propag:162,provid:79,pth:108,publish:52,pull:28,pyclaw:[18,22,25,36,38,59,83,84,85,86,87,88,89,90,91,93,94,95,97,100,101,102,103,105,106,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,152],pyflak:28,pylint:28,pypi:56,python:[20,81,82,102,107,108,126,155],pythonpath:[108,139],q0002:74,qinit:[109,144,154],quantiti:[85,95],quick:[59,110,111],raw:74,read:[34,40,135],readm:11,recent:[24,28],rectangl:[39,135],rectangular:72,refer:[17,25,53,93,107],refin:[6,16,25,39,112,144],region:[67,112,135,144],registr:[34,54],regress:113,relat:135,releas:[55,56,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],remot:28,remov:52,replac:64,report:28,repositori:[12,18,23,28,51,55,56,122,123,124,125,126,127,128,129,130,133],request:28,requir:[52,159],resolut:[52,162],resourc:25,restart:[29,85,132],result:[13,47,52,70,97,146],richardson:112,riemann:[18,25,93,98,99,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,133,134,159],roe:134,routin:[15,22,64,80,109,138,148,149],rst:11,rule:[39,135],run:[29,36,37,38,47,85,87,90,96,97,113,141,142,157],ruptur:72,sage:87,same:64,sampl:[40,67,143,145],save:[95,146],scienc:56,script:98,sea:[137,144],sea_level:136,sealevel:[],search:68,seismic:137,select:135,serial:[91,103,113],servic:13,session:24,set:[47,68,79,81,98,136,137,139,157],setaux:[138,159],setplot:[34,68,79,81,140],setrun:[22,45,141,142,143,144,145],shallow:[99,134],share:146,sharpclaw:101,shelf:135,shoot:[28,68],shore:67,should:75,signatur:101,simpl:[32,34,135],simul:85,simultan:113,sinc:18,size:79,slip:72,slu:135,softwar:[4,17],solut:[79,85,100],solv:105,solver:[75,85,93,98,99,101,105,133,134,159],some:[29,79,144,158],someth:79,sourc:[63,72,98,151,158,159,162],space:162,spatial:[137,159],special:[3,142],specif:[32,34,105,113,144,150,159],specifi:[39,61,79,81,112,140,141,142,144,159],sphere:16,sphinx:[55,147],sprint:[24,76],src1d:[148,159],src:[149,159],start:[25,29,47,110,111],state:103,statist:153,step:[57,58,59,102,159],stop:[13,29],storm:[110,144,150,151],stream:24,style:[32,55],subfault:72,submodul:12,support:[107,126],surfac:[50,137],surg:[110,151],sys:108,system:82,t0002:74,tabl:[25,93],tag:55,tar:[56,58],term:[65,98,159,162],test:[28,37,38,96,102,113,152],than:79,thi:[4,55],tide:158,tile:52,time:[141,142,144,153,159],tip:[28,41,50,52,96],titl:79,tool:[20,25,45,50,61,113,150,155],top:28,topo:155,topofil:67,topographi:[30,40,47,52,67,144,154,156,158],topotool:156,track:[51,61],transfer:13,travi:113,triangular:72,troubl:[28,68,157],troubleshoot:[59,104,157],tsunami:[49,52,111,158],tutori:[24,105,107],tvd:89,two:134,understand:85,univers:76,upcom:24,updat:[28,55,56],usag:40,use:[75,137],used:157,useful:[29,134],user:[16,24,29,75,159],using:[49,61,68,159],utah:76,util:[48,60,106],valu:[32,85],vari:[137,159],variabl:[42,63,98,139],version:[25,29,41,51,53,55,56,59,108],view:13,virtual:161,visclaw:[18,25,61,78,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],visit:160,visual:[25,52],washington:76,water:[50,99,134],wave:[133,162],web:13,webpag:[13,55,146],what:[79,81,95,134],when:95,where:95,which:[75,108],whichclaw:108,work:[4,33,35,90,155,156,159],workflow:28,workshop:[24,76],write:[67,98,113,135],written:95,your:[13,28,29,37,52,96,98,102,146,152],zenodo:56,zone:67}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","fgout_tools_module","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","nearshore_interp","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","fgout_tools_module.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","nearshore_interp.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],fgout_tools:[35,1,0,"-"],kmltools:[60,1,0,"-"],topotools:[156,1,0,"-"],util:[48,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.fgout_tools":{FGoutFrame:[35,0,1,""],FGoutGrid:[35,0,1,""],get_as_array:[35,3,1,""],make_fgout_fcn_xy:[35,3,1,""],make_fgout_fcn_xyt:[35,3,1,""],print_netcdf_info:[35,3,1,""],read_netcdf:[35,3,1,""],read_netcdf_arrays:[35,3,1,""],write_netcdf:[35,3,1,""]},"clawpack.geoclaw.fgout_tools.FGoutFrame":{B:[35,2,1,""],eta:[35,2,1,""],h:[35,2,1,""],hss:[35,2,1,""],hu:[35,2,1,""],hv:[35,2,1,""],s:[35,2,1,""],u:[35,2,1,""],v:[35,2,1,""]},"clawpack.geoclaw.fgout_tools.FGoutGrid":{X:[35,2,1,""],Y:[35,2,1,""],extent_centers:[35,2,1,""],extent_edges:[35,2,1,""],read_fgout_grids_data:[35,2,1,""],read_frame:[35,2,1,""],set_plotdata:[35,2,1,""],write_to_fgout_data:[35,2,1,""],x:[35,2,1,""],y:[35,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[60,3,1,""],deg2dms:[60,3,1,""],dtopo2kml:[60,3,1,""],f2s:[60,3,1,""],fgmax2kml:[60,3,1,""],fgout2kml:[60,3,1,""],gauges2kml:[60,3,1,""],kml_build_colorbar:[60,3,1,""],kml_cb:[60,3,1,""],kml_png:[60,3,1,""],kml_timespan:[60,3,1,""],line2kml:[60,3,1,""],make_input_data_kmls:[60,3,1,""],pcolorcells_for_kml:[60,3,1,""],png2kml:[60,3,1,""],poly2kml:[60,3,1,""],quad2kml:[60,3,1,""],regions2kml:[60,3,1,""],topo2kml:[60,3,1,""],topo2kmz:[60,3,1,""]},"clawpack.geoclaw.surge":{storm:[150,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[150,5,1,""],Storm:[150,0,1,""],available_formats:[150,3,1,""],available_models:[150,3,1,""],fill_rad_w_other_source:[150,3,1,""],make_multi_structure:[150,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[150,2,1,""],plot:[150,2,1,""],read:[150,2,1,""],read_atcf:[150,2,1,""],read_geoclaw:[150,2,1,""],read_hurdat:[150,2,1,""],read_ibtracs:[150,2,1,""],read_imd:[150,2,1,""],read_jma:[150,2,1,""],read_tcvitals:[150,2,1,""],write:[150,2,1,""],write_atcf:[150,2,1,""],write_geoclaw:[150,2,1,""],write_hurdat:[150,2,1,""],write_imd:[150,2,1,""],write_jma:[150,2,1,""],write_tcvitals:[150,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[156,0,1,""],create_topo_func:[156,3,1,""],determine_topo_type:[156,3,1,""],fetch_topo_url:[156,3,1,""],get_topo:[156,3,1,""],read_netcdf:[156,3,1,""],swapheader:[156,3,1,""],topo1writer:[156,3,1,""],topo2writer:[156,3,1,""],topo3writer:[156,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[156,2,1,""],Y:[156,2,1,""],Z:[156,2,1,""],crop:[156,2,1,""],delta:[156,2,1,""],extent:[156,2,1,""],generate_2d_coordinates:[156,2,1,""],generate_2d_topo:[156,2,1,""],in_poly:[156,2,1,""],interp_unstructured:[156,2,1,""],make_shoreline_xy:[156,2,1,""],plot:[156,2,1,""],read:[156,2,1,""],read_header:[156,2,1,""],replace_no_data_values:[156,2,1,""],replace_values:[156,2,1,""],set_xyZ:[156,2,1,""],smooth_data:[156,2,1,""],write:[156,2,1,""],x:[156,2,1,""],y:[156,2,1,""],z:[156,2,1,""]},"clawpack.geoclaw.util":{bearing:[48,3,1,""],dist_latlong2meters:[48,3,1,""],dist_meters2latlong:[48,3,1,""],dms2decimal:[48,3,1,""],fetch_noaa_tide_data:[48,3,1,""],haversine:[48,3,1,""],inv_haversine:[48,3,1,""]},"clawpack.petclaw.geometry":{Domain:[91,0,1,""],Patch:[91,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[91,4,1,""],fwave:[91,4,1,""],kernel_language:[91,4,1,""],mthlim:[91,4,1,""],order:[91,4,1,""],source_split:[91,4,1,""],step_source:[91,4,1,""],transverse_waves:[91,4,1,""],verbosity:[91,4,1,""]},"clawpack.petclaw.state":{State:[103,0,1,""]},"clawpack.petclaw.state.State":{F:[103,2,1,""],aux:[103,2,1,""],fset:[103,2,1,""],gauge_data:[103,4,1,""],get_aux_global:[103,2,1,""],get_auxbc_from_aux:[103,2,1,""],get_q_global:[103,2,1,""],get_qbc_from_q:[103,2,1,""],keep_gauges:[103,4,1,""],mF:[103,2,1,""],mp:[103,2,1,""],num_aux:[103,2,1,""],num_eqn:[103,2,1,""],p:[103,2,1,""],problem_data:[103,4,1,""],q:[103,2,1,""],set_num_ghost:[103,2,1,""],t:[103,4,1,""]},"clawpack.pyclaw":{util:[106,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[101,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[101,4,1,""],kernel_language:[101,4,1,""],mthlim:[101,4,1,""],order:[101,4,1,""],setup:[101,2,1,""],source_split:[101,4,1,""],step:[101,2,1,""],step_hyperbolic:[101,2,1,""],step_source:[101,4,1,""],verbosity:[101,4,1,""]},"clawpack.pyclaw.controller":{Controller:[88,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[88,4,1,""],F_path:[88,2,1,""],check_validity:[88,2,1,""],compute_F:[88,4,1,""],compute_p:[88,4,1,""],file_prefix_p:[88,4,1,""],frames:[88,4,1,""],keep_copy:[88,4,1,""],nstepout:[88,4,1,""],num_output_times:[88,4,1,""],out_times:[88,4,1,""],outdir:[88,4,1,""],outdir_p:[88,2,1,""],output_file_prefix:[88,4,1,""],output_format:[88,4,1,""],output_options:[88,4,1,""],output_style:[88,4,1,""],overwrite:[88,4,1,""],plot:[88,2,1,""],plotdata:[88,4,1,""],run:[88,2,1,""],rundir:[88,4,1,""],runmake:[88,4,1,""],savecode:[88,4,1,""],solver:[88,4,1,""],tfinal:[88,4,1,""],verbosity:[88,2,1,""],viewable_attributes:[88,4,1,""],write_aux_always:[88,4,1,""],write_aux_init:[88,4,1,""],xclawcmd:[88,4,1,""],xclawerr:[88,4,1,""],xclawout:[88,4,1,""],xdir:[88,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[94,1,0,"-"],netcdf:[94,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[94,3,1,""],read_array:[94,3,1,""],read_patch_header:[94,3,1,""],read_t:[94,3,1,""],write:[94,3,1,""],write_array:[94,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[94,3,1,""],write:[94,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[91,0,1,""],Domain:[91,0,1,""],Grid:[91,0,1,""],Patch:[91,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[91,2,1,""],centers_with_ghost:[91,2,1,""],delta:[91,2,1,""],nodes:[91,2,1,""],nodes_with_ghost:[91,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[91,2,1,""],num_dim:[91,2,1,""],patch:[91,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[91,2,1,""],add_gauges:[91,2,1,""],c_center:[91,2,1,""],c_centers:[91,2,1,""],c_centers_with_ghost:[91,2,1,""],c_nodes:[91,2,1,""],c_nodes_with_ghost:[91,2,1,""],dimensions:[91,2,1,""],gauge_dir_name:[91,4,1,""],gauge_file_names:[91,4,1,""],gauge_files:[91,4,1,""],gauges:[91,4,1,""],get_dim_attribute:[91,2,1,""],num_dim:[91,2,1,""],p_center:[91,2,1,""],p_centers:[91,2,1,""],p_nodes:[91,2,1,""],plot:[91,2,1,""],setup_gauge_files:[91,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[91,2,1,""],delta:[91,2,1,""],dimensions:[91,2,1,""],get_dim_attribute:[91,2,1,""],level:[91,4,1,""],lower_global:[91,2,1,""],name:[91,2,1,""],num_cells_global:[91,2,1,""],num_dim:[91,2,1,""],patch_index:[91,4,1,""],upper_global:[91,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[89,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[89,3,1,""],beta_limiter:[89,3,1,""],cada_torrilhon_limiter:[89,3,1,""],cada_torrilhon_limiter_nonlinear:[89,3,1,""],cfl_superbee:[89,3,1,""],cfl_superbee_theta:[89,3,1,""],hyperbee_limiter:[89,3,1,""],limit:[89,3,1,""],mc_limiter:[89,3,1,""],minmod_limiter:[89,3,1,""],superbee_limiter:[89,3,1,""],superpower_limiter:[89,3,1,""],theta_limiter:[89,3,1,""],upper_bound_limiter:[89,3,1,""],van_leer_klein_sharpening_limiter:[89,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[101,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[101,2,1,""],aux_time_dep:[101,4,1,""],call_before_step_each_stage:[101,4,1,""],cfl_desired:[101,4,1,""],cfl_max:[101,4,1,""],char_decomp:[101,4,1,""],check_3rd_ord_cond:[101,2,1,""],dq:[101,2,1,""],dq_src:[101,4,1,""],dqdt:[101,2,1,""],fwave:[101,4,1,""],get_dt_new:[101,2,1,""],kernel_language:[101,4,1,""],lim_type:[101,4,1,""],num_ghost:[101,4,1,""],setup:[101,2,1,""],step:[101,2,1,""],tfluct:[101,4,1,""],tfluct_solver:[101,4,1,""],time_integrator:[101,4,1,""],update_saved_values:[101,2,1,""],weno_order:[101,4,1,""]},"clawpack.pyclaw.solution":{Solution:[100,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[100,2,1,""],patch:[100,2,1,""],plot:[100,2,1,""],read:[100,2,1,""],set_all_states:[100,2,1,""],start_frame:[100,2,1,""],state:[100,2,1,""],write:[100,2,1,""]},"clawpack.pyclaw.state":{State:[103,0,1,""]},"clawpack.pyclaw.state.State":{F:[103,4,1,""],gauge_data:[103,4,1,""],get_aux_global:[103,2,1,""],get_auxbc_from_aux:[103,2,1,""],get_q_global:[103,2,1,""],get_qbc_from_q:[103,2,1,""],is_valid:[103,2,1,""],keep_gauges:[103,4,1,""],mF:[103,2,1,""],mp:[103,2,1,""],num_aux:[103,2,1,""],num_eqn:[103,2,1,""],p:[103,4,1,""],problem_data:[103,4,1,""],set_aux_from_auxbc:[103,2,1,""],set_cparam:[103,2,1,""],set_num_ghost:[103,2,1,""],set_q_from_qbc:[103,2,1,""],t:[103,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[106,0,1,""],VerifyError:[106,5,1,""],add_parent_doc:[106,3,1,""],check_diff:[106,3,1,""],compile_library:[106,3,1,""],construct_function_handle:[106,3,1,""],convert_fort_double_to_float:[106,3,1,""],gen_variants:[106,3,1,""],read_data_line:[106,3,1,""],run_app_from_main:[106,3,1,""],run_serialized:[106,3,1,""],test_app:[106,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[106,2,1,""],increment:[106,2,1,""],reset_counter:[106,2,1,""],set_counter:[106,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[99,1,0,"-"],advection_1D_py:[99,1,0,"-"],burgers_1D_py:[99,1,0,"-"],euler_1D_py:[99,1,0,"-"],shallow_1D_py:[99,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[99,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[99,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[99,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[99,3,1,""],euler_hll_1D:[99,3,1,""],euler_hllc_1D:[99,3,1,""],euler_roe_1D:[99,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[99,3,1,""],shallow_fwave_1d:[99,3,1,""],shallow_hll_1D:[99,3,1,""],shallow_roe_1D:[99,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":74,"000000e":143,"00000e":143,"0000ff":[3,60],"001000e":143,"00er2592":4,"00ff00":60,"00ffff":60,"01er25474":4,"020204mag_polici":30,"04d":160,"0_dockerimag":29,"0_geoclaw":29,"0d0":106,"10k":123,"1200x1680":52,"1440l":52,"1440p":52,"15e":156,"16m":73,"17th":101,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[45,79,81,140],"1drad":159,"1e6":67,"1e9":[32,39,61],"1rc":56,"1st":[89,101,141,143,145,159],"2013it":17,"2018300n26315":150,"2019ms001635":53,"224599074275750e":40,"25000000e":74,"259259000800000e":40,"260e":153,"27t06":60,"27t07":60,"288e":153,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[45,52],"2d_schlieren":3,"2nd":[93,98,101,141,143,145,159],"301e":153,"30x30":52,"34kt":150,"360x360":52,"373e":153,"3rd":[98,101,134],"3x3":40,"40000000e":74,"4th":101,"50kt":150,"5_x_x":56,"5d0":159,"5e3":144,"5r01ar53652":4,"639s":[37,152],"64kt":150,"793009258334999e":40,"8888ff":60,"88er25053":4,"8x6":52,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":52,"boolean":[3,52,67,94,99,141,142,144],"break":[28,30,49,52,60,72,113,120,137,144,156],"byte":35,"case":[5,6,8,13,16,18,19,22,30,32,34,39,42,45,46,49,52,59,60,64,67,68,69,72,79,85,91,94,96,98,100,106,108,112,113,116,119,120,121,122,123,128,132,135,136,142,144,150,154,156,157,159,162],"catch":[41,93],"class":[0,1,2,3,5,25,30,32,33,34,35,39,52,60,72,79,81,86,91,93,98,100,101,103,105,106,107,124,126,132,135,140,141,142,143,144,145,156],"const":32,"default":[0,1,2,3,13,18,22,28,30,32,34,35,42,45,46,48,50,51,52,54,59,60,61,63,64,68,69,72,73,79,81,85,88,90,91,94,95,96,97,100,101,103,104,106,112,115,121,125,126,128,132,136,142,143,144,150,154,156,159],"export":[42,52,58,59,68,73,96,104,139],"final":[5,30,35,42,55,61,68,72,85,88,95,105,110,115,132,134,141,143,145,156],"float":[3,30,32,35,45,48,60,88,91,99,103,106,141,142,144,145,150,156],"function":[0,1,2,3,5,7,15,17,18,22,23,25,27,28,30,32,35,40,45,46,51,52,54,63,64,65,69,70,72,78,79,80,85,86,88,89,90,91,92,94,97,98,99,100,103,106,107,112,113,115,116,119,120,121,122,123,128,133,135,137,138,140,141,142,143,144,145,150,154,155,156,157,159],"import":[0,3,5,22,28,32,34,38,39,40,45,49,52,54,57,59,60,64,65,67,72,75,79,81,85,86,88,90,91,93,94,95,96,97,98,100,101,102,103,105,113,121,126,133,134,135,136,137,141,142,143,144,145,154,156,158,160],"int":[1,2,3,30,32,60,88,89,91,94,95,100,103,141,142,144,150,156],"long":[28,30,48,49,52,71,93,120,128,142,156],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,35,39,40,41,42,45,46,48,52,53,54,56,59,60,61,63,64,65,67,68,73,79,81,84,85,86,87,88,94,96,98,101,103,110,112,115,118,119,120,121,122,123,124,125,126,127,128,132,133,135,136,137,139,141,142,144,150,154,156,159],"ond\u0159ej":4,"public":[4,13,21,131],"return":[0,1,2,3,30,33,35,38,48,52,60,64,67,68,79,81,88,89,91,94,95,98,99,100,101,103,106,113,122,133,135,141,143,145,150,152,156,159,162],"short":[24,49,98,128],"static":[30,72,123],"super":[23,28,123,156],"switch":[29,52,59,98,108,113,122,136,158],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,35,40,45,48,51,52,55,60,67,78,85,88,91,94,95,96,100,101,103,112,121,132,133,135,137,138,141,142,143,144,145,150,156],"try":[1,28,29,36,37,38,45,52,54,59,60,67,79,87,90,93,94,100,102,104,105,106,108,113,141,152,156,157],"var":[0,3,13,27,35,150],"while":[5,13,16,30,40,52,68,72,79,81,86,91,95,96,101,106,123,133,137,144,158],AND:[62,83],ARE:[62,83],AWS:13,Added:[18,89,115,117,119,120,122,126,129],Adding:[18,25,84,92],And:[6,20,55,58],Are:114,Axes:[140,150],BCs:[143,145],BUT:[62,83],But:[13,32,40,52,69,79,104,116,123,137,139],CMS:4,DAs:103,DMS:4,DNS:13,Doing:72,EBS:13,FOR:[62,83],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,34,36,38,39,40,42,45,48,49,50,52,54,55,56,63,64,67,68,69,70,72,73,78,79,81,82,85,86,90,91,93,94,95,96,98,101,102,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,140,141,142,143,144,145,147,150,151,153,154,156,158,159,162],GIS:[52,121,154],Going:[13,25,93],Ike:110,NOT:[60,62,79,83],Not:[30,52,91,121,128],OPS:48,One:[23,25,26,30,32,45,52,55,61,67,68,69,86,106,112,119,156],Res:17,SUCH:[62,83],Such:68,Sys:17,THE:[62,83],That:[36,38,40,105,154],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,88,89,91,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,112,113,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,156,157,158,159,160,161,162],Their:83,Then:[13,16,28,29,30,34,45,55,56,57,64,67,72,73,81,85,88,96,102,103,104,108,133,135,156,157],There:[3,6,13,22,34,37,41,52,55,56,63,67,72,74,81,82,95,102,110,122,123,140,141,151,152,159,161],These:[1,4,5,12,16,18,23,28,30,32,34,39,43,45,49,52,55,60,61,64,67,68,75,79,81,85,90,93,94,95,97,103,105,109,111,112,113,115,121,122,123,124,128,132,142,146,150,151,154,158,162],USE:[62,83],Use:[30,52,93,99,101,123,134,141,143,144,145,154,156],Used:134,Useful:[1,3,134,141],Uses:[30,134,156],Using:[0,1,2,3,7,17,22,42,43,46,52,54,77,78,79,81,91,92,93,125,141,148,149,153,156,157,162],WCS:158,Will:100,With:[6,22,28,45,50,52,59,67,75,112,120,133,135,141],__________________o:156,__file__:108,__future__:121,__init__:[56,98,108],__main__:[143,145],__name__:[143,145],_build1:55,_build:55,_compute_c_cent:91,_compute_c_nod:91,_compute_p_cent:91,_compute_p_nod:91,_fillvalu:94,_googleearth:52,_outdir:95,_output2:[79,81],_output:[5,13,14,32,34,36,37,45,51,61,68,79,81,90,95,97,100,120,127,157],_output_from_previous_run:45,_output_new:113,_output_old:113,_plot:[13,36,37,45,68,81,140,146],_plotindex:[1,45],_plots_new:113,_plots_old:113,_ptwise:133,_pyclaw_io:88,_static:55,_storm_modul:151,_subpackag:108,_surge_modul:110,_templat:[55,56],_theme:55,a351:[17,93],a377:[17,93],a_0:69,a_1x:69,a_2i:69,a_3xi:69,aabbggrr:60,abdullah:[4,83],abil:[42,119,121,125,150,156],abl:[13,55,108],abort:63,about:[3,5,7,13,14,16,18,22,25,33,34,35,36,37,41,48,49,54,56,60,63,65,68,74,80,82,85,93,96,101,108,113,120,124,126,133,140,142,143,144,154,157,159,162],aboutu:30,abov:[3,5,13,14,16,18,20,28,32,34,36,37,39,40,41,42,45,49,52,54,55,56,59,62,64,67,69,72,74,79,82,83,86,95,97,102,105,106,112,121,123,128,133,135,137,139,140,141,143,144,145,150,153,154,156,159],abs:[30,53,98,106,112,135,156],absolut:[95,112,113,123,142,143],absolute_import:121,abspath:[5,39],abstol:106,academ:104,acceler:[53,99],accept:[45,85,95,101,141],accept_reject_step:101,access:[0,17,27,29,56,59,90,91,93,101,103,106],accid:28,accident:[28,79],accompani:[18,21],accomplish:[29,40,63],accord:[6,54],accordingli:[52,154],account:[13,24,28,56,87,96],accumul:[45,121,132],accur:[5,49,69,72,93,101,128,141,159,162],accuraci:[45,65,75,143,145],achiev:[20,86,148,149],acou:79,acoust:[16,29,36,37,49,84,85,88,90,93,101,102,119,133,143,159],acoustics1dheterogeneoustest:[37,152],acoustics3dheterogeneoustest:[37,152],acoustics_1d:[85,99,105],acoustics_1d_adjoint:5,acoustics_1d_example1:[36,37,71],acoustics_1d_heterogen:[37,152,159],acoustics_1d_homogen:[90,113],acoustics_1d_pi:99,acoustics_2d:101,acoustics_2d_adjoint:5,acoustics_2d_radi:[143,159],acoustics_3d_heterogen:[37,152],acoustics_3d_vari:113,acquaint:105,acquir:79,across:[5,112,121,154,156],acsza1:30,acszb1:30,act:[89,156],acta:17,actanum2011:17,action:[13,14,86],activ:[24,32,34,39,55,101,110,144],actual:[6,27,30,34,54,59,60,68,72,79,89,94,106,110,136,144],adapt:[4,7,17,30,40,53,54,67,68,75,85,112,123,126,128,133,135,140,141,142,144,159],add:[0,11,12,13,16,17,27,28,30,45,48,52,55,56,58,59,64,67,68,70,72,78,85,90,91,95,96,98,106,116,119,121,122,123,126,134,145,150,154,156,160],add_colorbar:[30,156],add_colormap:[40,67,120,126],add_dimens:91,add_gaug:[91,95],add_label:45,add_param:[143,145],add_parent_doc:106,add_titl:79,add_true_solut:79,added:[3,12,16,18,20,22,24,28,34,35,45,48,54,56,59,60,61,65,68,79,91,95,108,110,112,115,116,118,119,120,121,122,123,124,125,126,127,132,137,141,142,144,150,153,156,160],addgaug:45,adding:[22,27,28,29,32,34,42,45,55,60,69,72,96,109,120,122],addit:[5,7,13,16,18,23,24,28,29,32,34,37,38,39,46,47,60,67,72,74,75,79,80,86,89,91,93,95,101,102,103,110,112,119,121,122,123,124,127,128,130,133,135,141,145,150,153,154,159,160],addition:[96,150],address:[52,55,121],adequ:49,adjac:[6,16,32,46,112,137,141],adjoint:[7,17,25,53,112,123,124],adjoint_flag:112,adjoint_modul:124,adjoint_outdir:5,adjointdata:[5,124,125],adjointsup_modul:124,adjust:[5,13,20,32,33,46,60,91,95,136,141,159],adjust_fgmax_1d:33,admiralti:135,adopt:[30,101],adv:17,advanc:[6,17,34,53,67,73,105,120,141,142,159],advantag:[12,34,45,61,78,94,107,113,135],advect:[17,79,93,96,133,134,145,159],advection2dannulustest:[37,152],advection_1d:99,advection_1d_example1:64,advection_1d_pi:99,advection_2d_annulu:[37,152],advection_2d_flagregion:39,advection_2d_inflow:119,advection_2d_swirl:159,advection_3d_swirl:[119,153],advertis:128,advis:[62,83],affect:[18,22,63,121,122,128,141,154,157],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,34,36,37,40,45,49,55,56,58,60,61,63,64,67,68,70,74,79,86,87,88,90,95,101,103,108,112,113,115,119,120,134,137,141,142,143,145,150,159],afterax:[0,27,45,52,79],afterfram:[1,27,78],aftergrid:68,afteritem:[3,27],afterpatch:[3,27],again:[22,41,63,67,72,79,81,85,86,95,99,104,108,123,129,154,157],against:[106,113,120,152],agenc:[4,57,150,151],agency_pref:150,agre:[12,28,40,54,133,153,156,159],agreement:49,ahmadia:[4,17,83,93],aht:136,aid:86,aim:28,aks2203:4,albada:89,alg:143,alghamdi:[4,17,83,93],algorithm:[4,7,25,32,39,40,46,53,85,91,93,94,101,105,112,123,133,135,141,143,145,156],align:[32,34,40,52,60,67,126,128,144],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,34,35,36,37,40,41,42,45,46,49,51,52,54,55,56,57,58,60,61,62,63,64,68,69,71,72,73,74,75,78,79,81,82,83,85,88,89,91,93,94,95,96,98,99,100,101,103,106,107,108,111,112,113,115,116,119,120,121,123,126,128,131,132,133,134,135,137,140,141,142,143,144,145,146,151,152,153,154,156,157,159],alloc:[20,101,119,128,142],allocat:119,allot:60,allow:[4,6,13,18,22,27,28,29,32,34,35,39,40,45,46,48,51,52,54,55,59,65,67,68,72,73,75,78,79,88,93,94,95,101,103,106,107,108,112,113,115,116,119,120,121,122,123,125,126,128,133,135,141,143,144,145,146,150,154,156,158],almost:[34,141],alon:[16,52],along:[6,14,16,24,27,30,32,40,45,52,55,58,70,72,108,112,119,131,132,135,137,144,150,158],alpha:[52,56,101],alphabet:83,alreadi:[0,1,6,12,13,18,28,29,42,56,57,59,60,61,67,81,82,96,100,102,105,107,116,124,139,156],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,34,35,36,37,38,39,40,42,43,44,45,48,49,52,53,54,55,56,57,58,59,60,61,63,64,67,68,70,72,73,74,75,78,79,81,85,87,88,91,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,141,142,143,144,145,146,148,149,150,151,152,153,154,156,157,158,159,161,162],alter:52,altern:[30,34,36,37,45,46,48,52,57,63,68,78,93,96,108,112,119,120,121],although:[30,52,64,68,97,98,100,112,124,130,156],alwai:[16,22,26,27,28,32,34,35,42,54,55,59,68,85,94,111,112,115,116,128,137,141,143,145,154,159],amal:[4,17,83,93],amazon:25,amazonaw:13,amdq:[99,133],ami:25,among:126,amount:[45,49,55],amplitud:[5,121],amr:[4,7,8,16,18,20,23,25,27,28,32,34,35,39,45,46,53,60,68,69,74,75,78,83,91,120,122,123,124,126,128,137,140,141,143,145,153,159],amr_1d:124,amr_2d:[123,124],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:120,amr_level:[34,74],amr_level_max:143,amr_levels_max:[32,112,142,143],amr_modul:[73,112,119,125,126],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,37,39,40,42,44,45,46,47,53,56,57,58,59,61,67,68,70,73,74,75,82,93,102,108,109,112,113,132,133,135,138,139,141,144,148,149,152,153,157],amrdata:[5,22,32,112,126,128,142,143,144],amrflag:112,amrlib:119,amrnez:112,an11:55,anaconda:[52,102],anal:17,analog:[141,142],analysi:17,andi:4,angl:[16,30,48,72],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,34,35,36,37,38,45,46,49,51,52,55,56,58,59,61,62,63,65,67,68,69,71,73,74,75,79,83,89,90,91,93,94,95,96,98,100,102,106,108,111,112,113,119,123,125,132,135,136,137,140,141,142,144,150,159,162],anim:[12,16,18,34,43,52,119,126,127,146],animation_tool:[126,127],anisotrop:[6,22],anl:96,annot:[27,60],annual:24,anoth:[3,22,34,40,45,52,56,59,60,74,78,82,90,101,104,113,123,150,159],answer:24,anyth:[3,6,28,29,59,64,113,123],anywher:112,aoml:150,apach:13,apdq:[99,133],api:[48,123],app:[12,13,18,23,26,28,29,32,38,43,44,72,110,111,118,122,123,124,125,126,127,128,129,130,134],appar:[30,69,73],appeal:52,appear:[0,1,3,5,8,13,18,23,32,34,45,46,52,55,60,63,66,79,95,100,103,121,128,144,146,154],append:[5,20,32,34,39,40,45,52,61,79,88,100,112,120,121,132,133,143,144],appl:17,appli:[3,4,5,6,13,16,25,30,49,52,54,65,67,72,79,81,89,91,94,101,112,132,141,144,159],applic:[4,6,15,16,19,20,22,23,24,28,29,32,34,35,36,37,38,42,43,44,46,47,56,58,59,64,67,70,73,81,90,91,92,93,95,101,106,109,111,112,113,115,118,119,121,122,123,125,126,133,135,137,138,141,144,148,149,154,156,157,159,160],appreci:83,approach:[5,7,13,28,29,39,45,55,58,71,78,86,93,96,98,106,112,119,121,122,124,133,134,140,159,162],appropri:[4,5,6,13,16,24,28,46,49,50,52,56,58,60,61,65,68,70,71,73,85,88,89,90,94,96,97,98,99,100,113,125,133,136,141,150,159,162],approv:49,approxim:[6,16,25,33,49,52,69,72,133],april:[24,126,127,131],apt:[13,82],arbitrari:[32,34,60,101,115,135,144],arbitrarili:67,arc:136,arcgi:156,architectur:96,archiv:[12,21,37,52,56,113,146,152,156,158],arcminut:[72,154],arcsecond:[46,154],area:[15,22,46,101,110,121,137,138],arg:[91,100],argument:[0,1,2,3,27,30,35,46,48,51,52,54,79,85,86,90,91,94,98,100,101,103,106,113,123,133,135,140,141,142,150,156,159],argv:[143,145],aris:[62,83],arithmet:65,aron:[4,17,83,93],arora:89,arora_ro:89,around:[6,30,32,40,60,94,110,113,126,142,143,150,156,159],arrai:[0,3,6,15,20,22,27,30,32,33,35,39,45,46,48,50,54,60,79,85,86,88,89,91,93,94,95,98,99,100,101,103,105,106,107,115,116,117,121,123,126,128,133,134,135,138,141,142,143,144,145,150,154,156,159],arrang:156,arriv:[22,32,34,40,46,121,136,137],arrival_tol:32,articl:[4,17,93,146],artifici:[16,137],arxiv:53,asc:156,ascii:[18,34,45,54,68,85,88,95,100,121,132,141,143,145,154,160],ascii_output_format:70,ask:24,ask_us:156,aspect:[12,24,29,44,49,50,68,156],assert:[143,145],assess:[4,49,136],assign:[30,32,34,85,88,94,100],assist:[22,126],associ:[0,1,2,6,22,52,59,73,91,94,95,113],assum:[3,5,20,22,30,32,34,35,37,40,48,49,52,54,55,56,60,68,72,78,94,95,97,98,99,105,106,112,119,135,136,141,144,150,151,154,156,158,162],assumpt:[52,55],asteroid:4,astronom:136,atcf:[110,123,150,151],aterrel:4,atmospher:4,attach:[56,94,103],attempt:[5,8,11,20,33,36,37,63,94,100,106,113,115,129,150,156,157],attirbut:22,attr:[91,100],attribur:5,attribut:[5,7,22,30,34,35,39,45,67,72,78,80,81,85,88,91,94,96,98,100,101,112,115,120,124,132,140,141,142,144,150,156],attributeerror:79,aug:[17,124],aug_glob:99,augment:[67,134],august:[24,123,131],austin:4,author:[17,25,46,49,89,93,94,99,111],auto:[0,45,86],autom:[14,55,86,113],automat:[0,2,3,8,11,16,30,36,37,42,52,56,63,78,79,81,85,90,94,96,102,103,104,106,113,115,126,128,141,142,144,154],autonom:5,aux1:32,aux1d:159,aux:[5,6,15,20,22,27,45,54,86,93,94,95,98,100,101,103,104,115,116,121,123,133,134,138,141,142,143,144,145,159],aux_bc_low:98,aux_bc_upp:98,aux_l:[99,133],aux_out_field:45,aux_r:[99,133],aux_time_dep:101,aux_typ:[5,142,143],auxbc:[98,101,103],auxiliari:[22,86,88,94,99,101,103,133,141,143,145,159],auxillari:[94,100],auxl:133,auxr:133,auxtyp:143,avail:[0,4,5,10,12,16,22,23,29,32,34,40,44,45,47,49,52,59,63,67,68,69,75,78,80,81,85,88,93,94,95,97,99,101,104,105,106,107,108,112,122,133,134,136,141,143,146,150,151,154],available_format:150,available_model:150,averag:[4,6,15,17,32,40,46,49,50,54,68,69,99,103,116,128,133,137,138,154,156,159],avi:4,avoid:[40,52,55,60,63,68,91,95,112,115,116,120,121,128,130,132,141,144,162],awai:[28,136],awar:[49,96],awr11:17,axes1:[2,81],axes:[0,1,2,27,30,45,52,68,78,79,81,140,150,156],axescmd:[0,81],axesnam:[1,81],axessubplot:30,axi:[0,30,40,50,52,67,68,79,91,135],axxxx:94,azv:55,b0000:34,b0002:74,b4run:[25,127],b4step1:[15,64,159],b4step2:[15,138,159],b4step3:15,b4stepn:159,back:[13,27,29,55,56,122],backend:52,background:[2,78,123,140],backward:[5,28,30,48,60,72,94,116,117,156],bad:[108,113],bai:[67,136,158],balanc:[6,17,75,122,134,148,149],bale:17,balelevmitross02:[4,17,141,162],ball:156,band1:156,band:[52,156],bar:[13,55,150],barrier:[67,106],base:[5,6,13,18,20,21,22,28,29,30,32,33,34,46,48,52,53,54,55,60,61,64,65,67,68,72,75,86,88,89,91,93,94,99,100,101,103,105,106,112,114,119,122,124,128,136,141,142,143,144,145,150,156,159,162],base_subfault:30,baselin:52,basemap:150,bash:[42,52,58,59,68,73,96,108,139],bash_profil:[104,139],bashrc:[13,42,104,139],basi:[45,68],basic:[6,10,12,25,30,36,38,46,58,67,68,85,91,93,94,95,99,101,113,133,134,150,162],basin:110,bathymetri:[15,46,49,52,60,99,110,121,123,134,136,138,144,154,156],bc1:[64,106],bc1_inflow:64,bc2amr:[16,123],bc_arrai:101,bc_lower:[16,85,98,105,141,143,145],bc_upper:[16,85,98,105,141,143,145],bcn:[6,16,145,159],bcnamr:[6,16,123,141,143,159],beach:[40,67,134],beam:89,bear:[30,48],bearing_unit:48,becaus:[5,22,27,32,34,40,52,56,67,69,94,95,96,115,133,136,141],becom:[49,104,162],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,37,40,43,45,46,49,52,53,54,55,56,61,63,65,67,68,72,75,79,81,83,86,88,94,95,99,100,103,104,105,106,108,110,112,114,115,116,118,121,122,123,124,125,126,128,129,132,133,135,141,142,144,154,156,159],befor:[1,3,4,6,14,18,28,30,32,34,35,36,37,40,41,42,45,54,55,56,57,59,60,63,64,68,73,81,85,88,94,96,101,103,108,112,113,115,116,127,131,133,136,137,141,142,154,156,157],before_step:101,beforefram:[1,27,123],begin:[48,60,91,95,99,105,134,150],begin_d:48,behav:45,behavior:[35,46,55,69,112,113,120,126,128],behaviour:85,behind:[40,67,137,144],being:[1,3,4,8,13,32,34,40,45,49,54,59,67,69,81,88,94,99,100,101,106,108,110,112,120,122,124,133,135,137,141,144,150,157,159],believ:[49,107,121,126],belki:76,belong:[79,91,96,100,103],below:[3,6,13,15,16,18,22,24,28,29,30,32,34,40,46,52,53,55,56,59,60,65,68,72,81,83,85,87,95,99,105,108,109,112,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,138,139,140,141,142,143,144,145,148,149,150,154,156,159],benchmark:49,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,62,83],best:[3,4,16,22,26,28,34,42,52,54,56,57,63,69,71,73,78,79,94,98,110,111,112,113,123,131,133,144,147,150,154,159],besttrack:150,beta:[48,89,101,145],beta_limit:89,better:[0,6,22,32,40,45,67,68,69,73,74,78,101,110,112,120,121,122,125,126,128,129],between:[3,4,5,6,13,16,23,25,28,30,31,32,34,35,39,48,52,56,60,67,68,69,72,73,75,78,88,91,95,101,103,104,106,107,108,112,120,121,133,135,136,141,142,143,144,145,146,150,153,154,156,158,159],bewar:[108,156],beyond:[6,30,107,123],bfinal:35,bgr:60,bibliographi:[4,25],bibtex:[4,56],big:94,big_earthquak:30,biggest:93,bilinear:[6,32,40,45,54,69,115,116,154],bin:96,binari:[5,18,34,42,56,62,70,83,94,95,97,120,132,141,156,160],binary32:[18,34,94,141,143,145],binary64:[18,34,94,141,143,145],bind:[28,52,78,86,96],bisect:[142,143],bit:[16,22,30,56,94,96,104,134],bitbucket:96,black:[3,45],blank:[3,60,150],blast:122,blob:[120,134],block:[7,30,40,60,72,74,75,85,94,103,106,113,159],blossei:4,blue:[3,11,40,45,60,67,79,135,150,156],bmatrix:134,bndlist:123,boe:4,boisest:52,bollig:4,bolliger32:4,bom:150,bomb:[63,73],book:[4,12,17,25,29,82,100,133],bool:[0,1,2,3,48,60,88,94,99,100,101,103,106,144,150,156],border:[68,159],bore:49,both:[3,16,18,28,30,33,34,35,36,37,39,40,45,49,54,57,59,64,67,68,72,74,86,94,95,96,101,102,112,113,119,120,123,126,133,134,135,137,141,142,143,145,148,154,159],bottom:[13,15,30,36,37,46,49,65,67,72,85,98,99,121,122,138,148,149],boulder:24,bound:[33,35,86,89,96,135,141,156],boundari:[5,7,20,25,40,52,60,64,67,72,73,86,91,99,101,105,110,116,119,123,135,141,143,145],bounding_box:[7,33],bounds_error:35,boussinesq:49,bowl:125,bowl_radial_fgmax:32,box2kml:60,box:[5,30,33,52,60,135,156],branch:[15,18,25,29,42,51,53,56,58,59,109,113,122,123,124,125,126,127,128,129,130,131,138,148,149],brew:82,brief:[4,56,134,144],briefli:162,bring:[13,52,55,68,144],brisa:4,brisadavi:[4,124],broad:156,broken:[19,20,28,70,72,113],brought:28,brown:[83,156],brows:[11,24,43,52,68,146,159],browser:[13,28,29,36,37,52,55,146],bsd:[4,62,83,123],buffer:[30,40,45,112,120,121,142,143,156],buffer_length:156,buffer_s:[30,72],bug:[4,8,12,22,24,42,52,65,73,79,83,118,119,120,121,123,128,129,130],build:[4,17,28,29,55,56,68,86,96,106,122,135],buildsystem:96,built:[28,29,65,75,84,93,96,98,100,112,113,148,149],bulk:[19,85,99,105,133,143,159],bull:[17,30],buoi:46,burger:[93,133,159],burgers_1d:99,burgers_1d_pi:99,busi:[62,83],butcher:101,button:[12,13,28,52,60,122],bzip2:126,c210:[17,93],c231:[17,93],c_center:91,c_centers_with_ghost:91,c_l:99,c_node:91,c_nodes_with_ghost:91,c_r:99,cach:[22,48,56,81,83,126,142],cache_dir:48,cada:89,cada_torrilhon_limit:89,cada_torrilhon_limiter_nonlinear:89,cake:76,cal:[133,159,162],calcul:[3,5,6,27,30,33,35,46,48,68,72,79,91,99,101,116,121,156],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,52],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,34,35,39,42,45,51,52,64,67,68,72,74,79,81,85,86,88,89,94,95,98,100,101,103,105,106,112,113,115,119,120,122,123,133,135,137,139,141,143,144,145,150,156,159],call_before_step_each_stag:101,call_setplot:79,callabl:[93,106],calucl:99,cambridg:17,came:14,camera:52,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,24,26,27,28,29,30,32,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,63,64,65,67,68,69,70,71,72,73,74,75,77,78,79,80,81,83,85,86,87,89,90,91,93,94,95,96,97,98,100,101,102,103,104,105,106,108,109,110,112,113,115,116,119,120,121,122,123,126,127,128,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,152,154,156,157,158,159,160,162],cannot:[53,59,94,128,137,150],canopi:102,capa:100,capa_index:[141,143,145],capab:156,capabili:123,capabilit:121,capabilti:123,capabl:[7,12,18,22,32,34,45,49,53,61,67,75,86,93,115,120,121,123,124,125,126,127,156,158],capac:[15,99,138,141,142,143,145],captur:[32,45,49,61,135,154],car_nam:150,care:[32,40,46,96],carefulli:[20,22,65],carri:34,cartesian:[32,47,60,86,144],cartopi:150,cascad:4,cast:156,cat_nam:150,catalog:158,categor:150,categori:150,category_color:150,caus:[22,34,49,52,55,62,63,69,75,81,83,104,113,120,121,122,124,128,140,142,154,156],caut:89,caution:49,cautionari:[25,46,64,144],cautiou:49,caxi:68,cb_file:60,cb_filenam:60,cb_kwarg:156,cb_name:60,cb_xfrac:60,cb_yfrac:60,cbar:[99,156],cdot:[65,98,135],ceas:107,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,34,35,45,46,52,54,60,67,68,69,73,74,75,85,91,94,96,99,101,103,105,112,115,116,120,121,122,123,124,125,126,128,133,136,137,138,141,142,143,145,151,153,154,159,162],celledg:3,celledges_show:[3,22],cellgridintegr:115,cellgridintegrate2:115,cellsiz:[40,54,119,154],center:[4,5,27,30,32,33,34,35,40,45,52,54,60,69,72,85,91,98,99,105,112,123,135,137,142,143,144,150,151,154,159],centerlin:30,centers_with_ghost:91,central:[141,150,151],central_pressur:150,centroid:[30,72],certain:[14,32,46,58,67,95,112,120,135,141],certainli:96,certik:[4,83],cf2py:86,cfl:[6,91,95,101,105,115,120,141,143,144,145],cfl_desir:[101,141,143,145],cfl_max:[101,141,143,145],cfl_superbe:89,cfl_superbee_theta:89,challeng:122,chanc:83,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,34,41,42,51,52,53,54,55,56,59,60,63,64,65,67,68,70,73,74,75,78,81,85,86,92,94,95,103,106,107,110,111,112,113,131,133,137,138,141,142,143,144,145,148,149,154,157,159],changelog:[18,22,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],changes_to_mast:56,channel:24,chapter:[16,133,141,159],char_decomp:101,charact:48,characterist:101,charg:13,chava:144,cheaper:13,check:[6,14,15,16,20,32,36,37,41,42,51,52,53,55,56,57,59,63,68,79,82,85,86,88,93,96,100,101,103,105,106,108,109,112,116,125,135,137,138,142,143,148,149,150,156,157,158,159],check_3rd_ord_cond:101,check_diff:[106,113],check_lmm_cond:101,check_valid:88,check_valu:[106,113],checkout:[28,53,55,56,58],checkpoint:[25,45,120,121,123,125,128,141,143,145],checkpt_interv:[141,143],checkpt_styl:[120,132,141,143],checkpt_tim:[141,143],checksum:94,chen:[30,158],chile2010:[52,111,112,115,118,124,154],chile2010_adjoint:5,chile2010_fgmax:[18,32,34],chile2010a:[29,111],chile2010b:111,chile:[46,60,72],chile_2010:52,chile_dtopo:72,chk00006:[143,145],chk00100:120,chk:120,chkaaaaa:120,chkbbbbb:120,chknnnnn:[132,141,143,145],choic:[16,46,78,101,141,143,144,145,159],choos:[0,7,57,59,60,72,98,141,144],chose:65,chosen:[3,29,32,39,40,52,54,67,105,112,128,136,142],chri:4,chunk:94,chunksiz:94,circl:[3,48,79],circular:17,cise:17,citat:[4,56],cite:[25,56,58,131],cjvogl:4,clamshel:116,clarifi:22,clariti:39,clash:68,classic4:145,classic:[4,6,12,15,16,19,20,22,23,24,28,42,43,44,47,56,57,58,59,64,71,73,74,75,82,83,85,88,90,91,92,93,94,98,108,109,113,132,133,138,139,142,144,149,157,159],classic_1d:64,claw1:[64,106],claw1ez:64,claw:[5,6,8,11,12,13,14,15,16,18,19,20,22,24,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,48,50,51,53,55,56,58,59,60,63,64,68,71,72,73,80,85,88,90,93,94,95,96,102,104,108,109,110,111,112,113,115,116,118,119,122,123,125,133,137,138,143,144,145,147,148,149,152,153,154,156,157,159,160],claw_1dnoncon:162,claw_git_diff:[28,51,56],claw_git_statu:[28,51,56,127],claw_lib:70,claw_outdir:[63,79],claw_packag:101,claw_pkg:[141,142,143,144,145],claw_topo_download:156,claw_vers:59,clawdata2pyclaw:86,clawdata:[5,39,115,119,132,141,142,143,144,145],clawdev2013:55,clawdev:55,clawgraph:68,clawicon:55,clawlogo:55,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,40,42,43,45,46,47,48,49,51,52,59,60,61,62,64,67,68,71,72,73,77,78,79,80,81,82,83,84,85,87,88,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,111,113,114,115,116,117,118,119,120,121,132,133,135,139,141,142,143,144,146,147,150,152,154,156,157,159,160,162],clawpack_gpu:53,clawpack_src:[59,108],clawplotax:[1,2,3,27,79,123,128,140],clawplotdata:[2,3,27,45,52,79,81,88,140],clawplotfigur:[0,1,52,79,140],clawplotitem:[0,1,7,22,27,78,80,120,123,140],clawrundata:[5,45,60,124,132,141,142,143,145],clawsolut:1,clawsolv:[101,133],clawsolver1d:[85,88,91,101,105,133],clawsolver2d:[91,101],clawutil:[5,11,14,19,20,23,28,41,42,51,56,57,58,63,108,113,139,141,142,143,145,156,157],clean:[22,55,56,106,119,123],cleaner:[28,121],cleanup:122,clear:[1,2,6,18,68,81],clearer:[125,128,129],clearfigur:1,clearfram:[1,81],cleargaug:45,clearli:[45,49,52,135],clf:2,clf_each_fram:2,click:[4,12,13,18,28,52,55,113,122,131],clifford:24,clint:17,clobber:[94,120],clockwis:[32,48,72,156],clone:[12,18,23,24,43,53,55,56,59,82,96,102,111,157],close:[13,40,52,55,60,67,68,94,112,126,142,150],close_fig:60,closer:[72,143],closest:150,cloud:13,cluster:[6,17,112,142,143],clustering_cutoff:[112,142,143],cma:150,cmap:[34,40,52,60,67,79,135,156],cmap_dri:[40,67],cmap_land:67,cmap_sea:67,cmap_sea_dri:67,cmap_slip:30,cmap_topo:67,cmax:[52,60],cmax_dz:30,cmax_slip:30,cmdline:108,cmin:[52,60],cmin_slip:30,cmmi:4,cname:55,coars:[3,32,34,52,112,121,128,141,154,159],coarsen:[54,112,123,124,142,154,156],coarsen_method:54,coarser:[3,16,54,121,137,141,142,159],coarsest:[6,34,52,74,115,132,141],coast:[40,67,112,137,156],coastal:[49,126,136,137,144,154],coastlin:[32,52,67,69,126,135,144,158],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,34,35,36,37,39,41,42,43,45,46,49,51,53,54,55,57,62,63,64,65,70,71,72,73,74,75,77,79,81,82,83,85,86,91,93,94,95,96,98,101,102,105,107,108,111,114,115,116,119,120,121,122,123,124,125,126,128,132,133,134,135,139,141,142,143,144,145,146,150,152,153,154],code_of_conduct:123,coeffici:[5,65,98,99,101,103,104,105,133,144],coincid:34,colella:[6,17],collabor:[52,146],collect:[12,25,26,28,30,32,72,78,85,101,146],collela:122,color:[3,30,40,52,60,67,68,78,135,140,150,156],colorado:24,colorbar:[3,40,60,67,123,126,135,156],colorbar_kwarg:123,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,40,47,52,67,68,78,80,120,126,156],column:[10,30,32,45,49,61,95,99,119,135,156],column_list:30,column_map:30,com:[12,13,18,23,24,26,28,29,53,55,56,58,59,94,96,98,102,118,120,121,122,131,134],combin:[20,55,60,120,158],combinatori:113,come:[3,28,79,81,90,96,101,119,154,159],comfort:[59,98],comm_world:106,command:[0,1,2,3,11,13,14,28,41,51,52,53,56,58,59,63,71,78,79,82,85,86,88,93,96,97,101,105,106,107,108,113,133,139,140,141,142,154,156],commenc:132,comment:[5,11,18,24,50,56,122,132],commit:[25,30,51,55,56,113],common:[3,23,28,36,37,41,42,63,64,75,78,85,99,101,103,104,121,123,126,157,159],common_sourc:64,commonli:[3,68,79,81],commun:[25,52,83,103,106,108,112,123],comot:4,compact:[67,154],compactli:135,compar:[5,22,37,45,49,52,56,79,95,112,113,136,142,152,158,162],compare_gaug:119,comparison:53,compat:[28,30,48,52,60,72,78,94,96,104,116,117,121,122,156],compens:156,compil:[13,25,36,37,41,47,59,64,73,75,81,82,86,93,94,98,102,106,115,133,134,139],compile_librari:106,complement:34,complet:[20,22,28,48,63,81,85,86,96,106,113],complevel:94,complex:[12,34,39,91],compliant:42,complic:[16,79,86,135,140],compon:[3,16,20,22,25,37,45,58,59,68,74,78,98,100,102,103,112,119,128,134,141,142,143,154,159],compos:[30,85],comprehens:113,compress:[30,94,156],compris:[22,93,156],comput:[3,4,5,6,13,16,17,18,27,29,30,32,33,34,35,40,45,48,52,54,59,60,61,63,69,70,72,78,79,81,86,88,91,93,94,95,96,101,105,108,110,112,115,116,120,121,125,128,133,137,141,143,144,145,151,154,159,162],computation:[86,101],compute_f:[88,95],compute_gauge_valu:95,compute_p:[85,88],concentr:110,concept:[25,133],concern:[22,46,142],conclud:69,conclus:[4,52],conda:52,condit:[5,7,20,25,62,64,75,83,84,85,86,88,95,101,109,115,116,119,123,136,141,143,144,145],conduct:123,conf:[55,56],confer:24,config:96,config_fc:157,configur:[79,85,96,156],confirm:49,conflict:[6,28,59,63,68,104,108],conform:[22,28,33,100,123,154],confus:[3,54,59,108,128,133],conjunct:[24,40,67,94,112],conlict:63,connect:[32,55,60,67,126,135],consequenti:[62,83],conserv:[4,5,6,17,95,101,103,124,134,159,162],consid:[6,40,49,59,67,86,108,139,146,156],consider:[49,85],consist:[6,18,25,32,34,48,52,56,60,96,107,121,133,135,144,154,159],consol:[13,95,144],consolid:119,constant:[30,32,34,49,60,65,69,96,99,133,134,135,137,144,156,159],constant_storm_modul:119,constrain:112,constraint:[40,45,135,142,162],construc:60,construct:[22,30,32,54,69,85,91,106,150,151,154],construct_function_handl:106,constructor:103,consult:104,contact:[12,90,93,102],contain:[1,3,5,12,13,20,23,25,26,30,32,33,34,35,36,37,38,41,43,44,45,46,48,50,51,52,53,54,55,56,60,61,63,64,67,68,70,74,75,79,81,82,85,86,88,89,91,93,94,96,98,99,100,101,103,105,106,107,108,112,113,115,116,123,124,131,133,135,140,141,144,146,150,154,156,157,159],containing_rect:30,contains:29,containt:132,contamin:141,contan:52,content:[4,6,23,35,52,56,75,86,93,144,154,159,160],context:[27,52,159],contigu:[74,94,103,135],contin:35,continent:[7,67],contingu:22,continu:[13,22,28,30,50,55,83,107,133,141,162],contour:[3,30,45,52,54,68,107,140,156],contour_color:3,contour_kwarg:[3,156],contour_level:[3,156],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[52,78],contract:[4,62,83],contrast:[54,135],contribut:[4,24,25,58,83,86,93,98,101,110,113],contributor:[4,24,62,93],control:[6,7,23,25,32,34,42,45,55,59,61,68,81,84,89,91,93,94,95,96,98,112,121,126,134,144],conveni:[1,27,32,34,36,37,40,45,52,81,88,90,93,95,97,105,159,162],convens:154,convent:[3,22,30,47,54,72,99,154],converg:[67,78],convers:[19,25,86,94,112,135,154,158],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,35,43,48,52,59,60,63,72,75,86,93,98,106,107,123,126,141,142,150,154,158],convert_fort_double_to_float:106,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[48,52],coordin:[4,23,30,32,34,48,74,78,85,91,95,96,105,112,135,144,156],coordinate_specif:[30,72],coordinate_system:[15,61,138,144],coorind:156,copi:[6,14,15,16,36,37,45,52,55,56,59,68,85,88,98,103,109,110,111,112,116,120,123,127,137,138,142,146,148,149,154,159],copyq1:64,copyright:[62,83],core:[4,12,75,113,123],corioli:[49,144,148,149],coriolis_forc:[49,144],corner:[3,30,32,54,72,74,91,135,141,143,145,154,156],correct:[20,28,42,55,56,64,65,68,79,85,91,96,100,106,115,116,120,137,141,143,144,145],correctli:[28,32,86,92,119],correspond:[3,6,12,23,25,27,30,34,35,45,48,49,54,55,56,60,68,72,79,85,89,91,94,95,98,100,103,112,113,133,135,136,141,142,143,144,145,150,154,158,159],correspondingli:32,cos:[40,48,50,67,85,98],coseism:144,cosin:85,cost:[13,101],costli:134,could:[5,12,13,27,32,35,36,37,40,45,54,61,67,69,72,73,79,81,85,91,95,103,104,108,119,128,135,137,142,143,144,145,156,159],council:4,count:85,count_from_zero:85,counter:[106,156],counterclockwis:72,coupl:[121,162],courant:[4,6,112,122,141,142,143,145],cours:[13,26,32,45,47,61,72,96,97,105,107,110,144,154],cover:[6,7,27,28,30,32,34,35,39,40,52,60,67,72,112,116,121,137,143,154],coverag:[93,113],covert:11,covid:24,cparam:[85,103],cpp:53,cpu:[13,53,120,123,125,153],crash:[120,141,142],creat:[0,1,2,3,5,6,7,18,19,24,25,28,30,32,33,34,35,36,37,39,41,43,45,46,47,51,53,55,59,60,63,72,74,78,79,81,86,87,90,91,93,94,97,100,103,104,105,106,112,113,115,119,120,121,123,124,125,128,135,140,141,142,143,146,147,150,156,158,159,160],create_dtopo_xi:[30,72],create_dtopographi:[30,72],create_topo_func:156,creation:[40,79,93,115],criteria:[6,7,22,25,32,67,103],criterion:[32,112,143],critic:[52,95,133],crop:[54,156],cross:28,crucial:[52,154],csdm:24,cse:24,csh:96,csv:[30,72,123],csvfault:[30,72],ctrl:[29,79],cube:68,cultu:67,cumul:123,current:[3,5,13,14,20,22,24,27,28,29,30,32,35,39,40,42,45,46,49,54,55,56,58,59,60,61,68,70,74,79,81,91,94,95,96,101,103,106,108,112,113,120,122,123,132,136,140,141,142,143,144,145,150,151,154,156,158],current_data:[0,3,25,45,78,79],curv:[3,45,78,135],custom:[0,13,16,20,22,25,64,68,75,78,86,92,98,137],custom_bc:98,customari:95,cut:142,cutoff:[6,143],cvf:56,cvs:52,cxx:96,cyber:17,cygwin:88,cython:96,dai:[6,13,52,144],dalcin:83,dam:[52,137],dam_break:134,damag:[6,62,83],damiansra:98,dark:135,darker:52,darryl:17,dart:46,dash:[3,96],daspect:68,dat:[30,150],data:[0,1,3,5,25,27,30,32,33,34,35,36,37,39,40,41,43,45,46,47,48,54,55,60,61,62,63,67,68,78,79,80,81,83,85,88,91,94,95,97,99,100,101,103,106,109,110,111,112,115,117,118,120,121,123,124,125,126,128,133,135,136,142,143,145,150,153,155,160],data_break:[40,67,156],data_fil:[33,35],data_limit:[40,67],data_storm:150,data_typ:106,databas:[13,30,72,106,110,123,154],datadir:120,dataset:[154,156,158],datatyp:35,date:[5,28,41,48,52,55,56,63,79,150,157],date_tim:48,datetiem:150,datetim:[48,150],datum:[48,49,99,136,144,158],dave:30,davi:[4,17],david:[4,17,83,93,101],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:60,dcp:60,deal:[30,49,78,95,96,103,150,156],dealt:[32,40],debri:34,debug:[7,18,42,63,74,78,95,103,108,113,141,143],debugg:79,decemb:[18,130,131],decid:[85,101],decim:[48,60],decimc:150,decis:52,declar:[20,22,103,128,159],decompos:[74,133,162],decomposit:141,decor:106,decoupl:55,decreas:[45,137,154],deduc:154,deep:[5,67],deeper:[135,144,154],deepli:105,def:[0,1,3,45,52,67,79,85,91,95,98,101,143,145,150],default_tfluct:101,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,34,35,39,40,42,52,60,61,63,67,68,72,79,81,85,88,91,97,98,100,101,103,105,106,112,115,123,128,133,143,145,150,154,156,157,159,162],definit:[30,68,85,112,118],deform:[17,30,33,35,46,72,158],deg2dm:60,degener:135,degrad:34,degre:[30,48,52,60,69,72],delet:[20,28,59],delimit:30,delin:144,delta:[69,89,91,98,101,133,156,159,162],delta_h:99,delta_hu:99,delta_i:156,delta_limit:156,delta_x:156,dem:[32,46,54,60,123,154,156,158],demo:96,demonstr:[12,25,90,96],denot:[6,22,35,45,54,133,156],dens:151,densiti:[88,95,99,103,105,142,143,159],depart:[4,150],depdend:89,depend:[3,13,16,28,29,30,32,35,36,37,41,42,47,49,52,63,65,68,72,79,84,94,99,100,101,106,108,112,123,137,142,144,156,157,159,162],deprec:[7,18,30,46,55,59,119,123,154,156],depress:32,depth:[4,5,16,17,22,30,32,33,35,40,45,46,49,65,69,72,78,80,134,136,137,144,154],deriv:[62,72,83,88,92,93,103,113],describ:[3,4,5,6,7,13,14,16,18,19,26,28,30,31,32,34,36,37,39,40,45,47,48,49,52,53,55,56,58,60,61,63,64,67,68,72,74,75,78,79,80,91,93,94,100,106,110,112,113,121,124,125,133,135,136,140,141,142,144,150,151,154,156,158,159,162],descript:[3,4,6,9,22,23,25,30,35,60,68,72,75,78,93,94,106,110,112,133,134,144,150,154,162],design:[4,27,28,52,83,85,105,135,158],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,34,35,40,43,45,56,59,60,61,67,69,72,77,78,79,81,85,86,88,95,100,101,109,121,123,126,137,139,141,142,143,144,145,150,154,156,157],desktop:96,destin:52,detail:[4,5,10,16,18,22,23,25,26,28,29,30,32,34,36,37,39,42,45,47,49,52,55,58,59,61,62,63,67,68,72,75,79,83,88,89,90,91,93,94,95,96,97,98,99,101,111,112,113,116,121,123,128,133,135,140,141,144,146,150,154,157,158,159,162],detect:[52,63,94,102,106,157],deterimin:[144,156],determin:[3,5,6,30,32,35,40,45,46,49,51,52,55,60,69,72,79,89,91,94,99,103,108,112,116,120,121,132,135,136,140,141,142,144,156,159],determine_topo_typ:156,dev:[18,24,28,55,56,96,123,124,129,130,131],develop:[4,6,7,12,13,18,22,23,49,53,55,58,59,62,67,68,78,82,83,86,93,98,101,102,108,110,113,123,124,126,128,133,136,137,143],dict:[30,35,88,94,99,100,103,150,156],dictionari:[0,1,2,3,30,35,45,61,79,85,88,94,99,100,103,105,108,150,154,156],dicuss:30,did:[123,128,135,154],didn:118,died:115,diff:[18,51,56,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],differ:[1,3,6,7,12,15,16,22,28,30,31,34,35,36,37,40,45,47,49,51,54,58,60,63,65,67,68,72,73,78,81,85,86,88,90,91,93,94,99,101,106,107,108,109,112,113,119,120,121,122,123,126,128,129,133,136,137,138,139,141,142,143,144,148,149,154,156,157,158,159,162],differenti:[17,30],difficult:45,difficulti:[102,104,108],diffus:98,digit:[32,34,40,54,60,61,79,121,122,123,156],dike:[40,67,126,144],dim:[98,99,101],dimens:[5,6,7,16,20,22,25,45,48,54,60,68,69,85,86,88,94,96,98,99,100,103,105,112,123,126,133,141,142,143,145,156,159],dimension:[3,7,8,17,22,25,30,32,34,36,37,45,49,53,68,91,98,119,120,122,125,143,144,145,156,159],dimensional_split:[91,119,141,143,145],dip:[30,72],dir:[56,96,160],direct:[6,8,16,22,30,32,34,36,37,45,48,52,56,60,62,63,68,72,73,79,83,88,98,105,112,122,133,141,142,144,156],directli:[8,18,19,23,32,46,49,58,68,72,79,81,85,86,89,93,103,106,108,123,156,160],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,34,35,36,37,38,41,43,44,45,46,48,51,52,55,56,58,60,64,68,70,73,77,78,81,88,90,91,93,94,95,98,105,108,109,110,112,113,115,120,121,122,123,125,132,133,137,138,139,140,141,142,146,148,149,152,153,154,157,159,160],directorti:110,disabl:[50,102,144],disable_petsc:106,discard:[32,101],disclaim:[62,83],discontinu:[4,101,162],discov:65,discoveri:113,discret:101,discrib:4,discuss:[5,24,28,30,49,54,67,72,94,105,107,108,112,121,123,133,144,162],disk:[13,45,85,94,95,113,121],dispers:49,displac:[30,34,46,49,72,137,144,158],displai:[1,13,36,37,41,45,52,60,79,95,113,144],display_format:[45,61],display_landfall_tim:144,dist:56,dist_latlong2met:48,dist_meters2latlong:48,distanc:[30,34,48,52,72,144,154,156],distant:[110,112],distinct:[45,121],distinguish:40,distribut:[4,12,13,29,30,55,62,72,75,83,101,107,126],disturb:52,distutil:86,divid:[112,141],divis:[4,52],dlgeorg:4,dms2decim:48,dnetcdf:[42,154],doc:[18,23,24,28,30,52,56,89,106,107,108,122,123,124,125,126,127,128,129,130,147],docker:[18,25,56,57,122,123,124,125,126,127,128,129,130,161],docker_disk:29,docker_imag:56,dockerfile_v5:29,dockerhub:[29,56],dockeril:29,docstr:[86,90,113],doctest:91,documen:55,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,46,49,54,59,62,72,78,79,80,81,83,89,91,94,95,96,97,101,103,106,108,116,129,130,131,140,143,160,161],dodsc:[40,67],doe:[4,5,11,16,18,20,27,28,34,40,41,49,52,54,55,59,68,75,79,82,91,100,103,106,112,113,116,121,125,128,132,133,134,137,150,156,157,159],doesn:[28,32,59,64,103],doflag:112,doi:[4,17,53,56,58,126,127,128,129,130,131],doing:[6,11,18,19,25,28,33,34,40,45,49,51,53,55,59,64,79,81,91,93,112,113,120,121,122,123],domain:[5,6,16,17,18,33,34,39,40,49,52,55,60,72,74,84,85,86,88,96,98,100,103,110,112,142,143,144,145,154],don:[13,27,28,55,56,79,95,96,102,113,143,157],done:[1,6,7,8,11,13,16,19,20,28,34,36,37,40,45,47,52,54,55,57,60,63,67,68,72,78,79,81,85,89,90,93,106,112,116,120,121,125,132,133,135,140,142,144,153,156,157,158],donna:[4,17],donnabois:4,donor:[141,143,145],dontflag:112,dot:[41,45,52,59,60,63,157],doubl:[68,86,91,106,133,142],down:[13,30,95,120,150,154,156],download:[12,13,28,29,30,37,38,40,46,52,56,58,59,70,90,96,102,123,124,131,152,156,157,158],downstream:35,downward:72,doxygen:[6,7,25,122],dpc:60,dpi:[52,60],dpng:68,dprint:[142,143],dq_src:[98,101],dqdt:101,draft:56,drag:144,drag_law:144,draw:3,drawback:108,drawcontourlin:68,drawn:[30,52,140],driver:[20,64],drop:[13,55,82,126,128,137,141],dry:[16,17,25,32,46,99,126,129,134,137],dry_point:40,dry_points_sum:40,dry_toler:99,drytol:35,ds824:150,dst:60,dt_check:32,dt_initi:[115,141,143,144,145],dt_max:[141,143,145],dt_max_dtopo:[115,144],dt_variabl:[141,143,145],dtdtopo:118,dtdx1d:117,dtdx:89,dtdy1d:117,dtfe:101,dtopo2kml:60,dtopo:[25,30,33,46,49,54,60,72,108,115,117,118,126,128,137,144,154,156,158],dtopo_data:[115,144],dtopo_file_nam:60,dtopo_modul:115,dtopo_path:33,dtopo_typ:[30,33,60,72],dtopofil:[60,72,144],dtopographi:[30,72],dtopotool:[46,72,117,118,120,123,124,154,155],dtopotools_exampl:[30,72,111],dtopotyp:[144,154],due:[17,24,30,40,48,72,113,122,123,128,137,157],dummi:[86,101,159],dump:[18,34,74,141],dumpgaug:119,duplic:[79,118,132],durat:[30,128,136],dure:[5,22,32,40,45,60,72,75,115,136,137,143,144,145,154],dxc:86,dyc:86,dylib:52,dynam:[6,20,30,34,49,72,75,142],dynamic_slip:[30,124],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:45,e26:45,e68:[4,17],e_format_bst:150,e_l:99,e_r:99,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,35,45,48,52,54,55,56,60,61,64,67,68,69,72,73,74,77,78,79,81,85,86,89,91,94,95,96,98,99,100,101,103,105,112,113,115,116,120,121,123,124,126,132,133,134,135,137,140,141,142,143,144,145,150,153,154,156,158,162],each_fram:45,each_gaug:45,ear:4,earli:[6,20,137],earlier:[5,20,22,30,32,39,54,72,85,98,115,122,154,156],earth:[25,40,46,53,60,67,72,119,121,129,135,144],earth_radiu:144,earthquak:[25,30,46,49,111,137,144,151,154],eas:60,easi:[4,6,11,29,39,59,68,86,95,96,97,135,146,159],easier:[34,59,78,121,123,135,159],easiest:[19,28,42,75,79,81,112,159],easili:[3,13,28,32,52,55,68,79,86,91,102,106,113,126,146,150],east:[13,154],easy_instal:96,ec2:25,echo:108,ecosystem:[4,17],edebug:[142,143],edg:[3,6,15,16,27,30,32,33,34,35,39,60,72,91,99,133,135,138,142,143,145,159],edgecolor:135,edit:[52,55,56,59,81],editabl:28,editor:74,edu:[30,52,70,94,125],effect:[45,52,65,68,91,95,112,113,136,144,156],effici:[49,53,83,93,94,95,103,112,135,142],effort:94,efix:[99,134],egg:[29,59],eigenvalu:5,eigenvector:[5,133,162],either:[12,16,18,20,30,32,34,40,46,47,52,61,63,67,68,72,79,81,85,91,93,94,95,101,106,108,112,113,119,120,121,123,133,135,137,142,144,150,154,156,159,162],elast:[13,72],element:[0,3,22,35,60,99,101,103,141,142,143,144],elementwis:95,elev:[22,25,32,40,46,47,49,52,54,60,69,78,109,112,126,135,136,144,154,156,158],elif:[143,145],elimin:[8,22,67,86,108,123,144],ell:133,els:[27,28,59,67,103,123,135,137,145],elsewher:[5,24,40,93,135],emerg:4,emmanuel:144,emmett:[17,83,93],empir:[49,65],empti:[12,34,45,100,103,106,108,141,144,150,156],empyclaw:98,enabl:[91,95,102,106,121],encapsul:49,encount:[41,52,79,102,104],encourag:68,end:[13,29,30,32,34,45,48,52,56,60,88,95,99,105,107,110,112,120,121,123,132,134,135,143,145,150,153],end_dat:48,enddo:159,endian:94,endors:[62,83],energi:[95,99],enforc:135,eng:150,engin:[17,52],enhanc:[65,83,123],enlarg:121,enough:[5,45,55,61,67,142,151,153,154],ensembl:150,ensur:[36,37,38,68,110],enter:[68,94,96,102],enthought:[102,104],entir:[5,6,34,39,49,52,60,67,69,72,73,75,85,95,100,110,112,116,135,156],entireti:88,entri:[52,61,85,95,106,150],entropi:[99,134],enumer:[91,101],environ:[14,25,28,36,37,38,41,51,52,55,58,59,68,71,73,75,97,104,106,108,121,156,157],envis:16,epd:104,eprint:[142,143],epsg:52,epsilon:89,eqn:162,eqnarrai:105,equal:[16,30,32,33,34,35,52,69,72,96,98,112,132,135,141,143,145,154,156],equat:[4,5,16,17,25,36,37,46,49,61,65,79,84,85,86,88,93,94,95,98,101,102,103,116,119,121,123,124,133,141,143,144,145,154,159,162],equiv:162,equival:[6,18,45,53,54,60,61,125,154],err:143,errest:112,erron:[30,72],error:[5,16,20,36,37,41,52,59,68,73,79,88,93,94,95,106,112,113,124,128,142,143,150,157],escap:[112,143],escienc:13,especi:[28,52,86,98],esri:[54,154],essenti:[5,54,68,101,144,154],est:143,establis:123,establish:4,estim:[5,65,112,142,144],estimat:[5,143],eta:[25,30,34,35,40,45,46,69,112,119,126,136,144],eta_init:137,eta_plot:34,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,34,49,52,55,58,60,64,74,78,86,133,140,141,144,150,159],etopo1:[123,135,136,154,156,158],etopo_sample_2min:156,etopotool:[123,154],euler:[61,93,101,117,119,122,124,133,159],euler_1d_pi:99,euler_2d:[36,38,93,98],euler_exact_1d:99,euler_hll_1d:99,euler_hllc_1d:99,euler_roe_1d:99,evalu:[17,27,30,34,35,65,69,85,91,101,156,159],even:[40,49,52,59,62,72,83,106,112,126,142,143,154,157,159],evenli:[52,95],event:[33,46,49,60,62,72,83,136,137,141],event_tim:60,eventu:[13,46,126],ever:[140,144],everi:[6,12,28,32,34,45,61,63,64,85,88,90,94,95,103,112,113,121,122,133,137,139,141,143,145,150,154,156,159],everyth:[32,56,59,73,96,105,106,113,123],everywher:[39,40,48,65,103,137],evolv:[22,85,88,101],evolve_to_tim:[85,101],exact:99,exactli:[28,33,34,51,53,69,103,135,141],exam:79,examin:[16,18,36,37,45,67,108],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,18,20,22,24,27,28,29,30,35,39,41,42,44,46,48,54,55,56,57,58,60,61,63,64,65,69,70,72,73,74,78,79,81,83,84,85,86,88,91,92,94,95,98,99,100,101,102,105,106,107,108,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,132,133,134,136,137,139,140,141,142,143,144,145,146,150,152,153,154,156,157,158,159],exce:[32,52,112,142],exceed:[112,123],except:[22,27,30,40,94,99,106,126,141,144,150,154],excerpt:96,exclud:64,exclude_modul:64,exclude_sourc:64,exe:[36,37,88],exec:[0,1,3,79],execut:[0,1,3,14,16,19,27,32,36,37,45,60,68,79,81,88,90,96,108,113,133,139,157],exemplari:[62,83],exercis:[29,46,111,113],exist:[1,21,30,31,34,36,37,52,59,63,67,68,79,91,95,98,100,103,106,116,122,123,137,150,156,158],exit:[29,79,96,102],exp:[85,95,105],expand:[26,40,52,60],expect:[32,69,99,105,106,107,113,123,124,126,128,143,144,145,150],expens:[101,112,116,121],experi:[24,49,101],experiment:[5,83],expert:49,explain:[13,32,49,67,128,141,146],explan:28,explicit:[106,142],explicitli:[32,64,68,93,128,141,157,162],explor:[4,34,60,79,81],expon:65,expos:[13,75],express:[4,30,62,83,102,135],extend:[8,16,22,40,60,67,68,91,123,135,137,144,154,156,162],extens:[4,17,22,24,28,30,49,52,55,59,64,68,86,93,94,106,121,122,128,141,152,156,162],extent:[35,39,40,49,57,60,65,67,68,85,91,103,115,128,135,154,156],extent_cent:35,extent_edg:35,extra:[3,52,134],extra_fil:55,extract:[35,52,56,94,150,156,158],extran:119,extrap:[16,98,105,141,143],extrapol:[5,7,16,22,69,98,105,123,141,142,143,145],extrem:[52,104],extropl:16,eye:[150,151],eye_loc:150,f2py:[59,75,86,93,98,106,133],f2py_flag:106,f2s:60,f49620:4,f77:[42,157],f90:[5,9,15,20,31,32,34,40,45,53,63,64,73,82,98,109,112,115,119,121,123,124,125,126,128,129,133,134,137,138,148,149,154,157,159],f95:106,f_file_nam:[88,95],f_path:88,facecolor:[2,79,140],facilit:[45,61,93,113,119,121,126,146,150],fact:[34,52,69,94,103,107,112,137],factor:[6,52,142,144,153,156],faculti:30,fade:79,fail:[28,94,96,106,113,119,150],failur:[113,124,137],fairli:[16,49,121],fall:[136,144],fals:[0,1,2,3,5,18,30,35,40,49,50,51,52,60,67,88,91,94,99,100,101,103,106,120,121,126,132,134,141,142,143,144,145,150,156],famili:[91,101,143,145],faq:[13,25,78],far:[16,18,39,43,67,78,124,126,128],farther:67,fashion:132,faster:[125,126,128,156],fastest:[94,102],fault:[17,25,30,46,111,123,130,154,158],fault_plan:30,favor:[119,123,142,156],favorit:78,fbound:42,fc02:4,fcompil:157,fdefault:106,featur:[18,22,25,28,32,40,52,55,68,79,86,112,113,118,120,121,123,128,131,150,154],februari:[24,122,128,129,131],feet:[136,158],fellowship:4,fetch:[13,48],fetch_noaa_tide_data:48,fetch_topo_url:156,few:[6,12,13,22,26,29,37,49,55,67,68,86,101,105,107,112,113,126,136,152,154,159],fewer:[67,112,156],ff0000:[3,60],ff9999:140,ffff00:79,fflag:[28,41,63,70,73,86,106,154],ffpe:42,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgframe:34,fgmax0001:32,fgmax0002:32,fgmax2kml:[60,126],fgmax:[34,39,46,60,69,73,116,118,121,122,126,127,144],fgmax_data:[32,144],fgmax_grid:[32,33,60,126,144],fgmax_interp:[32,128],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:67,fgmax_tool:[32,118,126,144],fgmax_valu:32,fgmaxgrid:[32,33,144],fgno:[32,33,34,35],fgout0001:34,fgout1:35,fgout2:35,fgout2kml:60,fgout:[18,45,46,60,69,144],fgout_data:[34,144],fgout_fram:35,fgout_grid:[34,35,60,144],fgout_interp:34,fgout_modul:34,fgout_tool:[34,144],fgout_writ:34,fgoutfram:35,fgoutgrid:[34,35,144],fid:[33,35],field:[18,35,45,60,98,100,103,121,123,150,151],fig:[60,135],fig_kwarg:[30,156],fignam:[1,81],figno:[1,2,45,52,79,81,140],figsiz:[2,40,67,79,135,140],figur:[0,1,2,4,13,18,30,36,37,40,43,45,54,60,67,68,78,81,100,108,133,135,140,156],file1info:144,file2info:144,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,37,39,41,42,43,45,46,47,49,51,53,59,60,61,63,67,70,72,74,75,78,80,83,86,88,90,91,93,94,95,96,97,98,100,103,104,106,108,109,110,112,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,136,137,138,139,140,141,142,143,145,147,148,149,150,151,153,156,157,158,160],file_format:[18,45,94,100,150],file_prefix:[18,34,94,100],file_prefix_p:88,fileio:74,filenam:[18,31,52,119,156],fill:[0,3,4,6,16,24,52,67,91,94,103,110,121,137,141,150,153,156,159],fill_between:3,fill_mwr:150,fill_rad_w_other_sourc:150,fill_topo:156,fill_valu:[35,94,156],fill_var2:3,fill_wher:3,filpatch:[9,40,121,125,128],filter:[94,156],filter_region:156,filval:40,find:[1,3,4,6,12,24,27,28,29,30,48,52,59,63,70,72,75,78,83,90,98,103,104,106,108,110,123,150,157],fine:[3,32,33,34,40,55,71,75,93,98,112,121,128,135,137,141,142,144,154,159],finer:[3,7,32,52,112,115,116,135,141,142],finest:[3,32,34,40,45,69,123,153,156],finish:[13,79,85],finit:[4,17,32,34,43,54,60,67,68,69,72,101,126,135,144,153,154,159],finlin:106,first:[1,3,5,13,14,19,20,22,28,30,32,34,35,36,37,38,39,40,52,55,56,59,60,63,67,68,79,81,85,86,91,94,95,96,98,101,102,103,105,106,108,110,112,115,119,124,133,134,135,137,141,143,144,150,152,154,156,162],first_test:36,fist:67,fit:[62,83],fix:[6,18,19,20,22,25,33,35,39,45,46,55,56,60,61,63,67,69,83,94,99,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,134,141,143,145,156],fix_links_top_level:55,fixedgrid:[18,34,46],flag2refin:[5,7,22,142,143],flag2refine_tol:[5,112,142,143],flag:[7,12,13,22,25,28,29,39,41,42,46,53,59,70,73,86,104,106,108,119,124,128,143,144],flag_richardson:[5,112,120,142,143],flag_richardson_tol:[5,112,142,143],flagregion:[7,25,67,112,126,128,135,142,144],flagregiondata:[39,126],flask_loc:55,flat:72,flavor:[12,21,94],fletcher32:94,flexibl:[22,30,60,86,119,122,133,135,142],float32:[18,34,141],float64:[18,34,141],flood:[52,67,137],floor:[30,46,72],flow:[4,16,17,18,23,32,33,46,47,49,75,93,110,126,133,141,144,154,159],flowchart:[6,7,25],fluctuat:[99,101,162],fluid:[32,34,49,61,69,136],flush:120,flux2:86,flux2_dimsplit:119,flux3_dimsplit:119,flux:[5,17,32,34,35,91,99,101,133,141,162],fly:25,fmt:3,fname:[40,60,128,135,143,144,145],fname_fgmax_mask:67,fname_force_dry_init:40,fname_nc:35,focu:[4,46],fold:16,folder:52,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,36,37,38,40,45,47,52,54,55,56,57,59,62,67,68,70,72,74,79,80,82,83,85,86,87,90,91,94,95,96,98,99,100,102,103,105,106,108,113,123,128,132,133,135,139,140,141,142,144,150,152,153,154,157,159,161],fontsiz:79,foot:72,fopenmp:[42,73,106],forbidden:112,forbiddn:142,forc:[22,25,41,46,63,67,106,112,126,134,137,142,151,156,157],force_dri:[40,60,126],force_dry_arrai:67,force_dry_init:[46,126],force_dry_init_topo:40,force_dry_list:[40,144],forcedri:[40,144],forecast:150,forestclaw:[108,119],forget:157,fork:[24,55,56],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,34,36,37,39,43,44,45,48,52,56,61,62,65,72,74,83,86,95,99,101,105,106,112,116,123,124,125,126,132,133,135,141,142,143,144,148,154,156,159,162],format:[1,3,5,13,14,18,25,30,36,37,40,45,46,47,49,50,52,54,60,61,63,67,68,70,72,78,79,85,88,94,95,97,98,100,106,110,120,121,123,126,128,141,144,150,151,156,158,160],format_str:45,former:[79,159],formerli:119,formul:[4,5,49,65,133,141],formula:[65,137],fort:[1,8,18,27,32,34,45,68,70,78,94,100,116,120,121,122,132,141,142,143,145,153,160],fortfil:[36,37],fortran:[6,9,11,13,14,18,20,23,27,28,30,32,33,34,35,36,45,46,47,54,57,59,63,64,65,69,73,74,75,78,81,83,85,86,88,91,93,94,96,98,99,101,102,103,106,108,119,120,121,123,124,125,133,134,139,142,143,144,145,150,152,153,154],fortran_modul:103,fortran_src_wrapp:86,forward:[5,61,101,112,124,159],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,37,41,43,45,48,49,51,55,60,63,64,69,77,79,80,81,85,89,96,100,104,106,108,110,113,120,123,132,136,140,150,156,157],founder:4,four:[24,69,91,112,113],fourth:[32,54],fpe0:42,frac:[65,99,105,162],fraction:[6,13,30,112,141,159,162],fragil:103,fragment:3,frame0000:68,frame0005fig1:52,frame0005fig1_tmp:52,frame:[1,2,3,18,27,34,35,45,52,68,70,74,78,79,81,85,88,92,94,96,100,102,106,121,132,140,143,145,146],framecount:106,framenam:68,frameno:[1,3,27,35],framesoln_dict:1,frametool:[1,27,81,126],framework:[4,83,86,120,121],free:[13,52,63,72,83,87,98,102,104],frequenc:[61,72,101],frequent:[5,18,20,27,34,45,61,104,120],friction:[25,46,49,144,148,149],friction_depth:[65,144],friction_forc:144,friction_modul:119,friedemann:89,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,36,37,39,44,45,46,49,52,53,54,56,57,58,59,61,62,63,64,68,69,71,72,74,78,79,83,84,85,87,88,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,108,109,110,112,113,115,116,119,120,121,123,126,127,128,131,132,133,134,136,137,138,141,142,143,144,145,148,149,150,151,152,154,157,158,159,160],frommm:89,front:[25,32,39,40,46,68,100,106,135],fset:103,fstr:68,ftrapuv:42,fuca:135,fuction:40,full:[5,6,14,18,35,56,58,59,60,79,88,95,101,105,139,141,154,159],fulli:[6,49,52,53,122,126,133,144,150,151],fun:106,func:[106,150],function_nam:106,fund:[25,57,93],funrol:106,further:[6,16,18,25,32,34,42,49,60,63,68,93,107,112,113,142],furthermor:[52,105],futur:[13,22,25,26,36,37,40,49,54,60,65,85,101,107,120,121,123,126,142,150,154],fvmbook:[12,43],fvmhp:[4,12,16,17,25,75,133,141,159,162],fwave:[91,99,101,133],g77:104,gain:94,galerkin:101,galleri:[12,25,36,37,38,43,56,77,78,90,93,107,113,118,122,146,152,159],gallery_classic_amrclaw:[8,36],gallery_fvmbook:17,gallery_geoclaw:[32,46],gamma1:99,gamma:[65,99],gap:156,garret:144,gas:[6,99],gauag:34,gaug:[7,18,25,32,34,46,60,69,91,92,103,110,115,119,120,121,122,123,126,132,136,143],gauge00001:[45,61,121],gauge_coord:91,gauge_data:103,gauge_dir_nam:91,gauge_fil:91,gauge_file_nam:91,gauge_id:45,gaugedata:[45,61,143],gaugeno:[45,61,143],gauges2kml:60,gauges_modul:[45,119,121],gaugesolut:45,gaugetool:[45,119],gaugexxxxx:[45,121,132],gauss_pt:30,gaussian:[5,85,105,145],gave:123,gca:[40,50,67],gcc:[96,102],gcs:52,gdal_data:52,gdal_test:52,ge_xlim:52,ge_ylim:52,gear:13,gen_vari:[106,113],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,34,39,40,41,42,46,49,52,54,56,58,61,63,64,65,69,72,73,74,78,79,80,81,83,86,87,89,91,96,97,98,100,101,102,105,106,108,110,112,115,119,121,132,135,136,139,141,142,146,151,153,154,159,160],generate_2d_coordin:[40,67,156],generate_2d_topo:156,geo:[46,65],geo_data:[61,144],geo_gpu_pap:53,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,35,37,39,42,44,45,53,54,56,57,58,59,60,61,65,67,69,70,72,75,78,82,93,102,108,110,111,113,132,133,134,136,137,139,141,142,150,151,152,153,154,155,156,157,158,159],geoclaw_modul:119,geoclaw_riemann_util:122,geoclawdev:55,geograph:52,geohazard:49,geol:30,geolib:[70,115,119],geom:[91,103],geometr:159,geometri:[25,30,72,93,94,98,100,103,119],geophi:17,geophys:[4,16,17,23,46,49,75,141],geoplot:[34,50,52,80],georefer:52,georeferenc:52,georg:[4,17,30],geoscientist:49,geospati:52,geotiff:129,geq0:67,get:[0,10,13,24,28,41,46,52,54,55,57,58,59,63,64,67,78,82,85,86,91,94,95,96,102,104,105,106,107,110,111,113,122,133,135,142,150,156,157],get_as_arrai:35,get_aux_glob:103,get_auxbc_from_aux:103,get_cmap:79,get_count:106,get_dim_attribut:91,get_dt:101,get_dt_new:101,get_q_glob:103,get_qbc_from_q:103,get_remote_fil:[126,156],get_topo:156,getax:1,getcwd:79,getfigur:1,getfram:[1,3,81],getgaug:45,gethandl:[0,2,3],getitem:1,getlogg:95,getsitepackag:108,getusersitepackag:108,gfortran:[13,59,73,82,84,104,139,157],gfortranbinari:102,ghamdi:4,ghost:[7,16,73,74,91,94,101,103,121,128,141,143,145,153,159,162],gica2937:30,gigabyt:154,git:[12,13,23,24,25,26,29,53,56,59,93,102,113,125],git_statu:51,github:[12,15,18,22,23,24,25,26,29,53,55,58,59,90,98,102,109,113,118,120,121,122,131,133,134,138,148,149,157],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,34,36,37,45,53,60,61,67,69,72,73,74,79,81,96,97,101,113,116,120,121,125,128,135,141,144,154,156,158],given:[5,30,40,48,52,54,60,65,68,72,89,96,100,101,103,106,112,128,135,136,137,144,150,154,156,159],glitch:118,global:[6,14,91,103,106,136,154,158,159],gloss:158,glu:16,gmt:48,gnu:102,gnufcompil:157,goal:6,godaddi:55,godunov:[4,91,101,141,143,145,159],goe:[30,46,55],going:[5,16,22,56,67,85,88,90,94,99,114,128,146,154,162],gone:95,good:[16,28,49,52,62,73,83,105,110,113,121,128,133],googl:[24,25,28,40,46,60,67,90,94,96,104,119,121,129,133,135],googlecod:96,googleearth:[52,60],googleearth_darkblu:52,googleearth_lightblu:52,googleearth_transpar:52,gori:10,gotten:40,gov:[30,40,48,67,72,96,150],govern:[32,144],gprint:[142,143],gpu:[25,125],gradi:[4,17,83],gradient:[122,162],gradylemoin:4,grai:150,grant:[4,83],graph:9,graphic:[18,23,28,53,68,78],grav:[99,134],gravit:[65,99,144,159],graviti:[134,144],great:[48,90],greater:[5,32,60,65,67,102,112,132,141,142,144],greatest:[69,112],greatli:[18,26,34,83,136],green:[12,60,67,72,79,113,150,156],grid1d:91,grid:[4,7,17,18,19,20,22,23,25,27,28,39,40,45,46,47,49,52,53,60,67,68,69,74,75,78,83,85,93,95,96,98,99,100,101,103,105,112,113,115,116,118,119,121,122,123,126,128,130,133,134,135,136,137,141,142,143,145,151,153,154,156,158,159,162],grid_files_scanf:160,grid_numb:74,grid_registr:[54,156],griddata:156,gride:151,grideges_show:22,gridlin:68,gridlines_show:22,ground:[32,72,126],groundoverlai:52,group:[3,13,24,28,30,49,90,94,96,104,120,133],gtype:61,guarante:[46,49,101,111],guard:120,gui:[22,160],guid:[7,13,17,18,23,24,25,46,47,53,58,93,107,112,122,126,147],guidelin:93,gzip:[56,126],h_l:[99,134],h_r:[99,134],hack:103,had:[34,45,53,54,121,122,123,124,128,137],hadjimichael:[4,17,83],half:[0,16,17,18,72,101,141,159],halfspac:72,hand:[3,5,18,19,20,65,85,113,135],handi:[28,63],handl:[0,2,3,6,32,40,42,46,54,60,73,75,78,91,94,98,100,101,103,104,105,106,108,115,116,118,119,121,123,124,125,126,134,137,150,156],hang:72,happen:[31,52,63,85,100,103,126,157],har:133,harbor:32,hard:[50,55,73,79,156],hardcopi:[1,79,81,140],harder:141,hardest:70,hardwir:73,harm:108,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,37,40,45,51,52,53,54,55,56,60,61,63,65,67,68,69,72,74,75,79,83,86,88,91,95,98,99,100,103,104,106,108,109,110,112,113,114,115,116,121,122,123,124,125,126,128,131,133,135,136,141,142,144,150,153,154,156,159,160,162],hash:[51,55,113],hasn:55,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,34,35,36,37,38,40,42,43,45,46,49,52,53,55,56,57,59,63,64,65,67,68,69,70,72,73,74,78,79,81,82,83,85,86,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,110,112,113,115,116,118,119,120,121,122,123,125,126,128,129,132,133,134,135,136,141,142,144,146,150,154,156,157,159],haven:[105,107],haversin:48,hazard:[4,32,46,65,136],hdf5:95,hdf:94,head:[28,30,55],header:[11,30,32,34,40,45,54,67,72,74,94,100,119,121,123,150,154,156],header_styl:156,heat:99,heavili:86,height:[52,99,156],held:[24,49],hello:96,help:[5,7,9,23,24,25,28,29,40,41,50,55,57,63,78,81,93,96,102,106,113,120,126,133,146,157],helzel:17,henc:[5,54,55,64,69,101,107,108,112,137],here:[4,13,16,29,34,39,40,49,56,59,60,67,75,79,81,85,88,93,94,96,98,99,104,105,108,110,112,119,133,134,135,151,156,162],heterogen:159,hex:[60,79],hidden:[3,63,79],hide:[52,68],hierarchi:[34,52,91,108],high:[4,17,32,49,52,67,69,72,75,86,93,101,133,136,137,158,159],higher:[3,6,52,91,101,102,112,126,133,135,136,137],highli:[123,137],highlight:[11,13],hilo:[136,158],hint:[16,25,46,78,81,108,144,157],histor:[49,72,158],histori:[28,35,56,59,81],hit:[16,34,68,81,95,141],hko:150,hll:99,hllc:99,hlle:124,hmin:32,hoc:86,hold:[3,35,81,105,112],holder:[62,83],holland:[123,144,151],holland_storm_modul:119,home:[13,29,30,59,139],homebrew:[52,82],homepag:[21,25],homogen:[72,101,159,162],hood:[78,93],hope:[26,113],horizont:[52,156],host:52,hour:[13,34,52,60],how:[1,6,7,12,16,18,22,24,28,29,30,32,34,36,37,39,40,42,45,47,52,56,60,61,63,67,72,73,74,78,88,90,92,93,94,98,101,105,106,108,110,111,112,113,116,121,123,125,126,131,132,133,140,141,144,146,154,156,160],howev:[6,13,16,22,29,32,36,37,40,42,47,49,52,59,62,64,67,69,72,73,74,83,86,93,112,113,121,123,125,136,137,140,144,153],howto:107,hpc:24,hrd:150,hss:[34,35],html:[1,12,13,17,23,28,30,36,37,41,44,45,52,55,56,72,78,79,90,96,97,107,108,113,124,126,150],html_plot:97,html_theme:55,htmlplot:90,http:[4,12,13,17,18,24,26,28,29,30,40,48,52,53,55,56,58,59,62,67,70,72,82,83,86,87,94,96,98,107,108,118,120,121,122,124,125,128,129,130,131,134,150,156],huge:[61,67,137,154],human:150,hundr:34,hurdat:[123,150,151],hurrican:[110,150],hurt:[12,64],hwrf:[123,144,151],hydrodynam:17,hyperbe:89,hyperbee_limit:89,hyperbol:[4,5,6,17,43,75,86,93,98,99,105,133,141,144,159,162],hyperol:141,ian:4,ibm:102,ibtrac:[123,150],ico:55,icon:55,idea:[10,24,30,67,68,75,85,105,116,156,162],ideal:[56,99,136],ident:[40,64,91,94,96,113,156],identifi:[5,36,37,40,52,67,86,112,126,150],idl:13,ids:45,ieee:17,ifort:42,igetsp:119,ignor:[16,52,60,94,119,128,136,156],iinstal:96,ike:110,illustr:[12,25,30,32,36,44,52,67,68,72,111,118,119,123,125,133,135,146,156],imag:[13,36,37,40,56,60,67,113,123,135],imd:[150,151],immedi:[24,49,68,85,87,88,95],impact:[5,72],impati:98,imped:[85,99,105],implement:[1,4,5,7,14,16,30,40,60,61,64,71,83,98,99,101,105,106,113,118,121,124,126,128,133,134,141,156,159,162],impli:[62,83,144],implicit:[83,101],implicitli:[128,144],importantli:96,impos:[16,86,112,148,149,162],imposs:[49,141],improperli:55,improv:[4,13,22,24,32,34,52,55,94,107,115,116,118,119,120,121,122,124,125,126,127,128,129,141],imread:[40,67],imshow:[40,67,156],in_poli:156,inaccur:49,inaccuraci:49,inadequaci:65,inadvertantli:79,inbound:13,inc:[4,17,68],incept:4,inch:[2,52,60,79,140],incident:[62,83],includ:[4,6,13,18,21,22,23,27,28,29,30,32,34,35,36,37,39,41,42,44,45,49,52,54,56,58,59,60,62,64,65,67,68,69,70,72,73,75,78,79,81,83,85,86,90,91,93,94,95,96,97,98,99,100,101,102,103,105,108,110,112,113,115,121,122,123,124,125,126,127,128,129,130,133,134,135,139,141,143,144,146,147,150,151,153,154,156,159],include_b0:35,include_bfin:35,inclus:135,incom:16,incompat:[28,52],incompress:17,inconsist:120,incorpor:[22,49,55,83,101,115,122,134,156],incorrect:[123,124,137,150],incorrectli:120,increas:[34,35,52,60,73,135,144],increasingli:28,increment:[32,45,52,91,106,141,143,145],ind:91,inde:[86,96],indent:[48,60],independ:[12,23,30,34,35],index:[1,6,13,22,23,27,35,45,55,56,79,91,93,96,98,99,106,123,128,141,142,143,144,145],indian:150,indic:[7,16,20,22,25,29,30,32,34,39,40,42,45,46,52,54,56,59,64,68,69,77,81,91,95,96,99,101,105,108,112,113,121,126,128,133,134,141,142,143,144,145,154,156,159],indirect:[62,83],individu:[4,22,23,52,60,63,64,68,91,112,113,150],inf:156,infer:156,infinit:141,inflat:16,info:[17,29,30,33,34,35,45,56,60,68,88,91,95,101,121,142,143,150],info_sz:30,inform:[13,14,22,25,32,33,35,36,37,47,48,49,50,51,59,64,74,79,80,81,85,86,91,93,95,96,97,99,100,106,108,120,123,124,126,131,132,133,136,139,141,142,144,150,153,154,157,158,159,160],inhabit:85,inherit:[79,91,101],init:[12,25,28,40,46,53,58,136,144],initi:[4,5,7,12,13,22,25,30,34,35,45,46,48,49,52,56,61,64,68,69,72,75,81,83,84,85,86,88,89,91,92,94,95,99,100,101,103,104,106,109,112,120,123,126,128,133,136,141,142,143,145,150,154,156],initialize_sourc:86,inland:[40,67,144],inlet:135,inlin:[40,134],inlinelimit:64,inner:[5,112,124],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,35,41,46,52,60,64,67,68,85,88,89,91,93,99,100,101,106,110,120,123,124,125,133,143,144,145,150,151,154,156,159],input_filenam:86,input_path:154,input_unit:30,inputfil:[106,156],ins:22,insert:[11,16,72,94,139],insid:[39,91,96,100,133,135,156],insidi:121,inspect:[19,20,52],instabl:[121,128],instal:[12,13,18,23,25,29,36,44,52,55,56,81,83,84,87,92,94,105,107,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,139,161],install_fortran:37,install_prerequisit:36,installing_fortcod:56,installing_opt:59,installing_pip:56,instanc:[3,28,35,52,72,75,81,85,86,88,91,94,95,98,135,144],instantan:101,instanti:[7,88,96,98,101,103,143,145],instati:[72,156],instead:[3,13,18,32,36,37,40,42,45,53,55,56,59,63,64,70,102,103,106,108,120,121,124,128,132,133,134,135,144,154,156],institut:4,instruct:[13,18,24,25,29,36,37,40,52,53,55,56,70,85,87,93,96,102,105,108,122,129,131,132,157],insur:[51,55,63,81,112,115,119,142,144,154],int_a:5,intact:[71,120],integ:[3,32,33,34,45,52,60,65,67,79,86,100,112,122,125,133,141,144,150,156],integr:[5,22,54,61,83,93,95,101,115,116,120,143,145,153,154,159],intend:[49,86,123],intens:[86,150],intent:[86,133],intepol:34,inter:[28,122],interac:95,interact:[1,13,22,36,37,41,45,47,63,75,78,79,86,96,97,102,105,108,120,121,135],interactive_plot:[97,105],interactive_test:120,interdepend:103,interest:[5,12,16,18,23,27,29,32,34,35,40,50,68,69,86,103,110,112,113,122,123,124,125,126,127,128,129,130,137,141,150],interfac:[4,19,22,68,83,86,89,93,94,99,101,106,133,159,160,162],interface_funct:106,interior:[6,16,40,74,103],interleav:[83,99],intermedi:[19,32,35,72,159],intermit:[45,121],intern:[6,30,45,54,60,72,121,142,154,156,162],interp_dz:33,interp_kwarg:150,interp_method:32,interp_unstructur:156,interpol:[5,6,16,18,25,30,33,35,40,45,46,54,60,61,68,72,79,121,128,135,136,137,150,151,156],interpret:[30,54,72,123,154],interrupt:[62,83],intersect:[32,67,72],intersphinx:55,interv:[5,45,48,85,105,112,128,135,141,144],introduc:[5,16,19,32,33,34,35,40,79,126,128,135,137,142,162],introduct:25,introductori:24,intuit:93,inund:[32,46,52,65,112,126,136,158],inundataion:[136,158],inv_haversin:48,invalid:[42,100],invert:48,invest:49,investig:113,invis:[41,119],invok:[11,14,73,137,157],involv:[24,98,101,110,151],ioerror:100,ioexcept:106,iout:145,ipdb:79,iplot:[36,38,90,93,96],iplotclaw:[1,13,22,36,37,45,47,78,79,97,108],iplotclaw_:79,iplotclaw_figno:1,ipynb:[29,30,32,40,72,111,120,134,135],ipynotebook:120,ipython:[13,75,79,81,86,87,93,95,102,105,108,119,120],ipython_displai:115,is_valid:[100,103],island:[32,40,67,135],isn:[63,73,74,157],iso:150,isosurfac:68,isotrop:72,issu:[22,24,26,55,56,59,68,85,90,91,93,101,102,104,113,115,120,121,122,123,133,144,157],item1:[0,81],item:[0,1,3,68,78,81,106,128,140],itemnam:[1,81],iter:[30,40,67,99],ith:99,its:[4,6,13,22,29,40,49,52,62,64,67,72,74,83,88,89,90,91,93,98,100,101,103,106,112,143,156,162],itself:[4,72,78,107,126,133,144,156],ixi:[39,67,133,135],jacobian:[133,162],jan:[4,56],januari:[107,114,121,131],japan:[52,60],japanes:150,javascript:146,jed:83,jet:[30,68],jma:[123,150,151],job:[13,130],join:[24,79],journal:[4,17,53,93,146],jovyan:29,jpg:[55,68],jsanim:[18,115,119],jsanimation_frametool:117,juan:135,juli:[116,117,131],jump:[4,5,68,81,91,101,121,141,162],junction:32,june:[122,123,124,125,131],jupyt:[25,44,72,75,93,107,111,119,120,126,133],just:[0,6,28,32,41,56,85,86,88,90,94,95,96,97,98,103,106,116,123,141,159],justifi:72,kappa:[105,162],kappa_i:162,karg:100,katrina:110,kaust:[4,24],keep:[14,25,28,32,33,35,36,37,73,85,88,93,103,106,113,116],keep_copi:[85,88,95],keep_gaug:103,kei:[0,1,2,13,28,30,45,94,101,105,106,150,156],kemm:89,kemm_2009:89,kentzo:56,kernel:106,kernel_languag:[91,101,106,113],ketch:4,ketcheson:[4,17,76,83,93,101],ketchesonmandliet:[4,17],ketparlev13:[4,17,75,93,133],keyboard:68,keypair:13,keyword:[2,3,79,85,90,91,94,100,106,113,123,140,150,156],kind:[18,34,88,90,95,125,133,141],kinemat:[30,46],king:[4,83],kitsap:135,klein:89,kml:[60,119,121,122,123,126,127,135],kml_build_colorbar:[52,60],kml_cb:60,kml_colorbar:52,kml_dpi:[52,60],kml_figsiz:52,kml_footer:60,kml_gaug:60,kml_header:60,kml_index_fnam:52,kml_map_topo_to_latlong:52,kml_name:52,kml_png:60,kml_publish:52,kml_region:60,kml_starttim:52,kml_tile_imag:52,kml_timespan:60,kml_timezon:52,kml_tz_offset:52,kml_use_figure_limit:52,kml_use_for_initial_view:52,kml_user_fil:52,kml_xlimit:52,kml_ylimit:52,kmltool:[46,126,127,129,155],kmw6h:[4,56,131],kmz:[60,121],kneplei:[17,83,93],know:[49,59,63,72,83,110,122,126,128,133,136,156,157,158],knowledg:49,known:[32,42,68,72,73,79,102,104,113,122,141],kristof:83,kutta:[93,101],kwarg:[2,30,60,79,106,113,140,150],kyle:[4,17,83,89,93,94,99],label:[18,30,34,50,52,54,60,119,135,154,156],lack:3,lagrangian:[25,45,46,126],lagrangian_gaug:126,lake:[40,46,67,137,144,154],lambda:[91,156],lambda_roe_1:99,lambda_roe_2:99,land:[16,40,46,47,52,55,56,60,67,69,80,126,137,144,156],land_cmap:40,land_color:34,landfal:123,landslid:49,langseth:[4,17],langsethleveque00:[4,17],languag:[11,78,106],lapack:115,laptop:[29,93],larg:[5,6,12,18,20,34,35,36,37,40,49,52,54,55,68,73,78,93,95,96,112,113,120,128,132,135,137,141,142,156,158],larger:[13,20,32,52,60,72,73,74,79,91,115,121,128,142,144,154],largest:[112,136],last:[3,18,27,32,34,56,58,79,85,86,98,105,120,141,150],lat:[30,48,52,54,154,156],later:[13,34,35,40,51,52,59,81,101,132],latest:[23,44,52,55,56,58,59,87,96,102,116,120],latex:[1,52,78,97],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,35,47,48,54,72,78,119,135,138,144,150,156],latitude_max:52,latitude_min:52,latitudin:48,latitutd:30,latlong:[30,52],latter:[15,67,69,98,126,135,138,141,150,159],launch:[38,90,96,97,102],law:[4,17,60,144,162],lax:[91,101,141,143,145,162],layer:[17,25,45,60,91,115,117,120,121,123],layout:55,lazi:34,lbla:104,ldot:135,lead:[6,13,22,32,34,49,52,65,68,72,108,111,128,137,142],learn:[49,90,107],least:[4,5,6,13,35,45,52,60,61,67,68,104,112,113,120,121,128,141,143,154,156],least_significant_digit:94,leav:[12,13,16,45,59,142,156],lectur:24,led:[20,124],leer:[89,101,141,143,145],left:[3,5,10,13,16,18,25,27,32,54,74,81,91,98,99,105,122,128,131,132,133,136,142,154,156,158,162],legaci:[23,56,59],legend:[122,135],legend_tool:122,lemoin:[4,17,83],len:[5,30,35,91,143,145,156],lenght:141,length:[15,30,35,49,60,72,98,103,121,128,138,141,142,143,144,159],leq:[5,135],less:[40,49,52,61,65,73,101,112,113,128,141],let:[16,46,59,83,110,122,128,133],level:[3,6,7,16,23,27,29,32,34,39,40,45,46,47,48,49,52,55,56,58,59,68,69,73,74,86,88,91,93,94,95,101,108,109,112,113,115,116,120,121,123,126,132,135,136,139,141,142,143,145,153,154,156,158,159],levequ:[4,16,17,24,30,53,75,89,91,93,101,107,133,141,159,162],leveque09:17,leveque1996:17,leveque1997:93,leveque96:17,leveque97:[4,17],leveque_book_2002:99,levequegeorgeberg:[4,17],levi:[67,126,144],levyon03:17,lgomp:106,liabil:[46,49,62,83,111],liabl:[62,83],lib:[64,108],libgdal:52,liblzma:52,librari:[6,13,15,16,20,22,25,27,28,32,34,36,37,42,45,53,60,63,70,73,74,75,83,89,94,96,101,106,108,109,112,121,126,137,138,142,148,149,157,159],library_path:106,licens:[25,46,49,93,111,123],lie:[6,32,33,35,67,69,112,126,135],lies:[6,16,32,35,69,112,135],light:[52,68,112],lighter:52,like:[12,13,24,28,29,40,42,52,55,56,60,61,68,70,81,86,88,91,94,95,96,99,100,101,103,107,108,113,120,133,135,140,153,154,157],lim_typ:101,limit:[0,4,6,12,25,30,33,39,49,52,60,62,68,73,78,83,85,86,91,93,101,112,117,135,141,142,143,145,150,154,156,162],lin:144,line2kml:60,line:[1,3,4,16,28,29,30,32,40,42,45,46,47,48,51,52,54,55,60,61,63,64,68,70,74,78,79,93,94,96,101,105,106,107,108,115,116,119,121,128,135,140,141,143,150,154,156],linear:[4,5,17,30,34,35,45,52,69,72,79,85,89,101,124,133,134,135],linearli:35,liner:[0,30],linestyl:156,linewidth:[79,135],link:[4,11,13,15,17,18,19,20,24,25,28,42,43,46,52,53,54,55,56,58,60,70,107,108,109,122,131,133,134,136,138,145,148,149,154,158],linspac:[33,68,88,105,135],linux:[13,71,82,104,113,139],lisandro:83,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,34,35,36,37,38,39,41,45,52,54,55,57,58,59,60,62,63,64,65,68,69,72,73,79,81,83,85,88,89,91,94,95,97,98,99,100,101,103,104,106,108,112,119,121,123,128,132,135,139,141,142,143,144,145,150,151,153,156],listofgrid:123,literalinclud:55,literatur:[49,133],littl:[49,72,94,136],live:103,llapack:104,llcenter:[54,154,156],llcorner:[54,154,156],lmm:101,lnetcdf:[42,70],lnetcdff:70,load:[13,60,95,97,100,106,113,156,160],load_sift_unit_sourc:30,loc:[135,156],local:[13,17,20,25,28,52,55,60,63,64,68,89,91,98,103,121,123,137,154,156,159],local_fnam:156,local_path:106,localhost:29,locat:[5,6,7,13,30,32,34,47,48,52,54,56,59,61,68,69,74,91,95,97,99,100,106,108,110,112,120,122,136,137,144,150,151,156],log:[14,25,28,29,91,92,93,100,101],logger:[95,103],logic:[6,16,17,32,128,144],logical_and:[40,67],logical_not:[40,67],logical_or:135,logo:[55,122],lon:[54,154],long_lat:156,longer:[20,28,45,55,56,60,82,107,121,123,126,128,132,133,144,154,158],longitud:[30,32,35,47,48,54,67,72,78,119,135,144,150,156],longitude_max:52,longitude_min:52,longitude_shift:30,longitudin:48,longtitud:52,look:[13,14,22,25,28,30,40,52,55,56,60,68,70,79,81,86,91,96,100,101,105,106,108,113,116,123,135,141,142,144,153,156,157],lookup:123,loop:[45,68,78,106,112,123,126,128,133,137,140,141,159],lose:120,loss:[62,83],lossi:94,lot:[28,40,126],love:[90,133],low:[52,67,86,156,158],lower:[3,22,30,32,33,39,54,67,74,91,96,135,137,141,143,145,154,156,158],lower_glob:91,lowerg:96,luna:[17,83,93],lxml:52,lying:[6,67],m_w:162,mac:[73,82,104,113,139],machin:[13,25,73,75,113,121,139],maco:82,macport:52,made:[4,18,22,28,30,35,59,100,103,115,116,121,123,126,128,135,137,144,151,154,156,159],magic:60,magnitud:[5,30,112,123,144],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,34,35,36,37,38,40,41,42,47,48,49,50,52,54,55,58,59,62,63,65,67,68,69,70,72,73,78,79,81,82,83,86,87,90,91,93,94,95,98,100,101,104,106,108,112,113,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,139,140,141,142,143,144,150,151,152,154,156,157,159],mail:[98,104],main:[5,11,12,19,28,40,44,55,56,67,68,75,86,88,94,98,105,106,113,122],mainli:96,maintain:[12,28,107,123,142,154,159],mainten:83,major:[4,22,55,56,83,86,114,115,116,117,122,124,129],make:[1,5,11,13,14,18,19,20,22,24,25,27,28,32,34,36,37,39,41,42,45,47,49,51,52,55,56,59,60,61,63,64,65,68,73,75,78,81,82,85,86,88,91,92,93,94,98,100,106,111,113,115,119,120,121,122,123,125,126,127,128,129,133,135,141,154,156,158,159],make_colormap:[40,67,79],make_fgout_fcn_xi:35,make_fgout_fcn_xyt:35,make_input_data_kml:60,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:150,make_shoreline_xi:156,makefil:[5,6,11,14,15,16,19,20,23,25,28,34,36,37,42,55,70,73,75,79,81,86,92,93,112,115,119,121,123,124,126,137,138,141,143,144,145,146,148,149,154,157,159],makefile_kml:119,maketopo:[124,154],man:[17,25,46,49,144,148,149],manag:[4,12,13,52,95,150],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,83,89,93,94,99],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,34,36,37,38,42,43,44,47,52,53,55,60,61,63,64,67,72,73,74,79,81,82,83,85,90,93,98,100,105,106,112,114,115,121,123,124,125,126,130,133,135,140,141,142,144,154,159],manifold:68,manipul:[34,45,156],manner:[5,34,40,45,52,61,67,72,78,123,137,141,148,149,154],manning_break:144,manning_coeffici:144,manual:[38,86,95,102,104,113,152],manuel:[17,83,93],maojr:120,map2d_to_1d:27,map:[3,16,29,30,40,60,67,68,79,83,86,91,93,98,112,119,123,128,134,150,156,162],map_2d_to_1d:3,map_cart_to_latlong:52,map_topo_to_latlong:52,mapc2p:[3,25,27,68,86,91,128],mappedgrid:[3,68],march:[24,25,32,39,40,46,115,116,131,135],marching_front:[40,67,126],marchingfront:40,margin:[32,46],mark:[16,52,67,112,113],mark_cent:91,mark_nod:91,marker:60,markup:11,marsha:[4,6,17],mask:[33,40,46,50,135,156],mask_dri:40,mask_dry_onshor:40,mask_outsid:[7,67],mask_outside_zlim:60,masked_arrai:[40,67,135],masked_wher:34,maskedarrai:156,mass:[6,95],massiv:93,massless:34,master:[13,15,25,29,55,56,59,98,109,120,121,122,123,124,125,126,127,128,129,130,131,134,138,148,149],match:[30,34,39,52,60,94,100,113,150,156],materi:[4,62,72,83,110,126],math:[17,52,105],mathemat:4,mathwork:68,matlab:[7,22,25,36,37,77,78,79,97,107,123,126,127],matlabpath:68,matplotlib:[0,2,3,13,30,40,50,52,67,78,79,82,84,87,107,127,134,140,150,156,157],matric:[5,133,162],matrix:99,matteo:[4,17,83,93],matter:[64,119],matthew:[17,83,93],maux:[22,133,159],max1d:[73,126,142],max:[0,30,32,40,68,99,112,116,137,143,145,150,156,162],max_buff:[45,121],max_inch:60,max_it:[40,67],max_step:101,max_vertices_in_descript:60,max_wind_radiu:150,max_wind_radius_fil:150,max_wind_spe:150,maxgr:123,maxima:[32,73],maximum:[3,22,30,32,33,34,46,68,69,101,105,112,115,116,123,126,141,142,143,145,150,151],maxlevel:[39,68,112,128,135,142,143,144],maxm:133,maxmi:[20,86],maxmx:[20,86],maxmz:20,maxwell_1d_homogen:98,maxwelton:[40,67],mayb:156,mbc:159,mc_limit:89,mcs:96,mean:[3,13,22,28,32,40,45,49,53,59,68,69,95,96,112,133,136,141,143,145,158],mean_latitud:50,meant:[42,91,101,150],measur:[30,45,48,72],mechan:[59,103,131],media:17,medium:[143,159],meet:24,member:[52,98,100,105],memori:[20,22,73,74,75,85,88,95,103,128,142,143],memsiz:[128,142],mention:[93,141,142],menu:[13,18,25,55,60,122,131,136,158],meqn:[45,74,133,159],merchant:[62,83],mercuri:96,merg:[6,13,25,28,53,55,56,59,119],mesh:[4,7,17,33,53,67,68,75,78,85,112,126,140,141,159],meshgrid:[85,98,135,156],mess:55,messag:[28,41,48,55,59,68,73,88,91,95,97,100,101,103,104,128,141,143,145,157],met:[32,62,83],metadata:[35,74,154,156],meteorlog:150,meter:[30,48,52,67,69,72,112,136,144,150,156,158],meterolog:150,method:[4,5,7,17,32,34,35,39,43,45,54,67,69,79,81,85,88,89,91,96,100,101,106,112,113,119,133,140,141,142,143,145,150,153,154,156,159],method_t:35,method_xi:35,metric:48,mhd:125,mhhw:136,mhw:[40,46,49,136,154,158],micro:13,mid:79,middl:[99,120],midpoint:[69,91],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,40,48,52,54,55,59,64,67,68,69,73,79,82,85,95,99,108,110,111,112,115,141,142,154,156,158,159],migrat:19,millimet:156,million:126,mimic:123,min:[0,99,150,156,162],min_level_check:32,min_time_incr:[45,61],mind:28,minim:[6,59,67,94,135,142,156],minimalist:34,minimum:[3,32,45,52,72,105,121,144,156],minisymposterium:24,minlevel:[39,112,128,135,142,143,144],minmod:[89,91,101,141,143,145],minmod_limit:89,minor:[11,52,55,95,115,116,117,118,119,120,121,122,123,124,126,128,130],minut:[34,40,48,52,55,60,136,156,158],mis:79,misc:[4,125,127],miscellan:99,mislead:[40,69],miss:[22,25,94,125,150,154,156,157],mitig:[4,49],mitran:[4,17],mix:[30,39,52,72],mjb:[6,17],mjberger:4,mlc:150,mllw:158,mode:[1,13,28,106,153],model:[5,12,16,17,24,25,30,32,42,46,47,53,54,65,95,112,120,125,126,127,135,136,137,144,150,151,154],modern:[102,123,133],modif:[28,41,62,68,79,83,89,144],modifi:[6,9,14,15,16,20,22,27,32,36,37,40,45,46,55,56,59,61,63,68,71,79,86,89,91,93,98,108,109,110,111,112,118,120,121,122,123,128,135,137,138,141,143,144,145,148,149,154,156,159],modul:[0,7,8,12,25,28,29,32,34,40,42,46,50,52,53,54,59,61,64,67,72,73,78,79,80,81,85,86,89,90,94,98,99,100,103,107,108,113,116,117,119,122,123,124,125,126,132,135,141,142,144,150,154,155],module_nam:106,modulu:[30,99,105,143,159],molsolv:101,moment:[27,30,124],momenta:61,momentum:[16,32,34,35,49,61,65,95,128,134,144,154],monitor:[18,22,25,33,34,39,46,67,69,73,116,118,121],monoton:[141,144],monster:10,month:[17,52,93],more:[1,2,3,4,5,7,10,12,13,14,16,17,18,20,22,24,26,28,29,30,32,34,36,39,45,46,47,49,52,54,55,56,58,59,60,61,62,63,67,68,69,72,78,79,80,81,82,83,86,88,89,91,93,94,95,96,97,98,99,101,102,103,105,106,108,111,112,113,115,116,119,121,122,123,124,125,126,127,128,129,130,131,133,135,136,137,139,140,141,142,143,144,146,150,152,153,154,156,157,158,159,162],moreov:72,most:[3,18,20,22,27,29,32,34,36,37,41,42,45,49,51,52,53,54,55,58,60,63,67,68,73,75,78,79,81,83,91,95,96,101,104,105,107,112,113,120,122,128,131,132,133,134,135,136,140,141,142,144,147,159],mostli:[3,78,93,126],motion:[72,154],motlei:53,movabl:30,move:[16,32,36,37,46,55,59,61,72,98,112,115,117,122,144,154,155],movement:30,movetopo:115,mparsani:4,mpi:[75,96],mpich:96,mpiexec:96,mpirun:[96,102,113],msl:[136,158],mthlim:[91,101],much:[13,18,28,32,34,42,52,55,74,75,78,82,107,112,115,119,126,135,141,144,153,156],muct:101,multi:[17,52,85,115,117,120,123,159],multicor:[73,121],multidimension:[86,93],multilay:[45,116,119,122,123,124],multipl:[4,5,6,13,23,28,32,33,40,45,78,85,91,94,95,106,108,113,115,121,125,132,133,142,150,151],multistep:101,multivers:55,must:[5,6,13,16,20,22,28,30,32,34,40,44,47,52,55,58,62,63,64,67,68,72,73,74,83,86,93,94,95,98,100,101,103,104,105,106,108,112,115,119,133,135,136,137,141,142,143,144,145,150,156,157,158,159,162],mwave:133,mx1d:159,mxnest:22,my_acoustics_rp:85,my_custom_bc:101,my_geoclaw_storm:150,my_initial_solut:88,my_riemann_solv:133,my_rp_modul:85,my_setplot_fil:81,my_solv:88,my_storm:150,n00014:4,n12:32,n23:32,nadi:150,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,34,35,36,37,39,40,41,45,52,55,56,60,62,68,70,79,81,83,86,88,90,91,94,95,99,100,105,106,108,120,123,128,132,133,135,140,141,142,143,144,145,150,156,159,160],namespac:86,nan:[35,48,156],nasa:4,nation:[4,49,150],nativ:94,natur:[32,55,133,162],naux:74,navd88:154,navig:[12,29,55,146],nbconvert:126,nbtool:119,nbviewer:120,nc_param:156,ncar:4,ncei:[40,67,136,154,158],ncol:[40,119],nctr:[30,72],ndarrai:[48,89,91,99,103,150,156],ndarrari:91,ndim:[22,74,81,141,142],ndip:30,nearbi:[69,136],nearest:[35,40,45,156],nearfield:137,nearli:91,nearshor:[25,32,34,45,46,49],necessari:[5,6,13,34,35,36,37,47,49,52,55,56,59,60,68,72,74,75,81,85,86,91,94,119,121,123,132,133,140,141,142,154,157,159],necessarili:[4,40,94,113],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,34,35,36,37,38,40,41,42,45,49,50,54,55,56,57,59,60,61,63,64,67,68,70,72,73,74,75,81,82,85,86,88,93,94,95,96,98,101,105,107,108,110,112,113,116,120,121,123,124,128,130,132,133,135,137,138,139,141,142,143,144,145,148,149,150,151,152,154,156,158,159,162],neg:[22,40,137,144,154,156],negat:[48,154],neglig:[62,73,83,144],neighbor:[4,34,40,67,69,112,121,137,142,143,156],neither:[52,60,62,83,121],ness:94,nest:[115,121,142,143],netcdf3:94,netcdf3_64bit:94,netcdf3_class:94,netcdf4:[94,154,156],netcdf4_class:94,netcdf4_dir:42,netcdf:[13,35,42,46,120,123,125,127,150,156,158],neumann:150,never:[32,69,98,103,109,112,126,135,141,143,145,157],nevertheless:52,new_featur:28,new_frame_num:106,new_plotax:[0,2,45,52,79,140],new_plotfgur:79,new_plotfigur:[1,2,45,52,79,140],new_plotitem:[0,3,45,52,79,140],new_userdata:[143,145],newdelhi:150,newdir:71,newer:[28,73,89,123],newton:99,next:[2,3,6,13,18,34,36,38,45,55,56,68,74,79,81,84,85,93,94,96,101,105,110,112,113,141,142,144],nfr:4,ngdc:[40,67,136],nghost:74,ngrid:74,nhc:150,nhtmp:49,nice:[28,60,86,98,116,135],nicer:81,nih:4,nnnnn:[132,141],no_data_valu:156,no_tran:91,noaa:[30,40,48,54,67,72,123,136,150,154,158],nodal:123,nodata_valu:[40,156],nodataerror:150,nodatav:154,nodatavalu:[54,154],node:[91,123],nodes_with_ghost:91,nohup:116,non:[5,16,56,67,75,86,98,105,124,126,141,143,145,150,162],nonconserv:162,none:[0,1,2,3,16,18,24,27,30,33,35,40,45,48,52,60,67,88,91,94,95,100,101,103,106,113,115,121,123,124,125,126,127,130,132,141,143,145,150,156],nonlinear:[4,5,17,49,89,133,141,162],nonoverlap:6,nonphys:45,nonuniform:68,nor:[62,83],norm:[40,60,67,112,156],norm_dri:[40,67],norm_topo:67,normal:[16,33,34,53,55,61,79,98,108,133,134,141,142,143,144,145],north:[32,40,48,67,72],northernmost:154,norwegian:4,nose:[28,37,38,84,96,113,152],nosetest:[28,37,38,96,102,113,152],notat:[30,48,60,133],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,34,35,39,40,41,42,45,48,52,53,54,55,56,57,58,59,60,63,64,67,72,73,79,81,86,89,90,91,93,94,96,98,99,102,103,106,107,109,112,132,133,135,136,137,138,140,141,142,143,144,145,148,149,150,151,153,154,156,158,159],notebook:[25,30,32,40,44,55,67,72,75,87,93,95,111,119,120,126,133,134,135,156],notebook_html:126,noth:[15,61,103,124,138,148,149,156,159],notic:[52,62,83,105,113],nout:[34,145],nov:[17,93],novemb:[120,121,131],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,34,35,39,40,42,51,54,55,56,65,67,69,72,74,79,85,86,91,93,94,95,96,97,98,100,101,102,105,110,112,113,115,116,119,120,121,122,123,125,126,128,129,136,140,142,146,154,161],npoint:33,nprint:[142,143],npt:32,npy:156,nrm:60,nrow:40,nrule:135,nsf:4,nstate:94,nstepout:[88,95],nstrike:30,nthmp:49,ntime:143,ntot:145,num_aux:[5,86,94,96,98,99,103,133,141,142,143,145,159],num_cel:[8,22,91,133,141,142,143,145],num_cells_glob:91,num_digit:60,num_dim:[22,39,91,94,98,141,142,143,145],num_entri:106,num_eqn:[74,85,86,89,94,96,98,99,100,103,105,133,141,143,145,159],num_fgmax_v:[32,144],num_ghost:[86,91,94,98,99,101,103,133,141,143,145],num_output_tim:[5,85,88,95,132,141,143,145],num_proc:121,num_var:94,num_wav:[89,99,133,141,143,145],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,34,35,36,37,44,45,52,55,60,63,68,73,74,75,81,85,86,88,89,90,91,93,94,95,96,98,100,101,103,105,106,107,110,112,113,115,116,118,119,120,121,122,123,125,132,133,135,141,142,143,144,145,150,151,152,156,159],numer:[4,17,52,107,124,150],numerica:17,numpi:[3,13,30,32,34,35,40,48,67,82,84,85,86,88,91,98,103,104,105,107,113,134,135,143,156,157],nxpoint:156,nypoint:156,nyu:4,object:[0,1,2,3,5,22,27,30,32,34,35,39,45,52,60,67,72,78,79,81,85,86,88,94,95,96,98,100,103,104,105,106,115,124,132,133,141,142,143,144,145,150,156],obliqu:16,obscur:22,observ:[32,49,115,128,136,141,144,151,158],observatori:4,observerd:151,obtain:[4,6,12,32,44,45,47,49,59,60,69,94,95,96,112,128,133,137,146,154,162],obviou:[8,52],occasion:[113,121],occupi:52,occur:[34,63,72,150,151],ocean:[5,16,17,32,49,52,110,112,135,144,148,149,154],octob:[117,118,119,125,126,129,130,131],off:[12,13,18,45,49,52,60,68,81,88,95,112,142,156],offer:[41,52,113],offic:4,offici:[56,82,123],offset:[50,52,60,150,156],offshor:[60,65,67,135,137],oft:99,often:[6,11,13,16,20,27,29,32,35,36,37,41,42,45,46,49,50,51,60,61,65,69,72,74,95,107,108,112,113,128,132,133,135,136,137,140,141,144,150,154,158,159,162],okada85:[17,30,72],okada:[17,25,30,46,111,154,158],okadamap:30,olav:4,old:[1,7,18,20,22,32,40,55,56,81,88,96,97,98,101,113,120,122,123,128,133,144,154],older:[18,22,42,53,55,58,59,101,127,131,142],olig:[6,17],omega:85,omit:[59,113,121,132,144],omp:142,omp_num_thread:[42,73,121,153],omp_stacks:73,on_lower_boundari:91,on_upper_boundari:91,onc:[1,5,13,22,28,29,36,37,52,56,57,58,59,67,68,72,81,85,95,96,97,98,103,106,121,123,129],ondrej:83,one:[0,1,2,3,4,5,6,8,13,15,16,18,20,22,24,25,27,28,29,30,32,34,35,36,37,40,45,47,52,54,55,56,57,58,59,60,61,65,67,68,69,70,71,72,74,75,78,79,85,91,94,95,96,98,100,101,102,105,106,108,110,112,113,120,121,123,128,132,133,134,135,137,138,140,141,142,143,144,145,146,148,149,150,154,156,159,160],ones:[29,85,86,103,123,141,142],onli:[1,3,5,6,8,12,13,16,18,19,22,27,28,29,30,32,34,35,39,40,44,45,49,52,55,56,57,59,60,61,64,65,68,69,72,73,74,75,79,85,88,91,94,95,96,98,100,101,102,103,105,106,107,110,112,115,120,121,122,123,126,128,132,133,134,135,136,137,139,140,141,142,143,144,145,150,154,156,157,158,159,162],onlin:[24,107,111,123,147,154],onr:4,onshor:[32,60,65,67,135,137],onto:[28,30,52,137,156],open:[4,13,17,25,28,29,30,52,60,78,83,87,91,94,106,135,139,158,160],opendatafil:64,opendiff:113,openli:23,openmp:[22,25,42,75,106,112,120,126,153],opensourc:[62,83],oper:[50,113,121],opinion:4,oppos:[28,151],opposit:[6,16,94],optim:[42,83,106],option:[2,12,13,16,18,20,22,25,28,29,30,32,34,35,36,37,41,42,48,51,54,57,59,63,68,70,78,79,85,86,88,90,91,92,94,95,97,100,101,102,105,106,108,109,112,113,116,119,120,121,124,126,129,135,139,140,141,143,144,145,146,150,156],orang:150,order:[4,5,6,13,16,17,29,30,32,34,45,49,54,59,61,64,67,68,69,72,74,75,79,81,82,83,85,88,89,91,93,94,95,97,98,101,105,106,107,108,112,119,123,128,133,135,137,140,141,142,143,145,150,154,156,157,159,162],ordinari:133,ordinarili:104,org:[4,17,46,53,55,56,62,83,86,87,91,94,96,107,108,120,122,124,128,129,130,156],organ:[22,23,36,37,88],orient:[72,86],origin:[3,6,13,16,20,28,30,34,35,45,53,55,67,73,74,86,101,106,115,121,128,132,142,143,144,145,156],orlean:110,oscil:[45,162],oscillatori:156,osf:[4,131],osher:101,osx:[52,82],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,34,35,36,37,39,45,46,47,49,52,53,54,56,57,58,59,62,63,65,67,68,69,70,72,73,74,78,81,83,85,86,88,91,93,95,97,98,99,102,105,107,108,112,113,115,116,118,119,121,133,136,139,140,141,144,146,150,154,156,158,159,160],otherwis:[5,30,55,59,62,67,83,95,99,100,101,102,103,106,112,141,156],ought:101,ouput:88,our:[54,64,85,110],out1:64,out:[3,16,24,26,29,30,32,34,35,36,37,40,45,46,51,53,54,55,56,59,60,61,62,63,68,72,79,82,83,85,86,88,94,95,96,97,100,105,107,108,110,113,121,123,125,126,133,135,142,143,145,150,156,157],out_path:150,out_tim:88,outaux:27,outdir:[1,3,33,34,35,36,37,45,51,63,78,81,88,90,91,95,120,143,145,157],outdir_p:88,outfil:156,outflow:[16,141,143,145],outgo:16,outlin:[60,68,81,126,133,140],outn:27,output:[1,5,7,8,13,14,16,18,25,27,28,29,30,33,35,36,37,41,42,45,46,47,48,50,51,52,56,61,69,72,78,79,81,86,88,89,90,91,92,93,96,97,99,100,101,102,103,105,106,108,115,119,120,121,122,123,125,126,127,133,140,143,145,150,151,152,153,156,159,160],output_aux_compon:[141,143,145],output_aux_onlyonc:[141,143,145],output_file_prefix:[88,95],output_filenam:86,output_format:[5,18,34,35,88,95,141,143,145],output_opt:88,output_path:154,output_q_compon:[141,143,145],output_step_interv:[141,143,145],output_styl:[74,85,88,95,132,141,143,145],output_t0:[132,141,143,145],output_tim:[95,132,141,143],output_unit:30,outputdir:68,outputfil:156,outsid:[6,16,39,60,67,126,135,137,154,156],outsiz:60,over:[1,3,5,6,13,16,17,22,28,30,32,34,39,40,45,46,47,49,52,54,60,61,67,68,69,72,78,94,95,101,112,115,116,124,126,133,135,137,140,142,143,144,153,154,159,162],overal:[10,85],overflow:[42,122],overhead:[6,73,112,153],overlai:[60,129],overlaid:[52,60],overland:52,overlap:[34,112,115,116,154],overrid:[28,42,52,85,86,106],overridden:[68,101,103],overrul:3,overview:[46,52,78,114,117,126],overwrit:[1,88,95,100],overwritten:[45,94,95,121,132,159],own:[16,20,24,28,34,59,85,86,92,93,102,103,110,112,123,133,146],owner:123,p_center:[91,105],p_function:95,p_l:99,p_node:91,p_r:99,p_t:105,p_x:105,packag:[4,25,28,29,36,37,52,56,57,64,75,78,82,83,85,91,93,95,97,98,100,102,105,107,108,125,126,150,157,160],pad:67,page:[1,4,9,11,13,15,17,18,22,24,28,49,54,56,57,58,59,90,93,96,97,104,107,109,113,122,126,136,138,140,146,148,149,158,159],pair:[13,94,113,156],panel:52,paper:[4,5,6,16,30,46,55,89,93],paragraph:32,parallel:[4,22,23,45,73,84,90,92,93,95,98,100,102,106,112,113,121,142],paramet:[1,6,7,9,16,18,20,25,27,30,32,33,34,36,37,40,41,43,46,47,49,52,54,63,64,65,68,72,73,74,78,84,85,88,89,94,95,97,99,100,103,106,109,112,115,121,126,128,132,133,134,136,137,143,145,151,154,156,157,159],parameter:[110,123,135,144,150,151],parametr:151,parent:[3,27,91,103,106],pars:[45,106],parsani:[4,17,83,93],part:[4,5,22,24,30,34,46,49,59,60,61,70,83,86,96,102,103,105,107,111,113,125,159],partial:[17,75,110],particl:[18,25,34,45,46,126],particle_tool:[61,126],particular:[4,6,12,20,22,28,30,32,42,45,46,47,49,52,53,56,62,63,64,68,75,79,80,82,83,85,99,100,101,103,105,110,111,112,113,116,119,120,121,122,123,125,126,128,140,150,151,162],particularli:[16,27,29,32,34,51,52,57,58,59,72,74,108,116,119,123,128,137,154],partit:96,pascal:[30,150],pass:[16,18,19,20,28,30,35,45,52,60,73,79,85,88,90,92,98,101,103,104,106,113,133,143,150,156,159],passiv:134,password:28,past:[4,21,25,55,61,67,100,121,124,128,131,135,136,144],patch:[3,6,7,16,22,27,32,40,52,68,72,73,74,78,79,94,96,100,103,112,121,123,126,128,137,140,142,153,154,159],patch_index:91,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,35,39,40,42,45,48,52,55,58,59,61,63,67,71,78,79,88,93,94,96,100,106,122,123,126,139,144,150,156,157],path_to_atcf:150,path_to_ibtrac:150,pathtool:68,pattern:[20,47,52,136],pcolor:[3,18,45,78,107,156],pcolor_cmap:[3,52],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolor_kwarg:18,pcolorcel:[34,40,67,126,135],pcolorcells_for_kml:[60,126],pcolormesh:[60,67],pdb:79,pde:[4,5,17,57,58,59,75,82,93,105,141,159],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:83,pedant:42,peerj:[4,17],pem:13,pend:3,peninsula:135,peopl:[4,12,13,83],pep8:28,per:[13,30,35,45,52,60,68,73,94,142],perfect:16,perfectli:16,perfom:113,perform:[5,6,17,22,27,49,52,54,73,75,78,79,88,91,94,98,101,106,113,125,128,132,133,139,144,152],perhap:[6,12,32,40,45,55,79,103,106,112,135],perimet:32,period:[5,6,16,32,63,85,98,112,141,143,145],perman:[68,126,127,128,129,130],permiss:[56,59,62,83],permit:[62,83],permut:20,perturb:[109,144,154],petclaw:[83,96,97,98,100,106,108,113],peter:4,petsc4pi:[96,102,103,113],petsc:[22,23,75,83,85,92,95,102,103,104,106],petsc_arch:96,petsc_dir:96,petsc_hello_world:96,phase:[96,107,120,126,142],phd:17,phi:5,philim:86,phoni:79,photo:[24,25],php:[30,62,83],phy:17,physic:[16,45,52,86,91,93,105,112,162],pick:[85,101],piec:[16,49,91],piecewis:[30,32,40,45,54,69,72,116,133,135,154],piecewiselinear:39,pink:[40,60,79,140],pinkfig:79,pip3:56,pip:[18,25,28,29,52,56,57,87,93,96,102,104,108,122,123,124,125,126,127,128,129,130,131,139],pixel:[52,60],pkg:[56,145],place:[5,16,20,24,28,36,37,52,55,59,63,64,71,93,95,96,98,102,108,115,121,159],placemark:52,plaid:52,plain:50,plan:[24,28,49,57,58,59,65,94,101,150],planar:[72,133,134],plane:[30,72,120,135,158],planetari:4,platform:[13,52,88,96,107,113],pleas:[4,24,28,55,57,58,59,83,85,88,90,93,94,96,98,100,101,102,104,110,123,128,131,133,150],plot:[0,1,2,4,7,8,12,18,27,29,30,36,37,38,40,41,42,43,46,54,56,57,60,67,74,84,85,87,88,91,92,93,95,100,102,104,105,107,108,110,118,119,120,121,122,123,125,126,127,135,141,150,152,156],plot_box:[30,156],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:45,plot_packag:150,plot_phas:134,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[123,125],plot_topo_fil:[80,119],plot_typ:[0,22,45,52,79,81,140],plot_var2:3,plot_var:[3,27,45,52,79,80],plotax:[3,45,79,126,140],plotclaw1:68,plotclaw2:68,plotclaw3:68,plotclaw:[45,78,79,81,140],plotdata:[27,34,35,45,70,79,81,88,120,121,140],plotdir:[1,81,140],plotexampl:79,plotfigur:[45,79,140],plotfram:1,plotgaug:45,plotitem:[3,27,45,79,140],plotloop:[79,81],plotstyl:[3,45,79,140],plotter:[1,3,27,81],plotting_makeplot:[36,37],plottool:[34,40,67,126],plottyp:68,plt:[60,134],plu:[79,115,143,145,156],pmel:[30,72],png2kml:60,png:[1,13,36,37,40,41,52,60,67,68,121,126,135],png_extent:60,png_file:60,png_filenam:60,png_name:60,point:[3,5,6,13,15,16,17,20,28,30,33,34,36,37,39,40,42,45,46,47,48,49,52,54,55,56,58,59,60,61,68,69,70,72,85,95,96,100,106,107,108,112,122,124,126,132,133,135,136,137,138,139,141,142,143,144,148,149,150,154,156,157,159],point_styl:[32,33,67,118],pointer:[4,16,55,72,78,81,101,106,119],pointwis:[25,32,54,103,119,154],poisson:72,poli:60,poly2kml:60,polygon:[3,7,39,52,60,126,156],polynomi:[69,133],poor:28,poorest:94,popup:13,port:[13,29,92,93,98,142],portion:[6,18,34,40,52,67,86,153],posit:[32,40,52,72,75,106,144,154,156],possibl:[5,6,13,22,26,28,30,32,34,35,45,48,49,52,61,62,63,67,72,79,83,85,91,94,96,97,101,106,108,112,120,133,135,136,137,141,142,154,158,159],post:[18,24,25,26,28,34,52,96,129,130,141,146],poster:17,posteriori:101,postprocess:[74,95],potenti:[25,68,121,136],powel:144,power:[52,57,78],pprint:[142,143],practic:[28,108,110],pre:[3,13,33,56,87,94],preced:79,preceed:[74,159],precis:[34,35,42,60,86,91,94,133,141,156],precompil:93,predefin:79,predict:48,prefer:[60,96,98,139,142,150],prefix:[56,88,94,95,100],preliminari:[48,123,158],prepar:28,prepc:128,prepend:88,preprint:17,preprocess:[32,119],prerequisit:[37,38,57,59],present:[6,24,60,69,91,99,100,101,106,146,159,162],preserv:[67,75,101],press:[17,96,102],pressur:[45,68,81,95,99,105,122,123,144,150,151],pressure_forc:144,pressure_index:144,presum:136,pretti:13,prev_pts_chosen:67,prevent:52,previou:[1,28,29,45,54,56,58,59,64,67,68,81,85,101,110,115,120,121,122,123,128,132,137,141,142,143,145,154,156],previous:[6,22,32,67,81,119,126,137],previous_pts_chosen:46,price:13,primari:[22,28,29,46,110,113,150],primarili:[53,123,124],prime:113,principl:[5,156,159],print:[1,3,7,29,35,40,52,54,60,61,67,68,79,91,95,96,97,103,105,107,108,115,116,119,121,122,123,130,135,141,143,145,150,157],print_figno:[1,52],print_format:[1,52],print_frameno:[1,52],print_funct:121,print_git_statu:51,print_netcdf_info:35,printenv:157,printfig:1,printfram:[1,78],prior:[45,61,62,83,131,137,143,145,159],probabl:[13,28,52,65,67,107,108],probdata:[143,145],problem:[4,5,7,16,17,20,24,25,27,28,29,36,37,40,43,46,59,63,67,68,69,72,75,79,82,84,85,90,92,93,96,99,101,104,108,113,115,116,118,119,122,126,128,133,135,137,141,142,143,144,145,146,153,157],problem_data:[85,99,100,103,105,134],problemat:95,proce:[6,28,144],procedur:[6,16,40,46,56,159],proceed:55,process:[18,25,34,36,37,46,52,53,72,85,90,91,96,102,103,106,113,121,141,157],processor:103,procur:[62,83],produc:[1,3,22,27,30,35,36,37,41,45,46,52,54,55,60,68,73,77,78,94,112,113,128,140,156],product:[5,30,62,83,106,112,124],professorship:4,profil:[151,156],profit:[62,83],program:[4,47,49,64,75],programmat:83,progress:[24,28,101,110,119,154,156],prohibit:22,proj:143,project:[4,5,24,25,30,49,52,55,56,72,83,87,121,122,142,156],projection_zon:30,promot:[62,83],prompt:[28,29,68,79,81,90,93,105,156],propag:[4,5,6,17,25,30,49,52,53,72,91,93,101,112,121,133],proper:[6,15,40,45,53,54,56,60,65,67,68,94,106,115,121,138,142,143,148,149,150,159],properli:[20,32,36,37,40,41,49,52,54,55,59,60,67,71,88,113,115,118,123,126,128,139,141,144,154,156,157,159],properti:[30,35,61,68,85,88,91,100,103,156],propos:[28,162],protect:[67,126],provid:[0,2,4,7,10,16,20,27,28,30,32,34,35,39,42,46,47,48,49,52,54,55,60,62,64,69,72,74,78,83,86,88,89,95,96,98,100,101,105,106,107,110,111,113,120,128,131,133,141,149,150,153,154,156,159],proximity_radiu:156,prune:29,ps4_to_arrai:33,pseudo:[52,68],psi:[98,159,162],pt_chosen:67,pth:59,pts:[142,143],pts_chosen:[67,135],pts_chosen_nearshor:67,pts_chosen_shallow:67,pub:[30,150],publicli:146,publish:[4,17,55,93],puget:[40,67,135],puget_sound_13_mhw_2014:[40,67],pull:[12,18,24,26,29,55,56,58,90,98,113,118,121,122,128,133],pull_al:[28,56],pupyner:94,pure:[17,53,81,91,93,94,96,101,113,134],purpos:[32,34,46,49,54,62,68,74,83,91,111,113,132,135,141],push:[28,55,56],put:[1,11,16,28,29,42,55,56,59,60,68,85,90,98,121,139],pyclaw:[1,3,4,12,17,23,24,27,28,29,44,45,56,57,58,74,75,81,82,92,96,98,104,108,131,133,134,139],pyflak:93,pykml:52,pylab:[0,40,79],pylint:93,pypa:82,pypi:[59,94],pyplot:[60,134,150,156],pyport:107,pyramid:52,python2:[82,128],python3:[108,122,128],python3stat:107,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,34,35,36,37,38,41,43,45,46,47,48,51,52,54,55,56,57,58,59,60,72,74,75,78,79,80,83,84,86,90,91,93,94,96,97,98,99,101,104,105,106,113,116,117,119,121,122,123,124,125,128,133,134,139,144,154,156,157,160],python_io:74,pythonpath:[58,59],pyweno:[83,101],q0000:[34,68,141],q0001:[68,70],q000n:[1,8],q0_vs_radiu:3,q1d:159,q_hat:99,q_hat_l:99,q_hat_r:99,q_i:[133,162],q_l:[99,133,134],q_out_field:45,q_r:[99,133,134],q_t:[5,98,99,101,105,159,162],q_x:[5,99,105,162],qbc:[98,101,103],qcor:86,qin:[4,53],qinit:[5,20,22,40,46,63,64,86,128,136,137,159],qinit_data:[40,137,144],qinit_modul:40,qinit_typ:[144,154],qinitdata:144,qinitfil:144,qoi:[32,35],qoi_arrai:35,qopenmp:42,qquad:162,qtrue:79,quad2kml:60,quad:60,quadrat:[30,72],quadrilater:[32,60],qualiti:[52,127],quantiti:[15,32,35,60,68,69,88,92,93,99,103,134,138,144],quantiz:94,queri:[86,91,106],question:[24,28,100],quezada:[17,83,93],quick:[13,25,37,46,47,57,82,113,152],quicker:[13,135],quickli:[45,55,60,87,121,137,156],quit:[29,68,79,81],quot:60,qxxxx:94,r_refin:144,radial:[3,32,48,144,159],radial_dam_break:134,radian:48,radii:150,radio:60,radio_styl:60,radiu:[3,144,150,151,156],rai:156,rais:[24,30,59,94,100,102,106,150,156],rake:[30,72],ran:[37,152],randal:[4,17,93],randi:[24,30,89,91],rang:[3,5,13,30,45,48,52,112,115,120,134,135],rare:[72,121],raster:[18,52,54,154],rate:13,rather:[5,6,18,20,22,28,29,32,34,35,40,55,56,59,63,64,65,71,72,91,96,98,101,108,109,112,119,120,121,123,125,126,128,131,132,135,140,141,142,150,151,154,156,159,162],ratio:[6,15,22,50,68,72,89,99,101,138,141,142,143],raw:[18,34,141],rcl:52,reach:[5,112],reachabl:100,reaction:98,read:[1,4,5,7,18,28,30,32,33,35,36,37,45,46,49,50,54,59,60,61,64,67,68,72,74,78,86,88,94,95,100,106,120,121,123,124,129,143,144,145,150,154,156,159,160],read_:[94,100],read_arrai:94,read_atcf:150,read_aux:[94,100],read_data_lin:106,read_fgmax_grids_data:33,read_fgout_grids_data:35,read_fram:[34,35],read_geoclaw:150,read_head:156,read_hurdat:150,read_ibtrac:150,read_imd:150,read_jma:150,read_netcdf:[35,40,67,123,124,154,156],read_netcdf_arrai:35,read_output:[32,33],read_patch_head:94,read_t:94,read_tcvit:150,readabl:[150,151],reader:160,readi:[85,86,88,102],readlin:135,readm:[55,56,126,133,139,159],real:[49,56,65,106,133,158],realist:52,realiti:49,realli:[6,69,113,159],rearrang:123,reason:[5,49,52,60,72,73,75,96,98,112,141],rebas:28,rebuild:55,rebuilt:55,recal:[1,12,40,142],recalcul:116,recangl:72,receiv:[52,113],recent:[4,13,22,27,30,51,55,58,63,65,73,79,81,82,120,124,125,126,127,128,129,130,131,133,158],recogn:[47,54,59,154],recomil:32,recommend:[4,18,30,32,34,36,37,55,56,57,59,73,78,87,91,93,96,97,101,102,104,105,112,123,141,143,145,160],recompil:[28,41,42,63,73,106,126,142,159],recomput:[81,85,116,125],reconstruct:[35,93,101,150],record:[32,45,61,103,131,150,158],recov:[28,33],recreat:[28,41,63,126],rect:[30,135],rectangl:[6,7,25,30,34,67,72,112,126,156],rectangular:[6,7,16,17,18,30,32,35,39,40,46,47,60,67,91,112,123,126,142,144,154],recurs:[55,71,115],red:[2,3,28,45,60,79,113,140,150],redirect:55,redistribut:[62,83],redraw:[68,81],reduc:[6,16,18,34,40,52,120,122,162],redund:150,refactor:[115,116,117,119,121,122,124,128],refer:[4,5,20,30,32,33,34,36,37,39,46,47,52,63,64,68,72,85,89,91,94,95,99,101,103,108,110,123,125,132,133,135,144,150,154,156,158,159],referenc:[52,131,136,154],refin:[3,4,5,7,8,17,22,34,46,49,52,53,54,67,68,74,75,85,121,123,124,126,128,135,137,140,141,142,143,153,154,159],refinement_data:144,refinement_ratios_i:[8,142,143],refinement_ratios_t:[142,143,144],refinement_ratios_x:[142,143],refinementdata:118,reflect:[4,5,16,28,112,123,141,143,145],refresh:[13,45],regard:[4,39,120,150],regardless:[13,35,40,67,112,141],regener:63,region00:60,region1:[40,67],region1_png:[40,67],region:[3,6,7,13,16,22,32,34,39,40,46,49,50,52,60,65,69,72,75,110,123,126,128,136,137,142,143,154,156],region_domain:39,region_tool:[39,40,67,126,127,135],region_trapezoid:39,regiondata:[39,112,143,144],regions2kml:60,regist:57,registr:[25,46,123,154,156],regress:[22,25,28,51,93,96,121,122,152],regression_test:[37,152],regrid:[5,10,112,115,116,121,124,125,142,143,153],regrid_buffer_width:[112,142,143],regrid_interv:[112,142,143],regular:[32,156],regulargridinterpol:35,reiniti:[32,121],reject:[95,101,141],rel:[13,20,30,41,47,49,52,72,73,79,93,106,108,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,136,142,144,146,154,158],relat:[3,7,22,24,55,75,99,110,122,126,128,136],releas:[4,18,22,25,28,29,44,52,57,58,59,87,93,101,102,107],release_5_x_x:56,relev:[22,27,40,42,46,52,55,94,112,113,150],reli:[75,86,97,107,121],relief:[136,158],reload:156,reltol:106,remain:[52,59,98,106,108,115,148,149,150],remak:55,rememb:[15,27,73,79,96,138,148,149],remot:[13,52,56,123,156,158],remote_directori:156,remote_topo_url:[154,156],remov:[1,3,18,20,29,34,41,53,59,60,63,70,81,96,108,115,118,119,137,144,156,157],renam:[20,22,36,37,63,98,101],render:[12,22,44,52,60,160],reorder:[20,22],reorgan:[22,86,114,129],repack:56,repeat:[40,67,81,132,142,144],repeatedli:[3,96,102,142],replac:[6,13,18,29,34,39,45,49,53,55,56,58,61,63,78,86,90,94,96,97,98,99,103,106,113,115,121,123,125,126,132,133,137,156,157],replace_no_data_valu:156,replace_valu:156,replot:81,repo:56,report:[24,30,32,51,108,113,120,123,139,141,143],repositori:[22,24,25,26,29,32,37,38,43,44,46,53,58,59,63,64,93,101,108,110,111,113,118,121,131,147],repres:[30,85,91,94,98,99,101,103,156,162],represent:[54,91,94,100,106,156],reprint:83,reproduc:[17,54,62,83],request:[12,24,26,30,34,35,55,58,74,85,90,91,95,98,100,113,121,123,128,133,144,150,156],requir:[3,4,16,18,20,22,25,27,30,32,34,35,36,37,41,46,48,49,56,59,67,68,72,75,78,81,82,85,86,91,94,97,98,101,102,103,105,106,107,112,113,115,116,119,121,124,126,128,133,134,135,140,141,142,143,144,145,150,151,154,157,160,162],rerun:[42,45,54,56,59],rescal:30,research:[4,17,46,49,83,101,111],reserv:[62,83],reset:[40,42,55,106],reset_count:106,resetplot:[79,81],resid:[55,63,91],resiz:123,resolut:[4,6,17,18,30,32,34,40,45,61,69,72,91,101,105,106,115,119,123,124,133,136,154,156,158,159],resolution_limit:156,resolv:[4,32,34,52,55,59,110,123,137],resourc:[17,24,28,47,107],resp:[20,30,128],respecitv:30,respect:[30,32,52,60,93,94,99,156],respons:[13,49,85,100],rest:[5,22,81,110,123,136,148,149,154,156],restart:[13,25,45,81,93,120,121,122,123,125,128,141,143,145],restart_fil:[132,141,143,145],restor:6,restrict:[39,52,123,135,144,154],restructur:[11,55],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,36,37,38,43,44,45,46,48,49,54,55,56,59,60,63,65,68,69,72,78,79,80,81,84,88,90,93,95,99,102,106,112,113,115,119,121,122,123,124,126,128,137,141,142,143,145,152,154,156,158],retain:[62,83,94],retak:[141,143,145],retir:55,retriev:[13,35,48,81,86,101,156,158],return_topo:156,return_xarrai:156,reunion:150,reutil:86,reval:134,reveal:[45,105],revert:52,review:[17,89],revis:[6,121],rewritten:30,rgb:79,rho:[68,99,105,143],rho_l:99,rho_r:99,rhou:68,rhov:68,richardson:[5,7,22,142,143],rid:28,ride:126,ridg:52,riemann:[4,5,8,20,22,23,28,29,46,56,59,64,75,83,85,91,92,101,102,103,105,108,139,141,143,145,148,149,162],riemann_aug_jcp:122,riemann_book:134,riemann_interact:120,riemann_solut:134,riemann_solv:101,riemann_tool:[119,134],right:[5,32,62,65,72,83,91,96,98,99,103,105,128,132,133,135,162],rigid:[30,123],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,72,136,137],rise_fract:[30,72],rise_shap:30,rise_tim:[30,72],rise_time_end:[30,72],rise_time_start:[30,72],risen:150,rjl:[6,17,108,125],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:123,robust:[46,123,134,156],robustli:124,rock:72,roe:[89,99,128,133],root:[29,59,94,95,100],rootgrp:35,rossby_wav:134,rossmanith:17,rotat:[40,50],rough:65,roughli:[53,135,153],round:52,roundoff:91,routin:[4,5,6,16,20,25,27,30,32,36,37,45,46,47,52,53,63,68,69,70,73,74,75,78,81,83,86,88,91,94,97,98,101,103,104,112,115,116,119,121,123,124,126,133,137,141,143,145,150,156,157,159,160,162],row:[30,32,54,89,112,154,156],rp1:[133,162],rp1_acoustics_variable_adjoint:5,rp1_advect:64,rp1_ptwise:133,rp1_shallow_bathymetry_fwav:134,rp1_shallow_hl:129,rp1_shallow_roe_trac:134,rp1_shallow_roe_with_efix:134,rp_:99,rp_sourc:98,rpn2:[5,133],rpn2_geoclaw:134,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:133,rpn2_shallow_bathymetry_fwav:134,rpn2_shallow_roe_with_efix:134,rpn2_shallow_spher:134,rpn2_sw_aug:134,rpn2_vc_advect:117,rprint:[142,143],rpt2_geoclaw:[128,134],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:133,rpt2_shallow_roe_with_efix:134,rpt2_shallow_spher:134,rr2:135,rr_admiralti:135,rr_name:135,rrzigzag:135,rsmc:150,rsphere:[48,86],rst:[55,56,126],rsync:55,rsync_clawpack:55,rule:[7,13,25,60,67,86],ruled_rectangl:126,ruledrectangl:[39,67,126,135],ruledrectangle_admiraltyinlet:135,ruledrectangle_covering_selected_point:[67,135],ruledrectangle_trapezoid:39,run1:63,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,34,35,40,41,43,44,45,46,51,52,53,55,56,57,58,59,60,61,63,65,68,70,74,75,78,79,81,82,84,86,88,91,92,93,95,98,102,104,105,106,108,110,112,115,116,120,121,122,123,124,125,127,128,130,132,133,143,144,145,150,152,153,156,159],run_app_from_main:106,run_data:88,run_exampl:156,run_seri:106,runclaw:[14,51,116,125,127,133],rundata:[5,22,32,34,39,40,45,60,61,112,115,126,132,137,141,142,143,144,145],rundatat:39,rundir:[14,88],rung:[93,101],runmak:88,runnabl:106,runtest:[37,96,152],runtim:[34,106],runup:65,ruptur:[30,46],rupture_tim:[30,72],rupture_typ:[30,72],s_1:[99,135],s_2:[99,135],s_3:99,s_l:99,s_m:99,s_r:99,safe:73,safer:63,safeti:89,sagemath:87,sagemathcloud:87,sai:[5,13,16,28,60,104,112],same:[3,5,6,8,13,16,22,25,28,31,32,34,35,40,42,45,47,48,49,52,54,56,59,60,61,63,65,67,70,72,75,78,79,80,81,85,89,91,93,94,95,98,99,101,106,107,115,116,120,121,126,128,132,133,135,141,142,143,144,148,154,156,159],sampl:[7,8,14,17,18,25,29,32,42,45,46,52,61,72,108,113,132,135,141,142,154,156,159],santiago:52,satisfi:[32,40,67,101,112,135,162],save:[5,13,25,26,34,35,40,51,60,74,88,92,101,120,121,123,128,132,151,156],savecod:88,savefig:[18,60],scalabl:[17,93],scalar:[27,30,40,95,103,133,137,141,162],scale:[4,30,50,52,68,75,93,94,115,121,123,128,144],scan:42,scatter:[3,22,68],scenario:[49,136],schedul:24,scheme:[89,99],schlieren:[3,68],schwarzschild:4,sci:17,scienc:[4,17,83],scientif:[4,17,82,93,96,107],scipi:[13,35,86,107,150,156],scipysuperpack:82,scp:13,scratch:[48,67,105],screen:[13,28,52,60,88,95,96,120,143,145],screenshot:[13,52],script:[11,19,20,28,30,32,41,45,52,55,63,68,75,78,83,86,90,92,93,95,96,101,106,108,113,123,127,133,140,144,145,156],scriptstyl:135,scroll:13,sdist:56,sea:[30,45,46,47,49,52,69,72,109,119,126,136,154,156,158],sea_cmap:40,sea_cmap_dri:40,sea_level:[25,32,40,46,49,60,99,126,137,144,154,156],seab:65,seafloor:[30,49,72,137,158],search:[1,13,14,59,78,93,106,108,121,123,135,139],sec:30,second:[3,16,30,32,37,45,48,52,56,60,68,85,91,95,101,112,115,121,132,141,144,150,152,153,156,159,162],section:[6,13,16,34,36,37,40,42,47,49,55,56,64,68,78,81,93,113,128,132,141,144,156],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,61,62,63,64,65,67,68,69,70,71,72,73,74,77,78,79,80,81,82,83,86,88,90,91,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,139,140,141,142,143,144,146,147,148,149,150,152,153,154,156,157,158,159,160,161,162],seem:[103,108,126,140],seen:[12,22,32,36,37,38,49,73,98,141,146],segement:156,segment:[130,135],segmentedplanefault:[30,72],seism:[17,30],seismic:[30,35,46,72],select:[7,12,13,15,16,28,32,40,67,95,101,109,112,115,122,126,131,138,141,144,148,149,158],select_by_flood:[40,67],self:[30,33,35,101,156],semi:101,send:[13,24,98,133],sens:[27,52,61,123,128,162],sensit:[49,65],sent:[95,103],separ:[1,28,32,34,44,52,55,60,64,69,93,101,135,156],seper:106,sept:[56,128],septemb:[127,131],sequenc:[20,22,34,35,64,67,69,96,102,105,106,113,115,122,133,159],sequenti:[32,34],seri:[34,45,61,69,150],serial:[96,100,106,153],serv:29,server:[13,29,40,52,55,56,67,123,154,158],servic:[25,62,83],session:[1,36,37,38,97,102],set:[0,1,2,3,5,6,8,13,14,15,16,18,22,25,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,45,46,48,49,50,51,52,55,56,58,59,60,61,63,64,67,69,71,72,73,74,75,77,78,85,86,88,90,91,92,93,94,95,96,99,100,101,102,103,104,105,106,108,109,112,113,115,116,119,120,121,123,125,126,128,132,133,134,135,138,140,141,142,143,144,145,146,150,151,154,156,158,159,162],set_all_st:100,set_aspect:[40,50,67],set_aux_from_auxbc:103,set_corn:30,set_count:106,set_cparam:[85,103],set_dynamic_slip:30,set_eta_init:[126,137],set_num_ghost:103,set_plotdata:35,set_printopt:91,set_q_from_qbc:103,set_subfault:30,set_xyz:[40,156],setaux:[20,22,64,86,115,116,133,141,143,145],setaux_default:55,setenv:96,setgaug:[45,120],setlevel:95,setplot1:68,setplot2:68,setplot3:68,setplot:[0,1,2,3,7,18,19,20,22,25,43,45,46,70,77,78,97,98,106,121,157,160],setplot_fil:52,setplot_kml:52,setprob:[40,64,143,145,159],setrun:[5,6,7,8,14,16,18,19,20,25,32,33,34,35,36,37,39,40,41,43,46,47,49,60,61,63,65,67,74,75,79,93,109,110,112,115,119,120,121,124,126,128,132,133,136,137,150,154,157,159],setrun_setgeo:144,setup:[38,56,85,86,90,93,96,98,101,102,103,111,139,157],setup_gauge_fil:91,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,34,35,36,37,41,45,47,49,52,56,59,61,68,69,72,78,102,112,113,114,115,116,119,120,121,122,124,125,126,128,135,140,144,152,154,156,159],sftp:13,shaheen:95,shall:[62,83],shallow:[5,15,16,17,25,32,34,40,46,49,53,67,75,86,93,109,116,117,119,121,123,124,133,137,138,144,148,149,154,159],shallow_1d:134,shallow_1d_pi:[99,134],shallow_2d:134,shallow_bathymetry_fwave_1d:134,shallow_bathymetry_fwave_2d:134,shallow_exact_1d:99,shallow_fwave_1d:[99,134],shallow_hll_1d:[99,134],shallow_roe_1d:[99,134],shallow_roe_tracer_1d:134,shallow_roe_with_efix_1d:134,shallow_roe_with_efix_2d:134,shallow_spher:[86,113,134],shallow_sphere_2d:134,shallow_trac:134,shallowest:72,shape:[30,35,40,48,60,67,86,91,96,103,135,156],shapshot:13,share:[25,26,52,59,73,75,91,94,96],sharp:60,sharpclaw:[4,23,25,75,83,90,92,93,98,115,133],sharpclawnd:101,sharpclawsolv:101,sharpclawsolver1d:101,sharpclawsolver2d:101,sharpen:89,sharper:[52,60],sharpli:5,shear:[17,30],shelf:[7,67],shell:[28,58,59,73,79,81,96,102,105,108,121,139],shg:68,shift:[5,30,49,54],ship:32,shoal:135,shock:[6,17,49,101,112],shock_bubble_interact:[36,38,90,93,102],shockbubbl:98,shoot:[78,93],shore:[34,40,46,112,126,137],shorelin:[40,52,156],shoreline_xi:156,shorter:[3,112,156],shortli:[28,113],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,45,49,52,54,55,56,57,58,59,60,63,65,67,68,70,71,72,73,78,79,81,86,91,93,94,95,96,98,99,100,101,102,103,104,105,106,108,109,112,113,115,116,119,121,122,123,126,132,133,134,136,137,139,140,141,142,143,144,145,146,150,152,154,156,157,159,161,162],shouldn:90,show:[0,2,3,9,10,12,14,18,28,30,36,37,40,44,45,52,55,56,60,63,67,68,81,91,105,108,113,119,129,130,135,156,157,159],showcolor:79,showgridlin:68,showitem:1,shown:[3,13,55,60,64,65,68,75,95,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,135,156,159],showpatchbord:68,shrink:156,shu:101,shuffl:94,siam:[17,24,25,93,133],sid:150,side:[6,16,18,32,52,55,65,72,94,113,133,162],sidebar:[52,55],siesmic:137,sift:[30,72,123],sift_slip:30,siftfault:[30,72,123],sigma:85,sign:[13,24,79,128,150],signatur:[3,86,89,91,92,94,99,150],signific:[18,34,65,131,136,156],significantli:[94,123],signitur:100,silenc:95,silent:94,sill:134,silo:160,similar:[4,13,16,28,32,34,37,45,52,61,85,86,94,98,101,105,123,128,144,150,151,152,154],similarli:[34,41,53,90,96,98,135,153],simpl:[7,29,36,37,39,46,56,69,72,86,93,98,99,101,106,111,113,156],simplest:[59,71,105],simpli:[5,13,34,36,37,38,40,45,52,54,63,64,67,69,85,87,88,90,95,96,102,113,133,135,146,150,156,159,160],simplifi:[72,78,79,94,113,122,123,159],simul:[32,36,37,38,40,47,49,52,68,69,88,91,93,95,96,98,102,105,110,121,122,123,125,135,137,150],simultan:[52,121],sin:[48,79],sinc:[0,3,4,5,6,16,20,22,28,32,34,40,42,48,49,52,54,55,56,59,60,63,64,69,72,73,74,78,79,85,86,87,94,95,112,113,115,119,120,121,122,124,125,126,127,128,129,130,131,132,133,135,136,141,142,144,154,157,158],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,34,35,40,45,47,52,54,55,56,60,61,63,68,72,73,74,75,85,91,94,95,100,106,113,118,119,121,131,133,137,141,142,143,144,154,156,158,159],single_storm:150,sisc:[17,93],sit:13,site:[28,52,59,108],situat:[52,67,68,128],size:[18,20,30,34,35,40,45,52,60,73,74,78,91,94,96,101,121,126,142,143,145,154,156],size_x_inch:52,size_y_inch:52,skinni:0,skip:[30,126],skip_patches_outside_xylimit:[126,128],skiprow:30,slack:24,slice:[3,68,133],slide:24,slider:[52,60],slightli:[16,40,54,121,122,128,135],slip:[25,30,46,111,154,158],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,101,128],slope_i:52,slope_x:52,slosh:125,slow:[13,52,95,104],slowest:94,slowli:60,slu:7,small:[5,16,34,40,45,65,67,112,113,115,120,132,141,143,144,154,156,158],smaller:[13,18,34,52,65,75,91,95,115,137,141,143,144,145,156],smallest:[112,135],smear:60,smooth:[30,69,101,112,159],smooth_data:156,smoothli:[54,69],smv_branch_whitelist:55,snapshot:[5,28,95,124],soc:[17,30],softwar:[6,13,24,25,29,46,49,62,70,83,93,94,95,146,154],sol:85,sole:133,solid:[3,16,52,72,98,140,141,143,145],solitari:17,solut:[1,3,4,5,16,18,22,25,27,29,34,35,37,45,48,61,68,72,74,78,81,86,88,91,93,94,95,98,99,101,103,104,105,112,113,119,120,124,132,133,140,141,142,143,145,152,159,162],solv:[4,5,8,16,17,20,26,36,37,49,57,59,61,84,86,88,91,93,98,99,102,124,133,134,141,154,159,162],solver:[4,5,6,20,22,23,25,28,46,57,58,59,64,82,83,84,88,91,92,95,103,117,119,121,122,123,124,125,126,128,141,143,145,148,149,162],solver_nam:133,solver_typ:[90,101],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,34,35,36,37,40,42,43,45,46,47,49,50,52,53,54,55,56,59,64,67,72,73,74,78,80,81,83,86,87,89,93,94,95,97,98,100,102,103,104,105,107,108,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,136,137,140,141,142,143,145,146,150,151,153,154,156,159],someon:[28,63],someth:[13,27,28,55,63,71,78,95,100,101,108,154,157,159],sometim:[59,63,67,75,79,85,95,123,130,136,137,144,151,158],somewhat:[73,78,112,113,121,141],somewher:[70,119],sonel:158,soon:101,sorin:4,sort:[13,40,123,140,157],sound:[40,67,85,99,105,135],sourc:[4,17,23,25,28,30,42,46,52,53,55,56,58,59,60,62,64,65,78,83,86,90,91,92,101,102,104,105,106,110,111,113,121,122,123,134,136,141,143,144,145,147,148,149,150,154],source_list:106,source_split:[91,101,141,143,145,159],south:[32,154],space:[5,6,7,16,17,18,30,32,33,34,35,45,52,54,72,91,95,98,112,119,132,135,141,142,143,144,145,154,156,159],spacial:137,span:[48,52,60],spatial:[6,17,25,30,34,35,39,40,45,46,61,65,69,98,112,115,119,126,128,133,136,142,143,144,145,162],spatial_region:39,spatial_region_fil:39,spatial_region_typ:39,spawn:113,specfi:156,special:[4,7,16,18,46,47,52,62,75,83,112,135,156],specif:[3,5,12,22,28,30,45,46,48,52,53,59,62,64,65,83,84,86,88,93,94,95,99,100,106,110,121,122,123,126,140,141,142,143,145,151,154],specifi:[0,1,2,3,4,5,6,7,15,16,18,20,22,25,27,28,29,30,32,33,34,35,40,41,42,43,45,46,47,48,49,51,52,54,60,63,64,65,67,68,69,72,73,74,75,77,78,80,85,88,91,94,95,98,100,101,104,106,108,109,110,113,115,118,119,120,121,122,123,126,128,132,133,135,136,137,138,143,145,146,148,149,150,151,153,154,156,157,158,160,162],speed:[32,34,35,85,89,99,105,121,126,133,134,141,144,150,151,156,159,162],speed_toler:144,spell:79,spend:120,spent:[142,153],sphere:[48,86,116,134,144],spheric:[17,52],sphinx:[11,23,25,56,122],sphinx_web:55,sphinxcontrib:55,spite:[64,67,108],split:[5,6,73,91,94,101,119,120,128,141,142,143,145,153,159,162],spot:79,sprint:[142,143],spuriou:[16,32,113],sqrt:[3,32,35,65,85,98,99,105,143],src1:[64,149,159,162],src1d:149,src2:[86,149,159],src3:[149,159],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,34,35,40,41,42,48,51,53,56,59,60,63,64,68,72,73,80,97,98,106,108,109,112,113,116,119,120,122,123,124,125,126,128,133,137,138,141,143,145,148,156,157,162],src_split:[141,143,145],srcn:[141,159],ssh:[13,28],ssp104:101,ssp33:101,ssplmm32:101,ssplmm43:101,ssplmm:101,ssprk22:101,stabil:[101,128,141],stabl:[82,91,128],stack:[73,82,119,135],staff:125,stage:[101,136,137,154,156],stai:[26,32],stand:[4,128],standard:[6,16,30,32,34,52,54,68,74,86,89,101,108,112,113,143,144,145,146,154,159,162],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,34,36,37,38,39,40,41,45,46,48,52,54,55,57,58,59,60,63,67,71,72,79,81,85,96,100,101,107,108,112,113,120,123,128,131,132,133,135,137,144,150,152,154,159],start_dat:150,start_fram:100,start_max:32,state:[4,13,17,25,28,55,72,79,85,86,88,91,93,94,95,96,98,99,100,101,104,105,113,128,129,133,134,135,141,154,162],statement:[36,37,68,74,107,108,121,130,143],station:[48,136,158],stationari:[61,154],statist:[25,120],statu:[13,28,51,88,105],stdout:113,steadi:[72,154],steep:[67,162],steepli:137,stencil:103,stencil_width:103,step1:64,step2:86,step2i:119,step2qcor:86,step2x:119,step3i:119,step3x:119,step3z:119,step:[5,6,10,16,18,19,28,32,34,36,37,38,45,52,55,56,61,68,75,78,81,83,84,85,86,88,95,98,101,103,105,110,112,115,120,121,132,133,139,141,142,143,144,145,154,162],step_hyperbol:101,step_index:101,step_interv:143,step_sourc:[91,98,101],stepgrid:153,stepgrid_dimsplit:119,steps_max:[141,143,145],stiff:141,still:[1,5,7,8,13,16,18,22,24,26,32,40,52,53,64,67,68,74,78,83,101,107,112,113,119,120,121,122,123,124,126,132,133,144,150],stnd:48,stommel_storm_modul:119,stop:[32,73,79,115,123,143,145,156],storag:[120,128],store:[0,1,13,33,35,41,52,54,55,68,74,94,95,98,103,104,105,113,115,121,140,142,144,150,153,154,156],storm:[12,17,24,25,46,119,122,123,124,125,127,128,129],storm_atcf:150,storm_fil:[144,150],storm_ibtrac:150,storm_modul:119,storm_nam:150,storm_radiu:150,storm_radius_fil:150,storm_specif:144,storm_specification_typ:144,storm_targ:150,str:[0,1,3,30,60,94,141,142,150,156],strait:135,strang:[91,101,141,143,145,159],strategi:6,stream:79,stress:[85,95],stretch:[67,156],strict:[62,83],stride:[22,156],strike:[30,72],strike_direct:30,string:[0,1,3,7,30,32,35,45,48,52,54,60,61,79,86,88,89,91,94,95,100,106,108,141,144,150,156],strip:[60,135,156],strip_archive_extens:60,stripe:52,strong:[101,107],strongli:[68,107],structur:[7,10,22,32,34,35,39,56,59,63,75,100,101,121,135,140,156],stub:123,student:4,studi:[49,65],style:[6,22,28,30,34,39,50,52,67,74,79,83,88,123,144],sub:[30,113,156],subclass:30,subdirectori:[5,12,18,20,22,23,36,37,55,56,59,63,71,81,90,95,108,113,140,144,146,152,156],subdivid:[30,72],subdividedplanefault:30,subdivis:30,subduct:[49,72],subfault:[30,46,123,124,158],subject:[52,67,112,142,144],submodul:[26,28,53,56,58],subpackag:108,subplot:[0,30,67,81,135],subprocess:125,subrepo:56,subrepositori:[28,56],subroutin:[4,6,9,16,22,32,34,64,112,119,133,141,142,153,159,162],subsampl:[54,154,158],subsequ:[3,10,68],subset:[30,32,40,67,123,135,154,156,158],subsid:[126,137,144],substanti:[28,55,83,119,125,128],substitut:[62,83],subsurfac:154,subtleti:67,succeed:101,succesfulli:86,success:[68,100,156,159],successfulli:[63,100],suffici:[13,16,18,20,34,72,73,110,115,141,144],suffix:[63,156],suggest:[4,24,29,48,54,55,57,59,81,82,107,131,133,144,161],suit:[28,52,113],suitabl:[5,8,16,20,46,49,52,100,111,133,136,150,156],sum:[40,45,72,95,103,153],sum_:162,sum_p:162,summar:[3,28,31,112,114,159],summari:[24,25,56,123,141,142,143,144],superbe:[89,141,143,145],superbee_limit:89,superclass:101,supercomput:[93,95,96],superposit:72,superpow:89,superpower_limit:89,supplement:[39,67,146],supplementari:113,suppli:[112,150,159,162],support:[4,8,13,18,22,34,35,39,42,49,52,57,58,72,82,83,85,86,91,94,95,97,99,101,112,119,121,122,123,124,128,129,133,135,141,142,144,150,151,154,157,160],suppos:[16,64,67,68,79,108,112],suppress:[0,2,3,28,52,60,120,122,141,142],sure:[1,20,28,41,55,56,57,58,59,68,75,85,94,96,98,100,104,106,136,156,157,158],surfac:[17,22,25,30,32,34,35,40,45,46,47,49,52,69,72,78,80,86,93,105,109,112,119,135,136,144,154],surface_or_depth:[52,80],surg:[12,17,24,25,46,119,122,123,124,125,128,150],surge_data:144,surround:[112,156],surviv:83,svg:18,sw_aug_2d:134,swag:24,swap:156,swaphead:156,sweep:[8,133],symbol:[3,68,108],symmetr:[3,48,159],symmetri:16,syntax:[11,58,139],sys:[40,67,88,143,145],system:[4,16,17,23,37,38,52,53,59,60,64,73,74,83,93,95,96,98,99,102,105,108,113,133,141,143,145,152,159,162],systemat:22,t0000:[34,68],t0001:[68,70],t0002:68,t_end:101,t_r:5,t_stays_dri:40,tab:[13,55,131],tabl:[60,65,78,94],tackl:[24,28],tag:[15,52,56,58,109,138,142,143,148,149],take:[5,6,22,27,28,30,32,35,48,55,65,67,68,72,79,85,91,98,101,105,106,107,112,113,118,124,137,141,142,143,144,156,159,162],take_one_step:101,taken:[6,32,67,72,95,101,112,141,159],tall:0,tan:79,tank:[16,49],tar:[13,60,125,131],tarbal:[56,157],tarfil:[18,56,59,122,123,124,125,126,127,128,129,130],target:[5,59,79,86,98,126],task:78,tchknnnnn:132,tck00100:120,tck:120,tckaaaaa:120,tckbbbbb:120,tcp:13,tcsh:96,tcvital:[123,150,151],td9635:150,td9636:150,teach:[46,49,111],team:[4,24,62],techniqu:[17,26],technolog:[4,83],tell:[54,70,74,79,85,94,108,113],templat:86,tempor:[34,45,61],temporari:103,temporarili:68,ten:[4,75],tend:[34,40,101],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,46,49,62,72,86,91,92,101,112,122,123,134,141,143,144,145,148,149],termin:[87,139,141,142],terrain:65,terrel:4,test:[22,25,30,36,39,42,51,52,56,57,58,59,65,78,83,84,86,92,93,99,106,107,112,116,120,121,122,123,126,128,133,145,150,153,154,156],test_acoust:113,test_app:[106,113],test_bind:29,test_dtopotool:30,test_etopo1:[123,154],test_shallow_spher:113,test_topotool:[116,156],testpypi:56,teton:52,tex:1,text:[11,55,56,60,74,88,94,101,119],tfinal:[5,85,88,105,132,141,143,145],tfluct:101,tfluct_solv:101,than:[3,5,6,13,16,18,20,22,28,29,30,32,34,35,40,45,52,55,56,59,60,61,63,64,65,67,69,71,72,74,78,81,85,86,88,91,94,95,96,98,99,101,106,108,112,113,115,118,119,120,121,122,123,125,126,128,131,132,135,136,137,140,141,142,144,150,151,153,154,156,159,162],thank:[4,93],thei:[3,5,6,13,16,24,27,28,30,32,34,39,40,45,49,52,55,56,59,60,61,64,67,68,74,78,91,93,98,101,106,112,113,121,128,137,140,144,150,154,156,159],them:[5,13,18,22,28,29,30,32,45,52,55,68,70,75,83,85,90,94,95,96,98,106,110,113,116,125,135,147,150,156,159],theori:[62,83,162],therefor:[86,96,123,154],thereof:13,thesi:[17,101],theta:89,theta_limit:89,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,45,46,47,48,49,51,52,53,54,56,57,58,59,60,61,62,63,64,65,67,68,69,70,72,73,74,78,79,81,82,83,85,86,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,115,116,118,119,120,121,122,123,124,125,126,128,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,150,151,152,153,154,156,157,158,159,160,161,162],thing:[0,13,16,22,28,29,40,49,55,60,81,90,112,113,122,127,132],think:[59,65,67,69,99],third:[16,32,54,89,153,156],thn:141,thoroughli:94,those:[4,6,10,12,22,24,49,52,53,56,67,75,85,86,88,95,98,103,112,113,115,126,128,131,132,146,152,156,159],though:[3,40,75,150,154],thought:[128,136],thousand:[4,75],thread:[42,73,112,126,153],threat:4,thredd:[40,67,154,158],three:[3,13,17,22,30,32,35,49,52,64,68,72,96,100,106,113,135,141,144,154,156,159],threshold:65,through:[4,13,28,34,36,37,45,49,52,67,68,75,78,86,98,103,105,106,108,111,112],throughout:[34,69,121],thu:[6,34,48,95,98,123,150],tick:52,ticklabel:118,ticklabel_format:[40,50],tidal:[95,136],tide:[45,46,48,123,136,156],tidesandcurr:48,tier:13,tild:162,time:[0,1,5,6,7,10,14,16,18,20,22,25,27,28,30,32,34,35,36,37,39,40,41,42,43,45,46,47,48,49,52,54,55,60,61,68,69,70,72,73,74,75,79,83,85,88,89,93,94,95,101,103,105,112,113,115,118,120,121,123,124,125,128,132,133,135,137,139,140,143,145,150,154,157,158,162],time_files_scanf:160,time_integr:101,time_offset:150,time_zon:48,timer:122,timespan:60,timestep:[88,95,120,122,141,143,145,150],timezon:60,timing_plot:125,tip:[24,46,59,78,92,93,98,107],tipe:105,titl:[0,1,4,17,24,40,45,52,60,67,78,93,121,135,156],title_with_t:[0,79],to_jshtml:18,todo:[16,133,150,156,162],togeth:[5,16,18,28,29,30,55,57,72,112],toggl:143,token:29,tokyo:150,toler:[5,32,99,106,112,113,121,142,143,144],tolsp:112,too:[6,48,52,55,56,120,135,143,145],took:24,tool:[7,8,17,22,23,28,30,32,33,34,35,36,37,40,46,47,48,49,52,54,57,58,59,60,68,72,77,78,79,80,82,93,108,111,116,117,121,122,126,127,144,146,154,156,158,160],toolkit:[96,160],top:[0,1,3,11,23,29,30,34,52,55,56,58,59,72,79,93,98,99,108,113,132,139],topgraphi:156,topic:68,topo1:154,topo1writ:156,topo2kml:60,topo2kmz:[60,129],topo2writ:156,topo3writ:156,topo:[25,32,40,46,49,52,54,60,67,69,80,108,115,117,123,125,128,136,144,154,156],topo_data:144,topo_fgmax_mask:67,topo_fil:156,topo_file_nam:60,topo_fnam:156,topo_func:156,topo_miss:125,topo_styl:33,topo_typ:[32,40,54,60,67,119,120,123,126,154,156],topo_upd:115,topo_xlim:52,topo_ylim:52,topofil:[32,54,60,123,124,125,126,144,154,156],topograph:52,topographi:[16,17,25,32,33,34,35,45,46,49,54,60,65,69,72,80,110,111,115,116,117,119,120,123,126,129,135,136,137,148,149,155],topograpi:154,topoplotdata:119,topotool:[40,46,48,54,60,67,116,117,118,119,120,123,124,129,154,155],topotools_exampl:[111,156],topotyp:[128,144,154],topotype1:156,torrilhon:89,tort:[62,83],total:[6,30,34,52,72,95,101,141,142,143,145,153],total_energi:95,total_step:[141,143,145],touch:67,tout:145,toward:[4,30],tprint:[142,143],trace:95,traceback:79,tracer:[34,134],track:[18,24,25,28,32,33,34,45,46,52,55,57,59,73,85,93,106,113,115,124,126,129,134,150],track_color:150,tracker:28,tradeoff:112,tradit:[88,94],traffic:[133,159],trail:[59,60],tran:17,tranpsort:141,trans_cor:91,trans_inc:91,transect:[32,144],transfer:29,transform:[5,42],translat:72,transmiss:101,transmit:141,transon:121,transpar:[52,60],transport:[141,143,145],transpos:5,transvers:[8,91,121,128,133,134,141,159,162],transverse_wav:[91,141,143,145],trap:42,trapezoid:39,travel:142,travi:[22,128],tree:[53,59,98,139],tri:150,triangl:72,triangular:[30,46,123],trickeri:56,trigger:94,troubl:[36,37,78,93],troubleshoot:[25,57,58,93],trucat:18,truli:100,truncat:[16,34,94,141],tscale:60,tstart:[34,101],tstart_max:32,tsunami:[4,5,16,17,18,24,25,32,34,40,46,47,53,65,72,95,112,115,118,124,125,135,136,137,144,151,154],tsunami_colormap:34,tt3:[72,156],tulan:24,tune:[26,142],tupl:[3,30,48,60,72,79,91,95,156],turbul:[49,101],turn:[18,45,47,49,60,76,79,95,113,120,126],tutori:[13,29,56,81,84,88,93,102,108,111],tvd:[85,91,101,162],twice:[35,52,141],twine:56,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,34,35,45,48,52,53,55,60,68,69,74,79,85,91,94,95,98,101,104,106,110,111,112,113,115,119,120,123,125,132,133,135,138,139,143,154,156,159,162],two_d_classic_sourc:86,txt:[28,32,45,51,56,61,83,95,121,122,123,132,150],txxxx:94,type:[3,4,7,13,20,28,30,36,37,41,45,52,63,68,79,80,81,85,86,87,89,91,96,97,101,102,105,106,135,142,143,144,150,151,154,156,162],typic:[3,20,40,63,64,68,69,72,74,75,81,86,96,98,101,103,112,142,143,153,154,157,158,159,162],typo:124,u_l:[99,134],u_r:[99,134],u_t:[99,105],u_x:105,ubar:99,ubuntu:13,ucar:[70,94],ucsb:[30,72,158],ucsbfault:[30,72],ulimit:73,ultim:39,ultrabe:89,unaccept:52,unalt:52,unapp:52,unavail:27,uncertainti:[49,65],unchang:[5,68],unchosen:67,uncommit:[28,51,56],undefin:104,under:[4,7,22,32,34,38,52,53,55,58,62,64,78,83,91,93,113,121,123,131],underflow:115,underli:[3,52,121],underlin:28,understand:[9,25,36,37,49,78,93,105,112,133],understood:49,underwat:[46,52],undesir:132,undivid:112,unequ:135,unexpect:[48,52,60,63,150],unidata:[70,94],uniform:[30,32,34,35,67,72,75,86,123,154],uniformli:154,unind:[60,150],uninstal:[56,59,108],union:[135,154],uniqu:[1,74,120,150],unit:[30,47,48,53,72,91,121,150],univers:[4,17,24,55,62,83,100],unives:24,unix:[41,71],unknown:[30,103],unkown:103,unless:[6,32,41,42,60,99,107,136,141,142,156],unlik:[28,32,55,56,74],unlimit:[73,94],unmap:91,unnam:150,unnecessari:128,unnecessarili:116,unneed:120,unpack:[56,126],unphys:34,unpredict:68,unrealist:[32,69],unrecogn:106,unset:[67,112],unsplit:[91,141,143,145],unstabl:120,unstructur:156,unsuccess:100,unsur:141,untar:58,unterweg:83,until:[13,32,61,67,137],unus:[2,94],unzip:52,upbnd:[142,143],updat:[6,12,13,22,23,25,32,50,53,58,59,61,81,93,101,103,104,107,110,115,119,121,122,123,124,125,126,133,142,143,145,147,150,153,159],update_saved_valu:101,updip:[30,72],upgrad:82,uplift:[126,137,144],upload:56,upon:[5,103],upper:[22,32,33,39,89,91,98,135,141,143,145,154,156],upper_bound_limit:89,upper_glob:91,uprint:[142,143],upstream:56,upstrik:[30,72],upward:49,upwind:141,url:[4,12,17,52,56,123,124,154,156],usa:150,usa_ag:150,usag:[0,1,2,3,13,46,52,57,94,123,150,156],use:[3,4,5,12,13,14,18,20,21,22,25,26,28,29,30,32,34,36,37,39,40,41,42,45,46,47,48,49,52,53,54,55,56,57,58,59,61,62,63,64,65,67,68,69,70,72,73,74,77,78,79,81,82,83,85,86,87,88,89,90,91,93,94,95,96,98,99,101,102,103,104,105,106,107,108,110,112,113,116,118,119,120,121,122,123,127,128,131,133,134,135,136,139,141,142,143,144,145,150,154,156,157,158,159,160,161,162],use_adjoint:5,use_for_kml:52,use_fwav:[133,141,143,145],use_petsc:[90,96],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,34,35,36,37,39,40,41,42,43,45,46,48,49,51,52,53,54,55,56,58,59,60,61,62,63,64,65,67,68,70,72,73,74,75,78,79,81,83,85,86,88,89,90,91,93,94,96,98,99,100,101,103,105,106,108,109,112,113,116,120,121,122,123,124,125,126,127,128,132,133,135,136,137,139,140,141,142,143,144,145,148,150,153,154,156,159,160,162],useful:[0,3,10,19,25,27,28,32,34,35,36,37,42,45,47,50,51,52,54,57,58,60,67,73,74,80,83,86,95,107,108,112,113,123,126,133,135,141,142,154,156,157,162],useoffset:[40,50],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,34,35,42,49,52,57,59,60,65,68,72,79,86,87,90,94,96,104,106,107,108,112,119,121,123,125,133,141,143,144,145,147,156,162],user_bc_low:98,usernam:[28,29],uservari:68,uservariablefil:68,uses:[29,30,36,37,46,52,54,55,68,75,86,88,91,96,106,113,121,133,134,137,144,153,156,162],usg:[4,30,158],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,18,19,22,23,25,26,28,29,30,32,33,34,35,36,37,38,40,42,45,46,47,48,50,52,53,54,55,56,57,58,59,60,63,64,65,67,69,70,71,72,73,74,75,78,79,80,81,82,85,86,87,88,89,91,93,94,96,97,98,99,101,103,104,105,107,108,112,113,119,122,123,125,126,128,131,133,135,137,141,143,144,149,150,153,154,156,157,158,160,162],usr:70,usual:[0,2,3,5,6,30,34,40,45,47,52,60,63,70,72,74,90,91,96,98,99,101,106,110,112,121,133,141,142,143,144,145,157,159],utah:24,utc:[52,60],util:[23,25,28,35,46,52,74,78,81,93,108,113,140,155,156,157],uwamath:13,valid:[3,49,72,88,95,100,103,121,144,150,151,156],valout:[70,74,123,126,153],valout_geo:70,valout_nc:70,valout_nc_geo:70,valu:[3,5,6,7,16,18,20,22,27,30,33,34,35,36,37,39,40,42,45,46,48,50,51,52,54,60,61,63,65,67,68,69,72,73,74,79,86,91,93,94,95,98,99,100,101,103,105,106,112,113,115,116,118,119,121,123,125,126,128,132,133,135,136,137,141,142,143,144,145,150,151,154,156,157,159,162],valueerror:[30,150,156],valuemax:32,van:[89,101,141,143,145],van_leer_klein_sharpening_limit:89,vancouv:135,vanish:5,vanleer:[85,101,141,143,145],vari:[3,15,17,25,30,40,46,54,65,69,98,100,119,126,133,134,136,138,142,144,162],variabl:[0,3,5,13,14,18,22,25,27,28,30,32,35,36,37,38,41,45,46,51,52,55,58,59,68,71,73,75,79,85,86,94,96,100,101,103,104,106,108,119,120,121,123,125,132,133,141,142,143,145,150,154,156,157,159],variable_dt_refinement_ratio:[142,144],variable_eta_init:[137,144],variant:[20,57,106,113],varieti:[45,88],variou:[12,20,22,30,34,39,44,49,55,68,69,72,79,81,91,105,107,108,112,121,133,140,144,150],vastli:136,vector:[5,18,22,85,89,95,103,123,133,134],veloc:[16,18,32,34,48,61,68,81,98,99,105,121,136,141,142,143,144,145,159],verbatim:55,verbos:[28,30,33,35,48,60,67,88,91,95,101,113,135,141,143,145,150,156],verbosity_regrid:[127,142,143],veri:[3,5,16,18,22,49,52,56,57,60,72,79,83,86,94,95,96,97,98,101,113,116,120,135,137,141,151,154],verifi:[48,106,113,158],verifyerror:106,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,39,40,42,45,46,47,49,52,54,57,58,60,61,64,65,67,68,70,72,73,75,78,79,81,82,86,89,93,94,96,99,101,102,104,107,109,112,113,115,116,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,141,142,143,144,145,148,149,150,154,156,159,162],versu:156,vertic:[30,39,49,52,60,67,135,136,144,156,158],via:[5,13,22,23,24,28,29,30,34,36,37,42,43,45,47,49,52,55,56,58,59,61,63,67,68,72,73,75,79,82,85,91,94,97,100,102,104,108,112,113,123,126,133,135,139,144,146,148,149,154,156,159],vice:5,video:[24,110,126],view:[3,4,22,34,36,37,45,46,52,54,55,60,74,78,80,81,85,96,102,107,119,123,146,147],viewabl:[52,88],viewable_attribut:88,vim:28,violat:[101,156],virtual:[4,13,25,27,103],vis:88,visclaw:[1,7,13,22,23,24,28,34,40,45,46,47,50,52,56,57,58,59,63,67,68,75,79,80,81,82,93,97,102,108,139,140,146],visibl:[12,13,44,52,111,146],visit:[22,25,78,131],visual:[23,24,28,34,36,37,45,46,58,59,68,74,75,78,93,97,98,108,119,126,160],vogl:4,volcano:4,volum:[4,17,29,32,34,43,54,60,67,68,69,93,126,135,142,144,153,154,159],vrt:52,vstack:135,w_1:99,w_2:99,w_3:99,wai:[5,6,13,16,26,28,34,36,37,39,40,45,52,54,55,58,59,60,62,63,79,81,82,83,85,88,90,91,96,98,100,102,105,107,108,110,111,115,121,122,123,126,131,133,135,140,141,147,151,154,159,161,162],wait:13,wall:[16,42,98,105,120,123,125,141,143,145,153],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,34,35,36,37,38,40,41,42,45,48,51,52,55,56,58,59,60,63,64,65,67,73,79,81,85,86,87,88,94,95,96,108,111,113,120,123,126,131,133,134,135,139,140,143,147,150,154,156,157],wari:99,warm:89,warn:[24,28,94,95,101,128,141,157],warp:52,warranti:[62,83],washington:[4,17,24,55,62,125,135,156],water:[5,16,17,25,34,40,45,46,47,48,49,60,67,75,78,86,93,116,117,121,123,124,133,135,136,137,144,154,156,158,159],water_level:48,wave:[4,5,6,16,17,25,32,40,49,52,53,72,89,91,93,98,99,101,112,119,121,122,128,134,135,136,141,142,143,144,145,159],wave_toler:[112,144],wavelength:49,web:[23,25,28,36,37,52,55,56,123,146,156],webinar:24,webpag:[22,24,36,37,43,47,52,56,63,124,136],webserv:13,websit:[16,52,55,146,156],weight:52,welcom:[24,83],well:[4,6,18,28,33,46,52,53,55,59,60,67,72,73,74,75,78,81,82,100,101,110,122,123,126,134,137,141,142,148,149,150,159,162],wellington:150,wendroff:[91,101,141,143,145,162],weno:[75,93,101],weno_ord:101,went:[59,134],were:[4,6,14,18,20,32,45,55,61,64,68,69,70,86,112,115,121,124,128,135,137,154],weren:127,west:154,western:156,wet:[40,46,67,69,135,144],wet_point:[40,67],wetland:[40,67],what:[5,6,9,13,14,22,25,28,30,31,32,39,49,51,52,55,56,58,59,60,63,64,67,68,69,70,74,78,85,88,92,100,103,105,108,111,112,113,120,135,136,140,141,143,144,145,146,150,154,156,158,159],whatev:[29,70,85,100,133],when:[5,14,15,16,18,20,28,29,30,32,34,35,40,41,42,45,50,51,52,54,55,56,58,59,61,65,67,68,72,73,74,75,78,79,81,85,92,93,94,96,97,101,104,108,112,113,115,116,118,120,121,122,126,128,130,133,135,136,137,138,140,141,142,143,144,145,146,150,154,156,157,158,159,160,162],whenc:95,whenev:[28,120,159],where:[1,3,5,6,12,13,16,22,27,30,32,34,35,36,37,39,40,41,45,46,49,52,54,59,60,61,63,65,67,68,69,70,74,75,81,88,91,92,93,94,96,99,108,112,115,116,119,120,121,126,128,132,134,135,136,137,140,141,142,143,144,145,150,153,154,156,159,162],wherea:[34,45,52,69,78,96],wherev:[29,157],whether:[3,6,13,16,22,48,54,57,59,61,62,63,68,83,91,94,95,99,100,101,112,113,121,133,135,141,142,144,156],which:[0,1,3,4,5,6,7,11,12,13,14,16,18,20,22,25,28,29,30,32,33,34,35,36,37,38,39,40,44,45,47,49,52,54,55,56,57,58,59,60,61,63,65,67,68,69,72,73,74,79,81,82,85,86,88,89,90,91,93,94,95,96,97,98,99,100,101,102,104,105,106,107,110,112,113,115,116,119,121,123,124,126,128,132,133,134,135,136,137,141,142,143,144,150,151,154,156,158,159,161,162],whichclaw:157,whidbei:[40,67,135],white:60,white_r:40,whith:86,who:[10,12,19,22,24,32,42,49,57],whole:[28,52,95,96],whose:[3,79,86,98,99,137,141,142,156],wide:[59,108,134],wider:79,width:[30,34,52,60,72,74,91,98,103,112,135,143,145],wiki:102,wikipedia:54,wind:[123,144,150,151,156],wind_forc:144,wind_index:144,wind_refin:144,wind_spe:150,window:[13,30,68,81,139],wisdom:60,wise:[28,101],wish:[4,13,14,15,22,29,36,37,49,52,59,68,77,78,93,98,101,102,104,108,110,112,121,138,146,148,149,157],within:[6,16,28,29,34,35,55,59,67,69,75,79,97,106,108,112,133,135,140,146,156],without:[16,22,41,45,49,60,62,63,64,67,68,79,81,83,89,93,94,95,106,108,113,135,139,143,145,150,157,159],wkt:52,wmo:150,wmo_:150,wmo_ag:150,won:[12,13,67,86,156],woodward:122,word:[95,123,150],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,34,36,37,41,46,49,52,53,54,55,56,57,58,59,60,67,68,71,72,73,79,82,83,84,85,87,88,89,93,94,95,96,99,101,102,107,108,110,111,112,113,117,118,119,120,121,122,123,126,128,129,131,133,139,140,141,142,146,151,154,157,161],workflow:[110,146,150],workshop:[110,126],workspac:[24,68,103],world:[49,65,93,96,150],worst:136,worth:103,worthwhil:98,would:[2,3,12,13,16,24,27,28,32,34,39,42,52,54,56,59,61,63,64,67,69,72,74,79,83,85,88,91,95,106,113,121,135,136,137,140,141,144,150,154,159],wouldn:64,wpalg:17,wrap:[60,83,86,91,101,106,150],wrapper:156,write:[7,28,30,33,34,35,39,40,45,46,51,54,55,65,72,74,75,78,85,88,91,92,94,95,96,100,121,123,143,145,150,154,156],write_:94,write_arrai:94,write_atcf:150,write_aux:[94,100],write_aux_alwai:[85,88,95],write_aux_init:[85,88],write_aux_int:95,write_geoclaw:150,write_hurdat:150,write_imd:150,write_jma:150,write_netcdf:35,write_p:[94,100],write_tcvit:150,write_to_fgmax_data:33,write_to_fgout_data:35,written:[6,11,25,30,32,34,35,41,45,59,60,61,62,72,74,75,79,83,92,93,94,98,121,133,141,142,143,144,145,150,156,159],wrong:[59,64,68,95,108],www:[4,13,17,30,40,46,55,62,67,70,83,86,91,94,96,122,124,150,156],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,135],x_2:[5,135],x_c:135,x_cell:60,x_center:135,x_edg:[60,135],x_i:[133,159,162],x_inch:60,x_mask:156,xarr:91,xarrai:156,xarray_d:156,xclaw:[36,37,88],xclawcmd:88,xclawerr:88,xclawout:88,xcode:82,xdir:88,xiaom:30,xinsheng:[4,53],xinshengqin:[4,53],xleft:[142,143],xlf:102,xlimit:[0,45,52,126],xllcenter:[54,123,154],xllcorner:[54,154],xllower:123,xlow:74,xlower:[0,3,16,22,27,40,86,123,143,145,154,156,159],xlowerg:86,xmax:[0,35],xmin:[0,35],xrang:98,xtick:[40,50],xupper:[0,22,143,145,156],xxdiff:113,xxx:154,xxxx:68,xy_fil:32,xy_fnam:33,xylim:30,xzf:58,y_c:135,y_cell:60,y_center:135,y_edg:[60,135],y_inch:60,year:[4,17,22,52,60,93,114,124,150],yellow:[60,79,150],yellow_red_blu:79,yes:68,yet:[1,13,18,20,25,49,53,55,58,60,78,101,121,122,123,124,125,126,127,128,129,130,131,133,141,143,161],yianni:[4,17,83],yield:3,yleft:[142,143],ylimit:[0,45,52,126,140],yllcenter:[54,123,154],yllcorner:[54,154],yllower:123,ylow:74,ylower:[3,22,27,40,86,123,143,154,156],ylowerg:86,ymax:[0,35],ymin:[0,35],yml:113,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,34,35,36,37,38,39,41,42,43,45,48,51,52,53,54,55,56,57,58,59,60,63,64,67,68,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,90,93,94,95,96,97,98,99,101,102,103,104,105,107,108,109,110,111,113,115,120,121,122,123,126,128,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,152,154,157,158,159,161],your:[4,6,15,16,19,20,24,25,26,34,36,38,42,45,54,55,56,57,58,59,70,73,78,79,81,83,84,85,86,87,90,92,93,95,104,105,107,108,109,110,112,113,115,123,133,138,139,148,149,154,157,159],yourself:[42,45,58],youtub:[24,110,126],yupper:[22,143,156],z_allow_wet:40,z_dry:40,z_format:[40,67,156],zdry:[40,67],zenodo:[4,58,126,127,128,129,130,131],zero:[3,16,30,32,40,42,45,60,68,69,85,98,99,103,105,128,135,136],zip:[12,52,56],zipinfo:52,zlib:94,zlim:60,zlower:22,zmask:67,zmax:[40,67],zmin:[40,67],znearshor:67,zone:[49,52,60,142,143],zoom:[24,52],zsh:96,zshallow:67,ztopo:67,zupper:22,zvar:156},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with fgmax grids","Fixed grid output","fgout_tools module for working with fgout grids","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Nearshore interpolation","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sea_level","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":137,"catch":28,"class":[85,88,150],"default":[15,109,137,138,148,149],"final":56,"function":[14,48,60,66,67,81,95,101,162],"import":108,"new":[47,55,71,90,113],"switch":68,"true":79,Adding:[28,52,90,98,133],For:6,Going:92,One:[133,134,162],The:[52,66,67,68,105],Use:104,Using:[5,13,25,29,34,39,53,59,64,70,73,95,98,101,133,140,159],about:[4,83],abov:29,access:81,acoust:[99,105],adapt:[6,16,25,39],add:79,addit:[52,142,144],adjoint:5,adjust:[137,144],advect:99,after:132,afterfram:68,algorithm:[6,17,67,75,162],alias:52,all:[3,59,67],along:67,altern:61,amazon:13,ami:13,amr:[3,5,6,22,67,73,112,135,142,144],amrclaw:[7,8,9,10,18,25,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,142,143,159],anoth:79,app:56,applic:[11,12,17,25,26,63,71,96],approach:8,arcsecond:[40,67],area:67,argument:67,arrai:[34,40,67,74,104],arriv:144,artifact:52,ascii:[74,94],attribut:[0,1,2,3,27,32,52,79,135],author:4,auto:[30,33,35,48,60,156],aux:[74,85],auxiliari:98,avail:[24,43],axes:50,b4run:14,b4step:[15,159],background:79,backward:[18,123,124,125,126,127,128,129,130],base:63,basic:[52,84,97],bathymetri:158,befor:159,behavior:137,below:67,better:29,between:[29,79],bibliographi:17,binari:74,binder:29,book:43,boundari:[6,16,98,159,162],bounding_box:135,branch:[28,55],buffer:67,bug:28,built:[55,90],buoi:158,burger:99,candid:56,capac:162,cautionari:49,cell:[6,40,135,144],cfl:89,chang:[18,22,79,101,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],chardiff:113,check:[28,113],checkpoint:132,chile:52,choic:[32,34],choos:[6,67],cite:[4,93],clamshel:16,classic:[18,25,36,37,101,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,141,145,152],claw:[76,139],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,44,53,55,56,57,58,63,75,76,86,89,101,102,122,123,124,125,126,127,128,129,130,131,134,145,161],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,79],clawutil:[18,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],clinic:24,clone:[28,58],cloud:87,code:[11,25,28,40,47,58,59,76,113,157,159],color:79,colorbar:52,colormap:79,command:[29,38,68,81,90,157],commit:28,commun:[24,28,76],comparison:113,compat:[18,123,124,125,126,127,128,129,130],compil:[42,63,70,104,147,157],compon:[23,79],comput:[75,132],condit:[6,16,98,105,159,162],configur:55,contain:29,content:[7,25,28,40,46,67,79,85,95,101,113,135],continent:135,continu:113,contourf:79,contribut:[26,28,134],contributor:83,control:[85,88,105],convers:20,convert:[11,19,20],convex:135,coordin:[50,52],copi:71,correctli:96,cover:135,coverag:28,creat:[13,29,40,52,56,67,68,71,85],creation:85,criteria:112,current_data:[27,81],curv:79,custom:[101,133],dart:158,data:[52,74,140,144,151,154,156,157,158,159],debug:[79,142],defin:[16,135],deform:137,dem:[40,67],demonstr:134,depend:[89,102],deprec:[8,144],depth:50,deriv:[85,95],describ:17,descript:[7,46],desir:140,detail:[6,7,46],determin:67,dev:76,develop:[24,25,28,76],diff:113,differ:[32,52,59,64,75,79],dimens:[91,134,162],dimension:133,directli:[13,34],directori:[59,63,71,79],displac:154,doc:55,docker:29,dockerfil:[29,56],docstr:[30,33,35,48,60,156],doctest:113,document:[9,11,30,33,35,48,55,56,60,93,122,123,147,156],doing:56,domain:[91,105],done:159,download:154,doxygen:9,drop:107,dry:[40,67,144],dtopo:155,dtopotool:30,duplic:63,each:[28,159],earth:52,earthquak:[72,158],easi:108,ec2:13,elev:[50,67,137],environ:[42,139],equat:[99,105,134],error:[28,104],eta:137,euler:99,event:[24,52],exampl:[12,25,26,32,34,36,37,38,40,43,45,47,52,59,67,68,71,77,90,93,96,135],exe:157,exist:71,experi:59,extra:55,extrapol:112,f2py:157,faq:79,faster:52,fault:72,featur:93,fflag:42,fgmax:[32,33,67],fgmax_tool:33,fgout:[34,35,61],fgout_tool:35,figur:[52,79],file:[13,29,31,32,34,40,52,54,55,56,58,64,68,79,81,113,132,135,144,154,159],fileio:94,find:[13,67,79],finer:6,fix:[28,32,34,73,144],fixedgrid:144,flag2refin:112,flag:[5,6,63,67,112,135,142],flagregion:39,flow:[25,85],flowchart:10,fly:78,forc:[40,144],force_dry_init:40,fork:28,format:[32,34,74,154],formul:162,fort:[74,79],fortran:[22,25,31,37,40,41,42,58,82,104,113,157,159],found:68,frame:95,framework:56,friction:65,from:[13,19,20,22,25,28,30,33,35,38,40,43,48,55,60,67,81,86,90,97,135,156],front:67,full:25,fund:[4,83],further:92,fvmhp:43,galleri:[44,55,68],gaug:[45,52,61,95,158],gdal:52,gener:[18,22,30,33,35,48,55,60,123,124,125,126,127,128,129,130,144,156],geo:144,geoclaw:[5,15,16,18,22,25,29,40,46,47,48,49,50,52,73,76,80,109,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,135,138,144,148,149],geometri:91,geophys:25,get:[25,29,47,68],gfortran:[42,102],ghost:6,git:[28,51,55,58,82],github:[28,56],given:67,global:121,godunov:162,googl:52,gpu:53,grid:[6,16,32,33,34,35,54,61,73,91,144],guid:[5,28,55,56,110,111],guidelin:28,hack:76,hazard:49,hdf5:94,help:68,high:162,hint:[49,79,107],hll:134,host:29,how:[79,81,95],hpc3:76,html:[11,81],imag:[29,52],imagediff:113,implement:112,includ:[12,55],independ:89,indic:[67,93],init:137,initi:[6,40,67,98,105,137,144,159],input:[22,32,34,94,141,142],instal:[28,37,38,57,58,59,70,75,82,93,96,102,104,108,152,157],instanc:13,instanti:135,instruct:[28,59],integr:113,intel:42,interact:[81,90],interfac:75,intern:40,interpol:[32,34,69],interpret:38,iplotclaw:81,ipython:[38,90],issu:28,item:79,jupyt:[12,29,38,146],kaust:76,keep:51,kinemat:72,kml:52,kmltool:60,kmz:52,lagrangian:61,latest:28,latex:81,latitud:[50,52],launch:13,layer:134,level:[28,137,144],lflag:42,librari:[52,64],licens:[4,62,83],limit:89,line:[38,81,90,113,157],link:21,load:52,local:147,locat:45,log:[13,95],longitud:[50,52],machin:[29,161],make:[79,96,146,157],make_kml:135,makefil:[41,63,64,98,132],man:65,map:52,mapc2p:66,march:67,mask:67,mask_outsid:135,master:[18,28],math:87,matlab:68,matplotlib:102,maxfram:68,maximum:144,mesh:[6,25],method:[0,1,2,3,135,162],mhw:67,migrat:25,miss:134,model:[49,72,110,111,158],modif:40,modifi:[28,64,132],modul:[30,33,35,48,60,93,106,143,145,156],monitor:[32,144],more:[6,37,41],most:28,move:[29,30],multipl:52,name:[63,64],nearshor:69,need:52,netcdf:[54,70,74,94,154],never:28,next:[57,58,59,102],nose:102,note:[114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],notebook:[12,29,38,107,146],number:56,numpi:102,object:[91,140],obtain:102,okada:72,old:8,older:25,onli:67,open:56,openmp:73,oper:82,option:[52,58,81,96,98],order:104,osf:56,other:[17,18,23,24,29,32,55,79,122,123,124,125,126,127,128,129,130,131,135,137],out:[28,67],outdir:79,output:[32,34,63,67,68,70,73,74,85,94,95,113,132,141,142,144,157],overlai:52,overview:[25,140],own:[13,29,98],packag:[22,59,94,99],page:55,paper:17,parallel:[75,91,96,97,103],paramet:[22,45,79,81,105,141,142,144],particl:61,pass:96,patch:91,path:[68,108],pcolor:79,petclaw:[91,103],petsc:96,photo:76,pip:[59,82,157],pixel:113,plot:[3,13,22,25,32,34,45,47,50,52,61,63,68,70,77,78,79,80,81,90,96,97,113,140,146,157,160],plot_typ:3,plotax:52,plotclaw:68,plotdata:52,plotfigur:52,plotitem:52,point:[32,67],pointwis:133,polygon:135,port:86,post:78,potenti:134,ppflag:42,pre:42,prepar:56,prerequisit:82,previou:[24,55],previous_pts_chosen:67,print:142,printfram:81,problem:[8,86,98,105,159],procedur:[32,34],process:[32,78],processor:42,produc:[34,81],propag:162,provid:79,pth:108,publish:52,pull:28,pyclaw:[18,22,25,36,38,59,83,84,85,86,87,88,89,90,91,93,94,95,97,100,101,102,103,105,106,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,152],pyflak:28,pylint:28,pypi:56,python:[20,81,82,102,107,108,126,155],pythonpath:[108,139],q0002:74,qinit:[109,144,154],quantiti:[85,95],quick:[59,110,111],raw:74,read:[34,40,135],readm:11,recent:[24,28],rectangl:[39,135],rectangular:72,refer:[17,25,53,93,107],refin:[6,16,25,39,112,144],region:[67,112,135,144],registr:[34,54],regress:113,relat:135,releas:[55,56,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],remot:28,remov:52,replac:64,report:28,repositori:[12,18,23,28,51,55,56,122,123,124,125,126,127,128,129,130,133],request:28,requir:[52,159],resolut:[52,162],resourc:25,restart:[29,85,132],result:[13,47,52,70,97,146],richardson:112,riemann:[18,25,93,98,99,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,133,134,159],roe:134,routin:[15,22,64,80,109,138,148,149],rst:11,rule:[39,135],run:[29,36,37,38,47,85,87,90,96,97,113,141,142,157],ruptur:72,sage:87,same:64,sampl:[40,67,143,145],save:[95,146],scienc:56,script:98,sea:[137,144],sea_level:136,search:68,seismic:137,select:135,serial:[91,103,113],servic:13,session:24,set:[47,68,79,81,98,136,137,139,157],setaux:[138,159],setplot:[34,68,79,81,140],setrun:[22,45,141,142,143,144,145],shallow:[99,134],share:146,sharpclaw:101,shelf:135,shoot:[28,68],shore:67,should:75,signatur:101,simpl:[32,34,135],simul:85,simultan:113,sinc:18,size:79,slip:72,slu:135,softwar:[4,17],solut:[79,85,100],solv:105,solver:[75,85,93,98,99,101,105,133,134,159],some:[29,79,144,158],someth:79,sourc:[63,72,98,151,158,159,162],space:162,spatial:[137,159],special:[3,142],specif:[32,34,105,113,144,150,159],specifi:[39,61,79,81,112,140,141,142,144,159],sphere:16,sphinx:[55,147],sprint:[24,76],src1d:[148,159],src:[149,159],start:[25,29,47,110,111],state:103,statist:153,step:[57,58,59,102,159],stop:[13,29],storm:[110,144,150,151],stream:24,style:[32,55],subfault:72,submodul:12,support:[107,126],surfac:[50,137],surg:[110,151],sys:108,system:82,t0002:74,tabl:[25,93],tag:55,tar:[56,58],term:[65,98,159,162],test:[28,37,38,96,102,113,152],than:79,thi:[4,55],tide:158,tile:52,time:[141,142,144,153,159],tip:[28,41,50,52,96],titl:79,tool:[20,25,45,50,61,113,150,155],top:28,topo:155,topofil:67,topographi:[30,40,47,52,67,144,154,156,158],topotool:156,track:[51,61],transfer:13,travi:113,triangular:72,troubl:[28,68,157],troubleshoot:[59,104,157],tsunami:[49,52,111,158],tutori:[24,105,107],tvd:89,two:134,understand:85,univers:76,upcom:24,updat:[28,55,56],usag:40,use:[75,137],used:157,useful:[29,134],user:[16,24,29,75,159],using:[49,61,68,159],utah:76,util:[48,60,106],valu:[32,85],vari:[137,159],variabl:[42,63,98,139],version:[25,29,41,51,53,55,56,59,108],view:13,virtual:161,visclaw:[18,25,61,78,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],visit:160,visual:[25,52],washington:76,water:[50,99,134],wave:[133,162],web:13,webpag:[13,55,146],what:[79,81,95,134],when:95,where:95,which:[75,108],whichclaw:108,work:[4,33,35,90,155,156,159],workflow:28,workshop:[24,76],write:[67,98,113,135],written:95,your:[13,28,29,37,52,96,98,102,146,152],zenodo:56,zone:67}}) \ No newline at end of file diff --git a/dev/storm_module.html b/dev/storm_module.html index e2d9ee5a0..eb224793c 100644 --- a/dev/storm_module.html +++ b/dev/storm_module.html @@ -586,7 +586,7 @@

    Navigation

    -

    System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

    +

    System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

    Field list ends without a blank line; unexpected unindent.

      @@ -617,7 +617,7 @@

      Navigation

      -

      System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

      +

      System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

      Field list ends without a blank line; unexpected unindent.

      - +
      • clawpack.pyclaw.fileio.netcdf (module)
      • clawpack.pyclaw.limiters.tvd (module)
      • clawpack.pyclaw.util (module) +
      • +
      • clawpack.riemann.acoustics_1D_py (module) +
      • +
      • clawpack.riemann.advection_1D_py (module) +
      • +
      • clawpack.riemann.burgers_1D_py (module) +
      • +
      • clawpack.riemann.euler_1D_py (module) +
      • +
      • clawpack.riemann.shallow_1D_py (module)
      • ClawPlotAxes (built-in class)
      • @@ -336,6 +352,16 @@

        D

        E

        + @@ -365,6 +391,8 @@

        F

        + - + + + + + + + + + + + + + + +
      • setup_gauge_files() (clawpack.pyclaw.geometry.Grid method) +
      • +
      • shallow_exact_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_fwave_1d() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_hll_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_roe_1D() (in module clawpack.riemann.shallow_1D_py)
      • SharpClawSolver (class in clawpack.pyclaw.sharpclaw.solver)
      • @@ -922,12 +958,12 @@

        S

      • slip (clawpack.geoclaw.dtopotools.SubFault attribute)
      • +
        -
      • Setting sealevel
      • +
      • Setting sea_level
      • Set Eta Init – spatially varying initial surface elevation
        • Default behavior, adjusting sea level by seismic deformation
        • Other use cases
        • diff --git a/geoclaw_util_module.html b/geoclaw_util_module.html index 4b243f66b..0d88cf20d 100644 --- a/geoclaw_util_module.html +++ b/geoclaw_util_module.html @@ -112,7 +112,7 @@

          Navigation

          Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          Unexpected indentation.

          diff --git a/kmltools_module.html b/kmltools_module.html index 7218f6351..084a9f866 100644 --- a/kmltools_module.html +++ b/kmltools_module.html @@ -110,6 +110,7 @@

          Navigation

        • topo2kml - create a kml outline for each topo grid specified in setrun

        • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

        • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

        • +
        • fgout2kml - create a kml outline for each fgout grid specified in setrun

        • make_input_data_kmls - make kml files for many things specified in setrun

        • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

        • png2kml - create kml file wrapping a png figure to be viewed on GE

        • @@ -189,6 +190,28 @@

          Navigation

          +
          +
          +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
          +

          Create a KML box for each fgout grid specified for a GeoClaw run.

          +
          +
          Inputs
          +
            +
          • rundata - an object of class ClawRunData or None

            +

            If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

            +
          • +
          • fname (str) - resulting kml file.

          • +
          • verbose (bool) - If True, print out info about each region found

          • +
          • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

          • +
          +
          +
          +
          +
          clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
          @@ -336,7 +359,7 @@

          Navigation

          Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          Unexpected indentation.

          @@ -344,7 +367,7 @@

          Navigation

          dpi * y_inches = dcp * y_cells

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          Block quote ends without a blank line; unexpected unindent.

          where x_cells, y_cells are the number of cells in each direction.

          @@ -354,14 +377,14 @@

          Navigation

          annotate the figure befor saving it as a png file, which should then be done with:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          Unexpected indentation.

          plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          Block quote ends without a blank line; unexpected unindent.

          The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          Field list ends without a blank line; unexpected unindent.

          If force_dry is an array of the same shape as topo.Z then another png diff --git a/objects.inv b/objects.inv index 866206076..8e9c58d73 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/okada.html b/okada.html index dd8363f25..7c0366d6f 100644 --- a/okada.html +++ b/okada.html @@ -20,7 +20,7 @@ - +

        diff --git a/py-modindex.html b/py-modindex.html index e604ae3d0..c1597a206 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -143,6 +143,31 @@

        Python Module Index

      •     clawpack.pyclaw.util
            + clawpack.riemann.acoustics_1D_py +
            + clawpack.riemann.advection_1D_py +
            + clawpack.riemann.burgers_1D_py +
            + clawpack.riemann.euler_1D_py +
            + clawpack.riemann.shallow_1D_py +
        diff --git a/pyclaw/rp.html b/pyclaw/rp.html index 07fe388ba..e6a91c4bd 100644 --- a/pyclaw/rp.html +++ b/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/searchindex.js b/searchindex.js index 6025e43f2..3ceb96265 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[154,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[148,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[148,5,1,""],Storm:[148,0,1,""],available_formats:[148,3,1,""],available_models:[148,3,1,""],fill_rad_w_other_source:[148,3,1,""],make_multi_structure:[148,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[148,2,1,""],plot:[148,2,1,""],read:[148,2,1,""],read_atcf:[148,2,1,""],read_geoclaw:[148,2,1,""],read_hurdat:[148,2,1,""],read_ibtracs:[148,2,1,""],read_imd:[148,2,1,""],read_jma:[148,2,1,""],read_tcvitals:[148,2,1,""],write:[148,2,1,""],write_atcf:[148,2,1,""],write_geoclaw:[148,2,1,""],write_hurdat:[148,2,1,""],write_imd:[148,2,1,""],write_jma:[148,2,1,""],write_tcvitals:[148,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[154,0,1,""],create_topo_func:[154,3,1,""],determine_topo_type:[154,3,1,""],fetch_topo_url:[154,3,1,""],get_topo:[154,3,1,""],read_netcdf:[154,3,1,""],swapheader:[154,3,1,""],topo1writer:[154,3,1,""],topo2writer:[154,3,1,""],topo3writer:[154,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[154,2,1,""],Y:[154,2,1,""],Z:[154,2,1,""],crop:[154,2,1,""],delta:[154,2,1,""],extent:[154,2,1,""],generate_2d_coordinates:[154,2,1,""],generate_2d_topo:[154,2,1,""],in_poly:[154,2,1,""],interp_unstructured:[154,2,1,""],make_shoreline_xy:[154,2,1,""],plot:[154,2,1,""],read:[154,2,1,""],read_header:[154,2,1,""],replace_no_data_values:[154,2,1,""],replace_values:[154,2,1,""],set_xyZ:[154,2,1,""],smooth_data:[154,2,1,""],write:[154,2,1,""],x:[154,2,1,""],y:[154,2,1,""],z:[154,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":141,"00000e":141,"0000ff":[3,59],"001000e":141,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":158,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":154,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,138],"1drad":157,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,139,141,143,157],"2013it":17,"2018300n26315":148,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":151,"27t06":59,"27t07":59,"288e":151,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,139,141,143,157],"301e":151,"30x30":51,"34kt":148,"360x360":51,"373e":151,"3rd":[96,99,132],"3x3":39,"40000000e":72,"4th":99,"50kt":148,"5_x_x":55,"5d0":157,"5e3":142,"5r01ar53652":4,"639s":[36,150],"64kt":148,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,139,140,142],"break":[28,30,48,51,59,70,111,118,135,142,154],"case":[5,6,8,13,16,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,126,130,133,134,140,142,148,152,154,155,157,160],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,130,133,138,139,140,141,142,143,154],"const":32,"default":[0,1,2,3,13,22,28,30,32,41,44,45,47,49,50,51,53,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,126,130,134,140,141,142,148,152,154,157],"export":[41,51,57,58,67,71,94,102,137],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,130,132,139,141,143,154],"float":[3,30,32,44,47,59,86,89,101,104,139,140,142,143,148,154],"function":[0,1,2,3,5,7,15,17,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,126,131,133,135,136,138,139,140,141,142,143,148,152,153,154,155,157],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,111,119,124,131,132,133,134,135,139,140,141,142,143,152,154,156,158],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,139,140,142,148,154],"long":[28,30,47,48,51,69,91,118,126,140,154],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,139,140,142,148,152,154,157],"ond\u0159ej":4,"public":[4,13,21,129],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,131,133,139,141,143,148,150,154,157,160],"short":[24,48,96,126],"static":[30,70,121],"super":[23,28,121,154],"switch":[29,51,58,96,106,111,120,134,156],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,130,131,133,135,136,139,140,141,142,143,148,154],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,106,111,139,150,154,155],"var":[0,3,13,27,148],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,131,135,142,156],AND:[61,81],ARE:[61,81],AWS:13,Added:[87,113,115,117,118,120,124,127],Adding:[25,82,90],And:[6,20,54,57],Are:112,Axes:[138,148],BCs:[141,143],BUT:[61,81],But:[13,32,39,51,77,102,114,121,135,137],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,138,139,140,141,142,143,145,148,149,151,152,154,156,157,160],GIS:[51,119,152],Going:[13,25,91],Ike:108,NOT:[59,61,77,81],Not:[30,51,89,119,126],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,154],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,152],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,105,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],Their:81,Then:[13,16,28,29,30,44,54,55,56,63,66,70,71,79,83,86,94,100,101,102,106,131,133,154,155],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,80,93,100,108,120,121,138,139,149,150,157,159],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,59,60,63,66,67,73,77,79,83,88,91,92,93,95,101,103,107,109,110,111,113,119,120,121,122,126,130,140,144,148,149,152,156,160],USE:[61,81],Use:[30,51,91,99,121,132,139,141,143,152,154],Used:132,Useful:[1,3,132,139],Uses:[30,132,154],Using:[0,1,2,3,7,17,22,41,42,51,53,75,76,77,79,89,90,91,123,139,146,147,151,154,155,160],WCS:156,Will:98,With:[6,22,28,44,49,51,58,66,73,110,118,131,133,139],__________________o:154,__file__:106,__future__:119,__init__:[55,96,106],__main__:[141,143],__name__:[141,143],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,155],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,138,144],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:131,_pyclaw_io:86,_static:54,_storm_modul:149,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,148,154],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,131,138,140,141,142,152,155,157,160],aboutu:30,abov:[3,5,13,14,16,20,28,32,35,36,38,39,40,41,44,48,51,53,54,55,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,110,119,121,126,131,133,135,137,138,139,141,143,148,151,152,154,157],abs:[30,52,96,104,110,133,154],absolut:[93,110,111,121,140,141],absolute_import:119,abspath:[5,38],abstol:104,academ:102,acceler:52,accept:[44,83,93,99,139],accept_reject_step:99,access:[0,17,27,29,55,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,152],account:[13,24,28,55,85,94],accumul:[44,119,130],accur:[5,48,70,91,99,126,139,157,160],accuraci:[44,64,73,141,143],achiev:[20,84,146,147],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,131,141,157],acoustics1dheterogeneoustest:[36,150],acoustics3dheterogeneoustest:[36,150],acoustics_1d:[83,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,150,157],acoustics_1d_homogen:[88,111],acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[141,157],acoustics_3d_heterogen:[36,150],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,152,154],acsza1:30,acszb1:30,act:[87,154],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,142],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,134,142],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,126,131,133,138,139,140,142,157],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,57,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,132,143,148,152,154,158],add_colorbar:[30,154],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[141,143],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,130,135,139,140,142,148,151,154,158],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,23,24,28,29,32,36,37,38,45,46,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,126,128,131,133,139,143,148,151,152,157,158],addition:[94,148],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,135,139],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,134,139,157],adjust_fgmax_1d:33,admiralti:133,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,139,140,157],advantag:[12,76,92,105,111,133],advect:[17,77,91,94,131,132,143,157],advection2dannulustest:[36,150],advection_1d_example1:63,advection_2d_annulu:[36,150],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:157,advection_3d_swirl:[117,151],advertis:126,advis:[34,61,81],affect:[22,62,119,120,126,139,152,155],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,132,135,139,140,141,143,148,157],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,127,152,155],against:[104,111,118,150],agenc:[4,56,148,149],agency_pref:148,agre:[12,28,39,53,131,151,154,157],agreement:48,ahmadia:[4,17,81,91],aht:134,aid:84,aim:28,aks2203:4,albada:87,alg:141,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,131,133,139,141,143,154],align:[32,39,51,59,66,124,126,142],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,91,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,129,130,131,132,133,135,138,139,140,141,142,143,144,149,150,151,152,154,155,157],alloc:[20,99,117,126,140],allocat:117,allot:59,allow:[4,6,13,22,27,28,29,32,38,39,44,45,47,50,51,53,54,58,64,66,67,70,71,73,76,77,86,91,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,126,131,133,139,141,142,143,144,148,152,154,156],alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,57,68,70,106,110,117,130,133,135,142,148,156],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,58,59,60,66,79,80,94,98,100,103,105,114,122,137,154],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,43,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,139,140,141,142,143,144,146,147,148,149,150,151,152,154,155,156,157,159,160],alter:51,altern:[30,35,36,44,47,51,56,60,62,67,76,91,94,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,128,154],alwai:[16,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,126,135,141,142,143,152,157],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,131],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,126,135,138,139,141,143,151,157],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:141,amr_levels_max:[32,110,140,141],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,43,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,80,91,100,106,107,110,111,130,131,133,136,137,139,142,146,147,150,151,155],amrdata:[5,22,32,110,124,126,140,141,142],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,100],anal:17,analog:[139,140],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,57,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,130,133,134,135,138,139,140,142,148,157,160],anim:[12,16,42,51,117,124,125,144],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,58,59,72,76,80,88,99,102,111,121,148,157],answer:24,anyth:[3,6,28,29,58,63,111,121],anywher:110,aoml:148,apach:13,apdq:[97,131],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,43,70,108,109,116,120,121,122,123,124,125,126,127,128,132],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,59,62,65,77,93,98,101,119,126,142,144,152],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,130,131,141],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,130,139,142,157],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,43,45,46,55,57,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,131,133,135,136,139,142,146,147,152,154,155,157,158],appreci:81,approach:[5,7,13,28,29,38,44,54,57,69,76,84,91,94,96,104,110,117,119,120,122,131,132,138,142,157,160],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,57,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,131,134,139,148,157,160],approv:48,approxim:[6,16,25,33,48,51,70,131],april:[24,124,125,129],apt:[13,80],arbitrari:[32,59,99,113,133,142],arbitrarili:66,arc:134,arcgi:154,architectur:94,archiv:[12,21,36,51,55,111,144,150,154,156],arcminut:[70,152],arcsecond:[45,152],area:[15,22,45,99,108,119,135,136],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,131,133,138,139,140,148,154,157],argv:[141,143],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,140,141,148,154,157],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,126,131,132,133,136,139,140,141,142,143,148,152,154,157],arrang:154,arriv:[22,32,34,39,45,119,134,135],arrival_tol:32,articl:[4,17,91,144],artifici:[16,135],arxiv:52,asc:154,ascii:[44,53,67,83,86,93,98,119,130,139,141,143,152,158],ascii_output_format:68,ask:24,ask_us:154,aspect:[12,24,29,43,48,49,67,154],assert:[141,143],assess:[4,48,134],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,103,104,110,117,133,134,139,142,148,149,152,154,156,160],assumpt:[51,54],asteroid:4,astronom:134,atcf:[108,121,148,149],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,127,148,154,155],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,130,138,139,140,142,148,154],attributeerror:77,aug:[17,122],augment:[66,132],august:[24,121,129],austin:4,author:[17,25,45,48,87,91,92,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,126,139,140,142,152],autonom:5,aux1:32,aux1d:157,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,131,132,136,139,140,141,142,143,157],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,131],aux_out_field:44,aux_r:[97,131],aux_time_dep:99,aux_typ:[5,140,141],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,131,139,141,143,157],auxillari:[92,98],auxl:131,auxr:131,auxtyp:141,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,58,62,66,67,73,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,131,132,134,139,141,142,144,148,149,152],available_format:148,available_model:148,averag:[4,6,15,17,32,39,45,48,49,53,67,101,114,126,131,135,136,152,154,157],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,126,128,130,139,142,160],awai:[28,134],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,138,148,154],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,133],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,157],b4step2:[15,136,157],b4step3:15,b4stepn:157,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,138],backward:[5,28,30,47,59,70,92,114,115,154],bad:[106,111],bai:[66,134,156],balanc:[6,17,73,120,132,146,147],bale:17,balelevmitross02:[4,17,139,160],ball:154,band1:154,band:[51,154],bar:[13,54,148],barrier:[66,104],base:[5,6,13,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,126,134,139,140,141,142,143,148,154,157,160],base_subfault:30,baselin:51,basemap:148,bash:[41,51,57,58,67,71,94,106,137],bash_profil:[102,137],bashrc:[13,41,102,137],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,99,111,131,132,148,160],basin:108,bathymetri:[15,45,48,51,59,108,119,121,132,134,136,142,152,154],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,139,141,143],bc_upper:[16,83,96,103,139,141,143],bcn:[6,16,143,157],bcnamr:[6,16,121,139,141,157],beach:[39,66,132],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,131,134,139],becom:[48,102,160],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,126,127,130,131,133,139,140,142,152,154,157],befor:[1,3,4,6,14,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,129,131,134,135,139,140,142,152,154,155],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,103,132,148],begin_d:47,behav:44,behavior:[45,54,110,111,118,124,126],behaviour:83,behind:[39,66,135],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,131,133,135,139,142,148,155,157],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,28,29,30,32,39,45,51,52,54,55,58,59,64,67,70,79,81,83,85,93,103,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,136,137,138,139,140,141,142,143,146,147,148,152,154,157],benchmark:48,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,56,62,69,71,76,77,92,96,108,109,110,111,121,129,131,142,145,148,152,157],besttrack:148,beta:[47,87,99,143],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,126,127,142],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,131,133,134,139,140,141,142,143,144,148,151,152,154,156,157],bewar:[106,154],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,152],bin:94,binari:[5,41,55,61,68,81,92,93,95,118,130,139,141,154,158],binary32:92,binary64:92,bind:[28,51,76,84,94],bisect:[140,141],bit:[16,22,30,55,92,94,102,132],bitbucket:94,black:[3,44],blank:[3,59,148],blast:120,blob:[118,132],block:[7,30,39,59,70,72,73,83,92,101,104,111,157],blossei:4,blue:[3,11,39,44,59,66,77,133,148,154],bmatrix:132,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:148,bomb:[62,71],book:[4,12,17,25,29,80,98,131],bool:[0,1,2,3,47,59,86,92,98,99,101,104,142,148,154],border:[67,157],bore:48,both:[3,16,28,30,33,35,36,38,39,44,48,53,56,58,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,131,132,133,135,139,140,141,143,146,152,157],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,136,146,147],boulder:24,bound:[33,84,87,94,133,139,154],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,133,139,141,143],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,133,154],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,127,128,129,136,146,147],brew:80,brief:[4,55,132,142],briefli:160,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:154,broken:[19,20,28,68,70,111],brought:28,brown:[81,154],brows:[11,24,42,51,67,144,157],browser:[13,28,29,35,36,51,54,144],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,140,141,154],buffer_length:154,buffer_s:[30,70],bug:[4,8,12,22,24,41,51,64,71,77,81,116,117,118,119,121,126,127,128],build:[4,17,28,29,54,55,67,84,94,104,120,133],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,146,147],bulk:[19,83,103,131,141,157],bull:[17,30],buoi:45,burger:[91,131,157],busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_node:89,c_nodes_with_ghost:89,cach:[22,47,55,79,81,124,140],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[131,157,160],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,99,114,119,154],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,131,133,135,137,139,141,142,143,148,154,157],call_before_step_each_stag:99,call_setplot:77,callabl:[91,104],cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,152,154,155,156,157,158,160],cannot:[52,58,92,126,135,148],canopi:100,capa:98,capa_index:[139,141,143],capab:154,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,22,32,34,48,52,66,73,84,91,113,118,119,121,122,123,124,125,154,156],capac:[15,136,139,140,141,143],captur:[32,48,133,152],car_nam:148,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,142],cartopi:148,cascad:4,cast:154,cat_nam:148,catalog:156,categor:148,categori:148,category_color:148,caus:[22,48,51,54,61,62,73,79,81,102,111,118,119,120,122,126,138,140,152,154],caut:87,caution:48,cautionari:[25,45,63,142],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:154,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:154,cdot:[64,96,133],ceas:105,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,126,131,134,135,136,139,140,141,142,143,149,151,152,157,160],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,152],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,133,135,140,141,142,148,149,152,157],centerlin:30,centers_with_ghost:89,central:[139,148,149],central_pressur:148,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,133,139],certainli:94,certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,139,141,142,143],cfl_desir:[99,139,141,143],cfl_max:[99,139,141,143],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,129,131,135,136,139,140,141,142,143,146,147,152,155,157],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],changes_to_mast:55,channel:24,chapter:[16,131,139,157],char_decomp:99,charact:47,characterist:99,charg:13,chava:142,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,80,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,133,135,136,140,141,146,147,148,154,155,156,157],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55,57],checkpoint:[25,44,118,119,121,123,126,139,141,143],checkpt_interv:[139,141],checkpt_styl:[118,130,139,141],checkpt_tim:[139,141],checksum:92,chen:[30,156],chile2010:[51,109,110,113,116,122,152],chile2010_adjoint:5,chile2010_fgmax:32,chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[141,143],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[130,139,141,143],choic:[16,45,76,99,139,141,142,143,157],choos:[0,7,56,58,59,70,96,139,142],chose:64,chosen:[3,29,32,38,39,51,53,66,103,110,126,134,140],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,129],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:143,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,43,46,55,56,57,58,63,69,71,72,73,80,81,83,86,88,89,90,91,92,96,106,107,111,130,131,136,137,140,142,147,155,157],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,19,20,22,24,28,30,32,33,35,36,37,38,40,41,43,44,45,47,49,50,52,54,55,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,131,135,136,141,142,143,145,146,147,150,151,152,154,155,157,158],claw_1dnoncon:160,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[139,140,141,142,143],claw_topo_download:154,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,130,139,140,141,142,143],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,130,131,133,137,139,140,141,142,144,145,148,150,152,154,155,157,158,160],clawpack_gpu:52,clawpack_src:[58,106],clawplotax:[1,2,3,27,77,121,126,138],clawplotdata:[2,3,27,44,51,77,79,86,138],clawplotfigur:[0,1,51,77,138],clawplotitem:[0,1,7,22,27,76,78,118,121,138],clawrundata:[5,44,59,122,130,139,140,141,143],clawsolut:1,clawsolv:[99,131],clawsolver1d:[83,86,89,99,103,131],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,56,57,62,106,111,137,139,140,141,143,154,155],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,67,79],clearer:[123,126,127],clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,133],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,129],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,154],clone:[12,18,23,24,42,52,54,55,58,80,94,100,109,155],close:[13,39,51,54,59,66,67,92,110,124,140,148],close_fig:59,closer:[70,141],closest:148,cloud:13,cluster:[6,17,110,140,141],clustering_cutoff:[110,140,141],cma:148,cmap:[39,51,59,66,77,133,154],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,32,51,110,119,126,139,152,157],coarsen:[53,110,121,122,140,152,154],coarsen_method:53,coarser:[3,16,53,119,135,139,140,157],coarsest:[6,51,72,113,130,139],coast:[39,66,110,135,154],coastal:[48,124,134,135,142,152],coastlin:[32,51,66,124,133,142,156],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,61,62,63,64,68,69,70,71,72,73,75,77,79,80,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,126,130,131,132,133,137,139,140,141,142,143,144,148,150,151,152],code_of_conduct:121,coeffici:[5,64,96,99,101,102,103,131,142],colella:[6,17],collabor:[51,144],collect:[12,25,26,28,30,32,70,76,83,99,144],collela:120,color:[3,30,39,51,59,66,67,76,133,138,148,154],colorado:24,colorbar:[3,39,59,66,121,124,133,154],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,154],column:[10,30,32,44,48,60,93,117,133,154],column_list:30,column_map:30,com:[12,13,23,24,26,28,29,52,54,55,57,58,92,94,96,100,116,118,119,120,129,132],combin:[20,54,59,118,156],combinatori:111,come:[3,28,77,79,88,94,99,117,152,157],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,131,137,138,139,140,152,154],commenc:130,comment:[5,11,24,49,55,120,130],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,155,157],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,152],compactli:133,compar:[5,22,36,44,48,51,55,77,93,110,111,134,140,142,150,156,160],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,114,115,119,120,154],compens:154,compil:[13,25,35,36,40,46,58,63,71,73,79,80,84,91,92,96,100,104,113,131,132,137],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,133,138],compon:[3,16,20,22,25,36,44,57,58,67,72,76,96,98,100,101,110,117,126,132,139,140,141,152,157],compos:[30,83],comprehens:111,compress:[30,92,154],compris:[22,91,154],comput:[3,4,5,6,13,16,17,27,29,30,32,33,39,44,47,51,53,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,106,108,110,113,114,118,119,123,126,131,135,139,141,142,143,149,152,157,160],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,131],concern:[22,45,140],conclus:[4,51],conda:51,condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,134,139,141,142,143],conduct:121,conf:[54,55],confer:24,config:94,config_fc:155,configur:[77,83,94,154],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,152],confus:[3,53,58,106,126,131],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,133],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,132,157,160],consid:[6,39,48,58,66,84,106,137,144,154],consider:[48,83],consist:[6,25,32,47,51,55,59,94,105,119,131,133,142,152,157],consol:[13,93,142],consolid:117,constant:[30,32,48,59,64,94,131,132,133,135,142,154,157],constant_storm_modul:117,constrain:110,constraint:[39,44,133,140,160],construc:59,construct:[22,30,32,53,83,89,104,148,149,152],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,43,44,45,47,49,50,51,52,53,54,55,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,91,92,94,96,97,98,99,101,103,104,105,106,110,111,113,114,121,122,129,131,133,138,139,142,144,148,152,154,155,157],containing_rect:30,contains:29,containt:130,contamin:139,contan:51,content:[4,6,23,51,55,73,84,91,142,152,157,158],context:[27,51,157],contigu:[72,92,101,133],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,131,139,160],contour:[3,30,44,51,53,67,105,138,154],contour_color:3,contour_kwarg:[3,154],contour_level:[3,154],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,133],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,132,142],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,157,160],convens:152,convent:[3,22,30,46,53,70,97,152],converg:[66,76],convers:[19,25,84,92,110,133,152,156],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,58,59,62,70,73,84,91,96,104,105,121,124,139,140,148,152,156],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,133,142,154],coordinate_specif:[30,70],coordinate_system:[15,60,136,142],coorind:154,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,135,136,140,144,146,147,152,157],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,142,146,147],coriolis_forc:[48,142],corner:[3,30,32,53,70,72,89,133,139,141,143,152,154],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,135,139,141,142,143],correctli:[28,32,84,90,117,142],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,131,133,134,139,140,141,142,143,148,152,156,157],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:132,could:[5,12,13,27,32,35,36,39,44,53,60,66,70,71,77,79,83,89,93,101,102,106,117,126,133,135,140,141,142,143,154,157],council:4,count:83,count_from_zero:83,counter:[104,154],counterclockwis:70,coupl:[119,160],courant:[4,6,110,120,139,140,141,143],cours:[13,26,32,44,46,60,70,94,95,103,105,108,142,152],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,135,141,152],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,151],crash:[118,139,140],creat:[0,1,2,3,5,6,7,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,126,133,138,139,140,141,144,145,148,154,156,157,158],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:154,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,141],critic:[51,93,131],crop:[53,154],cross:28,crucial:[51,152],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,130,134,138,139,140,141,142,143,148,149,152,154,156],current_data:[0,3,25,44,76,77],curv:[3,44,76,133],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,135],custom_bc:96,customari:93,cut:140,cutoff:[6,141],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,142],dalcin:81,dam:[51,135],dam_break:132,damag:[6,61,81],damiansra:96,dark:133,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,148],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,126,131,133,134,140,141,143,148,151,153,158],data_break:[39,66,154],data_fil:33,data_limit:[39,66],data_storm:148,data_typ:104,databas:[13,30,70,104,108,121,152],datadir:118,dataset:[152,154,156],date:[5,28,40,47,51,54,55,62,77,148,155],date_tim:47,datetiem:148,datetim:[47,148],datum:[47,48,134,142,156],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,148,154],dealt:[32,39],debug:[7,41,62,72,76,93,101,106,111,139,141],debugg:77,decemb:[18,128,129],decid:[83,99],decim:[47,59],decimc:148,decis:51,declar:[20,22,101,126,157],decompos:[72,131,160],decomposit:139,decor:104,decoupl:54,decreas:[44,135,152],deduc:152,deep:[5,66],deeper:[133,142,152],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,141,143,148],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,126,131,141,143,148,152,154,155,157,160],definit:[30,67,83,110,116],deform:[17,30,33,45,70,156],deg2dm:59,degener:133,degre:[30,47,51,59,70],delet:[20,28,58],delimit:30,delin:142,delta:[87,89,96,99,131,154,157,160],delta_i:154,delta_limit:154,delta_x:154,dem:[32,45,53,59,121,152,154,156],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,131,154],dens:149,densiti:[86,93,101,103,140,141,157],depart:[4,148],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,62,64,67,70,77,82,92,97,98,99,104,106,110,121,135,140,142,154,155,157,160],deprec:[7,30,34,54,58,117,121,142,152,154],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,132,134,135,142,152],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,57,59,60,62,63,66,67,70,72,73,76,77,78,89,91,92,98,104,108,110,111,119,122,123,131,133,134,138,139,140,142,148,149,152,154,156,157,160],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,91,92,104,108,110,131,132,142,148,152,160],design:[4,27,28,51,81,83,103,133,156],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,135,137,139,140,141,143,148,152,154,155],desktop:94,destin:51,detail:[4,5,10,16,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,57,58,61,62,66,67,70,73,77,81,86,87,88,89,91,92,93,94,95,96,97,99,109,110,111,114,119,121,126,131,133,138,139,142,144,148,152,155,156,157,160],detect:[51,62,92,100,104,155],deterimin:[142,154],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,101,106,110,114,118,119,130,133,134,138,139,140,142,154,157],determine_topo_typ:154,dev:[18,24,28,54,55,94,121,122,127,128,129],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,126,131,134,135,141],dict:[30,86,92,97,98,101,148,154],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,148,152,154],dicuss:30,did:[121,126,133,152],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],differ:[1,3,6,7,12,15,16,22,28,30,31,35,36,39,44,46,48,50,53,57,59,62,64,66,67,70,71,76,79,83,84,86,88,89,91,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,126,127,131,134,135,136,137,139,140,141,142,146,147,152,154,155,156,157,160],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,154],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,131,139,140,141,143,154,157],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,141,142,143,154,157],dimensional_split:[89,117,139,141,143],dip:[30,70],dir:[55,94,158],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,131,139,140,142,154],directli:[8,19,23,32,48,57,67,70,77,79,83,84,87,91,101,104,106,121,154,158],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,43,44,45,47,50,51,54,55,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,130,131,135,136,137,138,139,140,144,146,147,150,151,152,155,157,158],directorti:108,disabl:[49,100,142],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,160],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,66,70,92,103,105,106,110,119,121,131,142,160],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,135,142,156],displai:[1,13,35,36,40,44,51,59,77,93,111,142],display_format:[44,60],display_landfall_tim:142,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,142,152,154],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,81,99,105,124],disturb:51,distutil:84,divid:[110,139],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,152],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,126,127,128,145],docker:[18,25,55,56,120,121,122,123,124,125,126,127,128,159],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,127,128,129,138,141,158,159],dodsc:[39,66],doe:[4,5,11,16,20,27,28,39,40,48,51,53,54,58,67,73,77,80,89,98,101,104,110,111,114,119,123,126,130,131,132,135,148,154,155,157],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126,127,128,129],doing:[6,11,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,140,141,143,152],don:[13,27,28,54,55,77,93,94,100,111,141,155],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,56,59,62,66,67,70,76,77,79,83,87,88,91,104,110,114,118,119,123,130,131,133,138,140,142,151,154,155,156],donna:[4,17],donnabois:4,donor:[139,141,143],dontflag:110,dot:[40,44,51,58,59,62,155],doubl:[67,84,89,104,131,140],down:[13,30,93,118,148,152,154],download:[12,13,28,29,30,36,37,39,45,51,55,57,58,68,88,94,100,121,122,129,150,154,155,156],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[140,141],dq_src:[96,99],dqdt:99,draft:55,drag:142,drag_law:142,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,138],driver:[20,63],drop:[13,54,80,124,126,135,139],dry:[16,17,25,32,45,124,127,132,135],dry_point:39,dry_points_sum:39,ds824:148,dst:59,dt_check:32,dt_initi:[113,139,141,142,143],dt_max:[139,141,143],dt_max_dtopo:[113,142],dt_variabl:[139,141,143],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,126,135,142,152,154,156],dtopo_data:[113,142],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,142],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,152,153],dtopotools_exampl:[30,70,109],dtopotyp:[142,152],due:[17,24,30,39,47,70,111,120,121,126,135,155],dummi:[84,99,157],dump:[72,139],dumpgaug:117,duplic:[77,116,130],durat:[30,126,134],dure:[5,22,32,39,44,59,70,73,113,134,135,141,142,143,152],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73,140],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:148,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,130,131,132,133,135,138,139,140,141,142,143,148,151,152,154,156,160],each_fram:44,each_gaug:44,ear:4,earli:[6,20,135],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,152,154],earth:[25,39,45,52,59,66,70,117,119,127,133,142],earth_radiu:142,earthquak:[25,30,45,48,109,135,142,149,152],eas:59,easi:[4,6,11,29,38,58,67,84,93,94,95,133,144,157],easier:[58,76,119,121,133,157],easiest:[19,28,41,73,77,79,110,157],easili:[3,13,28,32,51,54,67,77,84,89,100,104,111,124,144,148],east:[13,152],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[140,141],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,131,133,136,140,141,143,157],edgecolor:133,edit:[51,54,55,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,110,111,134,142,154],effici:[48,52,81,91,92,93,101,110,133,140],effort:92,efix:132,egg:[29,58],eigenvalu:5,eigenvector:[5,131,160],either:[12,16,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,91,92,93,99,104,106,110,111,117,118,119,121,131,133,135,140,142,148,152,154,157,160],elast:[13,70],element:[0,3,22,59,97,99,101,139,140,141,142],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,133,134,142,152,154,156],elif:[141,143],elimin:[8,22,66,84,106,121,142],ell:131,els:[27,28,58,66,101,121,133,135,143],elsewher:[5,24,39,91,133],emerg:4,emmanuel:142,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,139,148,154],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,103,105,108,110,118,119,121,130,132,133,141,143,148,151],end_dat:47,enddo:157,endian:92,endors:[61,81],energi:93,enforc:133,eng:148,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,140,149,151,152],ensembl:148,ensur:[35,36,37,67,108],enter:[67,92,94,100],enthought:[100,102],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,133,154],entireti:86,entri:[51,60,83,93,104,148],entropi:132,enumer:[89,99],environ:[14,25,28,35,36,37,40,50,51,54,57,58,67,69,71,73,95,102,104,106,119,154,155],envis:16,epd:102,eprint:[140,141],epsg:51,epsilon:87,eqn:160,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,130,133,139,141,143,152,154],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,131,139,141,142,143,152,157,160],equiv:160,equival:[6,44,52,53,59,60,123,152],err:141,errest:110,erron:[30,70],error:[5,16,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,126,140,141,148,155],escap:[110,141],escienc:13,especi:[28,51,84,96],esri:[53,152],essenti:[5,53,67,99,142,152],est:141,establis:121,establish:4,estim:[5,64,110,140,142],estimat:[5,141],eta:[25,30,32,39,44,45,110,117,124,134],eta_init:135,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,131,138,139,142,148,157],etopo1:[121,133,134,152,154,156],etopo_sample_2min:154,etopotool:[121,152],euler:[60,91,99,115,117,120,122,131,157],euler_2d:[35,37,91,96],evalu:[17,27,30,64,83,89,99,154,157],even:[39,48,51,58,61,70,81,104,110,124,140,141,152,155,157],evenli:[51,93],event:[33,45,48,59,61,70,81,134,135,139],event_tim:59,eventu:[13,45,124],ever:[138,142],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,131,135,137,139,141,143,148,152,154,157],everyth:[32,55,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,135],evolv:[22,83,86,99],evolve_to_tim:[83,99],exactli:[28,33,50,52,101,133,139],exam:77,examin:[16,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,20,22,24,27,28,29,30,38,40,41,43,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,105,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,151,152,154,155,156,157],exce:[32,51,110,140],exceed:[110,121],except:[22,27,30,39,92,97,104,124,139,142,148,152],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,131,137,155],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,114,120,121,135,148,154,156],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,103,104,105,111,121,122,124,126,141,142,143,148],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,126,139,144],explan:28,explicit:[104,140],explicitli:[32,63,67,91,126,139,155,160],explor:[4,59,77,79],expon:64,expos:[13,73],express:[4,30,61,81,100,133],extend:[8,16,22,39,59,66,67,89,121,133,135,142,152,154,160],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,126,139,150,154,160],extent:[38,39,48,56,59,64,66,67,83,89,101,113,126,133,142,152,154],extra:[3,51,132],extra_fil:54,extract:[51,55,92,148,154,156],extran:117,extrap:[16,96,103,139,141],extrapol:[5,7,16,22,96,103,121,139,140,141,143],extrem:[51,102],extropl:16,eye:[148,149],eye_loc:148,f2py:[58,73,84,91,96,104,131],f2py_flag:104,f2s:59,f49620:4,f77:[41,155],f90:[5,9,15,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,126,127,131,132,135,136,146,147,152,155,157],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,138],facilit:[44,60,91,111,117,119,124,144,148],fact:[51,92,101,105,110,135],factor:[6,51,140,142,151,154],faculti:30,fade:77,fail:[28,92,94,104,111,117,148],failur:[111,122,135],fairli:[16,48,119],fall:[134,142],fals:[0,1,2,3,5,30,39,48,49,50,51,59,66,86,89,92,98,99,101,104,118,119,124,130,132,139,140,141,142,143,148,154],famili:[89,99,141,143],faq:[13,25,76],far:[16,38,42,66,76,122,124,126],farther:66,fashion:130,faster:[123,124,126,154],fastest:[92,100],fault:[17,25,30,45,109,121,128,152,156],fault_plan:30,favor:[117,121,140,154],favorit:76,fbound:41,fc02:4,fcompil:155,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,129,142,148,152],februari:[24,120,126,127,129],feet:[134,156],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:154,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,134,150,152,157],fewer:[66,110,154],ff0000:[3,59],ff9999:138,ffff00:77,fflag:[28,40,62,68,71,84,104,152],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,142],fgmax_data:[32,142],fgmax_fil:142,fgmax_grid:[32,33,59,124],fgmax_interp:[32,126],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fid:33,field:[44,59,96,98,101,119,121,148,149],fig:[59,133],fig_kwarg:[30,154],fignam:[1,79],figno:[1,2,44,51,77,79,138],figsiz:[2,39,66,77,133,138],figur:[0,1,2,4,13,30,35,36,39,42,44,53,59,66,67,76,79,98,106,131,133,138,154],file1info:142,file2info:142,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,91,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,134,135,136,137,138,139,140,141,143,145,146,147,148,149,151,154,155,156,158],file_format:[44,92,98,148],file_prefix:[92,98],file_prefix_p:86,fileio:72,filenam:[31,51,117,154],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,135,139,148,151,154,157],fill_between:3,fill_mwr:148,fill_rad_w_other_sourc:148,fill_topo:154,fill_valu:[92,154],fill_var2:3,fill_wher:3,filpatch:[9,39,119,123,126],filter:[92,154],filter_region:154,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,58,62,68,70,73,76,81,88,96,101,102,104,106,108,121,148,155],fine:[3,32,33,39,54,69,73,91,96,110,119,126,133,135,139,140,142,152,157],finer:[3,7,32,51,110,113,114,133,139,140],finest:[3,32,39,44,121,151,154],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,133,151,152,157],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,37,38,39,51,54,55,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,131,132,133,135,139,141,142,148,150,152,154,160],first_test:35,fist:66,fit:[61,81],fix:[6,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,113,114,115,116,117,118,119,120,122,123,124,125,126,127,128,132,139,141,143,154],fix_links_top_level:54,fixedgrid:142,flag2refin:[5,7,22,140,141],flag2refine_tol:[5,110,140,141],flag:[7,12,13,22,25,28,29,38,40,41,45,52,58,68,71,84,102,104,106,117,122,126,141,142],flag_richardson:[5,110,118,140,141],flag_richardson_tol:[5,110,140,141],flagregion:[7,25,66,110,124,126,133,140,142],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,92],fletcher32:92,flexibl:[22,30,59,84,117,120,131,133,140],flood:[51,66,135],floor:[30,45,70],flow:[4,16,17,23,32,33,45,46,48,73,91,108,124,131,139,142,152,157],flowchart:[6,7,25],fluctuat:[97,99,160],fluid:[32,48,60,134],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,99,131,139,160],fly:25,fmt:3,fname:[39,59,126,133,141,142,143],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,35,36,37,39,44,46,51,53,54,55,56,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,126,130,131,133,137,138,139,140,142,148,150,151,152,155,157,159],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forbiddn:140,forc:[22,25,40,45,62,66,104,110,124,132,135,140,142,149,154,155],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:148,forestclaw:[106,117],forget:155,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,43,44,47,51,55,60,61,64,70,72,81,84,93,99,103,104,110,114,121,122,123,124,130,131,133,139,140,141,142,146,152,154,157,160],format:[1,3,5,13,14,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,126,139,142,148,149,154,156,158],format_str:44,former:[77,157],formerli:117,formul:[4,5,48,64,131,139],formula:[64,135],fort:[1,8,27,32,44,67,68,76,92,98,114,118,119,120,130,139,140,141,143,151,158],fortfil:[35,36],fortran:[6,9,11,13,14,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,106,117,118,119,121,122,123,131,132,137,140,141,142,143,148,150,151,152],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,157],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,130,134,138,148,154,155],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,103,160],fraction:[6,13,30,110,139,157,160],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,130,138,141,143,144],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,81,84,118,119],free:[13,51,62,70,81,85,96,100,102],frequenc:[60,70,99],frequent:[5,20,27,102,118],friction:[25,45,48,142,146,147],friction_depth:[64,142],friction_forc:142,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,43,44,45,48,51,52,53,55,56,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,129,130,131,132,134,135,136,139,140,141,142,143,146,147,148,149,150,152,155,156,157,158],frommm:87,front:[25,32,38,39,45,67,98,104,133],fset:101,fstr:67,ftrapuv:41,fuca:133,fuction:39,full:[5,6,14,55,57,58,59,77,86,93,99,103,137,152,157],fulli:[6,48,51,52,120,124,131,142,148,149],fun:104,func:[104,148],function_nam:104,fund:[25,56,91],funrol:104,further:[6,16,25,32,41,48,59,62,67,91,105,110,111,140],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,140,148,152],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,131,139,157,160],fwave:[89,99,131],g77:102,gain:92,galerkin:99,galleri:[12,25,35,36,37,42,55,75,76,88,91,105,111,116,120,144,150,157],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma:64,gap:154,garret:142,gas:6,gaug:[7,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,130,134,141],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,141],gaugeno:[44,60,141],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,130],gauss_pt:30,gaussian:[5,83,103,143],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,57,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,106,108,110,113,117,119,130,133,134,137,139,140,144,149,151,152,157,158],generate_2d_coordin:[39,66,154],generate_2d_topo:154,geo:[45,64],geo_data:[60,142],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,43,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,80,91,100,106,108,109,111,130,131,132,134,135,137,139,140,148,149,150,151,152,153,154,155,156,157],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:157,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,139],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geotiff:127,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,131,133,140,148,154,155],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,154],get_topo:154,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,58,71,80,82,102,137,155],gfortranbinari:100,ghamdi:4,ghost:[7,16,71,72,89,92,99,101,119,126,139,141,143,151,157,160],gica2937:30,gigabyt:152,git:[12,13,23,24,25,26,29,52,55,58,91,100,111,123],git_statu:50,github:[12,15,22,23,24,25,26,29,52,54,57,58,88,96,100,107,111,116,118,119,120,129,131,132,136,146,147,155],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,126,133,139,142,152,154,156],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,126,133,134,135,142,148,152,154,157],glitch:116,global:[6,14,89,101,104,134,152,156,157],gloss:156,glu:16,gmt:47,gnu:100,gnufcompil:155,goal:6,godaddi:54,godunov:[4,89,99,139,141,143,157],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,112,126,144,152,160],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,126,131],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,127,131,133],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,148],govern:[32,142],gprint:[140,141],gpu:[25,123],gradi:[4,17,81],gradient:[120,160],gradylemoin:4,grai:148,grant:[4,81],graph:9,graphic:[23,28,52,67,76],grav:132,gravit:[64,142,157],graviti:[132,142],great:[47,88],greater:[5,32,59,64,66,100,110,130,139,140,142],greatest:110,greatli:[26,81,134],green:[12,59,66,70,77,111,148,154],grid1d:89,grid1info:142,grid2info:142,grid:[4,7,17,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,126,128,131,132,133,134,135,139,140,141,143,149,151,152,154,156,157,160],grid_files_scanf:158,grid_numb:72,grid_registr:[53,154],griddata:154,gride:149,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,131],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,158],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,145],guidelin:91,gzip:[55,124],h_l:132,h_r:132,hack:101,had:[44,52,53,119,120,121,122,126,135],hadjimichael:[4,17,81],half:[0,16,17,70,99,139,157],halfspac:70,hand:[3,5,18,19,20,64,83,111,133],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,132,135,142,148,154],hang:70,happen:[31,51,62,83,98,101,124,155],har:131,harbor:32,hard:[49,54,71,77,154],hardcopi:[1,77,79,138],harder:139,hardest:68,hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,129,131,133,134,139,140,142,148,151,152,154,157,158,160],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,37,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,126,127,130,131,132,133,134,139,140,142,144,148,152,154,155,157],haven:[103,105],haversin:47,hazard:[4,32,45,64,134],hdf5:93,hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,148,152,154],header_styl:154,heavili:84,height:[51,154],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,56,62,76,79,91,94,100,104,111,118,124,131,144,155],helzel:17,henc:[5,32,53,54,63,99,105,106,110,135],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,131,132,133,149,154,160],heterogen:157,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,131,134,135,156,157],higher:[3,6,32,51,89,99,100,110,124,131,133,134,135],highli:[121,135],highlight:[11,13],hilo:[134,156],hint:[16,25,45,76,79,106,142,155],histor:[48,70,156],histori:[28,55,58,79],hit:[16,67,79,93,139],hko:148,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,142,149],holland_storm_modul:117,home:[13,29,30,58,137],homebrew:[51,80],homepag:[21,25],homogen:[70,99,157,160],hood:[76,91],hope:[26,111],horizont:[51,154],host:51,hour:[13,51,59],how:[1,6,7,12,16,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,129,130,131,138,139,142,144,152,154,158],howev:[6,13,16,22,29,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,91,110,111,119,121,123,134,135,138,142,151],howto:105,hpc:24,hrd:148,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,148],html_plot:95,html_theme:54,htmlplot:88,http:[4,12,13,17,24,26,28,29,30,39,47,51,52,54,55,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,127,128,129,132,148,154],huge:[60,66,135,152],human:148,hurdat:[121,148,149],hurrican:[108,148],hurt:[12,63],hwrf:[121,142,149],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,131,139,142,157,160],hyperol:139,ian:4,ibm:100,ibtrac:[121,148],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,154,160],ideal:[55,134],ident:[39,63,89,92,94,111,154],identifi:[5,35,36,39,51,66,84,110,124,148],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,126,134,154],iinstal:94,ike:108,illustr:[12,25,30,32,35,43,51,66,67,70,109,116,117,121,123,131,133,144,154],imag:[13,35,36,39,55,59,66,111,121,133],imd:[148,149],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,99,103,104,111,116,119,122,124,126,131,132,139,154,157,160],impli:[61,81,142],implicit:[81,99],implicitli:[126,142],importantli:94,impos:[16,84,110,146,147,160],imposs:[48,139],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,126,127,139],imread:[39,66],imshow:[39,66,154],in_poli:154,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,138],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,43,44,48,51,53,55,57,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,98,99,100,101,103,106,108,110,111,113,119,120,121,122,123,124,125,126,127,128,131,132,133,137,139,141,142,144,145,148,149,151,152,154,157],inclus:133,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,132,154],incorrect:[121,122,135,148],incorrectli:118,increas:[51,59,71,133,142],increasingli:28,increment:[32,44,51,89,104,139,141,143],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,22,23,27,44,54,55,77,89,91,94,96,97,104,121,126,139,140,141,142,143],indian:148,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,126,131,132,139,140,141,142,143,152,154,157],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,148],inf:154,infer:154,infinit:139,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,140,141,148],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,58,63,72,77,78,79,83,84,89,91,93,94,95,97,98,104,106,118,121,122,124,129,130,131,134,137,139,140,142,148,151,152,155,156,157,158],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,134],initi:[4,5,7,12,13,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,98,99,101,102,104,107,110,118,121,124,126,131,134,139,140,141,142,143,148,152,154],initialize_sourc:84,inland:[39,66],inlet:133,inlin:[39,132],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,131,141,142,143,148,149,152,154,157],input_filenam:84,input_path:152,input_unit:30,inputfil:[104,154],ins:22,insert:[11,16,70,92,137],insid:[38,89,94,98,131,133,154],insidi:119,inspect:[19,20,51],instabl:[119,126],instal:[12,13,18,23,25,29,35,43,51,54,55,79,81,82,85,90,92,103,105,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,137,159],install_fortran:36,install_prerequisit:35,installing_fortcod:55,installing_opt:58,installing_pip:55,instanc:[3,28,51,70,73,79,83,84,86,89,92,93,96,133,142],instantan:99,instanti:[7,86,94,96,99,101,141,143],instati:[70,154],instead:[3,13,32,35,36,39,41,44,52,54,55,58,62,63,68,100,101,104,106,118,119,122,126,130,131,132,133,152,154],institut:4,instruct:[13,18,24,25,29,35,36,39,51,52,54,55,68,83,85,91,94,100,103,106,120,127,129,130,155],insur:[50,54,62,79,110,113,117,140,142,152],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,131,139,142,148,154],integr:[5,22,53,60,81,91,93,99,113,114,118,141,143,151,152,157],intend:[48,84,121],intens:[84,148],intent:[84,131],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,133],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,126,127,128,135,139,148],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,131,157,158,160],interface_funct:104,interior:[6,16,39,72,101],interleav:81,intermedi:[19,32,70,157],intermit:[44,119],intern:[6,30,44,53,59,70,119,140,152,154,160],interp_dz:33,interp_kwarg:148,interp_method:32,interp_unstructur:154,interpol:[5,6,16,30,33,34,39,44,45,53,59,67,70,77,119,126,133,134,135,142,148,149,154],interpret:[30,53,70,121,152],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,126,133,139,142],introduc:[5,16,19,32,33,39,77,124,126,133,135,140,160],introduct:25,introductori:24,intuit:91,inund:[32,45,51,64,110,124,134,156],inundataion:[134,156],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,135,155],involv:[24,96,99,108,149],ioerror:98,ioexcept:104,iout:143,ioutarrivaltim:142,ioutsurfacemax:142,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,132,133],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,133],isn:[62,71,72,155],iso:148,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,131,142,155],item1:[0,79],item:[0,1,3,67,76,79,104,126,138],itemnam:[1,79],iter:[30,39,66],ith:97,its:[4,6,13,22,29,34,39,48,51,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,141,154,160],itself:[4,70,76,105,124,131,142,154],ixi:[38,66,131,133],jacobian:[131,160],jan:[4,55],januari:[105,112,119,129],japan:[51,59],japanes:148,javascript:144,jed:81,jet:[30,67],jma:[121,148,149],job:[13,128],join:[24,77],journal:[4,17,52,91,144],jovyan:29,jpg:[54,67],jsanim:[113,117],jsanimation_frametool:115,juan:133,juli:[114,115,129],jump:[4,5,67,79,89,99,119,139,160],junction:[32,142],june:[120,121,122,123,129],jupyt:[25,43,70,73,91,105,109,117,118,124,131],just:[0,6,28,32,40,55,83,84,86,88,92,93,94,95,96,101,104,114,121,139,157],justifi:70,kappa:[103,160],kappa_i:160,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,142],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,148,154],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,131],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,138,148,154],kind:[86,88,93,123,131],kinemat:[30,45],king:[4,81],kitsap:133,klein:87,kml:[59,117,119,120,121,124,125,133],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,127,153],kmw6h:[4,55,129],kmz:[59,119],kneplei:[17,81,91],know:[48,58,62,70,81,108,120,124,126,131,134,154,155,156],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,139],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,138,148],kyle:[4,17,81,87,91,92],label:[30,49,51,53,59,117,133,152,154],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,135,152],lambda:[89,154],land:[16,39,45,46,51,54,55,59,66,78,124,135,142,154],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],languag:[11,76,104],lapack:113,laptop:[29,91],larg:[5,6,12,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,126,130,133,135,139,140,154,156],larger:[13,20,32,51,59,70,71,72,77,89,113,119,126,140,142,152],largest:[110,134],last:[3,18,27,32,55,57,77,83,84,96,103,118,139,148],lat:[30,47,51,53,152,154],later:[13,39,50,51,58,79,99,130],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,133,136,142,148,154],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,133,136,139,148,157],launch:[37,88,94,95,100],law:[4,17,59,142,160],lax:[89,99,139,141,143,160],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:133,lead:[6,13,22,32,48,51,64,67,70,106,109,126,135,140],learn:[48,88,105],least:[4,5,6,13,51,59,66,67,102,110,111,118,119,126,139,141,152,154],least_significant_digit:92,leav:[12,13,16,44,58,140,154],lectur:24,led:[20,122],leer:[87,99,139,141,143],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,129,130,131,134,140,152,154,156,160],legaci:[23,55,58],legend:[120,133],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,141,143,154],lenght:139,length:[15,30,48,59,70,96,101,119,126,136,139,140,141,142,157],leq:[5,133],less:[39,48,51,60,64,71,99,110,111,126,139],let:[16,45,58,81,108,120,126,131],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,57,58,67,71,72,84,86,89,91,92,93,99,106,107,110,111,113,114,118,119,121,124,130,133,134,137,139,140,141,142,143,151,152,154,156,157],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,131,139,157,160],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,135,136,140,146,147,155,157],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,133],lies:[6,16,32,110,133,142],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,131,133,138,151,152,155],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,133,139,140,141,143,148,152,154,160],lin:142,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,126,133,138,139,141,148,152,154],linear:[4,5,17,30,32,51,70,77,83,87,99,122,131,132,133],liner:[0,30],linestyl:154,linewidth:[77,133],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,129,131,132,134,136,143,146,147,152,156],linspac:[33,67,86,103,133],linux:[13,69,80,102,111,137],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,126,130,133,137,139,140,141,142,143,148,149,151,154],listofgrid:121,literalinclud:54,literatur:[48,131],littl:[48,70,92,134],live:101,llapack:102,llcenter:[53,152,154],llcorner:[53,152,154],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,111,154,158],load_sift_unit_sourc:30,loc:[133,154],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,135,152,154,157],local_fnam:154,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,134,135,148,149,154],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32,126],logical_and:[39,66],logical_not:[39,66],logical_or:133,logo:[54,120],lon:[53,152],long_lat:154,longer:[20,28,44,54,55,59,80,105,119,121,124,126,130,131,142,152,156],longitud:[30,32,46,47,53,66,70,76,117,133,142,148,154],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,106,111,114,121,133,139,140,142,151,154,155],lookup:121,loop:[44,67,76,104,110,121,124,126,131,135,138,139,157],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,131],low:[51,66,84,154,156],lower:[3,22,30,32,33,38,53,66,72,89,94,133,135,139,141,143,152,154,156],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:160,mac:[71,80,102,111,137],machin:[13,25,71,73,111,119,137],maco:80,macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,126,133,135,142,149,152,154,157],magic:59,magnitud:[5,30,110,121,142],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,148,149,150,152,154,155,157],mail:[96,102],main:[5,11,12,19,28,39,43,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,140,152,157],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122,127],make:[1,5,11,13,14,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,126,127,131,133,139,152,154,156,157],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:148,make_shoreline_xi:154,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,68,71,73,77,79,84,90,91,110,113,117,119,121,122,124,135,136,139,141,142,143,144,146,147,152,155,157],makefile_kml:117,maketopo:[122,152],man:[17,25,45,48,142,146,147],manag:[4,12,13,51,93,148],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,43,46,51,52,54,59,60,62,63,66,70,71,72,77,79,80,81,83,88,91,96,98,103,104,110,112,113,119,121,122,123,124,128,131,133,138,139,140,142,152,157],manifold:67,manipul:[44,154],manner:[5,39,44,51,60,66,70,76,121,135,139,146,147,152],manning_break:142,manning_coeffici:142,manual:[37,84,93,100,102,111,150],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,126,132,148,154,160],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89,126],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,129,133],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,133,154],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,133],maskedarrai:154,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,127,128,129,132,136,146,147],match:[30,38,51,59,92,98,111,148,154],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,132,138,148,154,155],matric:[5,131,160],matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,131,157],max1d:[71,124,140],max:[0,30,32,39,67,110,114,135,141,143,148,154,160],max_buff:[44,119],max_inch:59,max_it:[39,66],max_step:99,max_vertices_in_descript:59,max_wind_radiu:148,max_wind_radius_fil:148,max_wind_spe:148,maxgr:121,maxima:[32,71,142],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,139,140,141,143,148,149],maxlevel:[38,67,110,126,133,140,141],maxm:131,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:154,mbc:157,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,131,134,139,141,143,156],mean_latitud:49,meant:[41,89,99,148],measur:[30,44,47,70],mechan:[58,101,129],media:17,medium:[141,157],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,126,140,141],memsiz:[126,140],mention:[91,139,140],menu:[13,18,25,54,59,120,129,134,156],meqn:[44,72,131,157],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,138,139,157],meshgrid:[83,96,133,154],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,126,139,141,143,155],met:[32,61,81],metadata:[72,152,154],meteorlog:148,meter:[30,47,51,66,70,110,134,142,148,154,156],meterolog:148,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,131,138,139,140,141,143,148,151,152,154,157],metric:47,mhd:123,mhhw:134,mhw:[39,45,48,134,152,156],micro:13,mid:77,middl:118,midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,58,63,66,67,71,77,80,83,93,106,108,109,110,113,139,140,152,154,156,157],migrat:19,millimet:154,million:124,mimic:121,min:[0,148,154,160],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,133,140,154],minimum:[3,32,44,51,70,103,119,142,154],minisymposterium:24,minlevel:[38,110,126,133,140,141],minmod:[87,89,99,139,141,143],minmod_limit:87,minor:[11,51,54,93,113,114,115,116,117,118,119,120,121,122,124,126,128],minut:[39,47,51,54,59,134,154,156],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,148,152,154,155],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:148,mllw:156,mode:[1,13,28,104,151],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,133,134,135,142,148,149,152],modern:[100,121,131],modif:[28,40,61,67,77,81,87,142],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,126,133,135,136,139,141,142,143,146,147,152,154,157],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,83,84,87,88,92,96,97,98,101,105,106,111,114,115,117,120,121,122,123,124,130,133,139,140,142,148,152,153],module_nam:104,modulu:[30,103,141,157],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,32,48,60,64,93,126,132,142,152],monitor:[22,25,33,34,38,45,66,71,114,116,119],monoton:[139,142],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,91,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,137,138,139,140,141,142,144,148,150,151,152,154,155,156,157,160],moreov:70,most:[3,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,129,130,131,132,133,134,138,139,140,142,145,157],mostli:[3,76,91,124],motion:[70,152],motlei:52,movabl:30,move:[16,32,35,36,45,54,58,60,70,96,110,113,115,120,142,152,153],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[134,156],mthlim:[89,99],much:[13,28,32,41,51,54,72,73,76,80,105,110,113,117,124,133,139,142,151,154],muct:99,multi:[17,51,83,113,115,118,121,157],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,76,83,89,92,93,104,106,111,113,119,123,130,131,140,148,149],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,43,46,51,54,57,61,62,63,66,67,70,71,72,81,84,91,92,93,96,98,99,101,102,103,104,106,110,113,117,131,133,134,135,139,140,141,142,143,148,154,155,156,157,160],mwave:131,mx1d:157,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:148,my_initial_solut:86,my_riemann_solv:131,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:148,n00014:4,n12:32,n23:32,nadi:148,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,126,130,131,133,138,139,140,141,142,143,148,154,157,158],namespac:84,nan:[47,154],nasa:4,nation:[4,48,148],nativ:92,natur:[32,54,131,160],naux:72,navd88:152,navig:[12,29,54,144],nbconvert:124,nbtool:117,nbviewer:118,nc_param:154,ncar:4,ncei:[39,66,134,152,156],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,148,154],ndarrari:89,ndim:[22,72,79,139,140],ndip:30,nearbi:134,nearest:[39,44,154],nearfield:135,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,58,59,67,70,72,73,79,83,84,89,92,117,119,121,130,131,138,139,140,152,155,157],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,126,128,130,131,133,135,136,137,139,140,141,142,143,146,147,148,149,150,152,154,156,157,160],neg:[22,39,135,142,152,154],negat:[47,152],neglig:[61,71,81,142],neighbor:[4,32,39,66,110,119,135,140,141,154],neither:[51,59,61,81,119],ness:92,nest:[113,119,140,141],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,152,154],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,139,141,143,148,154,156],neumann:148,never:[32,96,101,107,110,124,133,139,141,143,155],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,138],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,138],new_plotitem:[0,3,44,51,77,138],new_userdata:[141,143],newdelhi:148,newdir:69,newer:[28,71,87,121],next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,139,140,142],nfr:4,ngdc:[39,66,134],nghost:72,ngrid:72,nhc:148,nhtmp:48,nice:[28,59,84,96,114,133],nicer:79,nih:4,nnnnn:[130,139],no_data_valu:154,no_tran:89,noaa:[30,39,47,53,66,70,121,134,148,152,156],nodal:121,nodata_valu:[39,154],nodataerror:148,nodatav:152,nodatavalu:[53,152],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,139,141,143,148,160],nonconserv:160,none:[0,1,2,3,16,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,128,130,139,141,143,148,154],nonlinear:[4,5,17,48,87,131,139,160],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,154],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,131,132,139,140,141,143],north:[32,39,47,66,70],northernmost:152,norwegian:4,nose:[28,36,37,82,94,111,150],nosetest:[28,36,37,94,100,111,150],notat:[30,47,59,131],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,91,92,94,96,100,101,104,105,107,110,130,131,133,134,135,136,138,139,140,141,142,143,146,147,148,149,151,152,154,156,157],notebook:[25,30,32,39,43,54,66,70,73,85,91,93,109,117,118,124,131,132,133,154],notebook_html:124,noth:[15,60,101,122,136,146,147,154,157],notic:[51,61,81,103,111],nout:143,nov:[17,91],novemb:[118,119,129],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,126,127,134,138,140,142,144,152,159],npoint:33,nprint:[140,141],npt:32,npy:154,nrm:59,nrow:39,nrule:133,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:141,ntot:143,num_aux:[5,84,92,94,96,97,101,131,139,140,141,143,157],num_cel:[8,22,89,131,139,140,141,143],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,139,140,141,143],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,131,139,141,143,157],num_fgmax_v:[32,142],num_ghost:[84,89,92,96,97,99,101,131,139,141,143],num_output_tim:[5,83,86,93,130,139,141,143],num_proc:119,num_var:92,num_wav:[87,97,131,139,141,143],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,43,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,105,108,110,111,113,114,116,117,118,119,120,121,123,130,131,133,139,140,141,142,143,148,149,150,154,157],numer:[4,17,51,105,122,148],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,132,133,141,154,155],nxpoint:154,nypoint:154,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,113,122,130,131,139,140,141,142,143,148,154],obliqu:16,obscur:22,observ:[32,48,113,126,134,139,142,149,156],observatori:4,observerd:149,obtain:[4,6,12,32,43,44,46,48,58,59,92,93,94,110,126,131,135,142,144,152,160],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,148,149],ocean:[5,16,17,32,48,51,108,110,133,146,147,152],octob:[115,116,117,123,124,127,128,129],off:[12,13,44,48,51,59,67,79,86,93,110,140,154],offer:[40,51,111],offic:4,offici:[55,80,121],offset:[49,51,59,148,154],offshor:[59,64,66,133,135],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,126,130,131,133,134,135,138,139,142,148,152,156,157,160],okada85:[17,30,70],okada:[17,25,30,45,109,152,156],okadamap:30,olav:4,old:[1,7,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,126,131,142,152],older:[22,41,52,54,57,58,99,125,140,142],olig:[6,17],omega:83,omit:[58,111,119,130,142],omp:140,omp_num_thread:[41,71,119,151],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121,127],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,126,130,131,132,133,135,136,138,139,140,141,142,143,144,146,147,148,152,154,157,158],ones:[29,83,84,101,121,139,140],onli:[1,3,5,6,8,12,13,16,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,56,58,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,126,130,131,132,133,134,135,137,138,139,140,141,142,143,148,152,154,155,156,157,160],onlin:[24,105,109,121,145,152],onr:4,onshor:[32,59,64,66,133,135],onto:[28,30,51,135,154],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,133,137,156,158],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,151],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,149],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,20,22,25,28,29,30,32,35,36,40,41,47,50,53,56,58,62,67,68,76,77,83,84,86,88,89,90,92,93,95,98,99,100,103,104,106,107,110,111,114,117,118,119,122,124,127,133,137,138,139,141,142,143,144,148,154],orang:148,order:[4,5,6,13,16,17,29,30,32,48,53,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,126,131,133,135,138,139,140,141,143,148,152,154,155,157,160],ordinari:131,ordinarili:102,org:[4,17,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,126,127,128,154],organ:[22,23,35,36,86],orient:[70,84],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,126,130,140,141,143,154],orlean:108,oscil:[44,160],oscillatori:154,osf:[4,129],osher:99,osx:[51,80],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,56,57,58,61,62,64,66,67,68,70,71,72,76,79,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,131,134,137,138,139,142,144,148,152,154,156,157,158],otherwis:[5,30,54,58,61,66,81,93,98,99,100,101,104,110,139,154],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,58,59,60,61,62,67,70,77,80,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,131,133,140,141,143,148,154,155],out_path:148,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,141,143,155],outdir_p:86,outfil:154,outflow:[16,139,141,143],outgo:16,outlin:[59,67,79,124,131,138],outn:27,output:[1,5,7,8,13,14,16,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,131,138,141,143,148,149,150,151,154,157,158],output_aux_compon:[139,141,143],output_aux_onlyonc:[139,141,143],output_file_prefix:[86,93],output_filenam:84,output_format:[5,86,93,139,141,143],output_opt:86,output_path:152,output_q_compon:[139,141,143],output_step_interv:[139,141,143],output_styl:[72,83,86,93,130,139,141,143],output_t0:[130,139,141,143],output_tim:[93,130,139,141],output_unit:30,outputdir:67,outputfil:154,outsid:[6,16,38,59,66,124,133,135,152,154],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,131,133,135,138,140,141,142,151,152,157,160],overal:[10,83],overflow:[41,120],overhead:[6,71,110,151],overlai:[59,127],overlaid:[51,59],overland:51,overlap:[110,113,114,152],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,130,157],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,131,144],owner:121,p_center:[89,103],p_function:93,p_node:89,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,148,155,158],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,134,136,138,144,146,147,156,157],pair:[13,92,111,154],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,71,82,88,90,91,93,96,98,100,104,110,111,119,140],paramet:[1,6,7,9,16,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,98,101,104,107,110,113,119,124,126,130,131,132,134,135,141,143,149,152,154,155,157],parameter:[108,121,133,142,148,149],parametr:149,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,58,59,60,68,81,84,94,100,101,103,105,109,111,123,157],partial:[17,73,108],particl:[25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,61,62,63,67,73,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,126,138,148,149,160],particularli:[16,27,29,32,50,51,56,57,58,70,72,106,114,117,121,126,135,152],partit:94,pascal:[30,148],pass:[16,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,131,141,148,154,157],passiv:132,password:28,past:[4,21,25,54,60,66,98,119,122,126,129,133,134,142],patch:[3,6,7,16,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,126,135,138,140,142,151,152,157],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,57,58,60,62,66,69,76,77,86,91,92,94,98,104,120,121,124,137,142,148,154,155],path_to_atcf:148,path_to_ibtrac:148,pathtool:67,pattern:[20,46,51,134],pcolor:[3,44,76,105,154],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcel:[39,66,124,133],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,56,57,58,73,80,91,103,139,157],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:133,peopl:[4,12,13,81],pep8:28,per:[13,30,44,51,59,67,71,92,140],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,126,130,131,137,142,150],perhap:[6,12,32,39,44,54,77,101,104,110,133],perimet:32,period:[5,6,16,32,62,83,96,110,139,141,143],perman:[67,124,125,126,127,128],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,142,152],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,73,81,83,90,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124,140],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,160],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,131,133,152],piecewiselinear:38,pink:[39,59,77,138],pinkfig:77,pip3:55,pip:[18,25,28,29,51,55,56,85,91,94,100,102,106,120,121,122,123,124,125,126,127,128,129,137],pixel:[51,59],pkg:[55,143],place:[5,16,20,24,28,35,36,51,54,58,62,63,69,91,93,94,96,100,106,113,119,157],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,58,64,92,99,148],planar:[70,131,132],plane:[30,70,118,133,156],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,24,28,54,56,57,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,129,131,148],plot:[0,1,2,4,7,8,12,27,29,30,35,36,37,39,40,41,42,45,53,55,56,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,133,148,150,154],plot_box:[30,154],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:148,plot_phas:132,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,138],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,138],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,138],plotdata:[27,44,68,77,79,86,118,119,138],plotdir:[1,79,138],plotexampl:77,plotfigur:[44,77,138],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,138],plotloop:[77,79],plotstyl:[3,44,77,138],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,132],plu:[77,113,141,143,154],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,133],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,130,131,133,134,135,136,137,139,140,141,142,146,147,148,152,154,155,157],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,152],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,154],polynomi:131,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,140],portion:[6,39,51,66,84,151],posit:[32,39,51,70,73,104,142,152,154],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,131,133,134,135,139,140,152,156,157],post:[18,24,25,26,28,51,94,127,128,144],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,134],powel:142,power:[51,56,76],pprint:[140,141],practic:[28,106,108],pre:[3,13,33,55,85,92],preced:77,preceed:[72,157],precis:[41,59,84,89,92,131,154],precompil:91,predefin:77,predict:47,prefer:[59,94,96,137,140,148],prefix:[55,86,92,93,98],preliminari:[47,121,156],prepar:28,prepc:126,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[36,37,56,58],present:[6,24,59,89,98,99,104,144,157,160],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,103,120,121,142,148,149],pressure_forc:142,pressure_index:142,presum:134,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,28,29,44,53,55,57,58,63,66,67,79,83,99,108,113,118,119,120,121,126,130,135,139,140,141,143,152,154],previous:[6,22,32,66,79,117,124,135],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,148],primarili:[52,121,122],prime:111,principl:[5,154,157],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,128,133,139,141,143,148,155],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:155,printfig:1,printfram:[1,76],prior:[61,81,129,135,141,143,157],probabl:[13,28,51,64,66,105,106],probdata:[141,143],problem:[4,5,7,16,17,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,126,131,133,135,139,140,141,142,143,144,151,155],problem_data:[83,97,98,101,103,132],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,157],proceed:54,process:[25,35,36,45,51,52,70,83,88,89,94,100,101,104,111,119,155],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,126,138,142,154],product:[5,30,61,81,104,110,122],professorship:4,profil:[149,154],profit:[61,81],program:[4,46,48,63,73],programmat:81,progress:[24,28,99,108,117,152,154],prohibit:22,proj:141,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,140,154],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,154],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,131],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,136,140,141,146,147,148,157],properli:[20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,111,113,116,121,124,126,137,139,142,152,154,155,157],properti:[30,60,67,83,86,89,98,101,154],propos:[28,160],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,129,131,139,147,148,151,152,154,157],proximity_radiu:154,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,157,160],pt_chosen:66,pth:58,pts:[140,141],pts_chosen:[66,133],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,148],publicli:144,publish:[4,17,54,91],puget:[39,66,133],puget_sound_13_mhw_2014:[39,66],pull:[12,24,26,29,54,55,57,88,96,111,116,119,120,126,131],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,111,132],purpos:[32,45,48,53,61,67,72,81,89,109,111,130,133],push:[28,54,55],put:[1,11,16,28,29,41,54,55,58,59,67,83,88,96,119,137],pyclaw:[1,3,4,12,17,23,24,27,28,29,43,44,55,56,57,72,73,79,80,90,94,96,102,106,129,131,132,137],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:[58,92],pyplot:[59,132,148,154],pyport:105,pyramid:51,python2:[80,126],python3:[106,120,126],python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,126,131,132,137,142,152,154,155,158],python_io:72,pythonpath:[57,58],pyweno:[81,99],q0000:[67,139],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:157,q_i:[131,160],q_l:[97,131,132],q_out_field:44,q_r:[97,131,132],q_t:[5,96,99,103,157,160],q_x:[5,103,160],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,126,134,135,157],qinit_data:[39,135],qinit_modul:39,qinit_typ:[142,152],qinitdata:142,qinitfil:142,qoi:32,qopenmp:41,qquad:160,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,132,136,142],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,56,80,111,150],quicker:[13,133],quickli:[44,54,59,85,119,135,154],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:142,radial:[3,32,47,142,157],radial_dam_break:132,radian:47,radii:148,radio:59,radio_styl:59,radiu:[3,142,148,149,154],rai:154,rais:[24,30,58,92,98,100,104,148,154],rake:[30,70],ran:[36,150],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,132,133],rare:[70,119],raster:[51,53,152],rate:13,rather:[5,6,20,22,28,29,32,39,54,55,58,62,63,64,69,70,89,94,96,99,106,107,110,117,118,119,121,123,124,126,129,130,133,138,139,140,148,149,152,154,157,160],ratio:[6,15,22,49,67,70,87,99,136,139,140,141],raw:139,rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,28,30,32,33,35,36,44,45,48,49,53,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,127,141,142,143,148,152,154,157,158],read_:[92,98],read_arrai:92,read_atcf:148,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:148,read_head:154,read_hurdat:148,read_ibtrac:148,read_imd:148,read_jma:148,read_netcdf:[39,66,121,122,152,154],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:148,readabl:[148,149],reader:158,readi:[83,84,86,100],readlin:133,readm:[54,55,124,131,137,157],real:[48,55,64,104,131,156],realist:51,realiti:48,realli:[6,111,157],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,139],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39,140],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,127,128,129,131,156],recogn:[46,53,58,152],recomil:32,recommend:[4,30,32,35,36,54,55,56,58,71,76,85,89,91,94,95,99,100,102,103,110,121,139,141,142,143,158],recompil:[28,40,41,62,71,104,124,140,157],recomput:[79,83,114,123],reconstruct:[91,99,148],record:[32,44,60,101,148,156],recov:[28,33],recreat:[28,40,62,124],rect:[30,133],rectangl:[6,7,25,30,66,70,110,124,154],rectangular:[6,7,16,17,30,32,38,39,45,46,59,66,89,110,121,124,140,142,152],recurs:[54,69,113],red:[2,3,28,44,59,77,111,138,148],redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,39,51,118,120,160],redund:148,refactor:[113,114,115,117,119,120,122,126],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,130,131,133,142,148,152,154,156,157],referenc:[51,129,134,152],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,126,133,135,138,139,140,141,151,152,157],refinement_data:142,refinement_ratios_i:[8,140,141],refinement_ratios_t:[140,141,142],refinement_ratios_x:[140,141],refinementdata:116,reflect:[4,5,16,28,110,121,139,141,143],refresh:[13,44],regard:[4,38,118,148],regardless:[13,39,66,110,139,142],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,126,134,135,140,141,152,154],region_domain:38,region_tool:[38,39,66,124,125,133],region_trapezoid:38,regiondata:[38,110,141],regions2kml:59,regist:56,registr:[25,45,121,152,154],regress:[22,25,28,50,91,94,119,120,150],regression_test:[36,150],regrid:[5,10,110,113,114,119,122,123,140,141,151],regrid_buffer_width:[110,140,141],regrid_interv:[110,140,141],regular:[32,154],reiniti:[32,119],reject:[93,99,139],rel:[13,20,30,40,46,48,51,70,71,77,91,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,134,140,142,144,152,156],relat:[3,7,22,24,54,73,97,108,120,124,126,134],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,148],reli:[73,84,95,105,119],relief:[134,156],reload:154,reltol:104,remain:[51,58,96,104,106,113,146,147,148],remak:54,rememb:[15,27,71,77,94,136,146,147],remot:[13,51,55,121,154,156],remote_directori:154,remote_topo_url:[152,154],remov:[1,3,20,29,40,52,58,59,62,68,79,94,106,113,116,117,135,154,155],renam:[20,22,35,36,62,96,99],render:[12,22,43,51,59,158],reorder:[20,22],reorgan:[22,84,112,127],repack:55,repeat:[39,66,79,130,140],repeatedli:[3,94,100,140],replac:[6,13,29,38,44,48,52,54,55,57,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,130,131,135,154,155],replace_no_data_valu:154,replace_valu:154,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,137,139,141],repositori:[22,24,25,26,29,32,36,37,42,43,45,52,57,58,62,63,91,99,106,108,109,111,116,119,145],repres:[30,83,89,92,96,97,99,101,154,160],represent:[53,89,92,98,104,154],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,126,131,142,148,154],requir:[3,4,16,20,22,25,27,30,32,35,36,40,45,47,48,55,58,66,67,70,73,76,79,80,83,84,89,92,95,96,99,100,101,103,104,105,110,111,113,114,117,119,122,124,126,131,132,133,138,139,140,141,142,143,148,149,152,155,158,160],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,30,32,39,44,70,89,99,103,104,113,117,121,122,131,134,142,152,154,156,157],resolution_limit:154,resolv:[4,32,51,54,58,108,121,135],resourc:[17,24,28,46,105],resp:[20,30,126],respecitv:30,respect:[30,32,51,59,91,92,97,154],respons:[13,48,83,98],rest:[5,22,79,108,121,134,146,147,152,154],restart:[13,25,44,79,91,118,119,120,121,123,126,139,141,143],restart_fil:[130,139,141,143],restor:6,restrict:[38,51,121,133,142,152],restructur:[11,54],result:[1,3,4,7,9,12,17,25,26,29,30,32,33,34,35,36,37,42,43,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,126,135,139,140,141,142,143,150,152,154,156],retain:[61,81,92],retak:[139,141,143],retir:54,retriev:[13,47,79,84,99,154,156],return_topo:154,return_xarrai:154,reunion:148,reutil:84,reval:132,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,103,141],rhou:67,rhov:67,richardson:[5,7,22,140,141],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,58,63,73,81,83,89,90,99,100,101,103,106,137,139,141,143,146,147,160],riemann_aug_jcp:120,riemann_book:132,riemann_interact:118,riemann_solut:132,riemann_solv:99,riemann_tool:[117,132],right:[5,32,61,64,70,81,89,94,96,97,101,103,126,130,131,133,160],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,134,135],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:148,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,132,154],robustli:122,rock:70,roe:[87,126,131],root:[29,58,92,93,98],rossby_wav:132,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,133,151],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,110,113,114,117,119,121,122,124,131,135,139,141,143,148,154,155,157,158,160],row:[30,32,53,87,110,152,154],rp1:[131,160],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:131,rp1_shallow_bathymetry_fwav:132,rp1_shallow_hl:127,rp1_shallow_roe_trac:132,rp1_shallow_roe_with_efix:132,rp_:97,rp_sourc:96,rpn2:[5,131],rpn2_geoclaw:132,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:131,rpn2_shallow_bathymetry_fwav:132,rpn2_shallow_roe_with_efix:132,rpn2_shallow_spher:132,rpn2_sw_aug:132,rpn2_vc_advect:115,rprint:[140,141],rpt2_geoclaw:[126,132],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:131,rpt2_shallow_roe_with_efix:132,rpt2_shallow_spher:132,rr2:133,rr_admiralti:133,rr_name:133,rrzigzag:133,rsmc:148,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,133],ruledrectangle_admiraltyinlet:133,ruledrectangle_covering_selected_point:[66,133],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,39,40,42,43,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,126,128,130,131,141,142,143,148,150,151,154,157],run_app_from_main:104,run_data:86,run_exampl:154,run_seri:104,runclaw:[14,50,114,123,125,131],rundata:[5,22,32,38,39,44,59,60,110,113,124,130,135,139,140,141,142,143],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,150],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:133,s_2:133,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,126,130,131,133,139,140,141,142,146,152,154,157],sampl:[7,8,14,17,25,29,32,41,45,51,70,106,111,130,133,139,140,152,154,157],santiago:51,satisfi:[32,39,66,99,110,133,160],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,126,130,149,154],savecod:86,savefig:59,scalabl:[17,91],scalar:[27,30,39,93,101,131,135,139,160],scale:[4,30,49,51,67,73,91,92,113,119,121,126,142],scan:41,scatter:[3,22,67],scenario:[48,134],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,80,91,94,105],scipi:[13,84,105,148,154],scipysuperpack:80,scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,141,143],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,62,67,73,76,81,84,88,90,91,93,94,99,104,106,111,121,125,131,138,142,143,154],scriptstyl:133,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,134,142,152,154,156],sea_cmap:39,sea_cmap_dri:39,sea_level:[32,39,48,59,124,135,142,152,154],seab:64,seafloor:[30,48,70,135,156],sealevel:[25,45,142],search:[1,13,14,58,76,91,104,106,119,121,133,137],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,130,139,142,148,150,151,154,157,160],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,91,111,126,130,139,142,154],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],seem:[101,106,124,138],seen:[12,22,32,35,36,37,48,71,96,139,144],segement:154,segment:[128,133],segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,129,136,139,142,146,147,156],select_by_flood:[39,66],self:[30,33,99,154],semi:99,send:[13,24,96,131],sens:[27,51,60,121,126,160],sensit:[48,64],sent:[93,101],separ:[1,28,32,43,51,54,59,63,91,99,133,154],seper:104,sept:[55,126],septemb:[125,129],sequenc:[20,22,63,66,94,100,103,104,111,113,120,131,157],sequenti:32,seri:148,serial:[94,98,104,151],serv:29,server:[13,29,39,51,54,55,66,121,152,156],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,22,25,27,28,30,32,33,35,36,37,38,39,40,41,42,44,45,47,48,49,50,51,54,55,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,126,130,131,132,133,136,138,139,140,141,142,143,144,148,149,152,154,156,157,160],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,135],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,154],setaux:[20,22,63,84,113,114,131,139,141,143],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,19,20,22,25,42,44,68,75,76,95,96,104,119,155,158],setplot_fil:51,setplot_kml:51,setprob:[39,63,141,143,157],setrun:[5,6,7,8,14,16,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,91,107,108,110,113,117,118,119,122,124,126,130,131,134,135,148,152,155,157],setrun_setgeo:142,setup:[37,55,83,84,88,91,94,96,99,100,101,109,137,155],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,35,36,40,44,46,48,51,55,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,126,133,138,142,150,152,154,157],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,131,135,136,142,146,147,152,157],shallow_1d:132,shallow_1d_pi:132,shallow_2d:132,shallow_bathymetry_fwave_1d:132,shallow_bathymetry_fwave_2d:132,shallow_fwave_1d:132,shallow_hll_1d:132,shallow_roe_1d:132,shallow_roe_tracer_1d:132,shallow_roe_with_efix_1d:132,shallow_roe_with_efix_2d:132,shallow_spher:[84,111,132],shallow_sphere_2d:132,shallow_trac:132,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,133,154],shapshot:13,share:[25,26,51,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,131],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,57,58,71,77,79,94,100,103,106,119,137],shg:67,shift:[5,30,48,53],ship:32,shoal:133,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,135],shorelin:[39,51,154],shoreline_xi:154,shorter:[3,110,154],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,57,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,91,92,93,94,96,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,152,154,155,157,159,160],shouldn:88,show:[0,2,3,9,10,12,14,18,28,30,35,36,39,43,44,51,54,55,59,62,66,67,79,89,103,106,111,117,127,128,133,154,155,157],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,154,157],showpatchbord:67,shrink:154,shu:99,shuffl:92,siam:[17,24,25,91,131],sid:148,side:[6,16,18,32,51,54,64,70,92,111,131,160],sidebar:[51,54],siesmic:135,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,24,77,126,148],signatur:[3,84,87,89,90,92,97,148],signific:[64,129,134,154],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:132,silo:158,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,126,142,148,149,150,152],similarli:[40,52,88,94,96,133,151],simpl:[7,29,35,36,38,45,55,70,84,91,96,99,104,109,111,154],simplest:[58,69,103],simpli:[5,13,35,36,37,39,44,51,53,62,63,66,83,85,86,88,93,94,100,111,131,133,144,148,154,157,158],simplifi:[70,76,77,92,111,120,121,157],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,133,135,148],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,110,111,113,117,118,119,120,122,123,124,125,126,127,128,129,130,131,133,134,139,140,142,152,155,156],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,55,59,60,62,67,70,71,72,73,83,89,92,93,98,104,111,116,117,119,129,131,135,139,140,141,142,152,154,156,157],single_storm:148,sisc:[17,91],sit:13,site:[28,51,58,106],situat:[51,66,67,126],size:[20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,140,141,143,152,154],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:[124,126],skiprow:30,slack:24,slice:[3,67,131],slide:24,slider:[51,59],slightli:[16,39,53,119,120,126,133],slip:[25,30,45,109,152,156],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,99,126],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,130,139,141,142,152,154,156],smaller:[13,51,64,73,89,93,113,135,139,141,142,143,154],smallest:[110,133],smear:59,smooth:[30,99,110,157],smooth_data:154,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,144,152],sol:83,sole:131,solid:[3,16,51,70,96,138,139,141,143],solitari:17,solut:[1,3,4,5,16,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,99,101,102,103,110,111,117,118,122,130,131,138,139,140,141,143,150,157,160],solv:[4,5,8,16,17,20,26,35,36,48,56,58,60,82,84,86,89,91,96,97,100,122,131,132,139,152,157,160],solver:[4,5,6,20,22,23,25,28,45,56,57,58,63,80,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,126,139,141,143,146,147,160],solver_nam:131,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,138,139,140,141,142,143,144,148,149,151,152,154,157],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,152,155,157],sometim:[58,62,66,73,77,83,93,121,128,134,135,149,156],somewhat:[71,76,110,111,119,139],somewher:[68,117],sonel:156,soon:99,sorin:4,sort:[13,39,121,138,155],sound:[39,66,83,103,133],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,132,134,139,141,142,143,145,146,147,148,152],source_list:104,source_split:[89,99,139,141,143,157],south:[32,152],space:[5,6,7,16,17,30,32,33,44,51,53,70,89,93,96,110,117,130,133,139,140,141,142,143,152,154,157],spacial:[135,142],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,126,131,134,140,141,143,160],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:154,special:[4,7,16,45,46,51,61,73,81,110,133,154],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,98,104,108,119,120,121,124,138,139,140,141,143,149,152],specifi:[0,1,2,3,4,5,6,7,15,16,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,126,130,131,133,134,135,136,141,143,144,146,147,148,149,151,152,154,155,156,158,160],speed:[32,83,87,97,103,119,124,131,132,139,142,148,149,154,157,160],speed_toler:142,spell:77,spend:118,spent:[140,151],sphere:[47,84,114,132,142],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,126,139,140,141,143,151,157,160],spot:77,sprint:[140,141],spuriou:[16,32,111],sqrt:[3,32,64,83,96,103,141],src1:[63,147,157,160],src1d:147,src2:[84,147,157],src3:[147,157],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,39,40,41,47,50,52,55,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,126,131,135,136,139,141,143,146,154,155,160],src_split:[139,141,143],srcn:[139,157],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,126,139],stabl:[80,89,126],stack:[71,80,117,133],staff:123,stage:[99,134,135,152,154],stai:[26,32],stand:[4,126],standard:[6,16,30,32,51,53,67,72,84,87,99,106,110,111,141,142,143,144,152,157,160],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,83,94,98,99,105,106,110,111,118,121,126,130,131,133,135,142,148,150,152,157],start_dat:148,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,126,127,131,132,133,139,152,160],statement:[35,36,67,72,105,106,119,128,141],station:[47,134,156],stationari:[60,152],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,152],steep:[66,160],steepli:135,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,19,28,32,35,36,37,44,51,54,55,60,67,73,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,130,131,137,139,140,141,142,143,152,160],step_hyperbol:99,step_index:99,step_interv:141,step_sourc:[89,96,99],stepgrid:151,stepgrid_dimsplit:117,steps_max:[139,141,143],stiff:139,still:[1,5,7,8,13,16,22,24,26,32,34,39,51,52,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,130,131,142,148],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,141,143,154],storag:[118,126],store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,138,140,142,148,151,152,154],storm:[12,17,24,25,45,117,120,121,122,123,125,126,127],storm_atcf:148,storm_fil:[142,148],storm_ibtrac:148,storm_modul:117,storm_nam:148,storm_radiu:148,storm_radius_fil:148,storm_specif:142,storm_specification_typ:142,storm_targ:148,str:[0,1,3,30,59,92,139,140,148,154],strait:133,strang:[89,99,139,141,143,157],strategi:6,stream:77,stress:[83,93],stretch:[66,154],strict:[61,81],stride:[22,154],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,139,142,148,154],strip:[59,133,154],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,133,138,154],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121,142],sub:[30,111,154],subclass:30,subdirectori:[5,12,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,138,142,144,150,154],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,156],subject:[51,66,110,140,142],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,133],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,131,139,140,151,157,160],subsampl:[53,152,156],subsequ:[3,10,67],subset:[30,32,39,66,121,133,152,154,156],subsid:[124,135],substanti:[28,54,81,117,123,126],substitut:[61,81],subsurfac:152,subtleti:66,succeed:99,succesfulli:84,success:[67,98,154,157],successfulli:[62,98],suffici:[13,16,20,70,71,108,113,142],suffix:[62,154],suggest:[4,24,29,47,53,54,56,58,79,80,105,129,131,142,159],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,131,134,148,154],sum:[39,44,70,93,101,151],sum_:160,sum_p:160,summar:[3,28,31,110,112,157],summari:[24,25,55,121,139,140,141,142],superbe:[87,139,141,143],superbee_limit:87,superclass:99,supercomput:[91,93,94],superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,144],supplementari:111,suppli:[110,148,157,160],support:[4,8,13,22,38,41,48,51,56,57,70,80,81,83,84,89,92,93,95,99,110,117,119,120,121,122,126,127,131,133,139,140,142,148,149,152,155,158],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,139,140],sure:[1,20,28,40,54,55,56,57,58,67,73,83,92,94,96,98,102,104,134,154,155,156],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,133,134,142,152],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,126,148],surge_data:142,surround:[110,154],surviv:81,sw_aug_2d:132,swag:24,swap:154,swaphead:154,sweep:[8,131],symbol:[3,67,106],symmetr:[3,47,157],symmetri:16,syntax:[11,57,137],sys:[39,66,86,141,143],system:[4,16,17,23,36,37,51,52,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,131,139,141,143,150,157,160],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,129],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,57,107,136,140,141,146,147],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,135,139,140,141,142,154,157,160],take_one_step:99,taken:[6,32,66,70,93,99,110,139,157],tall:0,tan:77,tank:[16,48],tar:[13,59,123,129],tarbal:[55,155],tarfil:[18,55,58,120,121,122,123,124,125,126,127,128],target:[5,58,77,84,96,124],task:76,tchknnnnn:130,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,148,149],td9635:148,td9636:148,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,132,139,141,142,143,146,147],termin:[85,137,139,140],terrain:64,terrel:4,test:[22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,104,105,110,114,118,119,120,121,124,126,131,143,148,151,152,154],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,152],test_shallow_spher:111,test_topotool:[114,154],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,130,139,141,143],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,20,22,28,29,30,32,39,44,51,54,55,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,106,110,111,113,116,117,118,119,120,121,123,124,126,129,130,133,134,135,138,139,140,142,148,149,151,152,154,157,160],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,91,96,99,104,110,111,119,126,135,138,142,148,152,154,157],them:[5,13,18,22,28,29,30,32,44,51,54,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,133,145,148,154,157],theori:[61,81,160],therefor:[84,94,121,152],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,148,149,150,151,152,154,155,156,157,158,159,160],thing:[0,13,16,22,28,29,39,48,54,59,79,88,110,111,120,125,130],think:[58,64,66],third:[16,32,53,87,151,154],thn:139,thoroughli:92,those:[4,6,10,12,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,126,130,144,150,154,157],though:[3,39,73,148,152],thought:[126,134],thousand:[4,73],thread:[41,71,110,124,151],threat:4,thredd:[39,66,152,156],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,133,139,142,152,154,157],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,148],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,134],tide:[44,45,47,121,134,154],tidesandcurr:47,tier:13,tild:160,time:[0,1,5,6,7,10,14,16,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,126,130,131,133,135,137,138,141,143,148,152,155,156,160],time_files_scanf:158,time_integr:99,time_offset:148,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,139,141,143,148],timezon:59,timing_plot:123,tip:[24,45,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,133,154],title_with_t:[0,77],todo:[16,131,148,154,160],togeth:[5,16,28,29,30,54,56,70,110],toggl:141,token:29,tokyo:148,toler:[5,32,104,110,111,119,140,141,142],tolsp:110,too:[6,47,51,54,55,118,133,141,143],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,56,57,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,142,144,152,154,156,158],toolkit:[94,158],top:[0,1,3,11,23,29,30,51,54,55,57,58,70,77,91,96,97,106,111,130,137],topgraphi:154,topic:67,topo1:152,topo1writ:154,topo2kml:59,topo2kmz:[59,127],topo2writ:154,topo3writ:154,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,126,134,142,152,154],topo_data:142,topo_fgmax_mask:66,topo_fil:154,topo_file_nam:59,topo_fnam:154,topo_func:154,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,152,154],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,142,152,154],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,127,133,134,135,146,147,153],topograpi:152,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,127,152,153],topotools_exampl:[109,154],topotyp:[126,142,152],topotype1:154,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,139,140,141,143,151],total_energi:93,total_step:[139,141,143],touch:66,tout:143,toward:[4,30],tprint:[140,141],trace:93,traceback:77,tracer:132,track:[24,25,28,32,33,45,51,54,56,58,71,83,91,104,111,113,122,124,127,132,142,148],track_color:148,tracker:28,tradeoff:110,tradit:[86,92],traffic:[131,157],trail:[58,59],tran:17,tranpsort:139,trans_cor:89,trans_inc:89,transect:[32,142],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:139,transon:119,transpar:[51,59],transport:[139,141,143],transpos:5,transvers:[8,89,119,126,131,132,139,157,160],transverse_wav:[89,139,141,143],trap:41,trapezoid:38,travel:140,travi:[22,126],tree:[52,58,96,137],tri:148,triangl:70,triangular:[30,45,121],trickeri:55,trigger:92,troubl:[35,36,76,91],troubleshoot:[25,56,57,91],truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,133,134,135,142,149,152],tt3:[70,154],tulan:24,tune:[26,140],tupl:[3,30,47,59,70,77,89,93,154],turbul:[48,99],turn:[44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,160],twice:[51,139],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,130,131,133,136,137,141,142,152,154,157,160],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,130,148],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,133,140,141,142,148,149,152,154,160],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,140,141,151,152,155,156,157,160],typo:122,u_l:132,u_r:132,u_t:103,u_x:103,ubuntu:13,ucar:[68,92],ucsb:[30,70,156],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,57,61,63,76,81,89,91,111,119,121,129],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,131],understood:48,underwat:[45,51],undesir:130,undivid:110,unequ:133,unexpect:[47,51,59,62,148],unidata:[68,92],uniform:[30,32,66,70,73,84,121,152],uniformli:152,unind:[59,148],uninstal:[55,58,106],union:[133,152],uniqu:[1,72,118,148],unit:[30,46,47,52,70,89,119,148],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,105,134,139,140,154],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:148,unnecessari:126,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,139,141,143],unstabl:118,unstructur:154,unsuccess:98,unsur:139,untar:57,unterweg:81,until:[13,32,60,66,135],unus:[2,92],unzip:51,upbnd:[140,141],updat:[6,12,13,22,23,25,32,49,52,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,131,140,141,143,145,148,151,157],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,135],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,133,139,141,143,152,154],upper_bound_limit:87,upper_glob:89,uprint:[140,141],upstream:55,upstrik:[30,70],upward:48,upwind:139,url:[4,12,17,51,55,121,122,152,154],usa:148,usa_ag:148,usag:[0,1,2,3,13,45,51,56,92,121,148,154],use:[3,4,5,12,13,14,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,129,131,132,133,134,137,139,140,141,142,143,148,152,154,155,156,157,158,159,160],use_adjoint:5,use_for_kml:51,use_fwav:[131,139,141,143],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,138,139,140,141,142,143,146,148,151,152,154,157,158,160],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,59,66,71,72,78,81,84,93,105,106,110,111,121,124,131,133,139,140,142,152,154,155,160],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,131,139,141,142,143,145,154,160],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,131,132,135,142,151,154,160],usg:[4,30,156],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,99,101,102,103,105,106,110,111,117,120,121,123,124,126,129,131,133,135,139,141,142,147,148,151,152,154,155,156,158,160],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,131,139,140,141,142,143,155,157],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,138,153,154,155],uwamath:13,valid:[3,48,70,86,93,98,101,119,142,148,149,154],valout:[68,72,121,124,151],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,126,130,131,133,134,135,139,140,141,142,143,148,149,152,154,155,157,160],valueerror:[30,148,154],valuemax:32,van:[87,99,139,141,143],van_leer_klein_sharpening_limit:87,vancouv:133,vanish:5,vanleer:[83,99,139,141,143],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,131,132,134,136,140,160],variabl:[0,3,5,13,14,22,25,27,28,30,32,35,36,37,40,44,45,50,51,54,57,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,130,131,139,140,141,143,148,152,154,155,157],variable_dt_refinement_ratio:[140,142],variable_eta_init:135,variant:[20,56,104,111],varieti:[44,86],variou:[12,20,22,30,38,43,48,54,67,70,77,79,89,103,105,106,110,119,131,138,142,148],vastli:134,vector:[5,22,83,87,93,101,121,131,132],veloc:[16,32,47,60,67,79,96,103,119,134,139,140,141,142,143,157],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,133,139,141,143,148,154],verbosity_regrid:[125,140,141],veri:[3,5,16,22,48,51,55,56,59,70,77,81,84,92,93,94,95,96,99,111,114,118,133,135,139,149,152],verifi:[47,104,111,156],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,73,76,77,79,80,84,87,91,92,94,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,135,136,137,139,140,141,142,143,146,147,148,152,154,157,160],versu:154,vertic:[30,38,48,51,59,66,133,134,142,154,156],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,131,133,137,144,146,147,152,154,157],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,144,145],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,154],virtual:[4,13,25,27,101],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,56,57,58,62,66,67,73,77,78,79,80,91,95,100,106,137,138,144],visibl:[12,13,43,51,109,144],visit:[22,25,76,129],visual:[23,24,28,35,36,44,45,57,58,67,72,73,76,91,95,96,106,117,124,158],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,133,140,151,152,157],vrt:51,vstack:133,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,57,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,129,131,133,138,139,145,149,152,157,159,160],wait:13,wall:[16,41,96,103,118,121,123,139,141,143,151],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,129,131,132,133,137,138,141,142,145,148,152,154,155],warm:87,warn:[24,28,92,93,99,126,139,155],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,133,154],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,131,133,134,135,142,152,154,156,157],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,126,132,133,134,139,140,141,142,143,157],wave_toler:[110,142],wavelength:48,web:[23,25,28,35,36,51,54,55,121,144,154],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,134],webserv:13,websit:[16,51,54,144,154],weight:51,welcom:[24,81],well:[4,6,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,132,135,139,140,146,147,148,157,160],wellington:148,wendroff:[89,99,139,141,143,160],weno:[73,91,99],weno_ord:99,went:[58,132],were:[4,6,14,20,32,44,54,60,63,67,68,84,110,113,119,122,126,133,135,152],weren:125,west:152,western:154,wet:[32,39,45,66,133],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,57,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,133,134,138,139,141,142,143,144,148,152,154,156,157],whatev:[29,68,83,98,131],when:[5,14,15,16,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,57,58,60,64,66,67,70,71,72,73,76,77,79,83,90,91,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,126,128,131,133,134,135,136,138,139,140,141,142,143,144,148,152,154,155,156,157,158,160],whenc:93,whenev:[28,118,157],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,126,130,132,133,134,135,138,139,140,141,142,143,148,151,152,154,157,160],wherea:[44,51,76,94],wherev:[29,155],whether:[3,6,13,16,22,47,53,56,58,60,61,62,67,81,89,92,93,98,99,110,111,119,131,133,139,140,142,154],which:[0,1,3,4,5,6,7,11,12,13,14,16,20,22,25,28,29,30,32,33,35,36,37,38,39,43,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,126,130,131,132,133,134,135,139,140,141,142,148,149,152,154,156,157,159,160],whichclaw:155,whidbei:[39,66,133],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,56],whole:[28,51,93,94],whose:[3,77,84,96,97,135,139,140,154],wide:[58,106,132],wider:77,width:[30,51,59,70,72,89,96,101,110,133,141,143],wiki:100,wikipedia:53,wind:[121,142,148,149,154],wind_forc:142,wind_index:142,wind_refin:142,wind_spe:148,window:[13,30,67,79,137],wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,58,67,75,76,91,96,99,100,102,106,108,110,119,136,144,146,147,155],within:[6,16,28,29,54,58,66,73,77,95,104,106,110,131,133,138,144,154],without:[16,22,40,44,48,59,61,62,63,66,67,77,79,81,87,91,92,93,104,106,111,133,137,141,143,148,155,157],wkt:51,wmo:148,wmo_:148,wmo_ag:148,won:[12,13,66,84,154],woodward:120,word:[93,121,148],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,127,129,131,137,138,139,140,142,144,149,152,155,159],workflow:[108,144,148],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,148],worst:134,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,133,134,135,138,139,142,148,152,157],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,148],wrapper:154,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,141,143,148,152,154],write_:92,write_arrai:92,write_atcf:148,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:148,write_hurdat:148,write_imd:148,write_jma:148,write_p:[92,98],write_tcvit:148,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,91,92,96,119,131,139,140,141,142,143,148,154,157],wrong:[58,63,67,93,106],www:[4,13,17,30,39,45,54,60,61,66,68,81,84,89,92,94,120,122,148,154],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,133],x_2:[5,133],x_c:133,x_cell:59,x_center:133,x_edg:[59,133],x_i:[131,157,160],x_inch:59,x_mask:154,xarr:89,xarrai:154,xarray_d:154,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[140,141],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,152],xllcorner:[53,152],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,141,143,152,154,157],xlowerg:84,xmax:0,xmin:0,xpoint:142,xrang:96,xtick:[39,49],xupper:[0,22,141,143,154],xxdiff:111,xxx:152,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:133,y_cell:59,y_center:133,y_edg:[59,133],y_inch:59,year:[4,17,22,51,59,91,112,122,148],yellow:[59,77,148],yellow_red_blu:77,yes:67,yet:[1,13,18,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,127,128,129,131,139,141,159],yianni:[4,17,81],yield:3,yleft:[140,141],ylimit:[0,44,51,124,138],yllcenter:[53,121,152],yllcorner:[53,152],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,141,152,154],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,150,152,155,156,157,159],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,131,136,137,146,147,152,155,157],yourself:[41,44,57],youtub:[24,108,124],ypoint:142,yupper:[22,141,154],z_allow_wet:39,z_dry:39,z_format:[39,66,154],zdry:[39,66],zenodo:[4,57,124,125,126,127,128,129],zero:[3,16,30,32,39,41,59,67,83,96,101,103,126,133,134],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,140,141],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:154},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sealevel","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":135,"catch":28,"class":[83,86,148],"default":[15,107,135,136,146,147],"final":55,"function":[14,47,59,65,66,79,93,99,160],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,Adding:[28,51,88,96,131],For:6,Going:90,One:[131,132,160],The:[51,65,66,67,103],Use:102,Using:[5,13,25,29,38,52,58,63,68,71,93,96,99,131,138,157],about:[4,81],abov:29,access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,140,142],adjoint:5,adjust:135,advect:97,after:130,afterfram:67,algorithm:[6,17,66,73,160],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,133,140,142],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,140,141,157],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:142,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,133],author:4,auto:[30,33,47,59,154],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,157],background:77,backward:[18,121,122,123,124,125,126,127,128],base:62,basic:[51,82,95],bathymetri:156,befor:157,behavior:135,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,157,160],bounding_box:133,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:156,burger:97,candid:55,capac:160,cautionari:48,cell:[6,39,133],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],chardiff:111,check:[28,111],checkpoint:130,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,139,143,150],claw:[74,137],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,43,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,127,128,129,132,143,159],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,57,58,74,111,155,157],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,155],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125,126,127,128],compil:[41,62,68,102,145,155],compon:[23,77],comput:[73,130],condit:[6,16,96,103,157,160],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,111,133],continent:133,continu:111,contourf:77,contribut:[26,28,132],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:133,coordin:[49,51],copi:69,correctli:94,cover:133,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,131],dart:156,data:[33,51,72,138,142,149,152,154,155,156,157],debug:[77,140],defin:[16,133],deform:135,dem:[39,66],demonstr:132,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:138,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,132,160],dimension:131,directli:13,directori:[58,62,69,77],displac:152,doc:54,docker:29,dockerfil:[29,55],docstr:[30,33,47,59,154],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,145,154],doing:55,domain:[89,103],done:157,download:152,doxygen:9,drop:105,dry:[39,66],dtopo:153,dtopotool:30,duplic:62,each:[28,157],earth:51,earthquak:[70,156],easi:106,ec2:13,elev:[49,66,135],environ:[41,137],equat:[97,103,132],error:[28,102],eta:135,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,133],exe:155,exist:69,experi:58,extra:54,extrapol:110,f2py:155,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,130,133,142,152,157],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,142],flag2refin:110,flag:[5,6,62,66,110,133,140],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,152],formul:160,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,155,157],found:67,frame:93,framework:55,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,133,154],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[43,54,67],gaug:[44,51,60,93,156],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,126,127,128,142,154],geo:142,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,136,142,146,147],geometri:89,geophys:25,get:[25,29,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:160,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,142],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:160,hint:[48,77,105],hll:132,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:135,initi:[6,39,66,96,103,135,157],input:[22,32,92,139,140],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,106,150,155],instanc:13,instanti:133,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88],issu:28,item:77,jupyt:[12,29,37,144],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:13,layer:132,level:[28,135],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,155],link:21,load:51,local:145,locat:44,log:[13,93],longitud:[49,51],machin:[29,159],make:[77,94,144,155],make_kml:133,makefil:[40,62,63,96,130],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:133,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:142,mesh:[6,25],method:[0,1,2,3,133,160],mhw:66,migrat:25,miss:132,model:[48,70,108,109,156],modif:39,modifi:[28,63,130],modul:[30,33,47,59,91,104,141,143,154],monitor:[32,142],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,152],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],notebook:[12,29,37,105,144],number:55,numpi:100,object:[89,138],obtain:100,okada:70,old:8,older:25,onli:66,open:55,openmp:71,oper:80,option:[51,57,79,94,96],order:102,osf:55,other:[17,18,23,24,29,32,54,77,120,121,122,123,124,125,126,127,128,129,133,135],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,130,139,140,142,155],overlai:51,overview:[25,138],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[73,89,94,95,101],paramet:[22,44,77,79,103,139,140,142],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:94,photo:74,pip:[58,80,155],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,138,144,155,158],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:131,polygon:133,port:84,post:76,potenti:132,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:140,printfram:79,problem:[8,84,96,103,157],procedur:32,process:[32,76],processor:41,produc:79,propag:160,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,153],pythonpath:[106,137],q0002:72,qinit:[107,142,152],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,133],readm:11,recent:[24,28],rectangl:[38,133],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,142],region:[66,110,133,142],registr:53,regress:111,relat:133,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,126,127,128,131],request:28,requir:[51,157],resolut:[51,160],resourc:25,restart:[29,83,130],result:[13,46,51,68,95,144],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,157],roe:132,routin:[15,22,63,78,107,136,146,147],rst:11,rule:[38,133],run:[29,35,36,37,46,83,85,88,94,95,111,139,140,155],ruptur:70,sage:85,same:63,sampl:[39,66,141,143],save:[93,144],scienc:55,script:96,sea:135,sealevel:134,search:67,seismic:135,select:133,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,134,135,137,155],setaux:[136,157],setplot:[67,77,79,138],setrun:[22,44,139,140,141,142,143],shallow:[97,132],share:144,sharpclaw:99,shelf:133,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,133],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:133,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,131,132,157],some:[29,77,156],someth:77,sourc:[62,70,96,149,156,157,160],space:160,spatial:[135,157],special:[3,140],specif:[32,103,111,142,148,157],specifi:[38,60,77,79,110,138,139,140,142,157],sphere:16,sphinx:[54,145],sprint:[24,74],src1d:[146,157],src:[147,157],start:[25,29,46,108,109],state:101,statist:151,step:[56,57,58,100,157],stop:[13,29],storm:[108,142,148,149],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,135],surg:[108,149],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,157,160],test:[28,36,37,94,100,111,150],than:77,thi:[4,54],tide:156,tile:51,time:[139,140,142,151,157],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,148,153],top:28,topo:153,topofil:66,topographi:[30,33,39,46,51,66,142,152,154,156],topotool:154,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,155],troubleshoot:[58,102,155],tsunami:[48,51,109,156],tutori:[24,103,105],tvd:87,two:132,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,135],used:155,useful:[29,132],user:[16,24,29,73,157],using:[48,67,157],utah:74,util:[47,59,104],valu:[32,83],vari:[135,157],variabl:[41,62,96,137],version:[25,29,40,50,52,54,55,58,106],view:13,virtual:159,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],visit:158,visual:[25,51],washington:74,water:[49,97,132],wave:[131,160],web:13,webpag:[13,54,144],what:[77,79,93,132],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,153,154,157],workflow:28,workshop:[24,74],write:[66,96,111,133],written:93,your:[13,28,29,36,51,94,96,100,144,150],zenodo:55,zone:66}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[154,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],fgout2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[148,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[148,5,1,""],Storm:[148,0,1,""],available_formats:[148,3,1,""],available_models:[148,3,1,""],fill_rad_w_other_source:[148,3,1,""],make_multi_structure:[148,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[148,2,1,""],plot:[148,2,1,""],read:[148,2,1,""],read_atcf:[148,2,1,""],read_geoclaw:[148,2,1,""],read_hurdat:[148,2,1,""],read_ibtracs:[148,2,1,""],read_imd:[148,2,1,""],read_jma:[148,2,1,""],read_tcvitals:[148,2,1,""],write:[148,2,1,""],write_atcf:[148,2,1,""],write_geoclaw:[148,2,1,""],write_hurdat:[148,2,1,""],write_imd:[148,2,1,""],write_jma:[148,2,1,""],write_tcvitals:[148,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[154,0,1,""],create_topo_func:[154,3,1,""],determine_topo_type:[154,3,1,""],fetch_topo_url:[154,3,1,""],get_topo:[154,3,1,""],read_netcdf:[154,3,1,""],swapheader:[154,3,1,""],topo1writer:[154,3,1,""],topo2writer:[154,3,1,""],topo3writer:[154,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[154,2,1,""],Y:[154,2,1,""],Z:[154,2,1,""],crop:[154,2,1,""],delta:[154,2,1,""],extent:[154,2,1,""],generate_2d_coordinates:[154,2,1,""],generate_2d_topo:[154,2,1,""],in_poly:[154,2,1,""],interp_unstructured:[154,2,1,""],make_shoreline_xy:[154,2,1,""],plot:[154,2,1,""],read:[154,2,1,""],read_header:[154,2,1,""],replace_no_data_values:[154,2,1,""],replace_values:[154,2,1,""],set_xyZ:[154,2,1,""],smooth_data:[154,2,1,""],write:[154,2,1,""],x:[154,2,1,""],y:[154,2,1,""],z:[154,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[97,1,0,"-"],advection_1D_py:[97,1,0,"-"],burgers_1D_py:[97,1,0,"-"],euler_1D_py:[97,1,0,"-"],shallow_1D_py:[97,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[97,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[97,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[97,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[97,3,1,""],euler_hll_1D:[97,3,1,""],euler_hllc_1D:[97,3,1,""],euler_roe_1D:[97,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[97,3,1,""],shallow_fwave_1d:[97,3,1,""],shallow_hll_1D:[97,3,1,""],shallow_roe_1D:[97,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":141,"00000e":141,"0000ff":[3,59],"001000e":141,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":158,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":154,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,138],"1drad":157,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,139,141,143,157],"2013it":17,"2018300n26315":148,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":151,"27t06":59,"27t07":59,"288e":151,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,139,141,143,157],"301e":151,"30x30":51,"34kt":148,"360x360":51,"373e":151,"3rd":[96,99,132],"3x3":39,"40000000e":72,"4th":99,"50kt":148,"5_x_x":55,"5d0":157,"5e3":142,"5r01ar53652":4,"639s":[36,150],"64kt":148,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,97,139,140,142],"break":[28,30,48,51,59,70,111,118,135,142,154],"case":[5,6,8,13,16,18,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,126,130,133,134,140,142,148,152,154,155,157,160],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,130,133,138,139,140,141,142,143,154],"const":32,"default":[0,1,2,3,13,18,22,28,30,32,41,44,45,47,49,50,51,53,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,126,130,134,140,141,142,148,152,154,157],"export":[41,51,57,58,67,71,94,102,137],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,130,132,139,141,143,154],"float":[3,30,32,44,47,59,86,89,97,101,104,139,140,142,143,148,154],"function":[0,1,2,3,5,7,15,17,18,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,126,131,133,135,136,138,139,140,141,142,143,148,152,153,154,155,157],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,111,119,124,131,132,133,134,135,139,140,141,142,143,152,154,156,158],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,139,140,142,148,154],"long":[28,30,47,48,51,69,91,118,126,140,154],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,139,140,142,148,152,154,157],"ond\u0159ej":4,"public":[4,13,21,129],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,131,133,139,141,143,148,150,154,157,160],"short":[24,48,96,126],"static":[30,70,121],"super":[23,28,121,154],"switch":[29,51,58,96,106,111,120,134,156],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,130,131,133,135,136,139,140,141,142,143,148,154],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,106,111,139,150,154,155],"var":[0,3,13,27,148],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,131,135,142,156],AND:[61,81],ARE:[61,81],AWS:13,Added:[18,87,113,115,117,118,120,124,127],Adding:[18,25,82,90],And:[6,20,54,57],Are:112,Axes:[138,148],BCs:[141,143],BUT:[61,81],But:[13,32,39,51,77,102,114,121,135,137],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,138,139,140,141,142,143,145,148,149,151,152,154,156,157,160],GIS:[51,119,152],Going:[13,25,91],Ike:108,NOT:[59,61,77,81],Not:[30,51,89,119,126],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,154],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,152],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,105,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],Their:81,Then:[13,16,28,29,30,44,54,55,56,63,66,70,71,79,83,86,94,100,101,102,106,131,133,154,155],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,80,93,100,108,120,121,138,139,149,150,157,159],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,59,60,63,66,67,73,77,79,83,88,91,92,93,95,101,103,107,109,110,111,113,119,120,121,122,126,130,140,144,148,149,152,156,160],USE:[61,81],Use:[30,51,91,97,99,121,132,139,141,143,152,154],Used:132,Useful:[1,3,132,139],Uses:[30,132,154],Using:[0,1,2,3,7,17,22,41,42,51,53,75,76,77,79,89,90,91,123,139,146,147,151,154,155,160],WCS:156,Will:98,With:[6,22,28,44,49,51,58,66,73,110,118,131,133,139],__________________o:154,__file__:106,__future__:119,__init__:[55,96,106],__main__:[141,143],__name__:[141,143],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,155],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,138,144],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:131,_pyclaw_io:86,_static:54,_storm_modul:149,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,148,154],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,18,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,131,138,140,141,142,152,155,157,160],aboutu:30,abov:[3,5,13,14,16,18,20,28,32,35,36,38,39,40,41,44,48,51,53,54,55,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,110,119,121,126,131,133,135,137,138,139,141,143,148,151,152,154,157],abs:[30,52,96,104,110,133,154],absolut:[93,110,111,121,140,141],absolute_import:119,abspath:[5,38],abstol:104,academ:102,acceler:[52,97],accept:[44,83,93,99,139],accept_reject_step:99,access:[0,17,27,29,55,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,152],account:[13,24,28,55,85,94],accumul:[44,119,130],accur:[5,48,70,91,99,126,139,157,160],accuraci:[44,64,73,141,143],achiev:[20,84,146,147],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,131,141,157],acoustics1dheterogeneoustest:[36,150],acoustics3dheterogeneoustest:[36,150],acoustics_1d:[83,97,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,150,157],acoustics_1d_homogen:[88,111],acoustics_1d_pi:97,acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[141,157],acoustics_3d_heterogen:[36,150],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,152,154],acsza1:30,acszb1:30,act:[87,154],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,142],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,134,142],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,126,131,133,138,139,140,142,157],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,57,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,132,143,148,152,154,158],add_colorbar:[30,154],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[141,143],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,18,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,130,135,139,140,142,148,151,154,158],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,18,23,24,28,29,32,36,37,38,45,46,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,126,128,131,133,139,143,148,151,152,157,158],addition:[94,148],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,135,139],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,134,139,157],adjust_fgmax_1d:33,admiralti:133,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,139,140,157],advantag:[12,76,92,105,111,133],advect:[17,77,91,94,131,132,143,157],advection2dannulustest:[36,150],advection_1d:97,advection_1d_example1:63,advection_1d_pi:97,advection_2d_annulu:[36,150],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:157,advection_3d_swirl:[117,151],advertis:126,advis:[34,61,81],affect:[18,22,62,119,120,126,139,152,155],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,132,135,139,140,141,143,148,157],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,127,152,155],against:[104,111,118,150],agenc:[4,56,148,149],agency_pref:148,agre:[12,28,39,53,131,151,154,157],agreement:48,ahmadia:[4,17,81,91],aht:134,aid:84,aim:28,aks2203:4,albada:87,alg:141,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,131,133,139,141,143,154],align:[32,39,51,59,66,124,126,142],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,91,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,129,130,131,132,133,135,138,139,140,141,142,143,144,149,150,151,152,154,155,157],alloc:[20,99,117,126,140],allocat:117,allot:59,allow:[4,6,13,18,22,27,28,29,32,38,39,44,45,47,50,51,53,54,58,64,66,67,70,71,73,76,77,86,91,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,126,131,133,139,141,142,143,144,148,152,154,156],alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,57,68,70,106,110,117,130,133,135,142,148,156],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,58,59,60,66,79,80,94,98,100,103,105,114,122,137,154],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,43,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,139,140,141,142,143,144,146,147,148,149,150,151,152,154,155,156,157,159,160],alter:51,altern:[30,35,36,44,47,51,56,60,62,67,76,91,94,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,128,154],alwai:[16,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,126,135,141,142,143,152,157],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,131],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,18,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,126,135,138,139,141,143,151,157],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:141,amr_levels_max:[32,110,140,141],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,43,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,80,91,100,106,107,110,111,130,131,133,136,137,139,142,146,147,150,151,155],amrdata:[5,22,32,110,124,126,140,141,142],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,100],anal:17,analog:[139,140],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,57,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,130,133,134,135,138,139,140,142,148,157,160],anim:[12,16,18,42,51,117,124,125,144],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,58,59,72,76,80,88,99,102,111,121,148,157],answer:24,anyth:[3,6,28,29,58,63,111,121],anywher:110,aoml:148,apach:13,apdq:[97,131],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,43,70,108,109,116,120,121,122,123,124,125,126,127,128,132],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,59,62,65,77,93,98,101,119,126,142,144,152],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,130,131,141],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,130,139,142,157],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,43,45,46,55,57,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,131,133,135,136,139,142,146,147,152,154,155,157,158],appreci:81,approach:[5,7,13,28,29,38,44,54,57,69,76,84,91,94,96,104,110,117,119,120,122,131,132,138,142,157,160],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,57,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,131,134,139,148,157,160],approv:48,approxim:[6,16,25,33,48,51,70,131],april:[24,124,125,129],apt:[13,80],arbitrari:[32,59,99,113,133,142],arbitrarili:66,arc:134,arcgi:154,architectur:94,archiv:[12,21,36,51,55,111,144,150,154,156],arcminut:[70,152],arcsecond:[45,152],area:[15,22,45,99,108,119,135,136],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,131,133,138,139,140,148,154,157],argv:[141,143],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,140,141,148,154,157],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,126,131,132,133,136,139,140,141,142,143,148,152,154,157],arrang:154,arriv:[22,32,34,39,45,119,134,135],arrival_tol:32,articl:[4,17,91,144],artifici:[16,135],arxiv:52,asc:154,ascii:[18,44,53,67,83,86,93,98,119,130,139,141,143,152,158],ascii_output_format:68,ask:24,ask_us:154,aspect:[12,24,29,43,48,49,67,154],assert:[141,143],assess:[4,48,134],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,97,103,104,110,117,133,134,139,142,148,149,152,154,156,160],assumpt:[51,54],asteroid:4,astronom:134,atcf:[108,121,148,149],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,127,148,154,155],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,130,138,139,140,142,148,154],attributeerror:77,aug:[17,122],aug_glob:97,augment:[66,132],august:[24,121,129],austin:4,author:[17,25,45,48,87,91,92,97,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,126,139,140,142,152],autonom:5,aux1:32,aux1d:157,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,131,132,136,139,140,141,142,143,157],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,131],aux_out_field:44,aux_r:[97,131],aux_time_dep:99,aux_typ:[5,140,141],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,131,139,141,143,157],auxillari:[92,98],auxl:131,auxr:131,auxtyp:141,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,58,62,66,67,73,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,131,132,134,139,141,142,144,148,149,152],available_format:148,available_model:148,averag:[4,6,15,17,32,39,45,48,49,53,67,97,101,114,126,131,135,136,152,154,157],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,126,128,130,139,142,160],awai:[28,134],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,138,148,154],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,133],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,157],b4step2:[15,136,157],b4step3:15,b4stepn:157,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,138],backward:[5,28,30,47,59,70,92,114,115,154],bad:[106,111],bai:[66,134,156],balanc:[6,17,73,120,132,146,147],bale:17,balelevmitross02:[4,17,139,160],ball:154,band1:154,band:[51,154],bar:[13,54,148],barrier:[66,104],base:[5,6,13,18,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,126,134,139,140,141,142,143,148,154,157,160],base_subfault:30,baselin:51,basemap:148,bash:[41,51,57,58,67,71,94,106,137],bash_profil:[102,137],bashrc:[13,41,102,137],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,97,99,111,131,132,148,160],basin:108,bathymetri:[15,45,48,51,59,97,108,119,121,132,134,136,142,152,154],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,139,141,143],bc_upper:[16,83,96,103,139,141,143],bcn:[6,16,143,157],bcnamr:[6,16,121,139,141,157],beach:[39,66,132],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,131,134,139],becom:[48,102,160],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,97,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,126,127,130,131,133,139,140,142,152,154,157],befor:[1,3,4,6,14,18,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,129,131,134,135,139,140,142,152,154,155],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,97,103,132,148],begin_d:47,behav:44,behavior:[45,54,110,111,118,124,126],behaviour:83,behind:[39,66,135],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,131,133,135,139,142,148,155,157],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,28,29,30,32,39,45,51,52,54,55,58,59,64,67,70,79,81,83,85,93,97,103,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,136,137,138,139,140,141,142,143,146,147,148,152,154,157],benchmark:48,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,56,62,69,71,76,77,92,96,108,109,110,111,121,129,131,142,145,148,152,157],besttrack:148,beta:[47,87,99,143],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,126,127,142],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,131,133,134,139,140,141,142,143,144,148,151,152,154,156,157],bewar:[106,154],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,152],bin:94,binari:[5,18,41,55,61,68,81,92,93,95,118,130,139,141,154,158],binary32:[18,92],binary64:[18,92],bind:[28,51,76,84,94],bisect:[140,141],bit:[16,22,30,55,92,94,102,132],bitbucket:94,black:[3,44],blank:[3,59,148],blast:120,blob:[118,132],block:[7,30,39,59,70,72,73,83,92,101,104,111,157],blossei:4,blue:[3,11,39,44,59,66,77,133,148,154],bmatrix:132,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:148,bomb:[62,71],book:[4,12,17,25,29,80,98,131],bool:[0,1,2,3,47,59,86,92,97,98,99,101,104,142,148,154],border:[67,157],bore:48,both:[3,16,18,28,30,33,35,36,38,39,44,48,53,56,58,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,131,132,133,135,139,140,141,143,146,152,157],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,136,146,147],boulder:24,bound:[33,84,87,94,133,139,154],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,133,139,141,143],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,133,154],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,127,128,129,136,146,147],brew:80,brief:[4,55,132,142],briefli:160,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:154,broken:[19,20,28,68,70,111],brought:28,brown:[81,154],brows:[11,24,42,51,67,144,157],browser:[13,28,29,35,36,51,54,144],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,140,141,154],buffer_length:154,buffer_s:[30,70],bug:[4,8,12,22,24,41,51,64,71,77,81,116,117,118,119,121,126,127,128],build:[4,17,28,29,54,55,67,84,94,104,120,133],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,146,147],bulk:[19,83,97,103,131,141,157],bull:[17,30],buoi:45,burger:[91,131,157],burgers_1d:97,burgers_1d_pi:97,busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_l:97,c_node:89,c_nodes_with_ghost:89,c_r:97,cach:[22,47,55,79,81,124,140],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[131,157,160],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,97,99,114,119,154],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,131,133,135,137,139,141,142,143,148,154,157],call_before_step_each_stag:99,call_setplot:77,callabl:[91,104],calucl:97,cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,152,154,155,156,157,158,160],cannot:[52,58,92,126,135,148],canopi:100,capa:98,capa_index:[139,141,143],capab:154,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,18,22,32,34,48,52,66,73,84,91,113,118,119,121,122,123,124,125,154,156],capac:[15,97,136,139,140,141,143],captur:[32,48,133,152],car_nam:148,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,142],cartopi:148,cascad:4,cast:154,cat_nam:148,catalog:156,categor:148,categori:148,category_color:148,caus:[22,48,51,54,61,62,73,79,81,102,111,118,119,120,122,126,138,140,152,154],caut:87,caution:48,cautionari:[25,45,63,142],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:154,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:[97,154],cdot:[64,96,133],ceas:105,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,126,131,134,135,136,139,140,141,142,143,149,151,152,157,160],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,152],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,133,135,140,141,142,148,149,152,157],centerlin:30,centers_with_ghost:89,central:[139,148,149],central_pressur:148,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,133,139],certainli:94,certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,139,141,142,143],cfl_desir:[99,139,141,143],cfl_max:[99,139,141,143],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,129,131,135,136,139,140,141,142,143,146,147,152,155,157],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],changes_to_mast:55,channel:24,chapter:[16,131,139,157],char_decomp:99,charact:47,characterist:99,charg:13,chava:142,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,80,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,133,135,136,140,141,146,147,148,154,155,156,157],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55,57],checkpoint:[25,44,118,119,121,123,126,139,141,143],checkpt_interv:[139,141],checkpt_styl:[118,130,139,141],checkpt_tim:[139,141],checksum:92,chen:[30,156],chile2010:[51,109,110,113,116,122,152],chile2010_adjoint:5,chile2010_fgmax:[18,32],chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[141,143],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[130,139,141,143],choic:[16,45,76,99,139,141,142,143,157],choos:[0,7,56,58,59,70,96,139,142],chose:64,chosen:[3,29,32,38,39,51,53,66,103,110,126,134,140],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,129],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:143,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,43,46,55,56,57,58,63,69,71,72,73,80,81,83,86,88,89,90,91,92,96,106,107,111,130,131,136,137,140,142,147,155,157],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,18,19,20,22,24,28,30,32,33,35,36,37,38,40,41,43,44,45,47,49,50,52,54,55,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,131,135,136,141,142,143,145,146,147,150,151,152,154,155,157,158],claw_1dnoncon:160,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[139,140,141,142,143],claw_topo_download:154,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,130,139,140,141,142,143],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,130,131,133,137,139,140,141,142,144,145,148,150,152,154,155,157,158,160],clawpack_gpu:52,clawpack_src:[58,106],clawplotax:[1,2,3,27,77,121,126,138],clawplotdata:[2,3,27,44,51,77,79,86,138],clawplotfigur:[0,1,51,77,138],clawplotitem:[0,1,7,22,27,76,78,118,121,138],clawrundata:[5,44,59,122,130,139,140,141,143],clawsolut:1,clawsolv:[99,131],clawsolver1d:[83,86,89,99,103,131],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,56,57,62,106,111,137,139,140,141,143,154,155],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,18,67,79],clearer:[123,126,127],clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,133],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,129],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,154],clone:[12,18,23,24,42,52,54,55,58,80,94,100,109,155],close:[13,39,51,54,59,66,67,92,110,124,140,148],close_fig:59,closer:[70,141],closest:148,cloud:13,cluster:[6,17,110,140,141],clustering_cutoff:[110,140,141],cma:148,cmap:[39,51,59,66,77,133,154],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,32,51,110,119,126,139,152,157],coarsen:[53,110,121,122,140,152,154],coarsen_method:53,coarser:[3,16,53,119,135,139,140,157],coarsest:[6,51,72,113,130,139],coast:[39,66,110,135,154],coastal:[48,124,134,135,142,152],coastlin:[32,51,66,124,133,142,156],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,61,62,63,64,68,69,70,71,72,73,75,77,79,80,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,126,130,131,132,133,137,139,140,141,142,143,144,148,150,151,152],code_of_conduct:121,coeffici:[5,64,96,97,99,101,102,103,131,142],colella:[6,17],collabor:[51,144],collect:[12,25,26,28,30,32,70,76,83,99,144],collela:120,color:[3,30,39,51,59,66,67,76,133,138,148,154],colorado:24,colorbar:[3,39,59,66,121,124,133,154],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,154],column:[10,30,32,44,48,60,93,97,117,133,154],column_list:30,column_map:30,com:[12,13,18,23,24,26,28,29,52,54,55,57,58,92,94,96,100,116,118,119,120,129,132],combin:[20,54,59,118,156],combinatori:111,come:[3,28,77,79,88,94,99,117,152,157],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,131,137,138,139,140,152,154],commenc:130,comment:[5,11,18,24,49,55,120,130],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,155,157],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,152],compactli:133,compar:[5,22,36,44,48,51,55,77,93,110,111,134,140,142,150,156,160],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,114,115,119,120,154],compens:154,compil:[13,25,35,36,40,46,58,63,71,73,79,80,84,91,92,96,100,104,113,131,132,137],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,133,138],compon:[3,16,20,22,25,36,44,57,58,67,72,76,96,98,100,101,110,117,126,132,139,140,141,152,157],compos:[30,83],comprehens:111,compress:[30,92,154],compris:[22,91,154],comput:[3,4,5,6,13,16,17,18,27,29,30,32,33,39,44,47,51,53,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,106,108,110,113,114,118,119,123,126,131,135,139,141,142,143,149,152,157,160],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,131],concern:[22,45,140],conclus:[4,51],conda:51,condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,134,139,141,142,143],conduct:121,conf:[54,55],confer:24,config:94,config_fc:155,configur:[77,83,94,154],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,152],confus:[3,53,58,106,126,131],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,133],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,132,157,160],consid:[6,39,48,58,66,84,106,137,144,154],consider:[48,83],consist:[6,18,25,32,47,51,55,59,94,105,119,131,133,142,152,157],consol:[13,93,142],consolid:117,constant:[30,32,48,59,64,94,97,131,132,133,135,142,154,157],constant_storm_modul:117,constrain:110,constraint:[39,44,133,140,160],construc:59,construct:[22,30,32,53,83,89,104,148,149,152],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,43,44,45,47,49,50,51,52,53,54,55,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,91,92,94,96,97,98,99,101,103,104,105,106,110,111,113,114,121,122,129,131,133,138,139,142,144,148,152,154,155,157],containing_rect:30,contains:29,containt:130,contamin:139,contan:51,content:[4,6,23,51,55,73,84,91,142,152,157,158],context:[27,51,157],contigu:[72,92,101,133],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,131,139,160],contour:[3,30,44,51,53,67,105,138,154],contour_color:3,contour_kwarg:[3,154],contour_level:[3,154],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,133],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,132,142],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,157,160],convens:152,convent:[3,22,30,46,53,70,97,152],converg:[66,76],convers:[19,25,84,92,110,133,152,156],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,58,59,62,70,73,84,91,96,104,105,121,124,139,140,148,152,156],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,133,142,154],coordinate_specif:[30,70],coordinate_system:[15,60,136,142],coorind:154,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,135,136,140,144,146,147,152,157],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,142,146,147],coriolis_forc:[48,142],corner:[3,30,32,53,70,72,89,133,139,141,143,152,154],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,135,139,141,142,143],correctli:[28,32,84,90,117,142],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,131,133,134,139,140,141,142,143,148,152,156,157],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:132,could:[5,12,13,27,32,35,36,39,44,53,60,66,70,71,77,79,83,89,93,101,102,106,117,126,133,135,140,141,142,143,154,157],council:4,count:83,count_from_zero:83,counter:[104,154],counterclockwis:70,coupl:[119,160],courant:[4,6,110,120,139,140,141,143],cours:[13,26,32,44,46,60,70,94,95,103,105,108,142,152],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,135,141,152],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,151],crash:[118,139,140],creat:[0,1,2,3,5,6,7,18,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,126,133,138,139,140,141,144,145,148,154,156,157,158],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:154,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,141],critic:[51,93,131],crop:[53,154],cross:28,crucial:[51,152],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,130,134,138,139,140,141,142,143,148,149,152,154,156],current_data:[0,3,25,44,76,77],curv:[3,44,76,133],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,135],custom_bc:96,customari:93,cut:140,cutoff:[6,141],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,142],dalcin:81,dam:[51,135],dam_break:132,damag:[6,61,81],damiansra:96,dark:133,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,148],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,126,131,133,134,140,141,143,148,151,153,158],data_break:[39,66,154],data_fil:33,data_limit:[39,66],data_storm:148,data_typ:104,databas:[13,30,70,104,108,121,152],datadir:118,dataset:[152,154,156],date:[5,28,40,47,51,54,55,62,77,148,155],date_tim:47,datetiem:148,datetim:[47,148],datum:[47,48,97,134,142,156],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,148,154],dealt:[32,39],debug:[7,18,41,62,72,76,93,101,106,111,139,141],debugg:77,decemb:[18,128,129],decid:[83,99],decim:[47,59],decimc:148,decis:51,declar:[20,22,101,126,157],decompos:[72,131,160],decomposit:139,decor:104,decoupl:54,decreas:[44,135,152],deduc:152,deep:[5,66],deeper:[133,142,152],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,141,143,148],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,126,131,141,143,148,152,154,155,157,160],definit:[30,67,83,110,116],deform:[17,30,33,45,70,156],deg2dm:59,degener:133,degre:[30,47,51,59,70],delet:[20,28,58],delimit:30,delin:142,delta:[87,89,96,99,131,154,157,160],delta_h:97,delta_hu:97,delta_i:154,delta_limit:154,delta_x:154,dem:[32,45,53,59,121,152,154,156],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,131,154],dens:149,densiti:[86,93,97,101,103,140,141,157],depart:[4,148],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,62,64,67,70,77,82,92,97,98,99,104,106,110,121,135,140,142,154,155,157,160],deprec:[7,18,30,34,54,58,117,121,142,152,154],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,132,134,135,142,152],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,18,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,57,59,60,62,63,66,67,70,72,73,76,77,78,89,91,92,98,104,108,110,111,119,122,123,131,133,134,138,139,140,142,148,149,152,154,156,157,160],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,91,92,104,108,110,131,132,142,148,152,160],design:[4,27,28,51,81,83,103,133,156],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,135,137,139,140,141,143,148,152,154,155],desktop:94,destin:51,detail:[4,5,10,16,18,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,57,58,61,62,66,67,70,73,77,81,86,87,88,89,91,92,93,94,95,96,97,99,109,110,111,114,119,121,126,131,133,138,139,142,144,148,152,155,156,157,160],detect:[51,62,92,100,104,155],deterimin:[142,154],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,97,101,106,110,114,118,119,130,133,134,138,139,140,142,154,157],determine_topo_typ:154,dev:[18,24,28,54,55,94,121,122,127,128,129],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,126,131,134,135,141],dict:[30,86,92,97,98,101,148,154],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,148,152,154],dicuss:30,did:[121,126,133,152],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],differ:[1,3,6,7,12,15,16,22,28,30,31,35,36,39,44,46,48,50,53,57,59,62,64,66,67,70,71,76,79,83,84,86,88,89,91,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,126,127,131,134,135,136,137,139,140,141,142,146,147,152,154,155,156,157,160],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,154],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,131,139,140,141,143,154,157],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,141,142,143,154,157],dimensional_split:[89,117,139,141,143],dip:[30,70],dir:[55,94,158],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,131,139,140,142,154],directli:[8,18,19,23,32,48,57,67,70,77,79,83,84,87,91,101,104,106,121,154,158],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,43,44,45,47,50,51,54,55,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,130,131,135,136,137,138,139,140,144,146,147,150,151,152,155,157,158],directorti:108,disabl:[49,100,142],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,160],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,66,70,92,103,105,106,110,119,121,131,142,160],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,135,142,156],displai:[1,13,35,36,40,44,51,59,77,93,111,142],display_format:[44,60],display_landfall_tim:142,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,142,152,154],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,81,99,105,124],disturb:51,distutil:84,divid:[110,139],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,152],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,126,127,128,145],docker:[18,25,55,56,120,121,122,123,124,125,126,127,128,159],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,127,128,129,138,141,158,159],dodsc:[39,66],doe:[4,5,11,16,18,20,27,28,39,40,48,51,53,54,58,67,73,77,80,89,98,101,104,110,111,114,119,123,126,130,131,132,135,148,154,155,157],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126,127,128,129],doing:[6,11,18,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,18,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,140,141,143,152],don:[13,27,28,54,55,77,93,94,100,111,141,155],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,56,59,62,66,67,70,76,77,79,83,87,88,91,104,110,114,118,119,123,130,131,133,138,140,142,151,154,155,156],donna:[4,17],donnabois:4,donor:[139,141,143],dontflag:110,dot:[40,44,51,58,59,62,155],doubl:[67,84,89,104,131,140],down:[13,30,93,118,148,152,154],download:[12,13,28,29,30,36,37,39,45,51,55,57,58,68,88,94,100,121,122,129,150,154,155,156],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[140,141],dq_src:[96,99],dqdt:99,draft:55,drag:142,drag_law:142,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,138],driver:[20,63],drop:[13,54,80,124,126,135,139],dry:[16,17,25,32,45,97,124,127,132,135],dry_point:39,dry_points_sum:39,dry_toler:97,ds824:148,dst:59,dt_check:32,dt_initi:[113,139,141,142,143],dt_max:[139,141,143],dt_max_dtopo:[113,142],dt_variabl:[139,141,143],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,126,135,142,152,154,156],dtopo_data:[113,142],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,142],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,152,153],dtopotools_exampl:[30,70,109],dtopotyp:[142,152],due:[17,24,30,39,47,70,111,120,121,126,135,155],dummi:[84,99,157],dump:[18,72,139],dumpgaug:117,duplic:[77,116,130],durat:[30,126,134],dure:[5,22,32,39,44,59,70,73,113,134,135,141,142,143,152],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73,140],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:148,e_l:97,e_r:97,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,130,131,132,133,135,138,139,140,141,142,143,148,151,152,154,156,160],each_fram:44,each_gaug:44,ear:4,earli:[6,20,135],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,152,154],earth:[25,39,45,52,59,66,70,117,119,127,133,142],earth_radiu:142,earthquak:[25,30,45,48,109,135,142,149,152],eas:59,easi:[4,6,11,29,38,58,67,84,93,94,95,133,144,157],easier:[58,76,119,121,133,157],easiest:[19,28,41,73,77,79,110,157],easili:[3,13,28,32,51,54,67,77,84,89,100,104,111,124,144,148],east:[13,152],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[140,141],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,131,133,136,140,141,143,157],edgecolor:133,edit:[51,54,55,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,110,111,134,142,154],effici:[48,52,81,91,92,93,101,110,133,140],effort:92,efix:[97,132],egg:[29,58],eigenvalu:5,eigenvector:[5,131,160],either:[12,16,18,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,91,92,93,99,104,106,110,111,117,118,119,121,131,133,135,140,142,148,152,154,157,160],elast:[13,70],element:[0,3,22,59,97,99,101,139,140,141,142],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,133,134,142,152,154,156],elif:[141,143],elimin:[8,22,66,84,106,121,142],ell:131,els:[27,28,58,66,101,121,133,135,143],elsewher:[5,24,39,91,133],emerg:4,emmanuel:142,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,139,148,154],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,97,103,105,108,110,118,119,121,130,132,133,141,143,148,151],end_dat:47,enddo:157,endian:92,endors:[61,81],energi:[93,97],enforc:133,eng:148,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,140,149,151,152],ensembl:148,ensur:[35,36,37,67,108],enter:[67,92,94,100],enthought:[100,102],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,133,154],entireti:86,entri:[51,60,83,93,104,148],entropi:[97,132],enumer:[89,99],environ:[14,25,28,35,36,37,40,50,51,54,57,58,67,69,71,73,95,102,104,106,119,154,155],envis:16,epd:102,eprint:[140,141],epsg:51,epsilon:87,eqn:160,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,130,133,139,141,143,152,154],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,131,139,141,142,143,152,157,160],equiv:160,equival:[6,18,44,52,53,59,60,123,152],err:141,errest:110,erron:[30,70],error:[5,16,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,126,140,141,148,155],escap:[110,141],escienc:13,especi:[28,51,84,96],esri:[53,152],essenti:[5,53,67,99,142,152],est:141,establis:121,establish:4,estim:[5,64,110,140,142],estimat:[5,141],eta:[25,30,32,39,44,45,110,117,124,134],eta_init:135,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,131,138,139,142,148,157],etopo1:[121,133,134,152,154,156],etopo_sample_2min:154,etopotool:[121,152],euler:[60,91,99,115,117,120,122,131,157],euler_1d_pi:97,euler_2d:[35,37,91,96],euler_exact_1d:97,euler_hll_1d:97,euler_hllc_1d:97,euler_roe_1d:97,evalu:[17,27,30,64,83,89,99,154,157],even:[39,48,51,58,61,70,81,104,110,124,140,141,152,155,157],evenli:[51,93],event:[33,45,48,59,61,70,81,134,135,139],event_tim:59,eventu:[13,45,124],ever:[138,142],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,131,135,137,139,141,143,148,152,154,157],everyth:[32,55,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,135],evolv:[22,83,86,99],evolve_to_tim:[83,99],exact:97,exactli:[28,33,50,52,101,133,139],exam:77,examin:[16,18,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,18,20,22,24,27,28,29,30,38,40,41,43,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,105,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,151,152,154,155,156,157],exce:[32,51,110,140],exceed:[110,121],except:[22,27,30,39,92,97,104,124,139,142,148,152],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,131,137,155],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,114,120,121,135,148,154,156],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,97,103,104,105,111,121,122,124,126,141,142,143,148],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,126,139,144],explan:28,explicit:[104,140],explicitli:[32,63,67,91,126,139,155,160],explor:[4,59,77,79],expon:64,expos:[13,73],express:[4,30,61,81,100,133],extend:[8,16,22,39,59,66,67,89,121,133,135,142,152,154,160],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,126,139,150,154,160],extent:[38,39,48,56,59,64,66,67,83,89,101,113,126,133,142,152,154],extra:[3,51,132],extra_fil:54,extract:[51,55,92,148,154,156],extran:117,extrap:[16,96,103,139,141],extrapol:[5,7,16,22,96,103,121,139,140,141,143],extrem:[51,102],extropl:16,eye:[148,149],eye_loc:148,f2py:[58,73,84,91,96,104,131],f2py_flag:104,f2s:59,f49620:4,f77:[41,155],f90:[5,9,15,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,126,127,131,132,135,136,146,147,152,155,157],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,138],facilit:[44,60,91,111,117,119,124,144,148],fact:[51,92,101,105,110,135],factor:[6,51,140,142,151,154],faculti:30,fade:77,fail:[28,92,94,104,111,117,148],failur:[111,122,135],fairli:[16,48,119],fall:[134,142],fals:[0,1,2,3,5,18,30,39,48,49,50,51,59,66,86,89,92,97,98,99,101,104,118,119,124,130,132,139,140,141,142,143,148,154],famili:[89,99,141,143],faq:[13,25,76],far:[16,18,38,42,66,76,122,124,126],farther:66,fashion:130,faster:[123,124,126,154],fastest:[92,100],fault:[17,25,30,45,109,121,128,152,156],fault_plan:30,favor:[117,121,140,154],favorit:76,fbound:41,fc02:4,fcompil:155,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,129,142,148,152],februari:[24,120,126,127,129],feet:[134,156],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:154,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,134,150,152,157],fewer:[66,110,154],ff0000:[3,59],ff9999:138,ffff00:77,fflag:[28,40,62,68,71,84,104,152],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,142],fgmax_data:[32,142],fgmax_fil:142,fgmax_grid:[32,33,59,124],fgmax_interp:[32,126],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fgout2kml:59,fgout:[18,59],fgout_grid:59,fid:33,field:[18,44,59,96,98,101,119,121,148,149],fig:[59,133],fig_kwarg:[30,154],fignam:[1,79],figno:[1,2,44,51,77,79,138],figsiz:[2,39,66,77,133,138],figur:[0,1,2,4,13,18,30,35,36,39,42,44,53,59,66,67,76,79,98,106,131,133,138,154],file1info:142,file2info:142,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,91,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,134,135,136,137,138,139,140,141,143,145,146,147,148,149,151,154,155,156,158],file_format:[18,44,92,98,148],file_prefix:[18,92,98],file_prefix_p:86,fileio:72,filenam:[18,31,51,117,154],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,135,139,148,151,154,157],fill_between:3,fill_mwr:148,fill_rad_w_other_sourc:148,fill_topo:154,fill_valu:[92,154],fill_var2:3,fill_wher:3,filpatch:[9,39,119,123,126],filter:[92,154],filter_region:154,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,58,62,68,70,73,76,81,88,96,101,102,104,106,108,121,148,155],fine:[3,32,33,39,54,69,73,91,96,110,119,126,133,135,139,140,142,152,157],finer:[3,7,32,51,110,113,114,133,139,140],finest:[3,32,39,44,121,151,154],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,133,151,152,157],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,37,38,39,51,54,55,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,131,132,133,135,139,141,142,148,150,152,154,160],first_test:35,fist:66,fit:[61,81],fix:[6,18,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,97,113,114,115,116,117,118,119,120,122,123,124,125,126,127,128,132,139,141,143,154],fix_links_top_level:54,fixedgrid:[18,142],flag2refin:[5,7,22,140,141],flag2refine_tol:[5,110,140,141],flag:[7,12,13,22,25,28,29,38,40,41,45,52,58,68,71,84,102,104,106,117,122,126,141,142],flag_richardson:[5,110,118,140,141],flag_richardson_tol:[5,110,140,141],flagregion:[7,25,66,110,124,126,133,140,142],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,92],fletcher32:92,flexibl:[22,30,59,84,117,120,131,133,140],float32:18,float64:18,flood:[51,66,135],floor:[30,45,70],flow:[4,16,17,18,23,32,33,45,46,48,73,91,108,124,131,139,142,152,157],flowchart:[6,7,25],fluctuat:[97,99,160],fluid:[32,48,60,134],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,97,99,131,139,160],fly:25,fmt:3,fname:[39,59,126,133,141,142,143],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,35,36,37,39,44,46,51,53,54,55,56,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,126,130,131,133,137,138,139,140,142,148,150,151,152,155,157,159],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forbiddn:140,forc:[22,25,40,45,62,66,104,110,124,132,135,140,142,149,154,155],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:148,forestclaw:[106,117],forget:155,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,43,44,47,51,55,60,61,64,70,72,81,84,93,97,99,103,104,110,114,121,122,123,124,130,131,133,139,140,141,142,146,152,154,157,160],format:[1,3,5,13,14,18,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,126,139,142,148,149,154,156,158],format_str:44,former:[77,157],formerli:117,formul:[4,5,48,64,131,139],formula:[64,135],fort:[1,8,18,27,32,44,67,68,76,92,98,114,118,119,120,130,139,140,141,143,151,158],fortfil:[35,36],fortran:[6,9,11,13,14,18,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,106,117,118,119,121,122,123,131,132,137,140,141,142,143,148,150,151,152],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,157],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,130,134,138,148,154,155],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,97,103,160],fraction:[6,13,30,110,139,157,160],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,18,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,130,138,141,143,144],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,81,84,118,119],free:[13,51,62,70,81,85,96,100,102],frequenc:[60,70,99],frequent:[5,18,20,27,102,118],friction:[25,45,48,142,146,147],friction_depth:[64,142],friction_forc:142,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,43,44,45,48,51,52,53,55,56,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,129,130,131,132,134,135,136,139,140,141,142,143,146,147,148,149,150,152,155,156,157,158],frommm:87,front:[25,32,38,39,45,67,98,104,133],fset:101,fstr:67,ftrapuv:41,fuca:133,fuction:39,full:[5,6,14,18,55,57,58,59,77,86,93,99,103,137,152,157],fulli:[6,48,51,52,120,124,131,142,148,149],fun:104,func:[104,148],function_nam:104,fund:[25,56,91],funrol:104,further:[6,16,18,25,32,41,48,59,62,67,91,105,110,111,140],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,140,148,152],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,131,139,157,160],fwave:[89,97,99,131],g77:102,gain:92,galerkin:99,galleri:[12,25,35,36,37,42,55,75,76,88,91,105,111,116,120,144,150,157],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma1:97,gamma:[64,97],gap:154,garret:142,gas:[6,97],gaug:[7,18,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,130,134,141],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,141],gaugeno:[44,60,141],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,130],gauss_pt:30,gaussian:[5,83,103,143],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,57,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,106,108,110,113,117,119,130,133,134,137,139,140,144,149,151,152,157,158],generate_2d_coordin:[39,66,154],generate_2d_topo:154,geo:[45,64],geo_data:[60,142],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,43,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,80,91,100,106,108,109,111,130,131,132,134,135,137,139,140,148,149,150,151,152,153,154,155,156,157],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:157,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,139],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geotiff:127,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,131,133,140,148,154,155],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,154],get_topo:154,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,58,71,80,82,102,137,155],gfortranbinari:100,ghamdi:4,ghost:[7,16,71,72,89,92,99,101,119,126,139,141,143,151,157,160],gica2937:30,gigabyt:152,git:[12,13,23,24,25,26,29,52,55,58,91,100,111,123],git_statu:50,github:[12,15,18,22,23,24,25,26,29,52,54,57,58,88,96,100,107,111,116,118,119,120,129,131,132,136,146,147,155],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,126,133,139,142,152,154,156],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,126,133,134,135,142,148,152,154,157],glitch:116,global:[6,14,89,101,104,134,152,156,157],gloss:156,glu:16,gmt:47,gnu:100,gnufcompil:155,goal:6,godaddi:54,godunov:[4,89,99,139,141,143,157],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,112,126,144,152,160],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,126,131],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,127,131,133],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,148],govern:[32,142],gprint:[140,141],gpu:[25,123],gradi:[4,17,81],gradient:[120,160],gradylemoin:4,grai:148,grant:[4,81],graph:9,graphic:[18,23,28,52,67,76],grav:[97,132],gravit:[64,97,142,157],graviti:[132,142],great:[47,88],greater:[5,32,59,64,66,100,110,130,139,140,142],greatest:110,greatli:[18,26,81,134],green:[12,59,66,70,77,111,148,154],grid1d:89,grid1info:142,grid2info:142,grid:[4,7,17,18,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,126,128,131,132,133,134,135,139,140,141,143,149,151,152,154,156,157,160],grid_files_scanf:158,grid_numb:72,grid_registr:[53,154],griddata:154,gride:149,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,131],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,158],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,145],guidelin:91,gzip:[55,124],h_l:[97,132],h_r:[97,132],hack:101,had:[44,52,53,119,120,121,122,126,135],hadjimichael:[4,17,81],half:[0,16,17,18,70,99,139,157],halfspac:70,hand:[3,5,18,19,20,64,83,111,133],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,132,135,142,148,154],hang:70,happen:[31,51,62,83,98,101,124,155],har:131,harbor:32,hard:[49,54,71,77,154],hardcopi:[1,77,79,138],harder:139,hardest:68,hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,129,131,133,134,139,140,142,148,151,152,154,157,158,160],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,37,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,126,127,130,131,132,133,134,139,140,142,144,148,152,154,155,157],haven:[103,105],haversin:47,hazard:[4,32,45,64,134],hdf5:93,hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,148,152,154],header_styl:154,heat:97,heavili:84,height:[51,97,154],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,56,62,76,79,91,94,100,104,111,118,124,131,144,155],helzel:17,henc:[5,32,53,54,63,99,105,106,110,135],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,131,132,133,149,154,160],heterogen:157,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,131,134,135,156,157],higher:[3,6,32,51,89,99,100,110,124,131,133,134,135],highli:[121,135],highlight:[11,13],hilo:[134,156],hint:[16,25,45,76,79,106,142,155],histor:[48,70,156],histori:[28,55,58,79],hit:[16,67,79,93,139],hko:148,hll:97,hllc:97,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,142,149],holland_storm_modul:117,home:[13,29,30,58,137],homebrew:[51,80],homepag:[21,25],homogen:[70,99,157,160],hood:[76,91],hope:[26,111],horizont:[51,154],host:51,hour:[13,51,59],how:[1,6,7,12,16,18,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,129,130,131,138,139,142,144,152,154,158],howev:[6,13,16,22,29,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,91,110,111,119,121,123,134,135,138,142,151],howto:105,hpc:24,hrd:148,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,148],html_plot:95,html_theme:54,htmlplot:88,http:[4,12,13,17,18,24,26,28,29,30,39,47,51,52,54,55,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,127,128,129,132,148,154],huge:[60,66,135,152],human:148,hurdat:[121,148,149],hurrican:[108,148],hurt:[12,63],hwrf:[121,142,149],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,131,139,142,157,160],hyperol:139,ian:4,ibm:100,ibtrac:[121,148],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,154,160],ideal:[55,97,134],ident:[39,63,89,92,94,111,154],identifi:[5,35,36,39,51,66,84,110,124,148],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,126,134,154],iinstal:94,ike:108,illustr:[12,25,30,32,35,43,51,66,67,70,109,116,117,121,123,131,133,144,154],imag:[13,35,36,39,55,59,66,111,121,133],imd:[148,149],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,97,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,97,99,103,104,111,116,119,122,124,126,131,132,139,154,157,160],impli:[61,81,142],implicit:[81,99],implicitli:[126,142],importantli:94,impos:[16,84,110,146,147,160],imposs:[48,139],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,126,127,139],imread:[39,66],imshow:[39,66,154],in_poli:154,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,138],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,43,44,48,51,53,55,57,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,97,98,99,100,101,103,106,108,110,111,113,119,120,121,122,123,124,125,126,127,128,131,132,133,137,139,141,142,144,145,148,149,151,152,154,157],inclus:133,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,132,154],incorrect:[121,122,135,148],incorrectli:118,increas:[51,59,71,133,142],increasingli:28,increment:[32,44,51,89,104,139,141,143],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,22,23,27,44,54,55,77,89,91,94,96,97,104,121,126,139,140,141,142,143],indian:148,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,126,131,132,139,140,141,142,143,152,154,157],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,148],inf:154,infer:154,infinit:139,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,140,141,148],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,58,63,72,77,78,79,83,84,89,91,93,94,95,97,98,104,106,118,121,122,124,129,130,131,134,137,139,140,142,148,151,152,155,156,157,158],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,134],initi:[4,5,7,12,13,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,97,98,99,101,102,104,107,110,118,121,124,126,131,134,139,140,141,142,143,148,152,154],initialize_sourc:84,inland:[39,66],inlet:133,inlin:[39,132],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,131,141,142,143,148,149,152,154,157],input_filenam:84,input_path:152,input_unit:30,inputfil:[104,154],ins:22,insert:[11,16,70,92,137],insid:[38,89,94,98,131,133,154],insidi:119,inspect:[19,20,51],instabl:[119,126],instal:[12,13,18,23,25,29,35,43,51,54,55,79,81,82,85,90,92,103,105,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,137,159],install_fortran:36,install_prerequisit:35,installing_fortcod:55,installing_opt:58,installing_pip:55,instanc:[3,28,51,70,73,79,83,84,86,89,92,93,96,133,142],instantan:99,instanti:[7,86,94,96,99,101,141,143],instati:[70,154],instead:[3,13,18,32,35,36,39,41,44,52,54,55,58,62,63,68,100,101,104,106,118,119,122,126,130,131,132,133,152,154],institut:4,instruct:[13,18,24,25,29,35,36,39,51,52,54,55,68,83,85,91,94,100,103,106,120,127,129,130,155],insur:[50,54,62,79,110,113,117,140,142,152],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,131,139,142,148,154],integr:[5,22,53,60,81,91,93,99,113,114,118,141,143,151,152,157],intend:[48,84,121],intens:[84,148],intent:[84,131],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,133],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,126,127,128,135,139,148],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,131,157,158,160],interface_funct:104,interior:[6,16,39,72,101],interleav:[81,97],intermedi:[19,32,70,157],intermit:[44,119],intern:[6,30,44,53,59,70,119,140,152,154,160],interp_dz:33,interp_kwarg:148,interp_method:32,interp_unstructur:154,interpol:[5,6,16,18,30,33,34,39,44,45,53,59,67,70,77,119,126,133,134,135,142,148,149,154],interpret:[30,53,70,121,152],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,126,133,139,142],introduc:[5,16,19,32,33,39,77,124,126,133,135,140,160],introduct:25,introductori:24,intuit:91,inund:[32,45,51,64,110,124,134,156],inundataion:[134,156],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,135,155],involv:[24,96,99,108,149],ioerror:98,ioexcept:104,iout:143,ioutarrivaltim:142,ioutsurfacemax:142,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,132,133],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,133],isn:[62,71,72,155],iso:148,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,131,142,155],item1:[0,79],item:[0,1,3,67,76,79,104,126,138],itemnam:[1,79],iter:[30,39,66,97],ith:97,its:[4,6,13,22,29,34,39,48,51,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,141,154,160],itself:[4,70,76,105,124,131,142,154],ixi:[38,66,131,133],jacobian:[131,160],jan:[4,55],januari:[105,112,119,129],japan:[51,59],japanes:148,javascript:144,jed:81,jet:[30,67],jma:[121,148,149],job:[13,128],join:[24,77],journal:[4,17,52,91,144],jovyan:29,jpg:[54,67],jsanim:[18,113,117],jsanimation_frametool:115,juan:133,juli:[114,115,129],jump:[4,5,67,79,89,99,119,139,160],junction:[32,142],june:[120,121,122,123,129],jupyt:[25,43,70,73,91,105,109,117,118,124,131],just:[0,6,28,32,40,55,83,84,86,88,92,93,94,95,96,101,104,114,121,139,157],justifi:70,kappa:[103,160],kappa_i:160,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,142],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,148,154],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,131],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,138,148,154],kind:[18,86,88,93,123,131],kinemat:[30,45],king:[4,81],kitsap:133,klein:87,kml:[59,117,119,120,121,124,125,133],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,127,153],kmw6h:[4,55,129],kmz:[59,119],kneplei:[17,81,91],know:[48,58,62,70,81,108,120,124,126,131,134,154,155,156],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,139],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,138,148],kyle:[4,17,81,87,91,92,97],label:[18,30,49,51,53,59,117,133,152,154],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,135,152],lambda:[89,154],lambda_roe_1:97,lambda_roe_2:97,land:[16,39,45,46,51,54,55,59,66,78,124,135,142,154],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],languag:[11,76,104],lapack:113,laptop:[29,91],larg:[5,6,12,18,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,126,130,133,135,139,140,154,156],larger:[13,20,32,51,59,70,71,72,77,89,113,119,126,140,142,152],largest:[110,134],last:[3,18,27,32,55,57,77,83,84,96,103,118,139,148],lat:[30,47,51,53,152,154],later:[13,39,50,51,58,79,99,130],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,133,136,142,148,154],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,133,136,139,148,157],launch:[37,88,94,95,100],law:[4,17,59,142,160],lax:[89,99,139,141,143,160],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:133,lead:[6,13,22,32,48,51,64,67,70,106,109,126,135,140],learn:[48,88,105],least:[4,5,6,13,51,59,66,67,102,110,111,118,119,126,139,141,152,154],least_significant_digit:92,leav:[12,13,16,44,58,140,154],lectur:24,led:[20,122],leer:[87,99,139,141,143],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,129,130,131,134,140,152,154,156,160],legaci:[23,55,58],legend:[120,133],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,141,143,154],lenght:139,length:[15,30,48,59,70,96,101,119,126,136,139,140,141,142,157],leq:[5,133],less:[39,48,51,60,64,71,99,110,111,126,139],let:[16,45,58,81,108,120,126,131],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,57,58,67,71,72,84,86,89,91,92,93,99,106,107,110,111,113,114,118,119,121,124,130,133,134,137,139,140,141,142,143,151,152,154,156,157],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,131,139,157,160],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,135,136,140,146,147,155,157],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,133],lies:[6,16,32,110,133,142],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,131,133,138,151,152,155],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,133,139,140,141,143,148,152,154,160],lin:142,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,126,133,138,139,141,148,152,154],linear:[4,5,17,30,32,51,70,77,83,87,99,122,131,132,133],liner:[0,30],linestyl:154,linewidth:[77,133],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,129,131,132,134,136,143,146,147,152,156],linspac:[33,67,86,103,133],linux:[13,69,80,102,111,137],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,126,130,133,137,139,140,141,142,143,148,149,151,154],listofgrid:121,literalinclud:54,literatur:[48,131],littl:[48,70,92,134],live:101,llapack:102,llcenter:[53,152,154],llcorner:[53,152,154],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,111,154,158],load_sift_unit_sourc:30,loc:[133,154],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,135,152,154,157],local_fnam:154,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,134,135,148,149,154],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32,126],logical_and:[39,66],logical_not:[39,66],logical_or:133,logo:[54,120],lon:[53,152],long_lat:154,longer:[20,28,44,54,55,59,80,105,119,121,124,126,130,131,142,152,156],longitud:[30,32,46,47,53,66,70,76,117,133,142,148,154],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,106,111,114,121,133,139,140,142,151,154,155],lookup:121,loop:[44,67,76,104,110,121,124,126,131,135,138,139,157],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,131],low:[51,66,84,154,156],lower:[3,22,30,32,33,38,53,66,72,89,94,133,135,139,141,143,152,154,156],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:160,mac:[71,80,102,111,137],machin:[13,25,71,73,111,119,137],maco:80,macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,126,133,135,142,149,152,154,157],magic:59,magnitud:[5,30,110,121,142],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,148,149,150,152,154,155,157],mail:[96,102],main:[5,11,12,19,28,39,43,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,140,152,157],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122,127],make:[1,5,11,13,14,18,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,126,127,131,133,139,152,154,156,157],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:148,make_shoreline_xi:154,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,68,71,73,77,79,84,90,91,110,113,117,119,121,122,124,135,136,139,141,142,143,144,146,147,152,155,157],makefile_kml:117,maketopo:[122,152],man:[17,25,45,48,142,146,147],manag:[4,12,13,51,93,148],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92,97],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,43,46,51,52,54,59,60,62,63,66,70,71,72,77,79,80,81,83,88,91,96,98,103,104,110,112,113,119,121,122,123,124,128,131,133,138,139,140,142,152,157],manifold:67,manipul:[44,154],manner:[5,39,44,51,60,66,70,76,121,135,139,146,147,152],manning_break:142,manning_coeffici:142,manual:[37,84,93,100,102,111,150],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,126,132,148,154,160],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89,126],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,129,133],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,133,154],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,133],maskedarrai:154,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,127,128,129,132,136,146,147],match:[30,38,51,59,92,98,111,148,154],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,132,138,148,154,155],matric:[5,131,160],matrix:97,matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,131,157],max1d:[71,124,140],max:[0,30,32,39,67,97,110,114,135,141,143,148,154,160],max_buff:[44,119],max_inch:59,max_it:[39,66],max_step:99,max_vertices_in_descript:59,max_wind_radiu:148,max_wind_radius_fil:148,max_wind_spe:148,maxgr:121,maxima:[32,71,142],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,139,140,141,143,148,149],maxlevel:[38,67,110,126,133,140,141],maxm:131,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:154,mbc:157,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,131,134,139,141,143,156],mean_latitud:49,meant:[41,89,99,148],measur:[30,44,47,70],mechan:[58,101,129],media:17,medium:[141,157],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,126,140,141],memsiz:[126,140],mention:[91,139,140],menu:[13,18,25,54,59,120,129,134,156],meqn:[44,72,131,157],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,138,139,157],meshgrid:[83,96,133,154],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,126,139,141,143,155],met:[32,61,81],metadata:[72,152,154],meteorlog:148,meter:[30,47,51,66,70,110,134,142,148,154,156],meterolog:148,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,131,138,139,140,141,143,148,151,152,154,157],metric:47,mhd:123,mhhw:134,mhw:[39,45,48,134,152,156],micro:13,mid:77,middl:[97,118],midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,58,63,66,67,71,77,80,83,93,97,106,108,109,110,113,139,140,152,154,156,157],migrat:19,millimet:154,million:124,mimic:121,min:[0,97,148,154,160],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,133,140,154],minimum:[3,32,44,51,70,103,119,142,154],minisymposterium:24,minlevel:[38,110,126,133,140,141],minmod:[87,89,99,139,141,143],minmod_limit:87,minor:[11,51,54,93,113,114,115,116,117,118,119,120,121,122,124,126,128],minut:[39,47,51,54,59,134,154,156],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,148,152,154,155],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:148,mllw:156,mode:[1,13,28,104,151],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,133,134,135,142,148,149,152],modern:[100,121,131],modif:[28,40,61,67,77,81,87,142],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,126,133,135,136,139,141,142,143,146,147,152,154,157],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,83,84,87,88,92,96,97,98,101,105,106,111,114,115,117,120,121,122,123,124,130,133,139,140,142,148,152,153],module_nam:104,modulu:[30,97,103,141,157],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,32,48,60,64,93,126,132,142,152],monitor:[18,22,25,33,34,38,45,66,71,114,116,119],monoton:[139,142],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,18,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,91,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,137,138,139,140,141,142,144,148,150,151,152,154,155,156,157,160],moreov:70,most:[3,18,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,129,130,131,132,133,134,138,139,140,142,145,157],mostli:[3,76,91,124],motion:[70,152],motlei:52,movabl:30,move:[16,32,35,36,45,54,58,60,70,96,110,113,115,120,142,152,153],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[134,156],mthlim:[89,99],much:[13,18,28,32,41,51,54,72,73,76,80,105,110,113,117,124,133,139,142,151,154],muct:99,multi:[17,51,83,113,115,118,121,157],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,76,83,89,92,93,104,106,111,113,119,123,130,131,140,148,149],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,43,46,51,54,57,61,62,63,66,67,70,71,72,81,84,91,92,93,96,98,99,101,102,103,104,106,110,113,117,131,133,134,135,139,140,141,142,143,148,154,155,156,157,160],mwave:131,mx1d:157,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:148,my_initial_solut:86,my_riemann_solv:131,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:148,n00014:4,n12:32,n23:32,nadi:148,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,126,130,131,133,138,139,140,141,142,143,148,154,157,158],namespac:84,nan:[47,154],nasa:4,nation:[4,48,148],nativ:92,natur:[32,54,131,160],naux:72,navd88:152,navig:[12,29,54,144],nbconvert:124,nbtool:117,nbviewer:118,nc_param:154,ncar:4,ncei:[39,66,134,152,156],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,148,154],ndarrari:89,ndim:[22,72,79,139,140],ndip:30,nearbi:134,nearest:[39,44,154],nearfield:135,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,58,59,67,70,72,73,79,83,84,89,92,117,119,121,130,131,138,139,140,152,155,157],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,126,128,130,131,133,135,136,137,139,140,141,142,143,146,147,148,149,150,152,154,156,157,160],neg:[22,39,135,142,152,154],negat:[47,152],neglig:[61,71,81,142],neighbor:[4,32,39,66,110,119,135,140,141,154],neither:[51,59,61,81,119],ness:92,nest:[113,119,140,141],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,152,154],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,139,141,143,148,154,156],neumann:148,never:[32,96,101,107,110,124,133,139,141,143,155],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,138],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,138],new_plotitem:[0,3,44,51,77,138],new_userdata:[141,143],newdelhi:148,newdir:69,newer:[28,71,87,121],newton:97,next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,139,140,142],nfr:4,ngdc:[39,66,134],nghost:72,ngrid:72,nhc:148,nhtmp:48,nice:[28,59,84,96,114,133],nicer:79,nih:4,nnnnn:[130,139],no_data_valu:154,no_tran:89,noaa:[30,39,47,53,66,70,121,134,148,152,156],nodal:121,nodata_valu:[39,154],nodataerror:148,nodatav:152,nodatavalu:[53,152],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,139,141,143,148,160],nonconserv:160,none:[0,1,2,3,16,18,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,128,130,139,141,143,148,154],nonlinear:[4,5,17,48,87,131,139,160],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,154],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,131,132,139,140,141,143],north:[32,39,47,66,70],northernmost:152,norwegian:4,nose:[28,36,37,82,94,111,150],nosetest:[28,36,37,94,100,111,150],notat:[30,47,59,131],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,91,92,94,96,97,100,101,104,105,107,110,130,131,133,134,135,136,138,139,140,141,142,143,146,147,148,149,151,152,154,156,157],notebook:[25,30,32,39,43,54,66,70,73,85,91,93,109,117,118,124,131,132,133,154],notebook_html:124,noth:[15,60,101,122,136,146,147,154,157],notic:[51,61,81,103,111],nout:143,nov:[17,91],novemb:[118,119,129],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,126,127,134,138,140,142,144,152,159],npoint:33,nprint:[140,141],npt:32,npy:154,nrm:59,nrow:39,nrule:133,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:141,ntot:143,num_aux:[5,84,92,94,96,97,101,131,139,140,141,143,157],num_cel:[8,22,89,131,139,140,141,143],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,139,140,141,143],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,131,139,141,143,157],num_fgmax_v:[32,142],num_ghost:[84,89,92,96,97,99,101,131,139,141,143],num_output_tim:[5,83,86,93,130,139,141,143],num_proc:119,num_var:92,num_wav:[87,97,131,139,141,143],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,43,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,105,108,110,111,113,114,116,117,118,119,120,121,123,130,131,133,139,140,141,142,143,148,149,150,154,157],numer:[4,17,51,105,122,148],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,132,133,141,154,155],nxpoint:154,nypoint:154,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,113,122,130,131,139,140,141,142,143,148,154],obliqu:16,obscur:22,observ:[32,48,113,126,134,139,142,149,156],observatori:4,observerd:149,obtain:[4,6,12,32,43,44,46,48,58,59,92,93,94,110,126,131,135,142,144,152,160],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,148,149],ocean:[5,16,17,32,48,51,108,110,133,146,147,152],octob:[115,116,117,123,124,127,128,129],off:[12,13,18,44,48,51,59,67,79,86,93,110,140,154],offer:[40,51,111],offic:4,offici:[55,80,121],offset:[49,51,59,148,154],offshor:[59,64,66,133,135],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,126,130,131,133,134,135,138,139,142,148,152,156,157,160],okada85:[17,30,70],okada:[17,25,30,45,109,152,156],okadamap:30,olav:4,old:[1,7,18,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,126,131,142,152],older:[18,22,41,52,54,57,58,99,125,140,142],olig:[6,17],omega:83,omit:[58,111,119,130,142],omp:140,omp_num_thread:[41,71,119,151],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121,127],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,18,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,126,130,131,132,133,135,136,138,139,140,141,142,143,144,146,147,148,152,154,157,158],ones:[29,83,84,101,121,139,140],onli:[1,3,5,6,8,12,13,16,18,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,56,58,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,126,130,131,132,133,134,135,137,138,139,140,141,142,143,148,152,154,155,156,157,160],onlin:[24,105,109,121,145,152],onr:4,onshor:[32,59,64,66,133,135],onto:[28,30,51,135,154],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,133,137,156,158],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,151],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,149],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,18,20,22,25,28,29,30,32,35,36,40,41,47,50,53,56,58,62,67,68,76,77,83,84,86,88,89,90,92,93,95,98,99,100,103,104,106,107,110,111,114,117,118,119,122,124,127,133,137,138,139,141,142,143,144,148,154],orang:148,order:[4,5,6,13,16,17,29,30,32,48,53,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,126,131,133,135,138,139,140,141,143,148,152,154,155,157,160],ordinari:131,ordinarili:102,org:[4,17,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,126,127,128,154],organ:[22,23,35,36,86],orient:[70,84],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,126,130,140,141,143,154],orlean:108,oscil:[44,160],oscillatori:154,osf:[4,129],osher:99,osx:[51,80],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,56,57,58,61,62,64,66,67,68,70,71,72,76,79,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,131,134,137,138,139,142,144,148,152,154,156,157,158],otherwis:[5,30,54,58,61,66,81,93,97,98,99,100,101,104,110,139,154],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,58,59,60,61,62,67,70,77,80,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,131,133,140,141,143,148,154,155],out_path:148,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,141,143,155],outdir_p:86,outfil:154,outflow:[16,139,141,143],outgo:16,outlin:[59,67,79,124,131,138],outn:27,output:[1,5,7,8,13,14,16,18,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,131,138,141,143,148,149,150,151,154,157,158],output_aux_compon:[139,141,143],output_aux_onlyonc:[139,141,143],output_file_prefix:[86,93],output_filenam:84,output_format:[5,18,86,93,139,141,143],output_opt:86,output_path:152,output_q_compon:[139,141,143],output_step_interv:[139,141,143],output_styl:[72,83,86,93,130,139,141,143],output_t0:[130,139,141,143],output_tim:[93,130,139,141],output_unit:30,outputdir:67,outputfil:154,outsid:[6,16,38,59,66,124,133,135,152,154],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,131,133,135,138,140,141,142,151,152,157,160],overal:[10,83],overflow:[41,120],overhead:[6,71,110,151],overlai:[59,127],overlaid:[51,59],overland:51,overlap:[110,113,114,152],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,130,157],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,131,144],owner:121,p_center:[89,103],p_function:93,p_l:97,p_node:89,p_r:97,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,148,155,158],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,134,136,138,144,146,147,156,157],pair:[13,92,111,154],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,71,82,88,90,91,93,96,98,100,104,110,111,119,140],paramet:[1,6,7,9,16,18,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,97,98,101,104,107,110,113,119,124,126,130,131,132,134,135,141,143,149,152,154,155,157],parameter:[108,121,133,142,148,149],parametr:149,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,58,59,60,68,81,84,94,100,101,103,105,109,111,123,157],partial:[17,73,108],particl:[18,25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,61,62,63,67,73,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,126,138,148,149,160],particularli:[16,27,29,32,50,51,56,57,58,70,72,106,114,117,121,126,135,152],partit:94,pascal:[30,148],pass:[16,18,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,131,141,148,154,157],passiv:132,password:28,past:[4,21,25,54,60,66,98,119,122,126,129,133,134,142],patch:[3,6,7,16,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,126,135,138,140,142,151,152,157],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,57,58,60,62,66,69,76,77,86,91,92,94,98,104,120,121,124,137,142,148,154,155],path_to_atcf:148,path_to_ibtrac:148,pathtool:67,pattern:[20,46,51,134],pcolor:[3,18,44,76,105,154],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolor_kwarg:18,pcolorcel:[39,66,124,133],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,56,57,58,73,80,91,103,139,157],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:133,peopl:[4,12,13,81],pep8:28,per:[13,30,44,51,59,67,71,92,140],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,126,130,131,137,142,150],perhap:[6,12,32,39,44,54,77,101,104,110,133],perimet:32,period:[5,6,16,32,62,83,96,110,139,141,143],perman:[67,124,125,126,127,128],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,142,152],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,73,81,83,90,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124,140],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,160],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,131,133,152],piecewiselinear:38,pink:[39,59,77,138],pinkfig:77,pip3:55,pip:[18,25,28,29,51,55,56,85,91,94,100,102,106,120,121,122,123,124,125,126,127,128,129,137],pixel:[51,59],pkg:[55,143],place:[5,16,20,24,28,35,36,51,54,58,62,63,69,91,93,94,96,100,106,113,119,157],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,58,64,92,99,148],planar:[70,131,132],plane:[30,70,118,133,156],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,24,28,54,56,57,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,129,131,148],plot:[0,1,2,4,7,8,12,18,27,29,30,35,36,37,39,40,41,42,45,53,55,56,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,133,148,150,154],plot_box:[30,154],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:148,plot_phas:132,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,138],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,138],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,138],plotdata:[27,44,68,77,79,86,118,119,138],plotdir:[1,79,138],plotexampl:77,plotfigur:[44,77,138],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,138],plotloop:[77,79],plotstyl:[3,44,77,138],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,132],plu:[77,113,141,143,154],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,133],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,130,131,133,134,135,136,137,139,140,141,142,146,147,148,152,154,155,157],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,152],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,154],polynomi:131,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,140],portion:[6,18,39,51,66,84,151],posit:[32,39,51,70,73,104,142,152,154],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,131,133,134,135,139,140,152,156,157],post:[18,24,25,26,28,51,94,127,128,144],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,134],powel:142,power:[51,56,76],pprint:[140,141],practic:[28,106,108],pre:[3,13,33,55,85,92],preced:77,preceed:[72,157],precis:[41,59,84,89,92,131,154],precompil:91,predefin:77,predict:47,prefer:[59,94,96,137,140,148],prefix:[55,86,92,93,98],preliminari:[47,121,156],prepar:28,prepc:126,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[36,37,56,58],present:[6,24,59,89,97,98,99,104,144,157,160],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,97,103,120,121,142,148,149],pressure_forc:142,pressure_index:142,presum:134,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,28,29,44,53,55,57,58,63,66,67,79,83,99,108,113,118,119,120,121,126,130,135,139,140,141,143,152,154],previous:[6,22,32,66,79,117,124,135],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,148],primarili:[52,121,122],prime:111,principl:[5,154,157],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,128,133,139,141,143,148,155],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:155,printfig:1,printfram:[1,76],prior:[61,81,129,135,141,143,157],probabl:[13,28,51,64,66,105,106],probdata:[141,143],problem:[4,5,7,16,17,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,126,131,133,135,139,140,141,142,143,144,151,155],problem_data:[83,97,98,101,103,132],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,157],proceed:54,process:[18,25,35,36,45,51,52,70,83,88,89,94,100,101,104,111,119,155],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,126,138,142,154],product:[5,30,61,81,104,110,122],professorship:4,profil:[149,154],profit:[61,81],program:[4,46,48,63,73],programmat:81,progress:[24,28,99,108,117,152,154],prohibit:22,proj:141,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,140,154],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,154],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,131],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,136,140,141,146,147,148,157],properli:[20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,111,113,116,121,124,126,137,139,142,152,154,155,157],properti:[30,60,67,83,86,89,98,101,154],propos:[28,160],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,129,131,139,147,148,151,152,154,157],proximity_radiu:154,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,157,160],pt_chosen:66,pth:58,pts:[140,141],pts_chosen:[66,133],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,148],publicli:144,publish:[4,17,54,91],puget:[39,66,133],puget_sound_13_mhw_2014:[39,66],pull:[12,18,24,26,29,54,55,57,88,96,111,116,119,120,126,131],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,111,132],purpos:[32,45,48,53,61,67,72,81,89,109,111,130,133],push:[28,54,55],put:[1,11,16,28,29,41,54,55,58,59,67,83,88,96,119,137],pyclaw:[1,3,4,12,17,23,24,27,28,29,43,44,55,56,57,72,73,79,80,90,94,96,102,106,129,131,132,137],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:[58,92],pyplot:[59,132,148,154],pyport:105,pyramid:51,python2:[80,126],python3:[106,120,126],python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,126,131,132,137,142,152,154,155,158],python_io:72,pythonpath:[57,58],pyweno:[81,99],q0000:[67,139],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:157,q_hat:97,q_hat_l:97,q_hat_r:97,q_i:[131,160],q_l:[97,131,132],q_out_field:44,q_r:[97,131,132],q_t:[5,96,97,99,103,157,160],q_x:[5,97,103,160],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,126,134,135,157],qinit_data:[39,135],qinit_modul:39,qinit_typ:[142,152],qinitdata:142,qinitfil:142,qoi:32,qopenmp:41,qquad:160,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,132,136,142],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,56,80,111,150],quicker:[13,133],quickli:[44,54,59,85,119,135,154],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:142,radial:[3,32,47,142,157],radial_dam_break:132,radian:47,radii:148,radio:59,radio_styl:59,radiu:[3,142,148,149,154],rai:154,rais:[24,30,58,92,98,100,104,148,154],rake:[30,70],ran:[36,150],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,132,133],rare:[70,119],raster:[18,51,53,152],rate:13,rather:[5,6,18,20,22,28,29,32,39,54,55,58,62,63,64,69,70,89,94,96,99,106,107,110,117,118,119,121,123,124,126,129,130,133,138,139,140,148,149,152,154,157,160],ratio:[6,15,22,49,67,70,87,97,99,136,139,140,141],raw:[18,139],rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,18,28,30,32,33,35,36,44,45,48,49,53,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,127,141,142,143,148,152,154,157,158],read_:[92,98],read_arrai:92,read_atcf:148,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:148,read_head:154,read_hurdat:148,read_ibtrac:148,read_imd:148,read_jma:148,read_netcdf:[39,66,121,122,152,154],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:148,readabl:[148,149],reader:158,readi:[83,84,86,100],readlin:133,readm:[54,55,124,131,137,157],real:[48,55,64,104,131,156],realist:51,realiti:48,realli:[6,111,157],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,139],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39,140],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,127,128,129,131,156],recogn:[46,53,58,152],recomil:32,recommend:[4,18,30,32,35,36,54,55,56,58,71,76,85,89,91,94,95,99,100,102,103,110,121,139,141,142,143,158],recompil:[28,40,41,62,71,104,124,140,157],recomput:[79,83,114,123],reconstruct:[91,99,148],record:[32,44,60,101,148,156],recov:[28,33],recreat:[28,40,62,124],rect:[30,133],rectangl:[6,7,25,30,66,70,110,124,154],rectangular:[6,7,16,17,18,30,32,38,39,45,46,59,66,89,110,121,124,140,142,152],recurs:[54,69,113],red:[2,3,28,44,59,77,111,138,148],redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,18,39,51,118,120,160],redund:148,refactor:[113,114,115,117,119,120,122,126],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,130,131,133,142,148,152,154,156,157],referenc:[51,129,134,152],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,126,133,135,138,139,140,141,151,152,157],refinement_data:142,refinement_ratios_i:[8,140,141],refinement_ratios_t:[140,141,142],refinement_ratios_x:[140,141],refinementdata:116,reflect:[4,5,16,28,110,121,139,141,143],refresh:[13,44],regard:[4,38,118,148],regardless:[13,39,66,110,139,142],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,126,134,135,140,141,152,154],region_domain:38,region_tool:[38,39,66,124,125,133],region_trapezoid:38,regiondata:[38,110,141],regions2kml:59,regist:56,registr:[25,45,121,152,154],regress:[22,25,28,50,91,94,119,120,150],regression_test:[36,150],regrid:[5,10,110,113,114,119,122,123,140,141,151],regrid_buffer_width:[110,140,141],regrid_interv:[110,140,141],regular:[32,154],reiniti:[32,119],reject:[93,99,139],rel:[13,20,30,40,46,48,51,70,71,77,91,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,134,140,142,144,152,156],relat:[3,7,22,24,54,73,97,108,120,124,126,134],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,148],reli:[73,84,95,105,119],relief:[134,156],reload:154,reltol:104,remain:[51,58,96,104,106,113,146,147,148],remak:54,rememb:[15,27,71,77,94,136,146,147],remot:[13,51,55,121,154,156],remote_directori:154,remote_topo_url:[152,154],remov:[1,3,18,20,29,40,52,58,59,62,68,79,94,106,113,116,117,135,154,155],renam:[20,22,35,36,62,96,99],render:[12,22,43,51,59,158],reorder:[20,22],reorgan:[22,84,112,127],repack:55,repeat:[39,66,79,130,140],repeatedli:[3,94,100,140],replac:[6,13,18,29,38,44,48,52,54,55,57,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,130,131,135,154,155],replace_no_data_valu:154,replace_valu:154,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,137,139,141],repositori:[22,24,25,26,29,32,36,37,42,43,45,52,57,58,62,63,91,99,106,108,109,111,116,119,145],repres:[30,83,89,92,96,97,99,101,154,160],represent:[53,89,92,98,104,154],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,126,131,142,148,154],requir:[3,4,16,18,20,22,25,27,30,32,35,36,40,45,47,48,55,58,66,67,70,73,76,79,80,83,84,89,92,95,96,99,100,101,103,104,105,110,111,113,114,117,119,122,124,126,131,132,133,138,139,140,141,142,143,148,149,152,155,158,160],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,18,30,32,39,44,70,89,99,103,104,113,117,121,122,131,134,142,152,154,156,157],resolution_limit:154,resolv:[4,32,51,54,58,108,121,135],resourc:[17,24,28,46,105],resp:[20,30,126],respecitv:30,respect:[30,32,51,59,91,92,97,154],respons:[13,48,83,98],rest:[5,22,79,108,121,134,146,147,152,154],restart:[13,25,44,79,91,118,119,120,121,123,126,139,141,143],restart_fil:[130,139,141,143],restor:6,restrict:[38,51,121,133,142,152],restructur:[11,54],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,35,36,37,42,43,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,126,135,139,140,141,142,143,150,152,154,156],retain:[61,81,92],retak:[139,141,143],retir:54,retriev:[13,47,79,84,99,154,156],return_topo:154,return_xarrai:154,reunion:148,reutil:84,reval:132,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,97,103,141],rho_l:97,rho_r:97,rhou:67,rhov:67,richardson:[5,7,22,140,141],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,58,63,73,81,83,89,90,99,100,101,103,106,137,139,141,143,146,147,160],riemann_aug_jcp:120,riemann_book:132,riemann_interact:118,riemann_solut:132,riemann_solv:99,riemann_tool:[117,132],right:[5,32,61,64,70,81,89,94,96,97,101,103,126,130,131,133,160],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,134,135],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:148,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,132,154],robustli:122,rock:70,roe:[87,97,126,131],root:[29,58,92,93,98],rossby_wav:132,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,133,151],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,110,113,114,117,119,121,122,124,131,135,139,141,143,148,154,155,157,158,160],row:[30,32,53,87,110,152,154],rp1:[131,160],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:131,rp1_shallow_bathymetry_fwav:132,rp1_shallow_hl:127,rp1_shallow_roe_trac:132,rp1_shallow_roe_with_efix:132,rp_:97,rp_sourc:96,rpn2:[5,131],rpn2_geoclaw:132,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:131,rpn2_shallow_bathymetry_fwav:132,rpn2_shallow_roe_with_efix:132,rpn2_shallow_spher:132,rpn2_sw_aug:132,rpn2_vc_advect:115,rprint:[140,141],rpt2_geoclaw:[126,132],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:131,rpt2_shallow_roe_with_efix:132,rpt2_shallow_spher:132,rr2:133,rr_admiralti:133,rr_name:133,rrzigzag:133,rsmc:148,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,133],ruledrectangle_admiraltyinlet:133,ruledrectangle_covering_selected_point:[66,133],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,39,40,42,43,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,126,128,130,131,141,142,143,148,150,151,154,157],run_app_from_main:104,run_data:86,run_exampl:154,run_seri:104,runclaw:[14,50,114,123,125,131],rundata:[5,22,32,38,39,44,59,60,110,113,124,130,135,139,140,141,142,143],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,150],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:[97,133],s_2:[97,133],s_3:97,s_l:97,s_m:97,s_r:97,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,126,130,131,133,139,140,141,142,146,152,154,157],sampl:[7,8,14,17,18,25,29,32,41,45,51,70,106,111,130,133,139,140,152,154,157],santiago:51,satisfi:[32,39,66,99,110,133,160],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,126,130,149,154],savecod:86,savefig:[18,59],scalabl:[17,91],scalar:[27,30,39,93,101,131,135,139,160],scale:[4,30,49,51,67,73,91,92,113,119,121,126,142],scan:41,scatter:[3,22,67],scenario:[48,134],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,80,91,94,105],scipi:[13,84,105,148,154],scipysuperpack:80,scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,141,143],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,62,67,73,76,81,84,88,90,91,93,94,99,104,106,111,121,125,131,138,142,143,154],scriptstyl:133,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,134,142,152,154,156],sea_cmap:39,sea_cmap_dri:39,sea_level:[25,32,39,45,48,59,97,124,135,142,152,154],seab:64,seafloor:[30,48,70,135,156],search:[1,13,14,58,76,91,104,106,119,121,133,137],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,130,139,142,148,150,151,154,157,160],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,91,111,126,130,139,142,154],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],seem:[101,106,124,138],seen:[12,22,32,35,36,37,48,71,96,139,144],segement:154,segment:[128,133],segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,129,136,139,142,146,147,156],select_by_flood:[39,66],self:[30,33,99,154],semi:99,send:[13,24,96,131],sens:[27,51,60,121,126,160],sensit:[48,64],sent:[93,101],separ:[1,28,32,43,51,54,59,63,91,99,133,154],seper:104,sept:[55,126],septemb:[125,129],sequenc:[20,22,63,66,94,100,103,104,111,113,120,131,157],sequenti:32,seri:148,serial:[94,98,104,151],serv:29,server:[13,29,39,51,54,55,66,121,152,156],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,18,22,25,27,28,30,32,33,35,36,37,38,39,40,41,42,44,45,47,48,49,50,51,54,55,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,126,130,131,132,133,136,138,139,140,141,142,143,144,148,149,152,154,156,157,160],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,135],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,154],setaux:[20,22,63,84,113,114,131,139,141,143],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,18,19,20,22,25,42,44,68,75,76,95,96,104,119,155,158],setplot_fil:51,setplot_kml:51,setprob:[39,63,141,143,157],setrun:[5,6,7,8,14,16,18,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,91,107,108,110,113,117,118,119,122,124,126,130,131,134,135,148,152,155,157],setrun_setgeo:142,setup:[37,55,83,84,88,91,94,96,99,100,101,109,137,155],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,35,36,40,44,46,48,51,55,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,126,133,138,142,150,152,154,157],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,131,135,136,142,146,147,152,157],shallow_1d:132,shallow_1d_pi:[97,132],shallow_2d:132,shallow_bathymetry_fwave_1d:132,shallow_bathymetry_fwave_2d:132,shallow_exact_1d:97,shallow_fwave_1d:[97,132],shallow_hll_1d:[97,132],shallow_roe_1d:[97,132],shallow_roe_tracer_1d:132,shallow_roe_with_efix_1d:132,shallow_roe_with_efix_2d:132,shallow_spher:[84,111,132],shallow_sphere_2d:132,shallow_trac:132,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,133,154],shapshot:13,share:[25,26,51,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,131],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,57,58,71,77,79,94,100,103,106,119,137],shg:67,shift:[5,30,48,53],ship:32,shoal:133,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,135],shorelin:[39,51,154],shoreline_xi:154,shorter:[3,110,154],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,57,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,152,154,155,157,159,160],shouldn:88,show:[0,2,3,9,10,12,14,18,28,30,35,36,39,43,44,51,54,55,59,62,66,67,79,89,103,106,111,117,127,128,133,154,155,157],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,154,157],showpatchbord:67,shrink:154,shu:99,shuffl:92,siam:[17,24,25,91,131],sid:148,side:[6,16,18,32,51,54,64,70,92,111,131,160],sidebar:[51,54],siesmic:135,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,24,77,126,148],signatur:[3,84,87,89,90,92,97,148],signific:[18,64,129,134,154],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:132,silo:158,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,126,142,148,149,150,152],similarli:[40,52,88,94,96,133,151],simpl:[7,29,35,36,38,45,55,70,84,91,96,97,99,104,109,111,154],simplest:[58,69,103],simpli:[5,13,35,36,37,39,44,51,53,62,63,66,83,85,86,88,93,94,100,111,131,133,144,148,154,157,158],simplifi:[70,76,77,92,111,120,121,157],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,133,135,148],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,110,111,113,117,118,119,120,122,123,124,125,126,127,128,129,130,131,133,134,139,140,142,152,155,156],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,55,59,60,62,67,70,71,72,73,83,89,92,93,98,104,111,116,117,119,129,131,135,139,140,141,142,152,154,156,157],single_storm:148,sisc:[17,91],sit:13,site:[28,51,58,106],situat:[51,66,67,126],size:[18,20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,140,141,143,152,154],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:[124,126],skiprow:30,slack:24,slice:[3,67,131],slide:24,slider:[51,59],slightli:[16,39,53,119,120,126,133],slip:[25,30,45,109,152,156],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,99,126],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,130,139,141,142,152,154,156],smaller:[13,18,51,64,73,89,93,113,135,139,141,142,143,154],smallest:[110,133],smear:59,smooth:[30,99,110,157],smooth_data:154,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,144,152],sol:83,sole:131,solid:[3,16,51,70,96,138,139,141,143],solitari:17,solut:[1,3,4,5,16,18,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,97,99,101,102,103,110,111,117,118,122,130,131,138,139,140,141,143,150,157,160],solv:[4,5,8,16,17,20,26,35,36,48,56,58,60,82,84,86,89,91,96,97,100,122,131,132,139,152,157,160],solver:[4,5,6,20,22,23,25,28,45,56,57,58,63,80,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,126,139,141,143,146,147,160],solver_nam:131,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,138,139,140,141,142,143,144,148,149,151,152,154,157],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,152,155,157],sometim:[58,62,66,73,77,83,93,121,128,134,135,149,156],somewhat:[71,76,110,111,119,139],somewher:[68,117],sonel:156,soon:99,sorin:4,sort:[13,39,121,138,155],sound:[39,66,83,97,103,133],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,132,134,139,141,142,143,145,146,147,148,152],source_list:104,source_split:[89,99,139,141,143,157],south:[32,152],space:[5,6,7,16,17,18,30,32,33,44,51,53,70,89,93,96,110,117,130,133,139,140,141,142,143,152,154,157],spacial:[135,142],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,126,131,134,140,141,143,160],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:154,special:[4,7,16,18,45,46,51,61,73,81,110,133,154],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,97,98,104,108,119,120,121,124,138,139,140,141,143,149,152],specifi:[0,1,2,3,4,5,6,7,15,16,18,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,126,130,131,133,134,135,136,141,143,144,146,147,148,149,151,152,154,155,156,158,160],speed:[32,83,87,97,103,119,124,131,132,139,142,148,149,154,157,160],speed_toler:142,spell:77,spend:118,spent:[140,151],sphere:[47,84,114,132,142],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,126,139,140,141,143,151,157,160],spot:77,sprint:[140,141],spuriou:[16,32,111],sqrt:[3,32,64,83,96,97,103,141],src1:[63,147,157,160],src1d:147,src2:[84,147,157],src3:[147,157],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,39,40,41,47,50,52,55,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,126,131,135,136,139,141,143,146,154,155,160],src_split:[139,141,143],srcn:[139,157],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,126,139],stabl:[80,89,126],stack:[71,80,117,133],staff:123,stage:[99,134,135,152,154],stai:[26,32],stand:[4,126],standard:[6,16,30,32,51,53,67,72,84,87,99,106,110,111,141,142,143,144,152,157,160],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,83,94,98,99,105,106,110,111,118,121,126,130,131,133,135,142,148,150,152,157],start_dat:148,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,126,127,131,132,133,139,152,160],statement:[35,36,67,72,105,106,119,128,141],station:[47,134,156],stationari:[60,152],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,152],steep:[66,160],steepli:135,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,18,19,28,32,35,36,37,44,51,54,55,60,67,73,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,130,131,137,139,140,141,142,143,152,160],step_hyperbol:99,step_index:99,step_interv:141,step_sourc:[89,96,99],stepgrid:151,stepgrid_dimsplit:117,steps_max:[139,141,143],stiff:139,still:[1,5,7,8,13,16,18,22,24,26,32,34,39,51,52,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,130,131,142,148],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,141,143,154],storag:[118,126],store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,138,140,142,148,151,152,154],storm:[12,17,24,25,45,117,120,121,122,123,125,126,127],storm_atcf:148,storm_fil:[142,148],storm_ibtrac:148,storm_modul:117,storm_nam:148,storm_radiu:148,storm_radius_fil:148,storm_specif:142,storm_specification_typ:142,storm_targ:148,str:[0,1,3,30,59,92,139,140,148,154],strait:133,strang:[89,99,139,141,143,157],strategi:6,stream:77,stress:[83,93],stretch:[66,154],strict:[61,81],stride:[22,154],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,139,142,148,154],strip:[59,133,154],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,133,138,154],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121,142],sub:[30,111,154],subclass:30,subdirectori:[5,12,18,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,138,142,144,150,154],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,156],subject:[51,66,110,140,142],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,133],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,131,139,140,151,157,160],subsampl:[53,152,156],subsequ:[3,10,67],subset:[30,32,39,66,121,133,152,154,156],subsid:[124,135],substanti:[28,54,81,117,123,126],substitut:[61,81],subsurfac:152,subtleti:66,succeed:99,succesfulli:84,success:[67,98,154,157],successfulli:[62,98],suffici:[13,16,18,20,70,71,108,113,142],suffix:[62,154],suggest:[4,24,29,47,53,54,56,58,79,80,105,129,131,142,159],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,131,134,148,154],sum:[39,44,70,93,101,151],sum_:160,sum_p:160,summar:[3,28,31,110,112,157],summari:[24,25,55,121,139,140,141,142],superbe:[87,139,141,143],superbee_limit:87,superclass:99,supercomput:[91,93,94],superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,144],supplementari:111,suppli:[110,148,157,160],support:[4,8,13,18,22,38,41,48,51,56,57,70,80,81,83,84,89,92,93,95,97,99,110,117,119,120,121,122,126,127,131,133,139,140,142,148,149,152,155,158],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,139,140],sure:[1,20,28,40,54,55,56,57,58,67,73,83,92,94,96,98,102,104,134,154,155,156],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,133,134,142,152],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,126,148],surge_data:142,surround:[110,154],surviv:81,svg:18,sw_aug_2d:132,swag:24,swap:154,swaphead:154,sweep:[8,131],symbol:[3,67,106],symmetr:[3,47,157],symmetri:16,syntax:[11,57,137],sys:[39,66,86,141,143],system:[4,16,17,23,36,37,51,52,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,131,139,141,143,150,157,160],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,129],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,57,107,136,140,141,146,147],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,135,139,140,141,142,154,157,160],take_one_step:99,taken:[6,32,66,70,93,99,110,139,157],tall:0,tan:77,tank:[16,48],tar:[13,59,123,129],tarbal:[55,155],tarfil:[18,55,58,120,121,122,123,124,125,126,127,128],target:[5,58,77,84,96,124],task:76,tchknnnnn:130,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,148,149],td9635:148,td9636:148,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,132,139,141,142,143,146,147],termin:[85,137,139,140],terrain:64,terrel:4,test:[22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,97,104,105,110,114,118,119,120,121,124,126,131,143,148,151,152,154],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,152],test_shallow_spher:111,test_topotool:[114,154],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,130,139,141,143],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,18,20,22,28,29,30,32,39,44,51,54,55,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,106,110,111,113,116,117,118,119,120,121,123,124,126,129,130,133,134,135,138,139,140,142,148,149,151,152,154,157,160],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,91,96,99,104,110,111,119,126,135,138,142,148,152,154,157],them:[5,13,18,22,28,29,30,32,44,51,54,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,133,145,148,154,157],theori:[61,81,160],therefor:[84,94,121,152],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,148,149,150,151,152,154,155,156,157,158,159,160],thing:[0,13,16,22,28,29,39,48,54,59,79,88,110,111,120,125,130],think:[58,64,66,97],third:[16,32,53,87,151,154],thn:139,thoroughli:92,those:[4,6,10,12,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,126,130,144,150,154,157],though:[3,39,73,148,152],thought:[126,134],thousand:[4,73],thread:[41,71,110,124,151],threat:4,thredd:[39,66,152,156],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,133,139,142,152,154,157],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,148],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,134],tide:[44,45,47,121,134,154],tidesandcurr:47,tier:13,tild:160,time:[0,1,5,6,7,10,14,16,18,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,126,130,131,133,135,137,138,141,143,148,152,155,156,160],time_files_scanf:158,time_integr:99,time_offset:148,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,139,141,143,148],timezon:59,timing_plot:123,tip:[24,45,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,133,154],title_with_t:[0,77],to_jshtml:18,todo:[16,131,148,154,160],togeth:[5,16,18,28,29,30,54,56,70,110],toggl:141,token:29,tokyo:148,toler:[5,32,97,104,110,111,119,140,141,142],tolsp:110,too:[6,47,51,54,55,118,133,141,143],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,56,57,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,142,144,152,154,156,158],toolkit:[94,158],top:[0,1,3,11,23,29,30,51,54,55,57,58,70,77,91,96,97,106,111,130,137],topgraphi:154,topic:67,topo1:152,topo1writ:154,topo2kml:59,topo2kmz:[59,127],topo2writ:154,topo3writ:154,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,126,134,142,152,154],topo_data:142,topo_fgmax_mask:66,topo_fil:154,topo_file_nam:59,topo_fnam:154,topo_func:154,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,152,154],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,142,152,154],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,127,133,134,135,146,147,153],topograpi:152,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,127,152,153],topotools_exampl:[109,154],topotyp:[126,142,152],topotype1:154,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,139,140,141,143,151],total_energi:93,total_step:[139,141,143],touch:66,tout:143,toward:[4,30],tprint:[140,141],trace:93,traceback:77,tracer:132,track:[18,24,25,28,32,33,45,51,54,56,58,71,83,91,104,111,113,122,124,127,132,142,148],track_color:148,tracker:28,tradeoff:110,tradit:[86,92],traffic:[131,157],trail:[58,59],tran:17,tranpsort:139,trans_cor:89,trans_inc:89,transect:[32,142],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:139,transon:119,transpar:[51,59],transport:[139,141,143],transpos:5,transvers:[8,89,119,126,131,132,139,157,160],transverse_wav:[89,139,141,143],trap:41,trapezoid:38,travel:140,travi:[22,126],tree:[52,58,96,137],tri:148,triangl:70,triangular:[30,45,121],trickeri:55,trigger:92,troubl:[35,36,76,91],troubleshoot:[25,56,57,91],trucat:18,truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,18,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,133,134,135,142,149,152],tt3:[70,154],tulan:24,tune:[26,140],tupl:[3,30,47,59,70,77,89,93,154],turbul:[48,99],turn:[18,44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,160],twice:[51,139],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,130,131,133,136,137,141,142,152,154,157,160],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,130,148],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,133,140,141,142,148,149,152,154,160],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,140,141,151,152,155,156,157,160],typo:122,u_l:[97,132],u_r:[97,132],u_t:[97,103],u_x:103,ubar:97,ubuntu:13,ucar:[68,92],ucsb:[30,70,156],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,57,61,63,76,81,89,91,111,119,121,129],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,131],understood:48,underwat:[45,51],undesir:130,undivid:110,unequ:133,unexpect:[47,51,59,62,148],unidata:[68,92],uniform:[30,32,66,70,73,84,121,152],uniformli:152,unind:[59,148],uninstal:[55,58,106],union:[133,152],uniqu:[1,72,118,148],unit:[30,46,47,52,70,89,119,148],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,97,105,134,139,140,154],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:148,unnecessari:126,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,139,141,143],unstabl:118,unstructur:154,unsuccess:98,unsur:139,untar:57,unterweg:81,until:[13,32,60,66,135],unus:[2,92],unzip:51,upbnd:[140,141],updat:[6,12,13,22,23,25,32,49,52,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,131,140,141,143,145,148,151,157],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,135],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,133,139,141,143,152,154],upper_bound_limit:87,upper_glob:89,uprint:[140,141],upstream:55,upstrik:[30,70],upward:48,upwind:139,url:[4,12,17,51,55,121,122,152,154],usa:148,usa_ag:148,usag:[0,1,2,3,13,45,51,56,92,121,148,154],use:[3,4,5,12,13,14,18,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,97,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,129,131,132,133,134,137,139,140,141,142,143,148,152,154,155,156,157,158,159,160],use_adjoint:5,use_for_kml:51,use_fwav:[131,139,141,143],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,138,139,140,141,142,143,146,148,151,152,154,157,158,160],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,59,66,71,72,78,81,84,93,105,106,110,111,121,124,131,133,139,140,142,152,154,155,160],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,131,139,141,142,143,145,154,160],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,131,132,135,142,151,154,160],usg:[4,30,156],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,18,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,97,99,101,102,103,105,106,110,111,117,120,121,123,124,126,129,131,133,135,139,141,142,147,148,151,152,154,155,156,158,160],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,131,139,140,141,142,143,155,157],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,138,153,154,155],uwamath:13,valid:[3,48,70,86,93,98,101,119,142,148,149,154],valout:[68,72,121,124,151],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,18,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,126,130,131,133,134,135,139,140,141,142,143,148,149,152,154,155,157,160],valueerror:[30,148,154],valuemax:32,van:[87,99,139,141,143],van_leer_klein_sharpening_limit:87,vancouv:133,vanish:5,vanleer:[83,99,139,141,143],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,131,132,134,136,140,160],variabl:[0,3,5,13,14,18,22,25,27,28,30,32,35,36,37,40,44,45,50,51,54,57,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,130,131,139,140,141,143,148,152,154,155,157],variable_dt_refinement_ratio:[140,142],variable_eta_init:135,variant:[20,56,104,111],varieti:[44,86],variou:[12,20,22,30,38,43,48,54,67,70,77,79,89,103,105,106,110,119,131,138,142,148],vastli:134,vector:[5,18,22,83,87,93,101,121,131,132],veloc:[16,18,32,47,60,67,79,96,97,103,119,134,139,140,141,142,143,157],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,133,139,141,143,148,154],verbosity_regrid:[125,140,141],veri:[3,5,16,18,22,48,51,55,56,59,70,77,81,84,92,93,94,95,96,99,111,114,118,133,135,139,149,152],verifi:[47,104,111,156],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,73,76,77,79,80,84,87,91,92,94,97,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,135,136,137,139,140,141,142,143,146,147,148,152,154,157,160],versu:154,vertic:[30,38,48,51,59,66,133,134,142,154,156],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,131,133,137,144,146,147,152,154,157],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,144,145],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,154],virtual:[4,13,25,27,101],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,56,57,58,62,66,67,73,77,78,79,80,91,95,100,106,137,138,144],visibl:[12,13,43,51,109,144],visit:[22,25,76,129],visual:[23,24,28,35,36,44,45,57,58,67,72,73,76,91,95,96,106,117,124,158],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,133,140,151,152,157],vrt:51,vstack:133,w_1:97,w_2:97,w_3:97,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,57,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,129,131,133,138,139,145,149,152,157,159,160],wait:13,wall:[16,41,96,103,118,121,123,139,141,143,151],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,129,131,132,133,137,138,141,142,145,148,152,154,155],wari:97,warm:87,warn:[24,28,92,93,99,126,139,155],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,133,154],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,131,133,134,135,142,152,154,156,157],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,126,132,133,134,139,140,141,142,143,157],wave_toler:[110,142],wavelength:48,web:[23,25,28,35,36,51,54,55,121,144,154],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,134],webserv:13,websit:[16,51,54,144,154],weight:51,welcom:[24,81],well:[4,6,18,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,132,135,139,140,146,147,148,157,160],wellington:148,wendroff:[89,99,139,141,143,160],weno:[73,91,99],weno_ord:99,went:[58,132],were:[4,6,14,18,20,32,44,54,60,63,67,68,84,110,113,119,122,126,133,135,152],weren:125,west:152,western:154,wet:[32,39,45,66,133],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,57,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,133,134,138,139,141,142,143,144,148,152,154,156,157],whatev:[29,68,83,98,131],when:[5,14,15,16,18,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,57,58,60,64,66,67,70,71,72,73,76,77,79,83,90,91,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,126,128,131,133,134,135,136,138,139,140,141,142,143,144,148,152,154,155,156,157,158,160],whenc:93,whenev:[28,118,157],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,126,130,132,133,134,135,138,139,140,141,142,143,148,151,152,154,157,160],wherea:[44,51,76,94],wherev:[29,155],whether:[3,6,13,16,22,47,53,56,58,60,61,62,67,81,89,92,93,97,98,99,110,111,119,131,133,139,140,142,154],which:[0,1,3,4,5,6,7,11,12,13,14,16,18,20,22,25,28,29,30,32,33,35,36,37,38,39,43,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,126,130,131,132,133,134,135,139,140,141,142,148,149,152,154,156,157,159,160],whichclaw:155,whidbei:[39,66,133],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,56],whole:[28,51,93,94],whose:[3,77,84,96,97,135,139,140,154],wide:[58,106,132],wider:77,width:[30,51,59,70,72,89,96,101,110,133,141,143],wiki:100,wikipedia:53,wind:[121,142,148,149,154],wind_forc:142,wind_index:142,wind_refin:142,wind_spe:148,window:[13,30,67,79,137],wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,58,67,75,76,91,96,99,100,102,106,108,110,119,136,144,146,147,155],within:[6,16,28,29,54,58,66,73,77,95,104,106,110,131,133,138,144,154],without:[16,22,40,44,48,59,61,62,63,66,67,77,79,81,87,91,92,93,104,106,111,133,137,141,143,148,155,157],wkt:51,wmo:148,wmo_:148,wmo_ag:148,won:[12,13,66,84,154],woodward:120,word:[93,121,148],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,127,129,131,137,138,139,140,142,144,149,152,155,159],workflow:[108,144,148],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,148],worst:134,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,133,134,135,138,139,142,148,152,157],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,148],wrapper:154,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,141,143,148,152,154],write_:92,write_arrai:92,write_atcf:148,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:148,write_hurdat:148,write_imd:148,write_jma:148,write_p:[92,98],write_tcvit:148,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,91,92,96,119,131,139,140,141,142,143,148,154,157],wrong:[58,63,67,93,106],www:[4,13,17,30,39,45,54,60,61,66,68,81,84,89,92,94,120,122,148,154],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,133],x_2:[5,133],x_c:133,x_cell:59,x_center:133,x_edg:[59,133],x_i:[131,157,160],x_inch:59,x_mask:154,xarr:89,xarrai:154,xarray_d:154,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[140,141],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,152],xllcorner:[53,152],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,141,143,152,154,157],xlowerg:84,xmax:0,xmin:0,xpoint:142,xrang:96,xtick:[39,49],xupper:[0,22,141,143,154],xxdiff:111,xxx:152,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:133,y_cell:59,y_center:133,y_edg:[59,133],y_inch:59,year:[4,17,22,51,59,91,112,122,148],yellow:[59,77,148],yellow_red_blu:77,yes:67,yet:[1,13,18,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,127,128,129,131,139,141,159],yianni:[4,17,81],yield:3,yleft:[140,141],ylimit:[0,44,51,124,138],yllcenter:[53,121,152],yllcorner:[53,152],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,141,152,154],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,97,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,150,152,155,156,157,159],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,131,136,137,146,147,152,155,157],yourself:[41,44,57],youtub:[24,108,124],ypoint:142,yupper:[22,141,154],z_allow_wet:39,z_dry:39,z_format:[39,66,154],zdry:[39,66],zenodo:[4,57,124,125,126,127,128,129],zero:[3,16,30,32,39,41,59,67,83,96,97,101,103,126,133,134],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,140,141],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:154},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sea_level","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":135,"catch":28,"class":[83,86,148],"default":[15,107,135,136,146,147],"final":55,"function":[14,47,59,65,66,79,93,99,160],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,Adding:[28,51,88,96,131],For:6,Going:90,One:[131,132,160],The:[51,65,66,67,103],Use:102,Using:[5,13,25,29,38,52,58,63,68,71,93,96,99,131,138,157],about:[4,81],abov:29,access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,140,142],adjoint:5,adjust:135,advect:97,after:130,afterfram:67,algorithm:[6,17,66,73,160],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,133,140,142],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,140,141,157],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:142,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,133],author:4,auto:[30,33,47,59,154],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,157],background:77,backward:[18,121,122,123,124,125,126,127,128],base:62,basic:[51,82,95],bathymetri:156,befor:157,behavior:135,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,157,160],bounding_box:133,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:156,burger:97,candid:55,capac:160,cautionari:48,cell:[6,39,133],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],chardiff:111,check:[28,111],checkpoint:130,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,139,143,150],claw:[74,137],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,43,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,127,128,129,132,143,159],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,57,58,74,111,155,157],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,155],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125,126,127,128],compil:[41,62,68,102,145,155],compon:[23,77],comput:[73,130],condit:[6,16,96,103,157,160],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,111,133],continent:133,continu:111,contourf:77,contribut:[26,28,132],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:133,coordin:[49,51],copi:69,correctli:94,cover:133,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,131],dart:156,data:[33,51,72,138,142,149,152,154,155,156,157],debug:[77,140],defin:[16,133],deform:135,dem:[39,66],demonstr:132,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:138,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,132,160],dimension:131,directli:13,directori:[58,62,69,77],displac:152,doc:54,docker:29,dockerfil:[29,55],docstr:[30,33,47,59,154],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,145,154],doing:55,domain:[89,103],done:157,download:152,doxygen:9,drop:105,dry:[39,66],dtopo:153,dtopotool:30,duplic:62,each:[28,157],earth:51,earthquak:[70,156],easi:106,ec2:13,elev:[49,66,135],environ:[41,137],equat:[97,103,132],error:[28,102],eta:135,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,133],exe:155,exist:69,experi:58,extra:54,extrapol:110,f2py:155,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,130,133,142,152,157],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,142],flag2refin:110,flag:[5,6,62,66,110,133,140],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,152],formul:160,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,155,157],found:67,frame:93,framework:55,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,133,154],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[43,54,67],gaug:[44,51,60,93,156],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,126,127,128,142,154],geo:142,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,136,142,146,147],geometri:89,geophys:25,get:[25,29,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:160,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,142],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:160,hint:[48,77,105],hll:132,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:135,initi:[6,39,66,96,103,135,157],input:[22,32,92,139,140],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,106,150,155],instanc:13,instanti:133,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88],issu:28,item:77,jupyt:[12,29,37,144],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:13,layer:132,level:[28,135],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,155],link:21,load:51,local:145,locat:44,log:[13,93],longitud:[49,51],machin:[29,159],make:[77,94,144,155],make_kml:133,makefil:[40,62,63,96,130],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:133,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:142,mesh:[6,25],method:[0,1,2,3,133,160],mhw:66,migrat:25,miss:132,model:[48,70,108,109,156],modif:39,modifi:[28,63,130],modul:[30,33,47,59,91,104,141,143,154],monitor:[32,142],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,152],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],notebook:[12,29,37,105,144],number:55,numpi:100,object:[89,138],obtain:100,okada:70,old:8,older:25,onli:66,open:55,openmp:71,oper:80,option:[51,57,79,94,96],order:102,osf:55,other:[17,18,23,24,29,32,54,77,120,121,122,123,124,125,126,127,128,129,133,135],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,130,139,140,142,155],overlai:51,overview:[25,138],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[73,89,94,95,101],paramet:[22,44,77,79,103,139,140,142],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:94,photo:74,pip:[58,80,155],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,138,144,155,158],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:131,polygon:133,port:84,post:76,potenti:132,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:140,printfram:79,problem:[8,84,96,103,157],procedur:32,process:[32,76],processor:41,produc:79,propag:160,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,153],pythonpath:[106,137],q0002:72,qinit:[107,142,152],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,133],readm:11,recent:[24,28],rectangl:[38,133],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,142],region:[66,110,133,142],registr:53,regress:111,relat:133,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,126,127,128,131],request:28,requir:[51,157],resolut:[51,160],resourc:25,restart:[29,83,130],result:[13,46,51,68,95,144],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,157],roe:132,routin:[15,22,63,78,107,136,146,147],rst:11,rule:[38,133],run:[29,35,36,37,46,83,85,88,94,95,111,139,140,155],ruptur:70,sage:85,same:63,sampl:[39,66,141,143],save:[93,144],scienc:55,script:96,sea:135,sea_level:134,search:67,seismic:135,select:133,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,134,135,137,155],setaux:[136,157],setplot:[67,77,79,138],setrun:[22,44,139,140,141,142,143],shallow:[97,132],share:144,sharpclaw:99,shelf:133,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,133],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:133,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,131,132,157],some:[29,77,156],someth:77,sourc:[62,70,96,149,156,157,160],space:160,spatial:[135,157],special:[3,140],specif:[32,103,111,142,148,157],specifi:[38,60,77,79,110,138,139,140,142,157],sphere:16,sphinx:[54,145],sprint:[24,74],src1d:[146,157],src:[147,157],start:[25,29,46,108,109],state:101,statist:151,step:[56,57,58,100,157],stop:[13,29],storm:[108,142,148,149],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,135],surg:[108,149],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,157,160],test:[28,36,37,94,100,111,150],than:77,thi:[4,54],tide:156,tile:51,time:[139,140,142,151,157],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,148,153],top:28,topo:153,topofil:66,topographi:[30,33,39,46,51,66,142,152,154,156],topotool:154,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,155],troubleshoot:[58,102,155],tsunami:[48,51,109,156],tutori:[24,103,105],tvd:87,two:132,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,135],used:155,useful:[29,132],user:[16,24,29,73,157],using:[48,67,157],utah:74,util:[47,59,104],valu:[32,83],vari:[135,157],variabl:[41,62,96,137],version:[25,29,40,50,52,54,55,58,106],view:13,virtual:159,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],visit:158,visual:[25,51],washington:74,water:[49,97,132],wave:[131,160],web:13,webpag:[13,54,144],what:[77,79,93,132],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,153,154,157],workflow:28,workshop:[24,74],write:[66,96,111,133],written:93,your:[13,28,29,36,51,94,96,100,144,150],zenodo:55,zone:66}}) \ No newline at end of file diff --git a/set_eta_init.html b/set_eta_init.html index c1281e9cd..603d5f410 100644 --- a/set_eta_init.html +++ b/set_eta_init.html @@ -21,7 +21,7 @@ - +
        @@ -70,7 +70,7 @@

        Navigation

        next |
      • - previous |
      • @@ -197,7 +197,7 @@

        Related Topics

        • Documentation overview
        • diff --git a/setrun_geoclaw.html b/setrun_geoclaw.html index 412e128ae..9a17325fa 100644 --- a/setrun_geoclaw.html +++ b/setrun_geoclaw.html @@ -178,7 +178,7 @@

          Additional AMR parametersSetting sealevel.

          +Setting sea_level.

          diff --git a/storm_module.html b/storm_module.html index 4fd8f273b..23e61a70b 100644 --- a/storm_module.html +++ b/storm_module.html @@ -586,7 +586,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

          Field list ends without a blank line; unexpected unindent.

            @@ -617,7 +617,7 @@

            Navigation

            -

            System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

            +

            System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

            Field list ends without a blank line; unexpected unindent.

              diff --git a/v5.1.x/.buildinfo b/v5.1.x/.buildinfo index 259973e46..4faa70310 100644 --- a/v5.1.x/.buildinfo +++ b/v5.1.x/.buildinfo @@ -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: 55d9b36f962dbc9fda95b6d9da19c338 +config: 1cc1e17f3c11e67e282ccf1a4cf4483e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.1.x/.doctrees/ClawPlotAxes.doctree b/v5.1.x/.doctrees/ClawPlotAxes.doctree index 9ece62980..e76135131 100644 Binary files a/v5.1.x/.doctrees/ClawPlotAxes.doctree and b/v5.1.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.1.x/.doctrees/ClawPlotData.doctree b/v5.1.x/.doctrees/ClawPlotData.doctree index bdb29e413..b520814a7 100644 Binary files a/v5.1.x/.doctrees/ClawPlotData.doctree and b/v5.1.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.1.x/.doctrees/ClawPlotFigure.doctree b/v5.1.x/.doctrees/ClawPlotFigure.doctree index 210126317..919302105 100644 Binary files a/v5.1.x/.doctrees/ClawPlotFigure.doctree and b/v5.1.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.1.x/.doctrees/ClawPlotItem.doctree b/v5.1.x/.doctrees/ClawPlotItem.doctree index 0bae02e89..be83d5db1 100644 Binary files a/v5.1.x/.doctrees/ClawPlotItem.doctree and b/v5.1.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.1.x/.doctrees/about.doctree b/v5.1.x/.doctrees/about.doctree index d2a749b48..0c5eff1d5 100644 Binary files a/v5.1.x/.doctrees/about.doctree and b/v5.1.x/.doctrees/about.doctree differ diff --git a/v5.1.x/.doctrees/amr_algorithm.doctree b/v5.1.x/.doctrees/amr_algorithm.doctree index 5d3194b98..d676c6b0e 100644 Binary files a/v5.1.x/.doctrees/amr_algorithm.doctree and b/v5.1.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.1.x/.doctrees/amrclaw.doctree b/v5.1.x/.doctrees/amrclaw.doctree index 367d2f8df..24078be5c 100644 Binary files a/v5.1.x/.doctrees/amrclaw.doctree and b/v5.1.x/.doctrees/amrclaw.doctree differ diff --git a/v5.1.x/.doctrees/amrclaw1d.doctree b/v5.1.x/.doctrees/amrclaw1d.doctree index 8c9e6c708..eb66f24f3 100644 Binary files a/v5.1.x/.doctrees/amrclaw1d.doctree and b/v5.1.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.1.x/.doctrees/application_documentation.doctree b/v5.1.x/.doctrees/application_documentation.doctree index 22715ff35..dac23c2d9 100644 Binary files a/v5.1.x/.doctrees/application_documentation.doctree and b/v5.1.x/.doctrees/application_documentation.doctree differ diff --git a/v5.1.x/.doctrees/apps.doctree b/v5.1.x/.doctrees/apps.doctree index b4dcfacd4..039c97e21 100644 Binary files a/v5.1.x/.doctrees/apps.doctree and b/v5.1.x/.doctrees/apps.doctree differ diff --git a/v5.1.x/.doctrees/aws.doctree b/v5.1.x/.doctrees/aws.doctree index af19f3fe3..672b88974 100644 Binary files a/v5.1.x/.doctrees/aws.doctree and b/v5.1.x/.doctrees/aws.doctree differ diff --git a/v5.1.x/.doctrees/b4step_defaults.doctree b/v5.1.x/.doctrees/b4step_defaults.doctree index 6d535e52d..89ed673b1 100644 Binary files a/v5.1.x/.doctrees/b4step_defaults.doctree and b/v5.1.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.1.x/.doctrees/bc.doctree b/v5.1.x/.doctrees/bc.doctree index da9ad5e9c..c87cde785 100644 Binary files a/v5.1.x/.doctrees/bc.doctree and b/v5.1.x/.doctrees/bc.doctree differ diff --git a/v5.1.x/.doctrees/biblio.doctree b/v5.1.x/.doctrees/biblio.doctree index 4d9333130..319ef3edf 100644 Binary files a/v5.1.x/.doctrees/biblio.doctree and b/v5.1.x/.doctrees/biblio.doctree differ diff --git a/v5.1.x/.doctrees/book.doctree b/v5.1.x/.doctrees/book.doctree index 00164730f..8a0664f0d 100644 Binary files a/v5.1.x/.doctrees/book.doctree and b/v5.1.x/.doctrees/book.doctree differ diff --git a/v5.1.x/.doctrees/changes.doctree b/v5.1.x/.doctrees/changes.doctree index eaa97edbf..1a7df41a4 100644 Binary files a/v5.1.x/.doctrees/changes.doctree and b/v5.1.x/.doctrees/changes.doctree differ diff --git a/v5.1.x/.doctrees/claw43to46.doctree b/v5.1.x/.doctrees/claw43to46.doctree index 9c967ab6c..1a84399a6 100644 Binary files a/v5.1.x/.doctrees/claw43to46.doctree and b/v5.1.x/.doctrees/claw43to46.doctree differ diff --git a/v5.1.x/.doctrees/claw46to50.doctree b/v5.1.x/.doctrees/claw46to50.doctree index bebb3ccf6..b83d3483f 100644 Binary files a/v5.1.x/.doctrees/claw46to50.doctree and b/v5.1.x/.doctrees/claw46to50.doctree differ diff --git a/v5.1.x/.doctrees/claw4x.doctree b/v5.1.x/.doctrees/claw4x.doctree index 6c1ccc52c..7b7f98899 100644 Binary files a/v5.1.x/.doctrees/claw4x.doctree and b/v5.1.x/.doctrees/claw4x.doctree differ diff --git a/v5.1.x/.doctrees/clawpack5.doctree b/v5.1.x/.doctrees/clawpack5.doctree index b8b355b08..1642a450c 100644 Binary files a/v5.1.x/.doctrees/clawpack5.doctree and b/v5.1.x/.doctrees/clawpack5.doctree differ diff --git a/v5.1.x/.doctrees/clawpack_components.doctree b/v5.1.x/.doctrees/clawpack_components.doctree index 333ca32b9..2726a5aab 100644 Binary files a/v5.1.x/.doctrees/clawpack_components.doctree and b/v5.1.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.1.x/.doctrees/contents.doctree b/v5.1.x/.doctrees/contents.doctree index d46433977..9cfc1e92a 100644 Binary files a/v5.1.x/.doctrees/contents.doctree and b/v5.1.x/.doctrees/contents.doctree differ diff --git a/v5.1.x/.doctrees/current_data.doctree b/v5.1.x/.doctrees/current_data.doctree index 578ae5a2c..f89574ccf 100644 Binary files a/v5.1.x/.doctrees/current_data.doctree and b/v5.1.x/.doctrees/current_data.doctree differ diff --git a/v5.1.x/.doctrees/developers.doctree b/v5.1.x/.doctrees/developers.doctree index 246493915..373737ec1 100644 Binary files a/v5.1.x/.doctrees/developers.doctree and b/v5.1.x/.doctrees/developers.doctree differ diff --git a/v5.1.x/.doctrees/environment.pickle b/v5.1.x/.doctrees/environment.pickle index fd8af0c94..8f0b46b27 100644 Binary files a/v5.1.x/.doctrees/environment.pickle and b/v5.1.x/.doctrees/environment.pickle differ diff --git a/v5.1.x/.doctrees/fgmax.doctree b/v5.1.x/.doctrees/fgmax.doctree index b9d9dd845..16c56eb3d 100644 Binary files a/v5.1.x/.doctrees/fgmax.doctree and b/v5.1.x/.doctrees/fgmax.doctree differ diff --git a/v5.1.x/.doctrees/fgout.doctree b/v5.1.x/.doctrees/fgout.doctree index d97fe146d..83795857d 100644 Binary files a/v5.1.x/.doctrees/fgout.doctree and b/v5.1.x/.doctrees/fgout.doctree differ diff --git a/v5.1.x/.doctrees/first_run.doctree b/v5.1.x/.doctrees/first_run.doctree index 61ae08e22..bd0d4d79a 100644 Binary files a/v5.1.x/.doctrees/first_run.doctree and b/v5.1.x/.doctrees/first_run.doctree differ diff --git a/v5.1.x/.doctrees/flag.doctree b/v5.1.x/.doctrees/flag.doctree index 5a5465769..27def7228 100644 Binary files a/v5.1.x/.doctrees/flag.doctree and b/v5.1.x/.doctrees/flag.doctree differ diff --git a/v5.1.x/.doctrees/fortran.doctree b/v5.1.x/.doctrees/fortran.doctree index 6c8424d47..506b16fb4 100644 Binary files a/v5.1.x/.doctrees/fortran.doctree and b/v5.1.x/.doctrees/fortran.doctree differ diff --git a/v5.1.x/.doctrees/fortran_compilers.doctree b/v5.1.x/.doctrees/fortran_compilers.doctree index 3d3d30580..5e2b19c59 100644 Binary files a/v5.1.x/.doctrees/fortran_compilers.doctree and b/v5.1.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.1.x/.doctrees/fvmbook.doctree b/v5.1.x/.doctrees/fvmbook.doctree index 2224424c3..b0ff75d14 100644 Binary files a/v5.1.x/.doctrees/fvmbook.doctree and b/v5.1.x/.doctrees/fvmbook.doctree differ diff --git a/v5.1.x/.doctrees/galleries.doctree b/v5.1.x/.doctrees/galleries.doctree index 67cc2d15a..877ad586f 100644 Binary files a/v5.1.x/.doctrees/galleries.doctree and b/v5.1.x/.doctrees/galleries.doctree differ diff --git a/v5.1.x/.doctrees/gauges.doctree b/v5.1.x/.doctrees/gauges.doctree index 3e267b42d..d420f8232 100644 Binary files a/v5.1.x/.doctrees/gauges.doctree and b/v5.1.x/.doctrees/gauges.doctree differ diff --git a/v5.1.x/.doctrees/geoclaw.doctree b/v5.1.x/.doctrees/geoclaw.doctree index dadd46bb8..c23df6e60 100644 Binary files a/v5.1.x/.doctrees/geoclaw.doctree and b/v5.1.x/.doctrees/geoclaw.doctree differ diff --git a/v5.1.x/.doctrees/geohints.doctree b/v5.1.x/.doctrees/geohints.doctree index 40ae99b98..2f1b11463 100644 Binary files a/v5.1.x/.doctrees/geohints.doctree and b/v5.1.x/.doctrees/geohints.doctree differ diff --git a/v5.1.x/.doctrees/geoplot.doctree b/v5.1.x/.doctrees/geoplot.doctree index e49835241..b07ecc280 100644 Binary files a/v5.1.x/.doctrees/geoplot.doctree and b/v5.1.x/.doctrees/geoplot.doctree differ diff --git a/v5.1.x/.doctrees/git_resources.doctree b/v5.1.x/.doctrees/git_resources.doctree index a15db418e..a2d9a1c79 100644 Binary files a/v5.1.x/.doctrees/git_resources.doctree and b/v5.1.x/.doctrees/git_resources.doctree differ diff --git a/v5.1.x/.doctrees/git_versions.doctree b/v5.1.x/.doctrees/git_versions.doctree index dc4fbd251..05adbc172 100644 Binary files a/v5.1.x/.doctrees/git_versions.doctree and b/v5.1.x/.doctrees/git_versions.doctree differ diff --git a/v5.1.x/.doctrees/howto_doc.doctree b/v5.1.x/.doctrees/howto_doc.doctree index 913345518..b25fbbe9f 100644 Binary files a/v5.1.x/.doctrees/howto_doc.doctree and b/v5.1.x/.doctrees/howto_doc.doctree differ diff --git a/v5.1.x/.doctrees/installing.doctree b/v5.1.x/.doctrees/installing.doctree index a411df5e2..da5727398 100644 Binary files a/v5.1.x/.doctrees/installing.doctree and b/v5.1.x/.doctrees/installing.doctree differ diff --git a/v5.1.x/.doctrees/license.doctree b/v5.1.x/.doctrees/license.doctree index af7533976..4c8c2e832 100644 Binary files a/v5.1.x/.doctrees/license.doctree and b/v5.1.x/.doctrees/license.doctree differ diff --git a/v5.1.x/.doctrees/makefiles.doctree b/v5.1.x/.doctrees/makefiles.doctree index 3588f0730..802e4bec8 100644 Binary files a/v5.1.x/.doctrees/makefiles.doctree and b/v5.1.x/.doctrees/makefiles.doctree differ diff --git a/v5.1.x/.doctrees/manning.doctree b/v5.1.x/.doctrees/manning.doctree index 0c9b03fe2..3dc4cafcd 100644 Binary files a/v5.1.x/.doctrees/manning.doctree and b/v5.1.x/.doctrees/manning.doctree differ diff --git a/v5.1.x/.doctrees/mapc2p.doctree b/v5.1.x/.doctrees/mapc2p.doctree index 2ba618ea7..1c9ab870e 100644 Binary files a/v5.1.x/.doctrees/mapc2p.doctree and b/v5.1.x/.doctrees/mapc2p.doctree differ diff --git a/v5.1.x/.doctrees/matlab_plotting.doctree b/v5.1.x/.doctrees/matlab_plotting.doctree index 67e0d12cf..a1d13f128 100644 Binary files a/v5.1.x/.doctrees/matlab_plotting.doctree and b/v5.1.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.1.x/.doctrees/netcdf.doctree b/v5.1.x/.doctrees/netcdf.doctree index ceff63b5b..6b5aaaa0c 100644 Binary files a/v5.1.x/.doctrees/netcdf.doctree and b/v5.1.x/.doctrees/netcdf.doctree differ diff --git a/v5.1.x/.doctrees/newapp.doctree b/v5.1.x/.doctrees/newapp.doctree index 5462e1511..e8115e718 100644 Binary files a/v5.1.x/.doctrees/newapp.doctree and b/v5.1.x/.doctrees/newapp.doctree differ diff --git a/v5.1.x/.doctrees/notebooks.doctree b/v5.1.x/.doctrees/notebooks.doctree index 8d7d4ef07..8374261f6 100644 Binary files a/v5.1.x/.doctrees/notebooks.doctree and b/v5.1.x/.doctrees/notebooks.doctree differ diff --git a/v5.1.x/.doctrees/okada.doctree b/v5.1.x/.doctrees/okada.doctree index f8d513e75..8f46b3c36 100644 Binary files a/v5.1.x/.doctrees/okada.doctree and b/v5.1.x/.doctrees/okada.doctree differ diff --git a/v5.1.x/.doctrees/openmp.doctree b/v5.1.x/.doctrees/openmp.doctree index 373fac898..ebf7d708b 100644 Binary files a/v5.1.x/.doctrees/openmp.doctree and b/v5.1.x/.doctrees/openmp.doctree differ diff --git a/v5.1.x/.doctrees/output_styles.doctree b/v5.1.x/.doctrees/output_styles.doctree index 0db4b5aff..359b2605d 100644 Binary files a/v5.1.x/.doctrees/output_styles.doctree and b/v5.1.x/.doctrees/output_styles.doctree differ diff --git a/v5.1.x/.doctrees/packages.doctree b/v5.1.x/.doctrees/packages.doctree index cebbb8e2c..531631f8d 100644 Binary files a/v5.1.x/.doctrees/packages.doctree and b/v5.1.x/.doctrees/packages.doctree differ diff --git a/v5.1.x/.doctrees/plotexamples.doctree b/v5.1.x/.doctrees/plotexamples.doctree index c08568c18..1542841e7 100644 Binary files a/v5.1.x/.doctrees/plotexamples.doctree and b/v5.1.x/.doctrees/plotexamples.doctree differ diff --git a/v5.1.x/.doctrees/plotting.doctree b/v5.1.x/.doctrees/plotting.doctree index 198a45f45..dfc93a7db 100644 Binary files a/v5.1.x/.doctrees/plotting.doctree and b/v5.1.x/.doctrees/plotting.doctree differ diff --git a/v5.1.x/.doctrees/plotting_faq.doctree b/v5.1.x/.doctrees/plotting_faq.doctree index 157a4d531..5f51934c2 100644 Binary files a/v5.1.x/.doctrees/plotting_faq.doctree and b/v5.1.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.1.x/.doctrees/plotting_geoclaw.doctree b/v5.1.x/.doctrees/plotting_geoclaw.doctree index fe0ba21d7..dada06074 100644 Binary files a/v5.1.x/.doctrees/plotting_geoclaw.doctree and b/v5.1.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.1.x/.doctrees/plotting_python.doctree b/v5.1.x/.doctrees/plotting_python.doctree index 197b9cba9..b45e71866 100644 Binary files a/v5.1.x/.doctrees/plotting_python.doctree and b/v5.1.x/.doctrees/plotting_python.doctree differ diff --git a/v5.1.x/.doctrees/previous.doctree b/v5.1.x/.doctrees/previous.doctree index f61857698..33a511381 100644 Binary files a/v5.1.x/.doctrees/previous.doctree and b/v5.1.x/.doctrees/previous.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/about.doctree b/v5.1.x/.doctrees/pyclaw/about.doctree index a01ad6625..ffca1bd21 100644 Binary files a/v5.1.x/.doctrees/pyclaw/about.doctree and b/v5.1.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/basics.doctree b/v5.1.x/.doctrees/pyclaw/basics.doctree index 0e8c177cd..5ecbfa808 100644 Binary files a/v5.1.x/.doctrees/pyclaw/basics.doctree and b/v5.1.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/classes.doctree b/v5.1.x/.doctrees/pyclaw/classes.doctree index 6bd1860f2..1f5ac58e5 100644 Binary files a/v5.1.x/.doctrees/pyclaw/classes.doctree and b/v5.1.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.1.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index f231a802f..44141e17c 100644 Binary files a/v5.1.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.1.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/cloud.doctree b/v5.1.x/.doctrees/pyclaw/cloud.doctree index 8edbd9196..36794a604 100644 Binary files a/v5.1.x/.doctrees/pyclaw/cloud.doctree and b/v5.1.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/controller.doctree b/v5.1.x/.doctrees/pyclaw/controller.doctree index cf2b581ba..a760a379f 100644 Binary files a/v5.1.x/.doctrees/pyclaw/controller.doctree and b/v5.1.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree b/v5.1.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree index 2e00d3502..2237d8666 100644 Binary files a/v5.1.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree and b/v5.1.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree b/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree index 3be8b109b..888964f0b 100644 Binary files a/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree and b/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree b/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree index 30113051e..490ea5484 100644 Binary files a/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree and b/v5.1.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree b/v5.1.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree index efb838e37..3c03f90ae 100644 Binary files a/v5.1.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree and b/v5.1.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree b/v5.1.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree index ad6d36e60..bb0f7239d 100644 Binary files a/v5.1.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree and b/v5.1.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/develop.doctree b/v5.1.x/.doctrees/pyclaw/develop.doctree index 518e7a4c2..c497cf485 100644 Binary files a/v5.1.x/.doctrees/pyclaw/develop.doctree and b/v5.1.x/.doctrees/pyclaw/develop.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.1.x/.doctrees/pyclaw/evolve/limiters.doctree index 2c37660cd..d57aff5b4 100644 Binary files a/v5.1.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.1.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/examples.doctree b/v5.1.x/.doctrees/pyclaw/examples.doctree index fd0c0faa8..b6d055ccd 100644 Binary files a/v5.1.x/.doctrees/pyclaw/examples.doctree and b/v5.1.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/for_developers.doctree b/v5.1.x/.doctrees/pyclaw/for_developers.doctree index 0399f7c38..8bab91ed0 100644 Binary files a/v5.1.x/.doctrees/pyclaw/for_developers.doctree and b/v5.1.x/.doctrees/pyclaw/for_developers.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/future.doctree b/v5.1.x/.doctrees/pyclaw/future.doctree index a70f5110d..a176f87cf 100644 Binary files a/v5.1.x/.doctrees/pyclaw/future.doctree and b/v5.1.x/.doctrees/pyclaw/future.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/gallery/how-to-build.doctree b/v5.1.x/.doctrees/pyclaw/gallery/how-to-build.doctree index b348155ca..210de8775 100644 Binary files a/v5.1.x/.doctrees/pyclaw/gallery/how-to-build.doctree and b/v5.1.x/.doctrees/pyclaw/gallery/how-to-build.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/geometry.doctree b/v5.1.x/.doctrees/pyclaw/geometry.doctree index 7868ba66d..44b8ed0a7 100644 Binary files a/v5.1.x/.doctrees/pyclaw/geometry.doctree and b/v5.1.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/going_further.doctree b/v5.1.x/.doctrees/pyclaw/going_further.doctree index 19ce1e57c..abcbaf705 100644 Binary files a/v5.1.x/.doctrees/pyclaw/going_further.doctree and b/v5.1.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/index.doctree b/v5.1.x/.doctrees/pyclaw/index.doctree index 0d6afb6a3..04a8336ba 100644 Binary files a/v5.1.x/.doctrees/pyclaw/index.doctree and b/v5.1.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/io.doctree b/v5.1.x/.doctrees/pyclaw/io.doctree index bc1d18b95..a92f7c8b0 100644 Binary files a/v5.1.x/.doctrees/pyclaw/io.doctree and b/v5.1.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/output.doctree b/v5.1.x/.doctrees/pyclaw/output.doctree index f3916ada8..3592aa1a6 100644 Binary files a/v5.1.x/.doctrees/pyclaw/output.doctree and b/v5.1.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/parallel.doctree b/v5.1.x/.doctrees/pyclaw/parallel.doctree index 6d0097f34..a037a9e7c 100644 Binary files a/v5.1.x/.doctrees/pyclaw/parallel.doctree and b/v5.1.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/plotting.doctree b/v5.1.x/.doctrees/pyclaw/plotting.doctree index 138bade01..9db934bca 100644 Binary files a/v5.1.x/.doctrees/pyclaw/plotting.doctree and b/v5.1.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/problem.doctree b/v5.1.x/.doctrees/pyclaw/problem.doctree index 4e59c237a..ee0c14d09 100644 Binary files a/v5.1.x/.doctrees/pyclaw/problem.doctree and b/v5.1.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/rp.doctree b/v5.1.x/.doctrees/pyclaw/rp.doctree index afc43b3f6..54187ad37 100644 Binary files a/v5.1.x/.doctrees/pyclaw/rp.doctree and b/v5.1.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/rulesProposal.doctree b/v5.1.x/.doctrees/pyclaw/rulesProposal.doctree index fc975fd6a..3005d9e44 100644 Binary files a/v5.1.x/.doctrees/pyclaw/rulesProposal.doctree and b/v5.1.x/.doctrees/pyclaw/rulesProposal.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/solution.doctree b/v5.1.x/.doctrees/pyclaw/solution.doctree index ab01e6456..079c33baf 100644 Binary files a/v5.1.x/.doctrees/pyclaw/solution.doctree and b/v5.1.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/solvers.doctree b/v5.1.x/.doctrees/pyclaw/solvers.doctree index 2afde943b..5f008eb57 100644 Binary files a/v5.1.x/.doctrees/pyclaw/solvers.doctree and b/v5.1.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/started.doctree b/v5.1.x/.doctrees/pyclaw/started.doctree index 5e6c7d12f..4868ad6e2 100644 Binary files a/v5.1.x/.doctrees/pyclaw/started.doctree and b/v5.1.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/state.doctree b/v5.1.x/.doctrees/pyclaw/state.doctree index 352c32d6a..a7c21d8af 100644 Binary files a/v5.1.x/.doctrees/pyclaw/state.doctree and b/v5.1.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.1.x/.doctrees/pyclaw/troubleshooting.doctree index 8a3772b49..f7fbfe4c3 100644 Binary files a/v5.1.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.1.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/tutorial.doctree b/v5.1.x/.doctrees/pyclaw/tutorial.doctree index 5ddf714f1..e4462d5d8 100644 Binary files a/v5.1.x/.doctrees/pyclaw/tutorial.doctree and b/v5.1.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.1.x/.doctrees/pyclaw/util.doctree b/v5.1.x/.doctrees/pyclaw/util.doctree index e3b5b3b47..0cd1e73cf 100644 Binary files a/v5.1.x/.doctrees/pyclaw/util.doctree and b/v5.1.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.1.x/.doctrees/python.doctree b/v5.1.x/.doctrees/python.doctree index b21b96688..6779a2081 100644 Binary files a/v5.1.x/.doctrees/python.doctree and b/v5.1.x/.doctrees/python.doctree differ diff --git a/v5.1.x/.doctrees/qinit_defaults.doctree b/v5.1.x/.doctrees/qinit_defaults.doctree index 3df40bff6..d0d6b5540 100644 Binary files a/v5.1.x/.doctrees/qinit_defaults.doctree and b/v5.1.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.1.x/.doctrees/quick_tsunami.doctree b/v5.1.x/.doctrees/quick_tsunami.doctree index ed2065790..a542fcc29 100644 Binary files a/v5.1.x/.doctrees/quick_tsunami.doctree and b/v5.1.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.1.x/.doctrees/refinement.doctree b/v5.1.x/.doctrees/refinement.doctree index ab08943b9..c7d11a5f3 100644 Binary files a/v5.1.x/.doctrees/refinement.doctree and b/v5.1.x/.doctrees/refinement.doctree differ diff --git a/v5.1.x/.doctrees/regression.doctree b/v5.1.x/.doctrees/regression.doctree index b319e7952..87d2b81ed 100644 Binary files a/v5.1.x/.doctrees/regression.doctree and b/v5.1.x/.doctrees/regression.doctree differ diff --git a/v5.1.x/.doctrees/release_5_0_0.doctree b/v5.1.x/.doctrees/release_5_0_0.doctree index 735e34707..0f65a7bcc 100644 Binary files a/v5.1.x/.doctrees/release_5_0_0.doctree and b/v5.1.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.1.x/.doctrees/release_5_1_0.doctree b/v5.1.x/.doctrees/release_5_1_0.doctree index 7b7f513ed..d2b1df2a7 100644 Binary files a/v5.1.x/.doctrees/release_5_1_0.doctree and b/v5.1.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.1.x/.doctrees/restart.doctree b/v5.1.x/.doctrees/restart.doctree index 4d690c60f..cc6c527c2 100644 Binary files a/v5.1.x/.doctrees/restart.doctree and b/v5.1.x/.doctrees/restart.doctree differ diff --git a/v5.1.x/.doctrees/riemann.doctree b/v5.1.x/.doctrees/riemann.doctree index 8680fc8eb..0724a83ea 100644 Binary files a/v5.1.x/.doctrees/riemann.doctree and b/v5.1.x/.doctrees/riemann.doctree differ diff --git a/v5.1.x/.doctrees/sealevel.doctree b/v5.1.x/.doctrees/sealevel.doctree index fb2b43772..c8ed01722 100644 Binary files a/v5.1.x/.doctrees/sealevel.doctree and b/v5.1.x/.doctrees/sealevel.doctree differ diff --git a/v5.1.x/.doctrees/setaux_defaults.doctree b/v5.1.x/.doctrees/setaux_defaults.doctree index 85a17b10a..63bf89b1b 100644 Binary files a/v5.1.x/.doctrees/setaux_defaults.doctree and b/v5.1.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.1.x/.doctrees/setplot.doctree b/v5.1.x/.doctrees/setplot.doctree index b77860601..43f1ca1f8 100644 Binary files a/v5.1.x/.doctrees/setplot.doctree and b/v5.1.x/.doctrees/setplot.doctree differ diff --git a/v5.1.x/.doctrees/setrun.doctree b/v5.1.x/.doctrees/setrun.doctree index fb31739f9..dcd921094 100644 Binary files a/v5.1.x/.doctrees/setrun.doctree and b/v5.1.x/.doctrees/setrun.doctree differ diff --git a/v5.1.x/.doctrees/setrun_amrclaw.doctree b/v5.1.x/.doctrees/setrun_amrclaw.doctree index 0a789798c..b9ef5244b 100644 Binary files a/v5.1.x/.doctrees/setrun_amrclaw.doctree and b/v5.1.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.1.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.1.x/.doctrees/setrun_amrclaw_sample.doctree index c0a055300..e87bff655 100644 Binary files a/v5.1.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.1.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.1.x/.doctrees/setrun_geoclaw.doctree b/v5.1.x/.doctrees/setrun_geoclaw.doctree index 0482b6296..325778bff 100644 Binary files a/v5.1.x/.doctrees/setrun_geoclaw.doctree and b/v5.1.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.1.x/.doctrees/setrun_sample.doctree b/v5.1.x/.doctrees/setrun_sample.doctree index ad8d2b9dd..9a0cd0cb1 100644 Binary files a/v5.1.x/.doctrees/setrun_sample.doctree and b/v5.1.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.1.x/.doctrees/sharing.doctree b/v5.1.x/.doctrees/sharing.doctree index 27177febb..e0496cae6 100644 Binary files a/v5.1.x/.doctrees/sharing.doctree and b/v5.1.x/.doctrees/sharing.doctree differ diff --git a/v5.1.x/.doctrees/sphinxdoc.doctree b/v5.1.x/.doctrees/sphinxdoc.doctree index ebed6275a..fb6d57560 100644 Binary files a/v5.1.x/.doctrees/sphinxdoc.doctree and b/v5.1.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.1.x/.doctrees/src1d_defaults.doctree b/v5.1.x/.doctrees/src1d_defaults.doctree index 8cbb27b9d..a3b16bd58 100644 Binary files a/v5.1.x/.doctrees/src1d_defaults.doctree and b/v5.1.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.1.x/.doctrees/src_defaults.doctree b/v5.1.x/.doctrees/src_defaults.doctree index f798ef3d7..477c07993 100644 Binary files a/v5.1.x/.doctrees/src_defaults.doctree and b/v5.1.x/.doctrees/src_defaults.doctree differ diff --git a/v5.1.x/.doctrees/testing.doctree b/v5.1.x/.doctrees/testing.doctree index f2e82b389..0de6166e1 100644 Binary files a/v5.1.x/.doctrees/testing.doctree and b/v5.1.x/.doctrees/testing.doctree differ diff --git a/v5.1.x/.doctrees/toc_condensed.doctree b/v5.1.x/.doctrees/toc_condensed.doctree index d15ba3b8a..2404f554a 100644 Binary files a/v5.1.x/.doctrees/toc_condensed.doctree and b/v5.1.x/.doctrees/toc_condensed.doctree differ diff --git a/v5.1.x/.doctrees/topo.doctree b/v5.1.x/.doctrees/topo.doctree index 57c6fc71d..5721c76c0 100644 Binary files a/v5.1.x/.doctrees/topo.doctree and b/v5.1.x/.doctrees/topo.doctree differ diff --git a/v5.1.x/.doctrees/trouble.doctree b/v5.1.x/.doctrees/trouble.doctree index a90ffc59a..78516f5fb 100644 Binary files a/v5.1.x/.doctrees/trouble.doctree and b/v5.1.x/.doctrees/trouble.doctree differ diff --git a/v5.1.x/.doctrees/tsunamidata.doctree b/v5.1.x/.doctrees/tsunamidata.doctree index ca6736a4b..cf6d87b0f 100644 Binary files a/v5.1.x/.doctrees/tsunamidata.doctree and b/v5.1.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.1.x/.doctrees/user_routines.doctree b/v5.1.x/.doctrees/user_routines.doctree index edbd7713a..63017371a 100644 Binary files a/v5.1.x/.doctrees/user_routines.doctree and b/v5.1.x/.doctrees/user_routines.doctree differ diff --git a/v5.1.x/.doctrees/visit_plotting.doctree b/v5.1.x/.doctrees/visit_plotting.doctree index c7e6fbd45..cd373c8bc 100644 Binary files a/v5.1.x/.doctrees/visit_plotting.doctree and b/v5.1.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.1.x/.doctrees/vm.doctree b/v5.1.x/.doctrees/vm.doctree index 50ff43303..302b68e2f 100644 Binary files a/v5.1.x/.doctrees/vm.doctree and b/v5.1.x/.doctrees/vm.doctree differ diff --git a/v5.1.x/.doctrees/wp_algorithms.doctree b/v5.1.x/.doctrees/wp_algorithms.doctree index a4ea862b1..3a0b2b90c 100644 Binary files a/v5.1.x/.doctrees/wp_algorithms.doctree and b/v5.1.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.1.x/b4step_defaults.html b/v5.1.x/b4step_defaults.html index c54179ff1..34260d7d5 100644 --- a/v5.1.x/b4step_defaults.html +++ b/v5.1.x/b4step_defaults.html @@ -82,17 +82,17 @@

              Navigation

              as needed. Remember to change to Makefile to point to the proper version.

              $CLAW/classic/src/1d/b4step1.f90:

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 18)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 18)

              Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

              $CLAW/classic/src/2d/b4step2.f90:

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 24)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 24)

              Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

              $CLAW/classic/src/3d/b4step3.f90:

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 30)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 30)

              Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

              @@ -104,7 +104,7 @@

              Navigation

              with latitude when coordinate_system == 2).

              $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 48)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/b4step_defaults.rst, line 48)

              Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

              diff --git a/v5.1.x/galleries.html b/v5.1.x/galleries.html index a5908f3ed..b63abe05b 100644 --- a/v5.1.x/galleries.html +++ b/v5.1.x/galleries.html @@ -85,19 +85,19 @@

              Navigation

              Galleries of all Clawpack applications

              See also IPython notebook examples.

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              toctree contains reference to nonexisting document ‘gallery/gallery_classic_amrclaw’

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              toctree contains reference to nonexisting document ‘gallery/gallery_geoclaw’

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/galleries.rst, line 10)

              toctree contains reference to nonexisting document ‘gallery/gallery_fvmbook’

              diff --git a/v5.1.x/genindex.html b/v5.1.x/genindex.html index 08731c2b2..67e67bdbb 100644 --- a/v5.1.x/genindex.html +++ b/v5.1.x/genindex.html @@ -82,6 +82,7 @@

              Index

              | B | C | D + | E | F | G | H @@ -106,6 +107,8 @@

              A

              - +
            • Dimension (class in pyclaw.geometry) +
            • +
            • dimensional_split (petclaw.geometry.Domain attribute)
            • dimensions() (pyclaw.geometry.Grid property) @@ -225,8 +246,12 @@

              D

            • +

              E

              + + + +
              +

              F

              - +
              -
              @@ -480,7 +529,11 @@

              O

              @@ -700,7 +775,11 @@

              V

            • van_leer_klein_sharpening_limiter() (in module pyclaw.limiters.tvd)
            • verbosity (clawpack.pyclaw.classic.solver.ClawSolver attribute) + +
            -

            System Message: SEVERE/4 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/git_resources.rst, line 62)

            +

            System Message: SEVERE/4 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/git_resources.rst, line 62)

            Problems with “include” directive path: -InputError: [Errno 2] No such file or directory: ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/git_links.inc’.

            +InputError: [Errno 2] No such file or directory: ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/git_links.inc’.

            .. include:: git_links.inc
             
            diff --git a/v5.1.x/objects.inv b/v5.1.x/objects.inv index 2ba970f17..f352800b6 100644 Binary files a/v5.1.x/objects.inv and b/v5.1.x/objects.inv differ diff --git a/v5.1.x/py-modindex.html b/v5.1.x/py-modindex.html index 1cff5c685..77acd2d3e 100644 --- a/v5.1.x/py-modindex.html +++ b/v5.1.x/py-modindex.html @@ -80,25 +80,60 @@

            Navigation

            Python Module Index

            + c | p
            + + + + + + + + + + + + + + + + + + + + + id="toggle-2" style="display: none" alt="-" /> - + - + - + - + @@ -215,7 +215,7 @@

            Navigation

            -read(frame, path='./_output', file_format='ascii', file_prefix=None, read_aux=True, options={}, **kargs)
            +read(frame, path='./_output', file_format=None, file_prefix='fort', read_aux=True, options={}, **kargs)

            Reads in a Solution object from a file

            Reads in and initializes this Solution with the data specified. This function will raise an IOError if it was unsuccessful.

            @@ -234,7 +234,8 @@

            Navigation

          • path - (string) Base path to the files to be read. default = './_output'

          • file_format - (string) Format of the file, should match on of the -modules inside of the io package. default = 'ascii'

          • +modules inside of the io package. default = None +but now attempts to read from header file (as of v5.9.0).

          • file_prefix - (string) Name prefix in front of all the files, defaults to whatever the format defaults to, e.g. fort for ascii

          • options - (dict) Dictionary of optional arguments dependent on diff --git a/v5.1.x/pyclaw/state.html b/v5.1.x/pyclaw/state.html index 230fe1cc3..638347335 100644 --- a/v5.1.x/pyclaw/state.html +++ b/v5.1.x/pyclaw/state.html @@ -92,7 +92,7 @@

            Navigation

            object also handles some of the parallel communication required of the state on the given patch such that only the parts of the fields local to the process. If you are interested in the geometry of the local state you can find it through the -Patch object’s reference to its own +Patch object’s reference to its own Grid.

            Serial pyclaw.state.State

            diff --git a/v5.1.x/python.html b/v5.1.x/python.html index 95ddcb913..07f55c2fa 100644 --- a/v5.1.x/python.html +++ b/v5.1.x/python.html @@ -163,7 +163,7 @@

            References and tutorialsMatplotlib gallery

          • `LeVeque’s class notes

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/python.rst, line 96); backlink

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/python.rst, line 96); backlink

            Inline interpreted text or phrase reference start-string without end-string.

          • diff --git a/v5.1.x/qinit_defaults.html b/v5.1.x/qinit_defaults.html index a1508b155..497303032 100644 --- a/v5.1.x/qinit_defaults.html +++ b/v5.1.x/qinit_defaults.html @@ -82,17 +82,17 @@

            Navigation

            the initial conditions as desired.

            $CLAW/classic/src/1d/qinit.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 18)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 18)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

            $CLAW/classic/src/2d/qinit.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 24)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 24)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

            $CLAW/classic/src/3d/qinit.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 30)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 30)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

            @@ -103,7 +103,7 @@

            Navigation

            qinit data file parameters.

            $CLAW/geoclaw/src/2d/shallow/qinit.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 47)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/qinit_defaults.rst, line 47)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

            diff --git a/v5.1.x/searchindex.js b/v5.1.x/searchindex.js index 2657a93a0..3c76f8527 100644 --- a/v5.1.x/searchindex.js +++ b/v5.1.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","book","changes","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","contents","current_data","developers","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geohints","geoplot","git_resources","git_versions","howto_doc","installing","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/devel/gitwash/development_workflow","pyclaw/devel/gitwash/git_installation","pyclaw/devel/gitwash/git_resources","pyclaw/devel/gitwash/maintainer_workflow","pyclaw/devel/gitwash/patching_forking","pyclaw/develop","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/for_developers","pyclaw/future","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","toc_condensed","topo","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","book.rst","changes.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","contents.rst","current_data.rst","developers.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geohints.rst","geoplot.rst","git_resources.rst","git_versions.rst","howto_doc.rst","installing.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/devel/gitwash/development_workflow.rst","pyclaw/devel/gitwash/git_installation.rst","pyclaw/devel/gitwash/git_resources.rst","pyclaw/devel/gitwash/maintainer_workflow.rst","pyclaw/devel/gitwash/patching_forking.rst","pyclaw/develop.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/for_developers.rst","pyclaw/future.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","toc_condensed.rst","topo.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[86,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[86,1,1,""],kernel_language:[86,1,1,""],mthlim:[86,1,1,""],order:[86,1,1,""],setup:[86,2,1,""],source_split:[86,1,1,""],step:[86,2,1,""],step_hyperbolic:[86,2,1,""],step_source:[86,1,1,""],verbosity:[86,1,1,""]},"petclaw.state":{State:[88,0,1,""]},"petclaw.state.State":{F:[88,2,1,""],aux:[88,2,1,""],fset:[88,2,1,""],gauge_data:[88,1,1,""],get_aux_global:[88,2,1,""],get_auxbc_from_aux:[88,2,1,""],get_q_global:[88,2,1,""],get_qbc_from_q:[88,2,1,""],keep_gauges:[88,1,1,""],mF:[88,2,1,""],mp:[88,2,1,""],num_aux:[88,2,1,""],num_eqn:[88,2,1,""],p:[88,2,1,""],problem_data:[88,1,1,""],q:[88,2,1,""],set_num_ghost:[88,2,1,""],t:[88,1,1,""]},"pyclaw.controller":{Controller:[63,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[63,1,1,""],F_path:[63,2,1,""],check_validity:[63,2,1,""],compute_F:[63,1,1,""],compute_p:[63,1,1,""],file_prefix_p:[63,1,1,""],frames:[63,1,1,""],keep_copy:[63,1,1,""],nstepout:[63,1,1,""],num_output_times:[63,1,1,""],out_times:[63,1,1,""],outdir:[63,1,1,""],outdir_p:[63,2,1,""],output_file_prefix:[63,1,1,""],output_format:[63,1,1,""],output_options:[63,1,1,""],output_style:[63,1,1,""],overwrite:[63,1,1,""],plot:[63,2,1,""],plotdata:[63,1,1,""],run:[63,2,1,""],rundir:[63,1,1,""],runmake:[63,1,1,""],savecode:[63,1,1,""],solver:[63,1,1,""],tfinal:[63,1,1,""],verbosity:[63,2,1,""],viewable_attributes:[63,1,1,""],write_aux_always:[63,1,1,""],write_aux_init:[63,1,1,""],xclawcmd:[63,1,1,""],xclawerr:[63,1,1,""],xclawout:[63,1,1,""],xdir:[63,1,1,""]},"pyclaw.geometry":{Dimension:[75,0,1,""],Domain:[75,0,1,""],Grid:[75,0,1,""],Patch:[75,0,1,""]},"pyclaw.geometry.Dimension":{centers:[75,2,1,""],centers_with_ghost:[75,2,1,""],delta:[75,2,1,""],nodes:[75,2,1,""],nodes_with_ghost:[75,2,1,""]},"pyclaw.geometry.Domain":{grid:[75,2,1,""],num_dim:[75,2,1,""],patch:[75,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[75,2,1,""],add_gauges:[75,2,1,""],c_center:[75,2,1,""],c_centers:[75,2,1,""],c_centers_with_ghost:[75,2,1,""],c_nodes:[75,2,1,""],c_nodes_with_ghost:[75,2,1,""],dimensions:[75,2,1,""],gauge_dir_name:[75,1,1,""],gauge_file_names:[75,1,1,""],gauge_files:[75,1,1,""],gauges:[75,1,1,""],get_dim_attribute:[75,2,1,""],num_dim:[75,2,1,""],p_center:[75,2,1,""],p_centers:[75,2,1,""],p_nodes:[75,2,1,""],plot:[75,2,1,""],setup_gauge_files:[75,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[75,2,1,""],delta:[75,2,1,""],dimensions:[75,2,1,""],get_dim_attribute:[75,2,1,""],level:[75,1,1,""],lower_global:[75,2,1,""],name:[75,2,1,""],num_cells_global:[75,2,1,""],num_dim:[75,2,1,""],patch_index:[75,1,1,""],upper_global:[75,2,1,""]},"pyclaw.limiters":{tvd:[70,3,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[70,4,1,""],beta_limiter:[70,4,1,""],cada_torrilhon_limiter:[70,4,1,""],cada_torrilhon_limiter_nonlinear:[70,4,1,""],cfl_superbee:[70,4,1,""],cfl_superbee_theta:[70,4,1,""],hyperbee_limiter:[70,4,1,""],limit:[70,4,1,""],mc_limiter:[70,4,1,""],minmod_limiter:[70,4,1,""],superbee_limiter:[70,4,1,""],superpower_limiter:[70,4,1,""],theta_limiter:[70,4,1,""],upper_bound_limiter:[70,4,1,""],van_leer_klein_sharpening_limiter:[70,4,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[86,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[86,2,1,""],aux_time_dep:[86,1,1,""],call_before_step_each_stage:[86,1,1,""],cfl_desired:[86,1,1,""],cfl_max:[86,1,1,""],char_decomp:[86,1,1,""],check_3rd_ord_cond:[86,2,1,""],dq:[86,2,1,""],dq_src:[86,1,1,""],dqdt:[86,2,1,""],fwave:[86,1,1,""],get_dt_new:[86,2,1,""],kernel_language:[86,1,1,""],lim_type:[86,1,1,""],num_ghost:[86,1,1,""],setup:[86,2,1,""],step:[86,2,1,""],tfluct:[86,1,1,""],tfluct_solver:[86,1,1,""],time_integrator:[86,1,1,""],update_saved_values:[86,2,1,""],weno_order:[86,1,1,""]},"pyclaw.solution":{Solution:[85,0,1,""]},"pyclaw.solution.Solution":{is_valid:[85,2,1,""],patch:[85,2,1,""],plot:[85,2,1,""],read:[85,2,1,""],set_all_states:[85,2,1,""],start_frame:[85,2,1,""],state:[85,2,1,""],write:[85,2,1,""]},"pyclaw.state":{State:[88,0,1,""]},"pyclaw.state.State":{F:[88,1,1,""],gauge_data:[88,1,1,""],get_aux_global:[88,2,1,""],get_auxbc_from_aux:[88,2,1,""],get_q_global:[88,2,1,""],get_qbc_from_q:[88,2,1,""],is_valid:[88,2,1,""],keep_gauges:[88,1,1,""],mF:[88,2,1,""],mp:[88,2,1,""],num_aux:[88,2,1,""],num_eqn:[88,2,1,""],p:[88,1,1,""],problem_data:[88,1,1,""],set_aux_from_auxbc:[88,2,1,""],set_cparam:[88,2,1,""],set_num_ghost:[88,2,1,""],set_q_from_qbc:[88,2,1,""],t:[88,1,1,""]},"pyclaw.util":{FrameCounter:[91,0,1,""],VerifyError:[91,5,1,""],add_parent_doc:[91,4,1,""],check_diff:[91,4,1,""],compile_library:[91,4,1,""],construct_function_handle:[91,4,1,""],convert_fort_double_to_float:[91,4,1,""],gen_variants:[91,4,1,""],read_data_line:[91,4,1,""],run_app_from_main:[91,4,1,""],run_serialized:[91,4,1,""],test_app:[91,4,1,""]},"pyclaw.util.FrameCounter":{get_counter:[91,2,1,""],increment:[91,2,1,""],reset_counter:[91,2,1,""],set_counter:[91,2,1,""]},pyclaw:{util:[91,3,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","attribute","Python attribute"],"2":["py","method","Python method"],"3":["py","module","Python module"],"4":["py","function","Python function"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:attribute","2":"py:method","3":"py:module","4":"py:function","5":"py:exception"},terms:{"00000000e":50,"000000e":106,"00000e":106,"0000ff":3,"001000e":106,"00er2592":4,"01er25474":4,"0311_v3":94,"04d":119,"0d0":91,"0f22701":64,"115e":94,"11ee694744f2552d":64,"1257_data":94,"13d7934":64,"150w":94,"153w":94,"15n":94,"161w":94,"16m":49,"17th":86,"18n":94,"1d_plot":[32,54,56,103],"1drad":118,"1st":[70,86,104,106,108,118],"210e":94,"23n":94,"25000000e":50,"26aa21a":64,"278dd2a":64,"29001ed":64,"2_installing_git":65,"2d_grid":19,"2d_patch":[3,19],"2d_pcolor":32,"2d_schlieren":3,"2dec1ac":64,"2e991e8":65,"2nd":[77,82,86,104,106,108,118],"30w":94,"376adbd":65,"3rd":[82,86],"40000000e":50,"4aff2a8":65,"4th":86,"50n":94,"5d0":118,"5e3":107,"5r01ar53652":4,"65af65":65,"68f6752":65,"6ad92e5":64,"6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676a":36,"6d8e1e":65,"721fc64":64,"7beda5a":65,"88er25053":4,"92er25139":4,"93er25181":4,"956fbab":65,"96er25292":4,"\u010dert\u00edk":4,"boolean":[3,78,104,105],"break":[23,34,69,84,107],"case":[5,7,10,12,16,19,29,34,44,54,60,64,67,68,69,72,75,80,82,85,91,95,101,107,115,118,121],"catch":[28,72],"class":[0,1,2,3,21,54,56,61,75,77,82,84,85,86,88,90,91,92,99,103,104,105,106,108],"default":[0,1,2,3,10,19,24,27,29,32,35,37,44,49,54,56,60,63,64,68,71,75,79,80,81,84,85,86,88,89,91,94,95,98,101,105,106,107,115,118],"export":[29,39,44,49,80,84,89,94],"final":[38,44,60,63,64,68,74,90,98,99,104,106,108],"float":[3,24,32,63,75,88,91,104,105,107,108],"function":[0,1,2,3,6,11,13,19,20,21,22,23,24,32,37,41,42,45,48,54,55,60,61,63,69,70,71,76,81,82,83,84,85,86,88,91,94,95,98,100,102,103,104,105,106,107,108,115,116,118],"import":[0,3,19,23,32,34,39,42,51,54,56,60,61,62,63,69,71,75,77,80,81,82,84,85,86,87,88,90,92,94,101,104,105,106,107,108,115,117,119],"int":[1,2,3,63,70,75,78,79,84,85,88,104,105,107],"long":[34,46,69,84,94],"new":[1,2,4,5,10,17,19,21,23,28,29,32,38,39,41,42,44,48,49,54,56,59,60,61,62,63,67,68,72,78,80,82,88,94,95,96,98,99,104,105,107,115,118],"ond\u0159ej":4,"public":[4,10,18,64,84],"return":[0,1,2,3,39,44,54,56,63,68,69,70,75,79,82,83,84,85,86,88,91,100,104,106,108,118,121],"short":[34,68,70,82],"super":[20,23],"switch":[64,68,82,94,101,117],"throw":[23,65],"true":[0,1,2,3,5,11,12,21,22,27,32,37,60,63,65,75,80,85,86,88,94,95,99,100,102,104,105,106,107,108],"try":[1,23,26,32,39,54,62,68,69,71,78,85,87,89,90,91,92,96,104,115,116],"var":[0,3,10,11,22,36,93,102,111,112],"while":[10,12,44,54,56,61,64,68,75,79,80,86,91,100,107,117],AND:[40,58],ARE:[40,58],AWS:[10,39],Added:[65,70,98],Adding:[59,76],And:[5,17,38,84],Are:97,Axes:[65,103],BCs:[106,108],BUT:[40,58],Being:67,But:[10,54,64,89,94],CMS:4,DAs:88,DMS:4,DNS:10,EBS:10,FOR:[40,58],For:[0,1,2,3,5,6,10,11,12,15,16,19,22,23,24,26,27,29,32,34,35,38,39,41,44,45,48,49,53,54,56,60,61,64,65,67,68,71,75,77,78,79,80,82,84,86,87,91,92,93,94,95,97,98,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,117,118,121],GIS:115,Going:[10,21,77],Into:92,NOT:[40,54,58,84],One:[20,44,61,84,91,95],Res:13,SUCH:[40,58],Such:[44,84],Sys:13,THAT:64,THE:[40,58],That:[26,62,84,90],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,19,20,21,22,23,24,26,27,28,29,32,33,34,35,36,37,38,39,41,42,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,63,65,66,67,68,69,70,72,73,75,77,79,80,82,83,84,85,86,87,88,89,91,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,115,116,118,119,120,121],Their:58,Then:[10,12,23,38,39,49,56,60,62,63,64,68,74,80,87,88,89,99],There:[3,5,10,19,28,36,39,41,50,56,64,65,66,84,87,94,103,104,118,120],These:[1,4,9,12,14,20,23,24,27,34,44,48,54,56,60,69,71,81,84,88,90,93,95,98,99,100,105,109,115,117,121],USE:[40,58],Use:[36,64,65,77,84,86,94,104,106,108],Useful:[1,3,104],Using:[0,1,2,3,6,14,19,21,26,29,52,54,56,75,76,77,104,111,112,116,121],WILL:64,Will:85,With:[5,19,23,32,35,51,92,95,104],__doc__:84,__init__:[82,84],__main__:[106,108],__name__:[106,108],_build:38,_compute_c_cent:75,_compute_c_nod:75,_compute_p_cent:75,_compute_p_nod:75,_output2:[54,56],_output:[10,26,37,44,54,56,71,81,85,99,116],_output_from_previous_run:32,_output_new:96,_output_old:96,_plot:[10,26,32,44,56,103,109],_plotindex:[1,32],_plots_new:96,_plots_old:96,_pyclaw_io:63,a351:[13,77],a377:[13,77],a7ff2e5:65,a815645:64,abbrev:65,abbrevi:84,abdullah:58,abil:64,abl:[10,39,62,65,67],abort:[41,64],about:[3,6,10,12,19,21,26,28,34,39,41,42,44,50,55,60,64,68,69,77,80,84,86,94,100,103,106,107,116,118,121],abov:[3,10,12,17,23,26,27,28,32,34,38,39,40,48,50,54,58,61,64,65,67,81,87,90,91,92,94,95,100,103,104,106,107,108,115,118],abs:[82,91],absolut:[69,79,105,106],abstol:91,academ:[89,92],acc:84,accept:[60,79,86,104],accept_reject_step:86,access:[0,13,22,67,68,71,75,77,88,91],accident:[23,54,68],accompani:18,accomplish:41,accord:5,accordingli:115,account:[10,23,62,64,80],accur:[34,48,77,86,94,104,118,121],accuraci:[32,42,51,106,108],achiev:[17,61,64,111,112],acou:54,acount:94,acoust:[12,26,34,59,60,63,71,77,86,87,100,106,118],acoustics_1d:[60,90],acoustics_1d_example1:[26,46],acoustics_1d_heterogen:118,acoustics_1d_homogen:[69,71],acoustics_2d:86,acoustics_2d_radi:[106,118],acoustics_3d_vari:69,acquaint:90,acquir:54,across:[94,115],act:70,acta:13,actanum2011:13,action:[10,61,68],activ:[24,25,36,66,86,107],actual:[5,22,44,47,48,54,64,65,70,91,94,101,107],adapt:[4,6,13,44,51,60,73,84,100,103,104,114,118],add:[0,8,10,12,13,21,22,23,32,36,38,44,45,60,64,65,66,67,68,69,71,72,75,79,80,82,91,94,108,119],add_dimens:75,add_gaug:[75,79],add_label:32,add_param:[106,108],add_parent_doc:91,add_titl:54,add_true_solut:54,addcolorbar:94,addcontour:94,added:[3,12,17,19,23,25,42,44,54,64,65,68,72,75,79,95,98,104,105,119],addgaug:32,adding:[19,22,23,29,32,48,80,93,94],addit:[10,12,20,21,23,33,48,50,51,54,55,61,68,70,77,84,86,87,88,94,95,104,108,115,118,119],addition:[68,80],address:65,adequ:34,adjac:[5,12,33,95,104],adjust:[10,17,47,75,94,101,104,118],admin:64,adopt:[69,84],adq:84,adv:[13,71],advanc:[5,13,49,72,76,77,90,104,118],advantag:[23,53,69],advect:[13,54,77,80,100,108,118],advection_2d_swirl:118,advis:[39,40,58,64],affect:[19,41,64,104,116],afosr:4,after:[0,1,3,5,10,16,21,22,26,32,34,41,44,45,50,54,61,62,63,64,68,71,84,86,88,94,96,98,104,105,106,108,118],afterax:[0,22,32,54],afterfram:[1,21,22],aftergrid:44,afteritem:[3,22],afterpatch:[3,22],again:[19,23,28,41,54,56,60,61,64,65,83,89,115,116],against:[69,91,113],agenc:4,ago:65,agre:[9,23,100,113,118],agreement:34,ahead:64,ahmadia:[4,13,58,77,84],aht:101,aid:61,aim:69,albada:70,alg:106,alghamdi:[4,13,58,77,84],algorithm:[4,6,21,24,27,60,73,77,84,86,90,95,100,104,106,108],alia:[64,65],alias:65,align:[24,107],all:[0,1,4,5,8,9,10,12,17,19,20,21,22,23,26,27,28,29,32,33,34,37,38,40,41,44,46,47,49,50,51,52,53,54,56,58,60,63,64,65,68,69,70,71,74,75,80,82,83,84,85,86,88,91,92,94,95,96,98,99,103,104,106,107,108,109,113,115,117,118],alloc:[17,84,86],allow:[4,5,10,19,22,33,37,42,44,48,49,51,53,54,63,68,69,78,84,88,91,92,94,98,100,104,106,107,108,109,115],almost:[69,92,94],alon:[12,84],along:[5,12,21,22,24,27,32,45,48,94,95,99,107,117],alpha:86,alphabet:[58,84],alreadi:[0,1,5,10,23,29,39,56,64,67,68,80,84,85,87,90,92],also:[3,4,5,6,7,8,12,14,17,19,20,21,23,24,26,27,29,31,32,33,34,39,41,44,45,47,48,49,50,51,53,54,56,60,63,64,65,68,69,75,77,80,82,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,104,106,107,108,109,111,112,113,115,116,117,118,121],altern:[21,26,41,44,53,80,92],although:[44,81,82,85],alwai:[12,19,22,23,24,29,44,60,69,84,94,95,98,106,107,108,115,118],am583s2013:92,amal:[4,13,58,77,84],amazon:[21,39],amazonaw:10,amdq:[83,84,100],amend:64,ami:[21,39],amount:34,amr:[4,6,12,17,20,21,22,23,24,25,32,44,50,51,53,58,75,94,103,104,106,108,115,118],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_level:50,amr_level_max:106,amr_levels_max:[27,95,105,106],amr_modul:49,amrclaw:[4,5,9,11,12,16,17,19,20,23,27,29,32,33,39,44,45,47,49,50,51,87,93,95,96,99,102,104,107,111,112,113,114],amrdata:[19,95,105,106,107],amrnez:95,anaconda:[87,92],anal:13,analog:[104,105],andi:4,angl:[12,48],ani:[3,4,5,7,10,12,16,17,19,22,23,24,26,27,33,34,37,38,39,40,41,42,44,46,49,50,51,54,58,64,65,67,68,69,70,71,75,77,80,82,84,85,87,91,94,95,96,99,101,103,104,105,107,118,121],anim:[12,47,109],anisotrop:[5,19],anl:80,annot:22,anoth:[3,19,21,39,50,53,65,69,71,86,89,99,118],anyon:64,anyth:[3,5,23,39,64,68,96],apach:10,apdq:[83,84,100],api:65,app:[9,10,14,20,23,24,47,48,115],appar:49,appear:[0,1,3,7,10,20,32,33,38,41,43,54,67,84,85,88,94,107,109,115],append:[17,27,32,54,63,85,94,95,106],appl:13,appli:[3,4,5,10,12,27,34,42,48,54,56,70,86,94,95,99,104,107,118],applic:[4,5,11,12,14,16,17,19,20,23,24,26,29,33,45,48,49,52,56,69,71,75,76,79,84,86,91,93,95,96,98,100,102,104,107,109,111,112,113,114,115,118,119],appreci:58,approach:[10,23,46,53,61,80,82,91,95,100,103,107,118,121],appropri:[5,10,12,23,32,33,34,35,42,44,45,46,49,60,63,70,71,78,80,81,82,83,85,94,100,101,104,118,121],approv:34,approxim:[5,12,34,48,84,94],apt:[10,65,92],arbitrari:[24,68,86,98,107],arc:[94,101],architectur:80,archiv:[9,18,39,96,109,113,117],area:[11,19,86,94,102],aren:[84,94],arg:[75,85],argument:[0,1,2,3,22,37,54,60,61,69,71,75,78,82,84,85,86,88,91,100,103,104,105,118],argv:[106,108],aris:[40,47,58],arithmet:42,aro88:94,aron:[4,13,58,77,84],arora:70,arora_ro:70,around:[5,69,105,106,118],arrai:[0,3,5,11,17,19,21,22,35,54,60,61,63,65,70,75,77,78,82,83,84,85,86,88,90,91,92,98,100,102,104,105,106,107,108,118],arriv:[19,21,24,25,101],arrival_tol:24,articl:[13,77,84,109],artifici:12,asc:94,ascii:[21,44,60,63,84,85,94,99,104,106,108,115,119],ascii_output_format:45,ask:72,aspect:[34,35,44],assert:[65,106,108],assess:[34,101],assign:[60,63,85],assist:19,associ:[0,1,2,5,19,49,69,75,78],assum:[3,17,19,34,38,39,44,48,53,67,81,82,90,91,94,95,101,104,107,115,117,121],astronom:101,aterrel:4,atmospher:4,attach:88,attempt:[7,8,17,26,41,91,94,96,98,116],attent:64,attirbut:19,attr:[75,85],attribut:[6,19,21,32,55,56,60,63,75,80,82,84,85,86,94,95,98,99,103,104,105,107],attributeerror:54,audienc:84,augment:100,austin:4,author:[13,21,33,34,70,77,84,94],auto:[0,32,61],autom:[61,84,96],automat:[0,2,3,7,8,12,26,29,41,53,54,56,60,67,69,71,78,80,84,87,88,89,91,94,98,104,105,107,115],aux1d:118,aux:[5,11,17,19,21,22,61,77,79,82,84,85,88,89,98,100,102,104,105,106,108,118],aux_bc_low:82,aux_bc_upp:82,aux_l:83,aux_r:83,aux_time_dep:86,aux_typ:[105,106],auxbc:[82,88],auxiliari:[19,61,63,78,83,86,88,100,104,106,108,118],auxillari:85,auxl:[84,100],auxr:[84,100],auxtyp:106,avail:[0,4,12,19,20,32,33,34,41,44,48,53,55,56,60,63,65,77,78,81,83,84,86,89,90,91,92,94,99,101,104,106,107,109,115],averag:[4,5,11,13,33,34,35,44,88,100,102,115,118],avoid:[39,44,64,69,75,84,98,99,104,107,121],awai:[23,101],awar:[34,80],awr11:13,axes1:[2,56],axes:[0,1,2,21,22,32,44,54,56,103],axescmd:[0,56],axesnam:[1,56],axi:[0,35,44,54,65,75,94],axisindex:65,b0002:50,b4step1:[11,118],b4step2:[11,118],b4step3:11,b4step:21,b4stepn:118,b605216:65,back:[10,22,38,64,68,84],background:[2,21,84,103],backup:64,backward:[39,69,92],bad:96,bai:[101,117],balanc:[5,13,51,111,112],bale:13,balelevmitross02:[4,13,104,121],bar:10,barrier:91,base:[5,10,17,18,19,23,27,33,42,44,51,61,63,64,70,75,77,83,84,85,86,88,90,91,92,95,96,97,101,104,105,106,107,108,118,121],bash:[29,39,44,49,80],bash_profil:[39,89],bashrc:[10,29,39,89],basi:44,basic:[4,5,9,21,26,44,60,67,75,77,84,86,96,121],bathymetri:[11,21,33,34,101,102,107,115],bc1:91,bc2amr:12,bc_lower:[12,60,82,90,104,106,108],bc_upper:[12,60,82,90,104,106,108],bcn:[5,12,108,118],bcnamr:[5,12,104,106,118],beam:70,becaus:[19,22,64,67,80,84,98,100,101,104],becom:[34,84,89,121],been:[0,1,4,10,12,14,17,18,19,21,22,23,25,26,27,30,33,34,41,42,44,48,51,54,56,58,61,63,64,67,69,84,85,88,89,90,91,94,95,97,98,99,104,105,107,115,118],befor:[1,3,4,5,21,23,24,26,28,29,38,41,44,49,56,60,63,64,69,80,84,86,88,94,95,98,99,100,101,104,105,107,115,116],before_step:86,beforefram:[1,22],begin:[75,79,90],behav:32,behavior:[69,84,94,95],behaviour:60,behind:[36,66],being:[1,3,4,7,10,34,48,56,63,83,85,86,91,95,100,104,115,116,118],believ:34,belong:[54,75,80,84,85,88],below:[3,5,10,11,12,19,24,42,44,47,48,56,58,60,62,84,90,92,93,94,95,96,100,102,103,104,105,106,107,108,111,112,115,118],benchmark:34,benefit:[65,69,84],berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,40,58],best:[3,12,19,29,46,49,53,54,68,69,82,94,95,96,100,107,110,115,118],beta:[70,86,108],beta_limit:70,better:[0,5,19,24,32,44,48,49,50,53,64,68,84,94,107,115],between:[3,4,5,10,12,20,21,23,44,48,49,51,63,75,86,88,89,91,95,100,101,104,105,106,107,108,109,115,117,118],beyond:[5,27,84],bibliographi:[4,114],bibtex:4,big:84,big_earthquak:94,biggest:77,bilinear:[5,32,98,115],bin:80,binari:[21,40,45,58,81,99,104,106,119],bind:[53,61,80],bisect:[105,106],bit:[12,19,80,89],bitbucket:80,black:[3,32],blank:[3,84],blast:71,bleed:39,block:[6,48,50,51,60,84,88,91,96,118],blossei:4,blue:[3,8,32,54,65],boe:4,bold:65,bomb:[41,49],book:[4,9,13,21,36,65,66,84,85,92],bool:[0,1,2,3,63,78,85,86,88,91,107],border:[44,118],bore:34,botch:64,both:[3,12,23,26,27,34,44,50,61,69,78,80,86,87,94,95,100,104,106,108,111,115,118],bottom:[9,10,11,26,33,34,42,48,60,82,83,94,102,111,112,115],bound:[61,70,80,104],boundari:[17,21,49,61,75,83,84,90,104,106,108],boussinesq:34,box:94,branch:[23,29,36,37,65,66,67,68,72],branchnam:64,brett:65,brief:[4,65,94,107],briefli:[65,121],bring:[10,38,44,64],broken:[16,17,23,45,96],brought:23,brown:58,brows:[8,14,44,109,118],browser:[10,26,38,69,109],bsd:[4,40,58],buffer:[95,105,106],bug:[4,7,19,23,29,42,49,54,58,64,65,68,72],bugfix:64,build:[21,44,61,77,80,91],buildsystem:80,built:[42,51,59,69,77,80,82,85,95,111,112],bulk:[16,60,90,100,106,118],buoi:[21,94],burg:71,burger:[77,100,118],busi:[40,58],butcher:86,button:[9,10,23,64,68],buxfix:64,c210:[13,77],c231:[13,77],c_center:75,c_centers_with_ghost:75,c_node:75,c_nodes_with_ghost:75,cach:[19,56,58],cada:70,cada_torrilhon_limit:70,cada_torrilhon_limiter_nonlinear:70,cal:[100,118,121],calcul:[3,5,22,33,44,54,75,86],calhellev08:13,calhoun:[4,13],calhounhelzellevequ:12,call:[1,5,17,19,22,32,37,39,44,50,54,56,60,61,63,64,65,69,70,74,78,79,82,84,85,86,88,90,91,94,98,100,104,106,107,108,118],call_before_step_each_stag:86,call_setplot:54,callabl:91,cambridg:13,can:[0,2,3,4,5,6,7,8,9,10,12,14,16,17,19,22,23,24,26,28,29,32,33,34,36,38,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,64,65,66,67,68,69,70,71,74,75,78,79,80,81,82,84,85,87,88,89,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,113,115,116,117,118,119,121],canopi:87,capa:85,capa_index:[104,106,108],capabl:[6,9,19,24,25,34,51,61,98,117],capac:[11,102,104,105,106,108],capit:84,captur:[34,115],care:[24,32,33,80,94],carefulli:[17,19,42],cartesian:[33,61,107],cascad:4,cast:[36,66],cat:99,caten:99,caus:[19,34,38,40,56,58,69,89,94,103,105],caut:70,caution:[24,34,115],cautionari:[21,33,107],cautiou:34,caxi:44,cdot:[42,82],cdrda:94,cell:[3,4,7,11,12,17,19,21,22,24,32,33,44,49,50,51,60,75,80,83,84,86,88,90,94,95,98,100,101,102,104,105,106,107,108,115,118,121],celledg:3,celledges_show:[3,19],cellgridintegr:98,cellgridintegrate2:98,cellsiz:[94,115],center:[4,22,27,32,48,60,75,82,83,90,95,105,106,115,118],centers_with_ghost:75,central:104,centroid:48,certain:[24,27,33,95,104],certainli:[80,92],certik:[4,58],cf2py:61,cfg:94,cfl:[5,86,90,98,104,106,107,108],cfl_desir:[86,104,106,108],cfl_max:[86,104,106,108],cfl_superbe:70,cfl_superbee_theta:70,cgreen:65,chanc:58,chang:[1,5,10,11,12,16,17,21,23,28,29,32,37,38,41,42,44,45,49,50,51,56,60,61,65,68,69,72,88,91,94,95,96,102,104,105,106,107,108,111,112,116,118],changelog:[15,19,97,98],chapter:[12,100,104,118],char_decomp:86,charact:84,characterist:86,charg:10,cheaper:10,cheat:[36,66],check:[5,12,17,23,24,26,28,29,37,38,41,44,54,60,61,63,64,68,72,80,85,86,88,90,91,94,96,105,106,113,116,117,118],check_3rd_ord_cond:86,check_diff:[69,91],check_lmm_cond:86,check_valid:63,check_valu:[69,91],checkout:[23,36,38,64,65,66,67,68],checkpoint:[21,104,106,108],checkpt_interv:[104,106],checkpt_styl:[99,104,106],checkpt_tim:[104,106],chen:117,chile2010:[94,98,115],chile2010_fgmax:24,chile2010b:48,chile:94,chilie2010:94,chk00006:[106,108],chknnnnn:[99,104,106,108],choic:[12,53,65,86,104,106,107,108,118],choos:[0,21,64,82,84,94,104,107],chose:42,chosen:[3,27,90,94,95,101,105],circl:[3,54],circular:13,cise:13,citat:4,cite:[21,84],clamshel:21,clarifi:[19,84],clash:44,classic4:108,classic:[5,9,11,12,14,16,17,19,20,21,23,26,27,29,32,33,39,46,49,50,51,58,60,63,71,76,77,82,93,94,96,99,100,102,105,107,112,116,118],claw1:91,claw:[5,8,9,10,11,12,16,17,19,23,24,26,28,29,32,33,35,37,38,39,41,44,46,48,49,55,60,63,69,71,77,79,80,87,89,93,94,95,96,98,100,102,106,107,108,110,111,112,113,115,116,118,119],claw_1dnoncon:121,claw_git_diff:37,claw_git_statu:37,claw_lib:45,claw_outdir:[41,54],claw_packag:86,claw_pkg:[104,105,106,107,108],clawcode2html:21,clawdata2pyclaw:61,clawdata:[94,98,99,104,105,106,107,108],clawgraph:44,clawpac:38,clawpack:[1,4,5,6,8,12,14,21,23,24,25,26,29,30,33,34,37,38,40,44,46,47,49,52,53,54,55,56,58,59,60,62,63,67,68,69,70,71,74,75,76,77,78,80,81,82,84,85,88,89,90,92,94,96,97,98,99,100,104,105,106,109,110,113,115,116,118,119,121],clawplotax:[1,2,3,22,54,103],clawplotdata:[2,3,22,54,56,63,103],clawplotfigur:[0,1,54,103],clawplotitem:[0,1,6,19,21,22,55,103],clawrundata:[32,99,104,105,106,108],clawsolut:1,clawsolv:86,clawsolver1d:[60,63,86,90],clawsolver2d:86,clawutil:[8,16,17,20,23,28,29,37,39,41,96,104,105,106,108,116],clean:[19,36,48,66,91,94],cleaner:23,clear:[1,2,5,44,56],clearfigur:1,clearfram:[1,56],cleargaug:32,clearli:[32,34],clf:2,clf_each_fram:2,click:[4,9,10,23,47,64,68,92,94,96],climit:94,clockwis:48,clone:[9,14,20,36,39,57,64,66,67,74,80,87],close:[10,44,64,67,84,95,105],closer:[48,106],cloud:[10,39],cluster:[5,13,27,95,105,106],clustering_cutoff:[95,105,106],cmap:[54,94],cmax:94,cmin:94,coars:[3,24,94,95,104,115,118],coarsen:[94,95,105],coarser:[3,12,104,105,118],coarsest:[5,50,98,99,104],coast:94,coastal:[34,94,101,107],coastlin:[24,107,117],code:[4,5,6,7,12,14,16,17,18,19,20,22,26,28,29,32,34,37,38,39,40,41,42,45,46,47,49,50,51,52,54,56,58,60,61,64,65,69,72,77,80,82,86,87,90,94,97,98,99,104,106,107,108,109,114,115,116],coeffici:[42,82,86,88,89,90,107],colella:[5,13],collabor:[64,109],collaps:64,collect:[9,23,48,53,60,64,86,92,94,109],collis:84,colon:64,color:[3,21,44,65,103],colorbar:[3,94],colormap:[3,21,33,44,55],column:34,com:[9,10,20,23,38,39,57,64,65,67,68,69,74,80,82,87],combin:[17,64,94,117],combinatori:69,come:[3,23,36,47,54,56,64,66,68,71,80,86,115,118],comfort:82,comm_world:91,command:[0,1,2,3,8,10,21,28,36,37,39,41,46,54,60,61,63,64,65,66,68,69,80,81,84,86,90,91,92,96,103,104,105,116],commenc:99,comment:[8,35,72,99],commit:[23,36,37,38,65,66,68,69,84,96],common:[3,20,23,26,28,29,36,41,51,53,60,65,66,83,86,88,89,116,118],commonli:[3,44,54,56],commun:[36,58,66,72,84,88,91],compact:[67,115],compar:[19,32,34,39,54,67,69,79,95,96,101,105,107,113,117,121],comparison:84,compat:[39,53,69,80,89,92],compil:[10,21,26,28,33,49,51,56,61,77,82,87,91,98,116],compile_librari:91,complet:[17,19,41,56,60,61,67,69,80,84,91,92,96],complex:[9,75,84],complex_zero:84,compliant:29,complic:[12,54,61,64,103],compon:[3,12,17,19,21,23,32,39,44,50,82,85,87,88,95,104,105,106,115,118],compos:60,comprehens:[64,69],compress:94,compris:[19,77],comput:[3,4,5,10,12,13,21,22,24,32,39,41,45,53,54,56,61,63,65,75,77,79,80,86,90,92,94,95,98,100,104,106,107,108,115,118,121],computation:[61,86],compute_f:[63,79],compute_gauge_valu:79,compute_p:[60,63],concept:[36,66],concern:[19,33],conclus:4,condens:21,condit:[17,21,40,51,58,59,60,61,63,84,86,93,98,101,104,106,107,108],config:[36,65,66,68,80],configur:[54,60,64,72,77,80],confin:84,confirm:34,conflict:[5,44,64,89],conform:[19,69,85],confus:[3,64,100],conjunct:95,connect:68,consequenti:[40,58],conserv:[4,5,13,79,86,88,118,121],consid:[5,34,39,61,67,68,72,94],consider:[34,60],consist:[5,24,80,84,94,100,107,115,118],consol:10,constant:[34,42,80,94,107,118],constrain:[27,95],constraint:[105,121],construct:[19,60,75,91,115],construct_function_handl:91,constructor:[84,88],consult:89,contact:[71,77,87],contain:[1,3,9,10,14,17,20,26,28,31,32,33,35,37,41,44,45,50,51,54,56,60,61,63,65,69,70,71,75,77,78,80,82,83,85,86,88,90,91,92,94,96,98,99,100,103,104,107,109,113,115,118],containt:99,contamin:104,content:[38,61,65,118,119],context:[22,118],contigu:[50,88],contingu:19,continu:[10,19,23,35,39,58,100,104,121],contour:[3,32,44,92,103],contour_color:3,contour_kwarg:3,contour_level:[3,94],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:21,contract:[40,58],contribut:[4,58,61,64,72,77,82,86],contributor:[4,40,77],control:[5,6,20,32,44,56,59,64,70,75,77,78,79,80,82,84,95,107],conveni:[1,22,26,32,36,56,63,66,71,77,81,90,118,121],convens:115,convent:[3,19,33,72,77,83],converg:53,convers:[16,61,95,117],convert43to46:16,convert46to50:17,convert:[3,14,19,21,30,48,61,65,74,82,91,94,104,105,115,117],convert_fort_double_to_float:91,convert_readm:8,converttopotyp:115,cool:[64,67],coordiat:94,coordin:[20,21,24,50,60,75,79,80,90,94,95,107],coordinate_system:[11,102,107],copi:[5,11,12,23,26,32,38,44,60,63,64,65,74,82,88,93,94,95,99,102,109,111,112,115,118],copul:64,copyright:[40,58],core:[4,51,65,69],corioli:[34,107,111,112],coriolis_forc:[34,107],corner:[3,50,75,94,104,106,108,115],corr:65,corran:65,correct:[17,23,29,42,44,54,60,80,85,91,98,104,106,108],correctli:[24,61,64,69,76,107],correspond:[3,5,20,22,34,44,48,54,60,69,70,75,82,85,88,94,95,96,100,101,104,105,106,108,115,117,118],cos:[35,60,82],cosin:60,cost:[10,84,86],could:[10,22,24,26,32,49,54,56,60,75,79,84,88,89,92,94,99,105,106,107,108,115,118],council:4,count:60,count_from_zero:60,counter:91,counterclockwis:48,coupl:121,courant:[4,5,95,104,105,106,108],cours:[10,24,32,33,36,48,65,66,80,81,90,107,115],cover:[5,22,27,69,94,95,106,107,115],coverag:[72,96],covert:8,cparam:[60,88],cpu:10,crash:[36,66,104],creat:[0,1,2,3,5,6,14,16,21,23,26,28,32,33,37,38,39,41,50,54,56,61,62,65,69,71,75,77,78,81,84,85,88,89,90,91,94,96,98,99,103,104,105,106,109,110,117,118,119],creation:[54,77,98],cred:65,creset:65,criteria:[5,6,19,21,27,88],criterion:[95,106],critic:100,cross:23,crucial:115,csh:80,ctrl:54,cube:44,current:[3,10,17,19,22,23,27,32,33,34,44,45,50,54,56,64,65,67,68,69,73,75,80,86,88,91,94,95,99,101,103,104,106,107,108,115,117],current_data:[0,3,21,32,54],curv:[3,21,32],custom:[0,10,12,17,19,44,51,53,61,82],custom_bc:82,cut:105,cutoff:[5,106],cxx:80,cyber:13,cygwin:[39,63],cython:80,d304a73:65,dai:[5,10],dalcin:[58,84],dam:71,damag:[5,40,58],damiansra:82,danger:23,darryl:13,dart:[21,94],dash:[3,80],daspect:44,data:[0,1,3,14,21,22,26,28,32,33,40,41,44,53,54,55,56,58,60,63,65,75,79,81,83,85,88,91,93,94,95,98,100,101,106,108,119],data_typ:91,databas:[10,64,91,94,115],dataset:117,date:[23,28,38,41,48,54,65,94,116],datum:[34,101,107,117],david:[4,13,58,77,84,86],deal:[34,53,80,88],dealloc:84,debian:[65,92],debug:[21,29,41,50,88,104,106],debugg:54,decid:[60,86],declar:[17,19,88,118],decompos:[50,100,121],decomposit:104,decor:91,deduc:115,deem:69,deep:107,deeper:107,deepli:90,def:[0,1,3,32,54,60,79,82,84,86,106,108],default_tfluct:86,defenc:4,defin:[0,1,3,5,19,21,22,24,27,41,44,48,54,56,60,63,75,81,82,84,85,86,88,90,91,95,98,100,106,108,116,118,121],definit:[44,60,84,95],deform:[48,94,117],degre:[48,94],delet:[17,23,32,72,94,99],deliber:68,delimit:84,delin:107,delta:[70,75,82,84,86,100,118,121],demo:[47,80],demonstr:[9,47,71,80],denot:[5,19,32,100],densiti:[63,79,88,90,105,106,118],depart:4,depdend:70,depend:[3,10,12,23,26,27,28,29,33,34,41,42,44,54,59,72,83,85,86,91,94,95,107,116,118,121],deprec:107,depth:[4,12,13,19,21,24,33,34,36,42,48,55,66,94,101,107,115],deriv:[40,48,58,63,76,77,88,96],describ:[3,4,5,6,10,12,16,20,23,24,25,26,27,33,34,38,39,41,44,48,50,51,53,54,55,69,75,85,91,94,95,96,100,101,103,104,105,107,115,117,118,121],descript:[3,4,19,27,36,44,53,64,84,91,94,95,100,107,115,121],design:[4,22,58,60,69,90,94,101,115,117],desir:[0,1,2,3,5,6,12,14,19,21,24,32,39,52,53,54,56,60,61,63,79,85,86,93,104,106,108,115,116],desktop:80,detach:[23,64],detail:[4,5,12,19,26,27,29,33,34,36,40,44,54,58,63,66,68,69,70,71,78,80,81,82,83,84,86,94,96,100,103,104,107,109,116,118,121],detect:[41,67,78,87,91],determin:[3,5,27,32,34,37,54,70,75,88,94,95,99,101,103,104,105,107,113,118],dev:[23,69,80],develop:[4,5,6,10,19,20,24,33,34,36,38,44,53,57,58,61,66,67,73,77,82,84,86,87,96,101,106,114,115],dict:[63,78,83,85,88],dictionari:[0,1,2,3,54,60,63,78,83,85,88,90],did:64,didn:71,died:98,diff:[36,37,64,65,66,67,98],differ:[1,3,5,6,9,12,19,21,23,26,32,33,34,37,42,44,48,49,56,60,61,63,71,75,83,84,86,91,92,94,95,96,100,101,104,105,106,107,115,117,118,121],differenti:13,difficult:32,difficulti:[87,89],diffus:82,digit:54,dim:[82,83],dimens:[5,6,12,17,19,32,44,60,61,63,80,82,83,85,88,90,95,100,104,105,106,108,118],dimension:[3,6,7,13,19,24,26,32,34,44,73,75,82,94,106,107,108,118],dimensional_split:[104,106,108],dip:[48,94],dip_angl:94,dir:[80,119],direct:[5,7,12,19,24,26,36,40,41,44,48,49,54,58,63,82,90,94,104,105,107],directli:[16,20,21,23,34,44,54,56,60,61,64,65,67,68,70,88,91,92,119],directori:[1,3,5,8,9,10,11,12,14,16,17,19,20,21,23,26,28,32,33,36,37,39,44,45,48,49,52,56,63,64,65,68,69,71,75,82,84,90,93,94,95,96,98,99,100,102,103,104,105,109,111,112,113,115,116,118,119],disabl:[35,64,87],disable_petsc:91,disallow:84,discard:[64,86],disclaim:[40,58],discontinu:[4,73,86,121],discov:[42,68],discoveri:69,discret:86,discrib:4,discuss:[34,65,69,84,90,92,95,100,107,121],disk:[10,60,69],disloc:94,dispers:[34,47],displac:[21,34,48,94,107,117],displai:[1,10,26,28,54,84,96],distanc:[48,94,115],distribut:[4,10,40,48,51,58,86,92],distutil:61,dive:92,divid:[95,104],divis:4,dlgeorg:4,doc:[20,23,38,70,74,91,110],docstr:[61,69,71,72,96],doctest:75,document:[0,1,2,3,15,18,19,20,21,23,24,31,33,34,36,40,48,53,54,55,56,58,70,71,72,74,78,80,81,86,88,91,94,103,106,119,120],doe:[4,8,12,17,22,23,28,34,39,44,51,54,69,75,84,85,88,91,100,115,116,118],doesn:[64,69,88,94],doing:[5,8,16,23,32,34,36,37,38,39,54,56,64,65,66,67,68,69,75,84,94,99],domain:[5,12,13,27,34,50,59,60,61,63,80,82,85,88,94,95,105,106,108,115],don:[10,22,23,54,64,68,69,80,84,87,106],done:[1,5,6,7,8,10,12,16,17,21,23,26,32,33,39,41,44,48,53,54,56,60,64,68,70,71,91,94,95,99,100,103,105,107,117],donna:4,donnabois:4,donor:[104,106,108],dot:[28,32,41,116],doubl:[44,61,75,91,100,105],down:[10,64,68,94,115],download:[9,10,20,21,23,39,45,47,65,71,80,87,92,94],downward:48,dpng:44,dprint:[105,106],dq_src:[82,86],dqdt:86,draw:3,drawcontourlin:44,drawn:103,driver:17,drop:[10,104],dropdown:64,dry:[12,24,33],dt_check:24,dt_initi:[98,104,106,107,108],dt_max:[104,106,108],dt_max_dtopo:[98,107],dt_variabl:[104,106,108],dtdx:70,dtfe:86,dtopo:[21,34,48,98,107,115,117],dtopo_data:[98,107],dtopo_modul:98,dtopofil:[48,94,107],dtopotool:48,dtopotyp:[107,115],due:69,dummi:[61,86,118],dump:[50,104],dumpgaug:32,duplic:[54,99],durat:101,dure:[19,32,51,64,65,98,101,106,107,108,115],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,36,93,102,111,112],dxc:61,dyc:61,dynam:[5,17,34,47,51,94],e10:94,each:[1,2,3,5,6,12,19,21,23,24,25,27,32,44,47,48,49,50,52,53,54,56,60,61,64,70,75,78,79,80,82,83,84,85,86,88,90,94,95,96,98,100,103,104,105,106,107,108,115,117,121],each_fram:32,each_gaug:32,eadc391:64,earli:[5,17],earlier:[17,19,24,60,82,98],earth:[48,94,107],earth_radiu:107,earthquak:[21,33,34,107,115],easi:[4,5,8,23,36,44,61,66,80,81,84,109,118],easier:[53,64,118],easiest:[16,23,27,29,51,54,56,68,92,94,95,118],easili:[3,10,23,44,54,61,69,84,87,91,92,94,109],east:[10,94,115],eastern:94,easy_instal:80,ec2:[21,39],edebug:[105,106],edg:[3,5,11,12,22,39,48,75,83,84,94,100,102,105,106,108,118],edit:[23,36,56,65,66,68,72],editor:[50,64,65],edu:[45,77,92,94],effect:[23,42,44,69,84,92,95,101,107],effici:[21,34,58,77,79,84,88,95],effort:84,eigenvector:[100,121],either:[9,12,17,27,33,39,44,48,54,56,60,62,67,69,84,86,91,95,100,118,121],elabor:84,elast:[10,48,94],element:[0,3,19,83,86,88,104,105,106,107],elev:[19,21,24,33,34,93,107,115,117],elif:[106,108],elimin:[19,61],ell:100,els:[22,23,64,68,88,108],elsewher:94,email:[65,68],embarass:64,emdash:36,emmett:[13,58,77],empir:[34,42],empti:[32,85,88,91,94,104],empyclaw:82,enabl:[69,79,84,87,91],encapsul:34,encount:[28,54,87,89],encourag:[44,84],end:[10,24,63,64,67,79,84,90,92,94,95,106,108],enddo:118,endors:[40,58],energi:79,enforc:[65,107],engin:13,english:84,enh:64,enhanc:[42,58,84],enough:[94,115],ensur:[26,44,64,99],enter:[44,64,80,87],enthought:[87,89,92],entir:[5,34,49,60,84,85,99],entireti:63,entri:[60,91],enumer:86,environ:[21,23,26,28,37,44,46,49,51,81,84,89,91,94,116],envis:12,epd:89,epicenter_latitud:94,epicenter_longitud:94,eprint:[105,106],epsilon:70,eqinthenew:94,eqn:121,eqnarrai:90,equal:[12,65,80,82,94,95,99,104,106,108,115],equat:[4,12,13,26,33,34,42,47,54,59,60,61,63,77,79,82,84,86,87,88,94,100,104,106,107,108,115,118,121],equiv:121,equival:5,err:106,errno:36,error:[12,17,26,27,28,39,44,49,54,63,72,77,84,91,95,105,106,116],escap:[95,106],escienc:10,especi:[61,69,82],essenti:[44,86,94,107],est:106,establish:4,estim:[42,95,105,107],estimat:106,etc:[0,2,12,16,17,22,23,34,38,50,53,61,84,100,103,104,107,118],etopo10min120w60w60s0:94,etopo1:[94,101,117],etopo:[94,117],euler:[77,86,100,118],euler_2d:[26,82],evalu:[22,42,60,86,118],even:[34,40,48,58,64,68,84,91,94,95,105,106,115,118],event:[34,40,58,94,101,104],eventu:[10,33],ever:[84,103,107],everi:[5,24,27,32,39,60,63,69,71,79,88,94,95,96,100,104,106,108,118],everyth:[23,39,49,64,80,90,91,96],everywher:[42,88],evolv:[19,60,63,86],evolve_to_tim:[60,86],exactli:[37,69,88,104],exam:54,examin:[12,26,94],exampl:[0,1,2,3,4,5,10,12,17,19,22,23,24,27,28,29,30,31,39,41,42,45,48,49,50,53,54,56,58,59,60,61,62,63,64,65,67,68,69,74,75,76,77,78,82,83,84,85,86,87,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,113,114,115,116,117,118],exce:[24,95,105],exceed:95,excel:[36,66,68],except:[19,22,65,83,84,91,104,107,115],excerpt:80,exclud:67,exe:[26,63],exec:[0,1,3,54],execut:[0,1,3,12,16,22,26,32,39,44,54,56,63,69,71,80,96,116],exemplari:[40,58],exercis:[33,69],exist:[1,18,26,44,54,69,75,82,85,88,91,92],exit:[54,80,87],exp:[60,79,90],expand:[36,66,84],expect:[69,84,90,91,106,107,108],expens:[86,95],experi:[34,86],experiment:58,expert:34,explain:[10,27,34,36,64,66,68,84,95,104],explan:[64,69,70],explicit:[91,105],explicitli:[44,104,121],explor:[4,54,56,84],expon:42,expos:10,express:[4,40,58,87],extend:[12,19,36,44,66,75,84,94,107,115,121],extens:[4,13,19,34,44,61,69,77,78,91,104,113,121],extent:[34,39,42,44,60,75,88,98,107],extra:3,extract:84,extrap:[12,82,90,104,106],extrapol:[12,19,27,82,90,104,105,106,108],extrem:89,extropl:12,f2py:[39,61,82,91],f2py_flag:91,f49620:4,f77:29,f90:[11,17,24,39,49,82,93,95,98,102,111,112,115,118],f95:91,f_file_nam:63,f_path:63,facecolor:[2,54,103],facilit:109,fact:88,factor:[5,94,105,107],faculti:[92,94],fade:54,fail:[11,23,80,91,93,96,102,111,112],failur:69,fairli:[12,34,84,94],faith:[64,68],fall:101,fals:[0,1,2,3,27,34,35,37,63,64,75,85,86,88,91,94,95,99,104,105,106,107,108],famili:[69,86,106,108],familiar:39,fanci:[64,65],faq:[10,21,92],far:[12,14,53],fast:67,fastest:87,fault:[21,33,94,115,117],fault_length:94,fault_width:94,favorit:53,fbound:29,fc02:4,fdefault:91,feasibl:84,featur:[19,23,24,25,44,54,61,65,67,68,69,72,73,84,95,107,115],fedora:65,feet:[101,117],fernando:[36,66],fetch:[10,23,64,67,68],few:[5,9,10,19,34,38,39,44,61,64,86,90,95,96,101,113,118],fewer:[94,95],ff0000:3,ff9999:103,ffff00:54,fflag:[21,28,41,45,49,61,91],ffpe:29,fg02:4,fg03:4,fg06:4,fgmax:[21,49,107],fgmax_fil:107,fgmax_process:24,fgmax_valu:24,field:[82,85,88],fignam:[1,56],figno:[1,2,32,54,56,94,103],figsiz:[2,54,103],figur:[0,1,2,4,10,14,21,26,32,44,56,85,100,103],file1info:107,file2info:107,file:[1,5,7,8,11,14,16,17,19,20,21,22,23,26,28,29,32,33,34,36,37,38,39,41,45,48,50,51,53,55,58,61,63,64,65,68,69,71,74,75,78,79,80,81,82,84,85,88,89,91,93,94,98,101,102,103,104,105,106,108,110,111,112,116,117,119],file_format:85,file_prefix:[78,85],file_prefix_p:63,fill:[0,3,4,5,12,75,77,88,104,118],fill_between:3,fill_var2:3,fill_wher:3,find:[1,3,4,5,21,22,41,45,47,48,51,53,58,64,68,69,71,82,88,89,91,92,116],fine:[3,24,51,82,95,104,107,115,118],finer:[3,21,94,95,98,104,105],finest:[3,32],finish:[10,54,60,64,68,84],finit:[4,13,14,30,44,48,86,94,115,118],finite_fault:94,finlin:91,first:[1,3,10,16,17,19,23,24,26,27,38,39,41,44,54,56,60,61,64,67,69,74,75,80,82,84,86,87,88,90,91,94,95,98,99,100,104,106,107,115,121],fit:[40,58,84],fix:[5,16,17,19,21,23,58,64,65,72,98,104,106,108,115],fixedgrid:107,fixup:64,flag2refin:[19,27,105,106],flag2refine_tol:[95,105,106],flag:[10,19,21,28,29,45,49,61,64,68,89,91,106,107],flag_richardson:[95,105,106],flag_richardson_tol:[95,105,106],flat:[48,94,115],flavor:[9,18],flexibl:[19,61,100],floor:[33,48,94],flow:[4,12,13,20,24,33,34,77,84,94,100,104,107,114,115,118],fluctuat:[83,86,121],fluid:[34,47,101],flux2:61,flux:[13,24,84,86,100,104,121],fly:[21,64],fmt:3,fname:[94,106,107,108],focal_depth:94,focu:[4,33],fold:12,folder:[11,36,93,102,111,112],follow:[0,2,3,4,5,10,12,16,20,23,24,26,27,32,33,39,40,44,45,50,54,55,58,60,61,62,64,65,68,69,71,73,74,75,78,80,82,83,84,85,87,88,90,91,94,95,99,100,103,104,105,107,115,116,118,120],fontsiz:54,foo:64,foot:48,fopenmp:[49,91],forbidden:27,forc:[19,27,28,41,67,91,94,116],forgot:64,fork:[38,64,67,72],form:[0,2,3,4,5,14,16,17,19,24,26,27,30,32,40,42,48,50,58,61,67,79,84,86,90,91,94,95,99,100,104,105,106,107,111,115,118,121],formal:84,format:[1,3,10,21,26,33,34,35,44,45,53,54,60,63,65,68,78,81,82,85,91,94,104,107,115,119],format_str:32,former:[54,118],formul:[4,34,42,100,104],formula:42,fort:[1,7,21,22,32,44,45,85,99,104,105,106,108,119],fortfil:26,fortran90:84,fortran:[5,8,10,17,20,22,23,26,33,39,41,42,47,49,50,51,53,56,58,60,61,63,69,72,77,80,82,83,86,87,88,91,106,108,114,116],fortran_modul:88,fortran_src_wrapp:61,forward:[67,86,118],found:[1,4,5,8,9,10,11,12,14,19,22,24,26,28,32,34,37,41,47,48,52,54,55,56,57,60,70,80,85,89,91,93,94,96,99,101,102,103,111,112,116],foundat:[36,66],founder:4,four:[69,75,94,95],fpe0:29,frac:[42,90,121],fraction:[5,10,95,104,118,121],fragil:88,fragment:3,frame0000:44,frame:[1,2,3,22,32,44,45,50,53,54,56,60,63,78,80,85,87,91,94,99,103,106,108,109],framecount:91,framenam:44,frameno:[1,3,22],framesoln_dict:1,frametool:[1,22,56],framework:[4,58,61],free:[10,39,48,58,62,82,87,89,92],frequenc:86,frequent:[17,22,89],friction:[21,33,34,107,111,112],friction_depth:[42,107],friction_forc:107,friedemann:70,from:[0,1,3,4,5,6,9,12,13,15,20,21,22,24,25,26,27,30,32,34,36,38,39,40,41,44,46,48,50,54,57,58,59,60,63,65,66,67,69,72,75,76,77,79,80,82,83,84,85,86,87,88,89,90,91,92,95,96,98,99,100,101,104,105,106,107,108,113,115,117,118,119],frommm:70,front:[44,85,91],fset:88,fstr:44,ftrapuv:29,full:[5,39,54,63,79,84,86,90,92,114,115,118],fulli:[5,34],fun:91,func:91,function_nam:91,fund:[21,77],funni:68,funrol:91,further:[5,12,21,24,25,34,41,44,69,77,94,95],furthermor:90,futur:[10,19,21,26,30,34,42,60,77,86,94,115],fvmbook:[9,14],fvmhp:[4,9,12,13,21,51,100,104,118,121],fwave:[86,100],g77:89,galerkin:[73,86],galleri:[9,21,26,52,71,77,92,96,109,113,118],gallery_al:[31,77],gallery_classic_amrclaw:[26,31],gallery_fvmbook:[13,14,30,31],gallery_geoclaw:[31,33],gamma:42,gas:5,gaug:[21,75,76,88,98,99,101,106],gauge1:99,gauge2:99,gauge_coord:75,gauge_data:88,gauge_dir_nam:75,gauge_fil:75,gauge_file_nam:75,gaugedata:[32,106],gaugeno:[32,94,106],gaugetool:32,gaussian:[60,90,108],gca:35,gcc:[80,87],gd_ship:94,gear:10,gen_vari:[69,91],gener:[0,1,2,3,4,5,6,8,10,12,13,16,17,21,23,28,29,34,39,41,42,48,49,50,53,54,55,56,58,61,64,65,68,70,72,74,75,77,80,81,82,84,85,86,87,90,91,92,94,95,98,99,101,104,105,109,115,118,119],geo:[21,42],geo_data:107,geoclaw:[4,9,13,20,23,24,25,27,29,32,39,42,45,48,51,87,94,96,99,101,104,105,114,115,117,118],geoda:[94,101,117],geodaa:94,geodata:94,geohazard:34,geol:94,geolib:[45,98],geom:88,geometr:118,geometri:[77,82,85,88],geophys:[4,12,13,20,33,34,51,104,114,115],geoplot:[35,55,94],georg:[4,13],geoscientist:34,geotool:48,get:[0,10,23,28,36,39,41,60,61,64,65,66,69,72,75,79,80,84,87,89,90,91,92,99,114,116],get_aux_glob:88,get_auxbc_from_aux:88,get_cmap:54,get_count:91,get_dim_attribut:75,get_dt:86,get_dt_new:86,get_q_glob:88,get_qbc_from_q:88,getax:1,getcwd:54,getfigur:1,getfram:[1,3,56],gethandl:[0,2,3],getitem:1,gfortran:[10,21,39,49,59,89,116],gfortranbinari:87,ghamdi:4,ghost:[12,21,49,50,75,86,88,104,106,108,118,121],gif:94,git:[9,10,20,21,38,64,67,68,72,74,77,87,96],git_link:36,git_statu:37,gitconfig:65,githhub:64,github:[9,19,20,36,38,39,57,65,66,67,69,74,82,87,96],gitk:[36,64],give:[3,5,10,12,23,26,32,36,49,50,54,56,64,65,66,68,80,81,84,86,94,96,104,107,115,117],given:[42,44,48,70,80,85,86,88,91,94,95,101,107,115,118],glob:71,global:[5,65,68,75,84,88,91,94,101,117,118],gloss:117,glu:12,gnu:87,goal:5,godunov:[4,86,104,106,108,118],goe:[33,84],going:[12,19,60,63,64,68,71,83,84,92,94,97,109,115,121],good:[12,34,36,40,49,58,64,65,66,67,90,94,96],googl:[69,71,80,89,94],googlecod:80,got:[64,67],gov:[80,94],govern:107,gprint:[105,106],gpu:73,gradi:[4,58],gradient:121,gradylemoin:4,grant:[4,58],graph:[64,65,67],graphic:[20,23,44,53,64],gravit:[42,107,118],graviti:107,grd98:94,great:[71,94],greater:[24,42,87,92,94,95,99,104,105],greatest:95,greatli:[58,101],green:[48,54,94,96],grid1d:75,grid1info:107,grid2info:107,grid:[4,6,13,16,17,19,20,21,22,23,27,32,33,34,44,50,51,53,58,60,69,77,79,80,82,83,84,85,86,88,90,94,95,98,100,101,104,105,106,108,115,117,118,121],grid_files_scanf:119,grid_numb:50,gridedges_show:94,grideges_show:19,gridlin:44,gridlines_show:19,group:[3,10,34,69,71,80,89,94],guarante:[33,34,86,94],gui:[19,119],guid:[10,20,21,33,36,57,64,66,92,110],guidelin:72,gzip:[64,94],hack:[64,68,88],had:64,hadjimichael:58,half:[0,12,48,86,94,104,118],halfspac:48,hand:[3,16,17,42,60,69],handi:41,handl:[0,2,3,5,24,29,33,39,49,51,53,64,75,82,85,86,88,89,90,91,94,98,107],hang:48,happen:[41,60,85,88,116],happi:64,hard:[35,49,54,64],hardcopi:[1,54,56,103],hardcor:68,harder:104,hardest:[45,92],hardwir:49,harmon:64,has:[0,4,5,10,12,15,17,18,19,20,21,22,23,24,25,26,27,36,37,41,42,44,48,50,51,54,58,61,63,64,66,67,69,75,82,83,84,85,88,89,91,92,93,94,95,97,98,100,101,104,105,107,115,118,119,121],hash:[37,38,96],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,22,23,24,26,29,30,32,33,34,36,38,39,41,42,44,45,47,49,50,53,54,56,58,60,61,64,65,66,67,68,69,70,71,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,98,99,100,101,104,105,107,109,113,115,118],haven:90,hawaii:94,hazard:[21,24,42,101],head:[23,64,65,67,94],header:[8,50,94,115],heavili:61,height:94,held:34,hello:80,help:[6,20,21,28,35,36,39,41,56,64,65,66,68,69,77,80,84,87,91,94,109],helzel:13,hemispher:94,henc:[86,95],here:[10,12,34,36,47,51,54,56,57,60,63,64,65,66,68,70,77,80,82,83,84,89,90,94,121],heterogen:118,hex:54,hhuuggoo:65,hidden:[3,41,54],hide:44,hierarchi:75,high:[4,13,34,51,61,77,86,100,101,107,114,117,118],higher:[3,5,75,86,87,101],highlight:[8,10],hilo:[101,117],hint:[12,21,24,33,39,56,107,116],histor:[34,48,117],histori:[23,36,56,66,92,99],hit:[12,44,56,104],hoc:61,hold:[3,56,90,95],holder:[40,58],home:[10,39,65,68],homepag:[18,65],homogen:[48,86,118,121],honshu:94,hood:53,hope:96,horizont:94,host:[64,69],hour:[10,94],how:[1,5,6,9,12,19,21,26,27,29,32,33,36,47,48,49,50,63,66,67,68,69,71,78,82,84,86,90,91,94,95,99,100,103,104,107,109,119],howev:[5,10,12,19,23,26,29,33,34,40,48,49,50,58,61,64,68,69,95,101,103,107],hpc:39,htm:94,html:[1,10,13,20,21,26,28,32,38,47,53,54,65,69,71,74,80,81,92,94,96],html_plot:81,htmlplot:71,http:[4,9,10,13,23,38,39,40,45,57,58,61,62,64,65,68,69,77,80,82,92,94],hugo:65,hyd93:94,hydrodynam:13,hyperbe:70,hyperbee_limit:70,hyperbol:[4,5,13,14,30,51,61,77,82,83,90,100,104,107,118,121],hyperol:104,hyphen:84,ibm:87,idea:[44,51,60,84,90,94,96,121],ideal:[94,101],ident:[75,80,96],identifi:[26,61,84,95],idl:10,ieee:13,ifort:29,ignor:[12,101],iii:94,iinstal:80,illustr:[26,44,47,100,109],imag:[10,26,84,96],imaginari:84,immedi:[23,34,44,60,63,64],impati:82,imped:[60,90],implement:[1,4,6,12,27,46,58,64,69,82,84,86,90,91,95,100,104,118,121],impli:[40,58,67],implicit:[58,84,86],impliment:65,importantli:80,impos:[12,61,95,107,111,112,121],imposs:[34,104],improv:[4,10,19,24,25,33,48,84,94,98,104],imshow:94,inaccur:34,inaccuraci:34,inadequaci:42,inadvertantli:54,inbound:10,inc:[36,44],incept:4,inch:[2,54,103],incident:[40,58],includ:[4,5,10,11,18,19,20,21,22,23,26,28,32,34,36,39,40,42,44,45,49,51,53,54,56,58,60,61,64,67,69,71,75,77,80,81,82,84,85,86,87,88,90,92,93,94,98,100,102,104,106,107,109,110,111,112,115,118],incom:12,incompat:69,incomplet:24,incompress:13,incorpor:[19,34,38,58,67,86,92,98],incorrect:84,increas:[49,84,107],increment:[24,91,94,104,106,108],ind:75,inde:[61,80],indent:84,independ:20,index:[1,5,10,19,22,32,38,54,75,77,80,82,83,84,91,104,106,108],index_bi:65,indic:[6,12,17,19,21,29,44,52,56,75,80,83,84,86,90,94,95,96,100,104,106,107,108,115,118],indirect:[40,58],individu:[4,19,20,44,75,84,95,96],infinit:104,inflat:12,info:[44,63,75,86,105,106],inform:[10,19,21,26,33,34,35,37,39,50,54,55,56,57,58,60,61,64,65,68,75,77,80,81,83,84,85,91,99,100,104,105,107,115,116,117,118,119],inhabit:60,inherit:[54,86],initi:[4,10,19,21,27,32,34,44,48,51,56,58,59,60,61,63,65,70,75,76,84,85,86,88,89,91,93,94,95,101,104,106,107,108,115],initialize_sourc:61,inlin:92,input:[6,12,17,20,21,22,27,28,44,60,63,70,75,77,83,84,85,86,91,100,106,107,108,115,118],input_filenam:61,inputerror:36,inputfil:[91,115],inrati:94,inratt:94,inratx:94,ins:19,insert:[8,12,48,64],insid:[75,80,84,85],inspect:[16,17,94],instal:[9,10,20,21,26,56,58,59,62,64,68,69,72,76,77,78,90,94,97,98,120],install_output:39,instanc:[3,21,51,56,60,61,63,64,75,79,82,84],instantan:[86,115],instanti:[63,80,82,86,88,106,108],instead:[3,10,23,26,45,67,68,87,88,91,94,100,115],institut:4,instruct:[10,21,26,45,60,62,64,65,67,68,69,72,80,87,90,97,98,99,120],insur:[37,41,56,94,95,96,98,105,107,115],intact:46,integ:[3,24,32,42,54,61,85,94,95,100,104,107],integr:[19,21,58,72,77,79,86,98,106,108,115,118],intel:21,intend:[34,61,84],intens:61,intent:[61,100],inter:23,interact:[1,10,19,21,26,28,32,33,41,47,51,54,61,64,80,81,87,90],interactive_plot:[81,90],interdepend:88,interest:[9,12,20,22,24,35,44,61,68,69,88,94,104],interfac:[4,16,19,21,44,58,61,70,77,83,84,86,91,92,100,118,119,121],interface_funct:91,interior:[5,12,50,88],interleav:58,intermedi:[16,24,36,66,118],intern:[5,32,115,121],interpol:[5,12,24,25,32,44,54,101,107],interpret:92,interrupt:[40,58],interv:[32,60,84,90,94,95,104,107],introduc:[12,16,54,68,69,84,121],introduct:[36,47,66,69],introductori:92,introspect:84,intuit:77,inund:[33,42,94,101,117],inundataion:[101,117],invalid:[29,85],invert:84,invest:34,investig:96,invis:28,invok:[8,49,84,116],involv:[82,86],ioerror:85,ioexcept:91,iout:108,ioutarrivaltim:107,ioutsurfacemax:107,ipdb:54,iplot:[26,71,80],iplotclaw:[1,10,19,21,26,32,33,54,81],iplotclaw_:54,iplotclaw_figno:1,ipython:[10,21,31,51,54,56,61,62,64,77,87,90,92],ipython_displai:98,iqinit:[107,115],irregular:94,is_valid:[85,88],island:94,isn:[41,49,50,116],isosurfac:44,isotrop:48,issu:[19,23,38,39,44,60,64,69,75,77,87,89,96,98,107],item1:[0,56],item:[0,1,3,21,44,56,91,103],itemnam:[1,56],ith:83,its:[4,5,10,19,34,40,50,58,63,70,71,75,77,82,84,85,86,88,91,92,95,106,121],itself:[39,53,74,107],ixi:84,jacobian:[100,121],jan:4,januari:97,javascript:109,jed:58,jet:44,job:10,join:54,jonathan:65,joshu:65,journal:[13,77,109],jpg:44,jsanim:98,jump:[4,39,44,56,86,104,121],junction:[24,107],just:[0,5,23,28,39,60,61,63,64,67,68,69,79,80,81,82,84,88,91,92,94,104,118],justifi:48,kappa:[90,121],kappa_i:121,karg:85,kaust:[4,77],keep:[21,23,26,49,60,63,64,68,84,88,91,94,96,107],keep_copi:[60,63],keep_gaug:88,kei:[0,1,2,10,68,86,90,91],kemm:70,kemm_2009:70,kernel:91,kernel_languag:[69,86,91],ketch:4,ketcheson2011:77,ketcheson:[4,13,58,77,84,86],ketchesonmandliet:13,ketparlev13:[13,51],keyboard:44,keypair:10,keyword:[2,3,54,60,69,71,75,84,85,91,103],kind:[63,71],king:58,klein:70,kneplei:[13,58,77,84],know:[34,39,41,58,64,101,116,117],knowledg:34,known:[29,44,48,49,54,69,87,89,104],kpp:71,kristof:58,kutta:[77,86],kwarg:[2,54,69,91,103],kyle:[4,13,58,70,77,84],label:[35,65,68],lack:3,lake:[33,115],lambda:75,land:[12,33,55],landslid:34,langseth:[4,13],langsethleveque00:[4,13],langtangen:92,languag:[8,53,91,92],lapack:98,laptop:77,larg:[5,17,24,25,26,34,44,49,53,69,79,80,94,95,99,104],larger:[10,17,24,49,50,54,75,98,107,115],largest:[95,101],last:[3,22,24,54,60,61,64,82,90,94,104],lat:94,later:[10,37,56,84,86,94,99],latest:[20,21,68,80,87],latex:[1,21,53,81],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:84,latitud:[11,21,33,48,94,102,107],latter:[11,38,82,102,104,118],launch:[21,71,77,80,81,87],law:[4,13,121],lax:[86,104,106,108,121],layer:[13,75,98],layout:72,lbla:89,lead:[5,10,19,34,42,44,48,105],leak:64,learn:[34,36,65,66,71,92],least:[4,5,10,27,44,69,89,94,95,104,106,115],leav:[10,12,68,105],led:17,leer:[70,86,104,106,108],left:[3,10,12,22,50,56,64,75,82,83,84,90,94,99,100,101,105,115,117,121],legaci:20,lemoin:[4,58],len:[75,106,108],lenght:104,length:[11,34,48,82,84,88,94,102,104,105,106,107,118],less:[34,42,49,84,86,95,104],let:[12,33,39,58,64,67,94],letter:84,level:[3,5,6,12,20,22,24,27,32,33,34,39,44,46,49,50,61,63,69,75,84,86,93,94,95,96,98,99,101,104,105,106,107,108,115,117,118],levequ:[4,12,13,40,51,70,77,86,92,100,104,118,121],leveque09:13,leveque1996:13,leveque1997:77,leveque96:13,leveque97:[4,13],leveque_book_2002:83,levequegeorgeberg:[4,13],levyon03:13,lgomp:91,liabil:[33,34,40,58,94],liabl:[40,58],lib:64,librari:[5,10,11,12,17,19,22,24,26,32,45,49,50,51,58,70,78,80,84,86,91,93,95,102,105,111,112,116,118],library_path:91,licens:[21,33,34,77,94],lie:5,lies:[5,12,24,27,95,107],life:84,lifetim:84,light:[44,95],like:[10,38,44,45,56,61,63,64,65,67,68,69,75,79,80,83,84,85,86,88,92,94,103,115,116],lim_typ:[84,86],limit:[0,4,5,34,40,44,49,53,58,60,61,77,84,86,95,104,106,107,108,115,121],limiter_typ:84,limitertyp:84,linalgexcept:84,line:[1,3,12,21,24,29,32,33,37,41,44,45,50,54,64,65,67,68,69,80,84,86,90,91,94,98,103,104,106,115],linear:[4,48,54,60,64,70,86,100],liner:[0,84],linewidth:54,link:[4,8,10,13,14,16,17,21,23,33,36,39,45,47,64,66,84,92,101,108,117],linspac:[44,63,90],linu:[36,66],linux:[10,36,39,46,64,66,89,92,96],lisandro:[58,84],list:[1,3,4,6,7,8,10,19,24,26,27,28,32,39,40,42,44,49,54,56,58,59,60,63,64,68,69,70,75,79,81,82,83,84,85,86,88,89,91,94,95,99,104,105,106,107,108],liter:84,literalinclud:38,literatur:34,littl:[34,36,64,66,101],live:88,llapack:89,lmm:86,lnetcdf:45,lnetcdff:45,load:[10,69,81,85,91,92,119],local:[10,13,17,21,23,44,64,67,70,75,77,82,88,118],local_path:91,locat:[5,10,21,33,44,50,75,79,81,83,85,91,94,99,101],log:[21,23,36,64,65,66,67,68,85,86,94],logger:88,logic:[5,12,13,84],longer:[17,21,23,67,94],longest:94,longitud:[21,33,48,94,107],look:[10,19,44,45,54,56,61,64,65,67,69,75,80,84,85,86,90,91,92,94,96,104,105,107,116],loop:[27,32,44,53,91,95,103,104,118],loss:[40,58],lost:64,lot:[39,69],love:71,low:[61,117],lower:[3,19,50,75,80,84,94,104,106,108,115,117],lower_glob:75,lowerg:80,luckili:64,luna:[13,58,77],lying:5,m_w:121,mac:[39,49,89,92,96],machin:[10,21,36,39,49,51,66,68,69,92],made:[4,19,23,64,65,67,68,85,88,94,98,107,118],magic:[36,66],magnitud:94,mai:[0,1,2,3,4,5,10,16,17,19,20,22,23,24,26,28,33,34,35,38,39,40,41,42,44,45,48,49,53,54,56,58,61,62,64,65,68,69,71,75,77,79,82,84,85,86,89,91,92,94,95,96,99,101,103,104,105,106,107,115,116,118],mail:[64,68,82,89],main:[8,16,23,44,51,61,63,64,67,69,78,82,84,90,91],mainli:80,maintain:[64,69,72,77,84,105,115,118],mainten:[58,84],major:[4,19,58,61,97,98],make:[1,8,10,16,17,19,21,22,23,26,28,29,32,33,34,36,37,38,39,41,42,44,49,51,56,60,61,63,65,66,67,69,72,74,75,76,77,82,84,85,91,96,98,104,113,115,117,118],make_colormap:54,make_lib:10,makefil:[5,8,11,12,16,17,20,21,23,26,29,45,49,51,54,56,61,76,95,98,102,104,106,107,108,109,111,112,116,118],maketopo:115,man:[13,21,33,34,64,107,111,112],manag:[10,36,66,79,94],mandli:[4,13,58,70,77,84],mani:[1,3,4,5,9,10,14,17,18,19,23,26,27,29,33,36,41,48,49,50,54,56,58,60,66,69,71,77,82,84,85,90,91,92,94,95,97,98,100,103,104,105,113,115,118],manifold:44,manner:[32,53,104,111,112],manning_break:107,manning_coeffici:107,manual:[23,39,61,64,67,69,72,87,89],manuel:[13,58,77],map2d_to_1d:22,map:[3,12,44,54,58,61,75,77,82,95,121],map_2d_to_1d:3,mapc2p:[3,21,22,44,61,75],mappedgrid:[3,44],march:[94,98],margin:33,mark:[12,96],mark_cent:75,mark_nod:75,markup:8,marsha:[4,5],mask:[35,64],maskedconst:64,mass:[5,79],massiv:77,master:[10,23,38,65,67,68,72,82],match:[71,78,85,96],materi:[4,40,48,58],math:[13,90],mathemat:[4,92],mathwork:44,matlab:[6,19,21,26,52,53,54,81,92],matlab_plot:6,matlabpath:44,matplotlib:[0,2,3,10,35,39,53,54,59,92,103,116],matric:[100,121],matrix:84,matteo:[4,13,58,77],matthew:[13,58,65,77,84],maux:[19,100,118],max1d:49,max:[0,44,94,95,106,108,121],max_level_deep:107,max_step:86,maxima:[24,49,107],maximum:[3,19,21,24,25,27,44,86,90,95,98,104,105,106,108],maxlevel:[27,44,94,95,105,106,107],maxm:100,maxmi:[17,61],maxmx:[17,61,84,100],maxmz:17,maxwell_1d_homogen:82,mayb:64,mbc:[100,118],mc_limit:70,mcs:80,mean:[3,10,19,32,34,44,64,68,69,80,94,95,100,101,104,106,108,117],mean_latitud:35,meant:[75,86],meantim:64,measur:[32,48],mechan:88,media:[13,47],medial:84,medium:[106,118],meld:64,member:[82,85,90],memori:[17,19,49,50,51,60,63,84,88,105,106],mention:[104,105],menu:[10,64,101,117],meqn:[32,50,100,118],merchant:[40,58],mercuri:80,merg:[5,10,23,36,65,66,67,68,72],mesh:[4,6,13,44,51,53,60,73,95,103,104,114,118],meshgrid:[60,82],messag:[28,38,44,49,63,64,68,69,81,84,85,86,88,89,104,106,108,116],messi:64,met:[40,58],metadata:[50,84,94],meter:[101,107,117],method:[4,13,14,30,32,54,56,60,63,65,68,69,70,75,80,84,85,86,91,95,100,103,104,105,106,108,114,115,118],method_data:84,mgd2000:94,mgd77:94,mhhw:101,mhw:[34,101,117],micro:10,mid:54,midpoint:75,might:[10,12,19,23,26,27,38,39,44,46,49,54,60,65,72,79,92,94,95,98,100,104,105,115,117,118],migrat:16,min:[0,121],min_level_check:24,mind:84,minim:[5,84,105],minimum:[3,24,48,90,107],minlevel:[27,94,95,105,106,107],minmod:[70,86,104,106,108],minmod_limit:70,minor:[8,98],minut:[38,65,94,101,117],mirror:72,mis:54,misc:[4,77],miscellan:83,miss:[19,84,115,116],mistak:64,mitig:34,mitran:[4,13],mjb:[5,13],mjberger:4,mllw:117,mode:[1,10,23,91,94],model:[12,13,21,24,29,33,42,68,79,101,107,115],modern:87,modif:[28,40,44,54,58,69,70,107],modifi:[5,11,12,17,19,21,22,26,32,33,41,44,46,48,54,61,64,70,75,82,93,94,95,102,104,106,107,108,111,112,115,118],modul:[0,21,23,35,39,48,49,53,54,55,56,60,61,69,70,71,78,82,83,84,85,88,99,104,105,107],module_nam:91,modulu:[90,106,118],molsolv:86,moment:22,momentum:[12,24,34,42,107,115],monitor:[19,21,25,49],monoton:[104,107],month:[13,77],more:[1,2,3,4,5,6,9,10,12,13,17,19,21,23,26,27,32,33,34,36,39,40,41,44,47,48,53,54,55,56,58,61,63,68,69,70,75,79,80,81,82,83,84,86,87,88,90,91,94,95,96,98,100,101,103,104,105,106,107,109,113,115,116,118,121],most:[3,17,19,22,26,27,28,34,37,38,39,41,44,49,51,53,54,56,58,64,65,69,75,80,84,86,89,90,94,95,96,101,103,104,105,107,110,118],mostli:[3,53],motion:115,move:[12,26,38,39,48,82,94,95,98,107,115],movetopo:98,mparsani:4,mpi:[51,80],mpich:80,mpiexec:80,mpirun:[69,80,87],msl:[101,117],msysgit:65,mthlim:86,much:[10,24,29,39,50,51,53,64,69,92,94,98,104,107],muct:86,multi:[13,60,84,98,118],multicor:49,multidimension:[61,77],multipl:[5,10,20,23,53,60,69,75,79,84,91,98],multistep:86,must:[5,10,12,17,19,24,33,39,40,41,44,48,49,50,58,61,78,79,82,84,85,86,88,89,90,91,94,98,99,100,101,104,106,107,108,116,117,118,121],mwave:100,mx1d:118,mxnest:[19,94],mxnext:94,my_acoustics_rp:60,my_initial_solut:63,my_new_fil:64,my_rp_modul:60,my_setplot_fil:56,my_solv:63,myclaw:46,n00014:4,name:[0,1,2,3,6,8,10,17,19,23,24,26,28,32,40,41,44,45,54,56,58,61,63,64,65,67,68,71,72,75,78,79,83,85,90,91,94,99,100,103,104,105,106,107,108,113,118,119],namespac:61,nation:[4,34,115],natur:[24,121],naux:50,navig:[9,109],nbviewer:47,ncar:4,ncol:94,ndarrai:[70,75,83,88],ndarrari:75,ndim:[19,50,56,104,105],nearbi:101,nearest:32,nearli:[75,115],nearshor:34,necessari:[5,10,26,33,34,44,48,50,51,56,60,61,84,99,103,104,115,118],necessarili:[4,69],necessit:69,need:[0,4,5,10,11,12,16,17,19,22,23,24,26,28,32,34,35,38,39,41,44,45,48,49,50,51,56,60,61,63,64,65,67,68,69,70,74,77,78,80,82,84,86,90,92,94,95,99,100,102,104,105,106,107,108,111,112,115,117,118,121],neg:[19,24,94,115],negat:115,neglig:[40,49,58,107],neighbor:[4,95,105,106],neither:[40,58],nep:64,nest:[98,105,106],net:39,netcdf3:78,netcdf4:78,netcdf:[10,21,104,106,108,115],network:64,never:[23,82,88,93,95,104,106,108,116],new_featur:23,new_file_nam:64,new_frame_num:91,new_plotax:[0,2,32,54,103],new_plotfgur:54,new_plotfigur:[1,2,32,54,103],new_plotitem:[0,3,32,54,103],new_userdata:[106,108],newdir:46,newer:[23,49,70],newli:99,next:[2,3,5,10,26,27,32,38,39,44,48,50,54,56,59,60,74,80,84,86,90,94,95,96,104,105,107],nfr:4,ngdc:[94,101,115,117],nghost:50,ngrid:50,nhtmp:34,nice:[36,47,61,65,66,68,69,82],nicer:[56,92,94],nih:4,nnnnn:[99,104],noaa:[101,115,117],nodata_valu:[94,115],nodatav:115,nodatavalu:115,node:75,nodes_with_ghost:75,non:[12,47,51,61,65,82,84,90,104,106,108,121],nonconserv:121,none:[0,1,2,3,12,22,63,69,75,84,85,86,88,91,94,98,104,106,108,115],nonexist:[31,71,77],nonlinear:[4,13,34,70,84,104,121],nonoverlap:5,nonphys:32,nonuniform:44,nor:[40,58],norm:95,normal:[12,54,82,84,100,104,105,106,108],north:[48,94],northernmost:[94,115],norwegian:4,nose:[59,69,80,84],nosetest:[23,39,69,80,87,96,113],notat:100,note:[1,3,4,10,12,17,19,21,23,27,28,29,32,33,39,41,48,49,54,56,61,64,65,67,68,70,71,75,77,78,80,82,84,87,88,91,92,94,95,99,100,101,103,104,105,106,107,108,115,117,118],notebook:[21,31,62],noth:[11,88,102,111,112,118],notic:[40,58,64,69,90],nout:[94,108],nov:[13,77],now:[5,6,10,17,19,23,24,29,37,38,39,42,48,50,54,60,61,62,64,65,67,68,77,79,80,81,82,87,90,94,96,98,100,103,107,109,115,120],npacif:94,nprint:[105,106],npt:24,nrow:94,nsf:4,nstepout:63,nthmp:34,ntime:106,ntot:108,num_aux:[61,80,82,83,88,100,104,105,106,108,118],num_cel:[7,19,75,100,104,105,106,108],num_cells_glob:75,num_dim:[19,75,82,104,105,106,108],num_entri:91,num_eqn:[50,60,61,70,80,82,83,84,85,88,90,100,104,106,108,118],num_ghost:[61,75,82,83,84,86,88,104,106,108],num_output_tim:[60,63,99,104,106,108],num_wav:[70,83,84,100,104,106,108],number:[1,2,3,4,5,7,12,13,16,19,22,24,26,32,39,41,44,49,50,51,56,60,61,63,69,70,71,75,77,78,79,80,82,84,85,86,88,90,91,94,95,98,99,100,104,105,106,107,108,113,118],numer:[4,13,77,84,92],numerica:13,numpi:[3,10,39,59,60,61,62,63,69,75,82,84,88,89,90,92,106,116],nyu:4,obj:64,object:[0,1,2,3,19,21,22,32,54,56,60,61,63,64,65,78,79,80,82,84,85,88,89,90,91,92,94,98,99,104,105,106,108],obliqu:12,obscur:19,observ:[24,34,98,101,104,107,115,117],observatori:4,obtain:[5,9,20,32,33,34,39,78,80,84,94,95,100,107,109,115,121],obviou:84,occasion:69,occur:[48,84,115],ocean:[12,34,94,107,111,112,115,117],off:[10,34,44,56,63,67,94,105],offer:[28,69],offici:39,offset:35,offshor:42,oft:83,often:[5,8,10,12,17,22,24,26,28,29,32,33,34,35,37,42,48,50,64,92,94,96,99,100,101,103,104,107,115,117,118,121],okada2:48,okada:[21,33,115,117],okai:69,olav:4,old:[1,17,19,56,63,80,81,82,86,96],older:[19,39,86,107],olig:[5,13],omega:60,omit:107,omp_num_thread:[29,49],omp_stacks:49,on_lower_boundari:75,on_upper_boundari:75,onc:[1,10,19,23,26,44,56,60,68,79,80,81,82,88,91],ondrej:58,one:[0,1,2,3,4,5,7,10,11,12,17,19,22,23,24,26,32,33,42,44,45,46,48,50,51,53,54,60,64,68,69,75,79,80,82,84,85,86,87,90,91,94,95,96,99,102,103,104,105,106,107,108,111,112,115,118,119],onelin:[64,67],ones:[60,61,88,104,105],onli:[1,3,5,7,10,12,16,19,21,22,23,24,34,42,44,48,49,50,51,54,60,63,64,67,68,69,75,79,80,82,84,85,86,87,88,90,91,94,95,98,99,100,101,103,104,105,106,107,108,115,116,118,121],onlin:[72,92,110],onr:4,onshor:42,onto:[23,64],open:[10,39,53,58,62,64,69,75,84,91,92,119],opendiff:96,openli:20,openmp:[19,21,29,51,91],opensourc:[40,58],oper:[35,39,69],opinion:4,oppos:[23,84],opposit:[5,12],optim:[29,58,91],option:[1,2,6,10,12,17,19,21,26,28,33,37,39,41,44,45,54,55,60,61,63,64,67,68,69,71,75,76,77,78,81,84,85,86,87,90,91,92,93,95,103,104,106,108,109],order:[5,10,12,13,24,34,39,44,50,51,54,56,58,60,63,70,72,75,77,78,79,81,82,86,90,91,100,103,104,105,106,108,114,115,118,121],ordinari:100,ordinarili:89,org:[4,13,40,58,61,62,80],organ:[19,20,26,63,64,84],orient:[48,61,92,94],origin:[3,5,10,12,17,23,38,48,49,50,61,64,65,68,84,86,91,98,99,105,106,108],oscil:[32,121],osher:86,osx:[39,65,92],other:[3,4,5,10,12,13,17,19,21,22,24,26,30,32,33,34,36,38,39,40,41,42,44,45,48,49,50,56,58,60,61,63,66,67,69,72,75,77,79,81,82,83,84,87,90,95,98,101,103,104,107,109,115,117,118,119],otherwis:[40,58,79,85,86,87,88,91,104],ought:86,ouput:63,our:[60,64,67,68,94],out:[3,12,26,37,38,40,41,44,48,54,58,60,61,63,68,78,79,80,81,85,90,92,94,100,106,108],out_tim:63,outaux:22,outdat:69,outdir:[1,3,21,26,32,37,41,56,63,71,75,106,108,116],outdir_p:63,outer:65,outflow:[12,104,106,108],outgo:12,outlin:[44,56,94,103],outn:22,output:[1,7,10,12,21,22,26,28,29,32,33,35,37,39,53,54,56,61,63,64,65,69,70,71,75,76,77,80,81,83,84,85,86,87,88,90,91,94,98,100,103,106,108,118,119],output_aux_compon:[104,106,108],output_aux_onlyonc:[104,106,108],output_file_prefix:63,output_filenam:61,output_format:[63,104,106,108],output_opt:63,output_q_compon:[104,106,108],output_step_interv:[104,106,108],output_styl:[50,60,63,99,104,106,108],output_t0:[99,104,106,108],output_tim:[99,104,106],outputdir:44,outputfil:115,outsid:[5,12,115],outstyl:94,over:[1,3,5,10,12,13,19,23,24,27,32,33,34,44,48,53,79,86,94,95,98,103,106,107,115,118,121],overal:60,overflow:29,overhead:[5,49,95],overlap:[27,95,98,115],overli:84,overrid:[29,60,61,91],overridden:[44,86,88],overrul:3,overview:[97,114],overwrit:[1,63,85],overwritten:[99,118],own:[12,17,21,23,32,36,46,60,61,64,66,67,69,76,77,84,87,88,92,109],p_center:[75,90],p_function:79,p_node:75,p_t:90,p_x:90,pacif:94,packag:[4,20,21,23,26,51,53,58,60,69,75,77,81,82,84,85,87,90,92,119],page:[1,8,9,10,13,19,23,34,38,47,64,65,67,68,71,72,77,80,81,84,89,92,94,96,101,103,109,117,118],pair:[10,24,96],paper:[4,5,12,33,70,77,84],parabl:[36,66],paragraph:48,parallel:[4,19,20,21,49,59,69,71,76,77,79,82,84,85,87,91],paramet:[1,5,6,12,14,17,21,22,26,27,28,33,34,41,42,44,47,48,49,50,59,60,63,70,81,84,85,88,91,93,95,98,99,100,101,106,108,115,116,118],paramt:24,parent:[3,22,88,91],pars:[32,91],parsani:[4,13,58,77],part:[4,19,23,33,34,45,58,61,69,80,84,87,88,90,92,94,107,118],partial:[13,51],particular:[5,9,17,19,24,33,34,40,44,54,55,58,60,64,69,83,85,86,88,90,92,94,103,107,121],particularli:[12,22,37,48,50],partit:80,pass:[12,16,17,49,54,60,63,69,71,76,82,84,88,89,91,106,118],past:[15,18,85,101],patch:[3,5,6,12,19,22,24,44,48,49,50,53,54,67,72,80,85,88,103,105,107,118],patch_index:75,patchedges_show:[3,19],patchno:[3,22],path:[1,10,21,23,36,39,41,46,54,63,78,80,85,91,116],pathtool:44,pattern:[17,33,71,101],paus:68,pcolor:[3,21,32,92,94],pcolor_cmap:3,pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pdb:54,pde:[13,51,77,90,104,118],pdf:[1,94],pdflatex:1,peanoclaw:58,pedant:29,pem:10,pend:3,peopl:[4,10,58,67,92],pep8:69,pep:84,per:[10,44,49,84,105],perez:[36,66],perfect:12,perfectli:12,perfom:96,perform:[5,19,22,34,39,49,51,53,54,63,69,82,86,91,96,107,113],perhap:[5,32,54,64,84,88,91,94],period:[5,12,24,47,60,82,84,95,104,106,108],perman:44,permiss:[40,58],permit:[40,58],permut:17,person:65,perturb:[93,107,115],petclaw:[21,58,69,80,81,82,84,85,91],peter:4,petsc4pi:[69,80,87,88],petsc:[19,20,21,51,58,60,76,87,88,89,91],petsc_arch:80,petsc_dir:80,petsc_hello_world:80,phase:[80,84],philim:61,phoni:54,php:[40,58,94],phrase:[84,92],phy:13,physic:[12,32,61,75,77,90,95,121],pick:[60,64,86],pictur:84,piec:[12,34,72,75],piecewis:[100,115],pink:[54,103],pinkfig:54,pip:[23,39,62,77,80,87,89],pkg:108,place:[12,17,26,46,69,80,82,87,98,118],placehold:65,plai:47,plain:35,plan:[23,34,39,42,69,86],planar:48,plane:[48,94,117],platform:[10,47,63,65,80,92,96],pleas:[4,15,39,47,58,60,63,68,69,71,77,78,80,82,85,86,87,89],plot:[0,1,2,4,6,7,9,14,22,26,28,29,39,47,50,59,60,63,75,76,77,84,85,87,89,90,92,94,113,114],plot_gauge_loc:32,plot_topo_fil:55,plot_typ:[0,19,32,54,56,103],plot_var2:3,plot_var:[3,22,32,54,55],plotax:[3,32,54,103],plotclaw1:44,plotclaw2:44,plotclaw3:44,plotclaw:[21,32,54,56,103],plotdata:[22,32,45,54,56,63,103],plotdir:[1,56,103],plotexampl:54,plotfigur:[32,54,103],plotfram:1,plotgaug:32,plotitem:[3,22,32,54,103],plotloop:[54,56],plotstyl:[3,32,54,103],plotter:[1,3,22,32,56],plotting_makeplot:26,plottyp:44,plu:[54,98,106,108],png:[1,10,26,28,44],point:[3,5,10,11,12,13,17,24,26,27,29,32,33,34,38,39,44,45,48,60,64,67,79,80,85,91,94,95,99,101,102,104,105,106,107,111,112,115,116,118],pointer:[4,12,48,53,56,68,86,91,94],pointwis:88,poisson:48,polici:84,polygon:3,poor:69,popup:10,port:[10,76,77,82,105],portion:[5,61],posit:[48,51,91,94,115],possibl:[5,10,19,24,27,32,34,36,40,48,54,58,60,64,66,69,75,80,81,86,91,94,95,101,104,105,115,118],post:[21,36,65,66,69,80,109],poster:64,posteriori:86,postprocess:[50,79],potenti:[23,44,84,101],power:[53,92],pprint:[105,106],practic:[65,69,94],pre:[3,10,64,92],preced:[23,54],preceed:[50,118],precis:[29,61,75,100],predefin:54,predict:94,prefer:[39,64,80,82,92],prefix:[63,78,85],preliminari:[64,94,117],prepar:[69,84],prepend:[23,63],prerequisit:21,prescrib:84,present:[5,85,86,91,118,121],preserv:[32,51,86,99],press:[13,80,87],pressur:[32,44,56,79,90],presum:101,pretti:[10,65],prevent:65,previou:[1,21,23,32,39,44,56,60,64,86,98,104,106,108],previous:[5,19,56,84],price:10,primari:[19,33,69],prime:69,principl:118,print:[1,3,21,44,54,75,80,81,84,88,90,94,98,104,106,108,116],print_figno:1,print_fnam:94,print_format:1,print_frameno:1,print_git_statu:37,printenv:116,printfig:1,printfram:[1,21],prior:[40,58,106,108,118],pro:[36,66],probabl:[10,23,42,68,94],probdata:[106,108],problem:[4,6,12,13,14,17,21,22,23,26,30,33,36,44,48,51,54,59,60,64,69,71,76,77,80,83,84,86,89,94,96,98,100,104,106,107,108,115],problem_data:[60,83,85,88,90],proce:[5,23],procedur:[5,12,84,118],proceed:38,process:[21,26,60,69,71,75,80,87,88,91,94],processor:88,procur:[40,58],produc:[1,3,19,21,22,26,28,32,39,44,47,49,52,53,96,103,107],product:[40,58,91],profession:84,professorship:4,profit:[40,58],program:[4,33,34,51,84,92],programm:84,programmat:58,progress:[64,68,69,86,115],prohibit:19,proj:106,project:[34,36,58,62,64,66,68,84,105,115],promot:[40,58,84],prompt:[44,54,56,71,90,92,94],propag:[4,5,13,34,77,84,86,94,100],proper:[5,11,42,44,78,91,98,102,105,106,111,112,118],properli:[17,24,26,28,34,39,46,63,84,92,96,98,104,107,116,118],properti:[44,60,63,75,85,88],propos:[23,65,84,121],protocol:64,provid:[0,2,4,6,12,17,21,22,33,34,40,48,50,53,58,61,63,65,69,70,79,80,82,84,85,86,90,91,92,94,96,100,104,112,115,118],pseudo:44,psi:[82,118,121],psystem:71,pth:23,pts:[105,106],publicli:109,publish:[13,77],pull:[36,38,47,64,65,66,67,68,69,82,96],pure:[21,39,56,69,77,80,86,92],purpos:[24,33,34,40,44,50,58,64,75,92,94,96],push:[23,36,38,64,66,68],put:[1,8,12,23,39,44,46,60,71,82,84],pwd:94,pyclaw:[1,3,4,9,13,15,20,22,23,26,31,32,47,48,50,51,56,64,67,69,72,73,76,79,80,82,89,92,114],pyflak:72,pylab:[0,54],pylint:72,python:[3,4,6,7,8,10,13,14,16,19,20,22,23,26,28,32,33,37,39,48,50,51,53,54,55,58,59,61,69,71,74,77,80,81,82,83,84,86,89,90,91,94,96,114,116,119],python_io:50,pythonpath:[23,39],pyweno:[21,58,86],q0000:[44,104],q0001:[44,45],q000n:[1,7],q0_vs_radiu:3,q1d:118,q_i:[100,121],q_l:83,q_r:[83,100],q_t:[82,86,90,118,121],q_x:[90,121],qbc:[82,88],qcor:61,qinit:[17,19,21,61,84,101,118],qinitdata:107,qinitfil:107,qquad:121,qtrue:54,quantiti:[11,24,44,63,76,77,83,88,102,107],queri:[61,75,91],question:[23,85],quezada:[13,58,77],quick:[10,21,33,39,47,72,84,92,96,113],quicker:[10,64],quickest:68,quickli:[62,84,113],quit:[44,54,56,64,94],quot:84,radial:[3,118],radiu:[3,107],rais:[39,84,85,87,91],rake:[48,94],randal:[4,40,77],randi:70,rang:[3,10,32,98],rare:[48,84],raster:94,rate:10,rather:[5,17,19,23,42,46,67,68,80,82,84,86,93,94,100,103,104,105,118,121],ratio:[5,11,19,35,44,48,70,86,94,102,104,105,106],raw:[21,104],reach:[67,94],reachabl:85,reaction:82,read:[1,4,11,23,26,34,35,36,44,50,53,61,63,64,66,67,68,84,85,91,93,102,106,107,108,111,112,115,118,119],read_:[78,85],read_aux:85,read_data_lin:91,readabl:[64,84],reader:119,readi:[36,60,61,63,64,66,87],readm:[21,39,64,94,118],real:[34,42,64,84,91,94,117],realiti:34,realli:[5,69,84,118],reason:[34,48,49,51,64,80,82,84,94,95,104],rebas:[23,67],recal:[1,9,94],receiv:69,recent:[10,19,21,22,37,38,39,41,42,49,54,56,65,69,115],recogn:[33,115],recommend:[4,24,26,49,53,80,81,84,86,87,89,90,104,106,107,108,119],recompil:[23,28,29,41,49,91,118],recomput:[56,60],reconstruct:[21,77,86],record:[24,32,88,94,117],recov:23,recoveri:64,recreat:[23,28,41],rectangl:[5,95],rectangular:[5,6,12,13,24,33,48,75,94,95,105,107,115],recurs:[46,98],red:[2,3,30,32,54,69,96,103],redhat:92,redirect:39,redistribut:[40,58],redraw:[44,56],reduc:[5,12,64,84,121],ref:[64,84],refactor:[64,84,98],refer:[17,21,26,31,33,44,60,64,68,70,71,75,83,84,86,88,94,99,115,117,118],referenc:101,refin:[3,4,6,7,13,19,34,44,50,51,60,73,94,103,104,105,106,114,115,118],refinement_data:107,refinement_ratios_i:[7,105,106],refinement_ratios_t:[105,106,107],refinement_ratios_x:[105,106],reflect:[4,12,23,104,106,108],reflog:64,refresh:[10,32,68],regard:4,regardless:[10,95,104,107],regener:41,region:[3,5,10,12,19,21,24,34,35,42,51,94,101,105,106,115],regiondata:[27,95,106],regist:39,regress:[19,21,23,37,72,80,113],regrid:[27,95,98,105,106],regrid_buffer_width:[95,105,106],regrid_interv:[95,105,106],regular:24,reiter:84,reject:[86,104],rejoin:67,rel:[10,17,28,33,34,48,49,54,64,65,69,91,101,105,107,109,115,117],relat:[3,19,51,64,67,83,101],releas:[19,21,39,48,57,87,94],relev:[19,22,29,33],reli:[51,61,81],relief:[94,101,117],reltol:91,remain:[64,82,91,98,111,112],rememb:[11,22,23,49,54,64,67,80,102,111,112],remind:[64,67],remot:[10,36,64,65,66,67,68],remov:[1,3,17,28,41,45,56,64,80,98,116],renam:[17,19,26,68,82,86],render:[19,119],reorder:[17,19],reorgan:[19,61,97],repeat:[56,68,99],repeatedli:[3,80,87],replac:[5,10,32,34,53,61,65,69,71,80,81,82,83,84,88,91,98],replai:64,replot:56,repo:[64,67,68],report:[24,37,39,84,96,104,106,113],repositori:[14,19,21,23,24,33,37,38,41,47,67,69,72,74,86,96,110,113],repres:[27,60,64,75,82,83,86,88,95,121],represent:[64,67,75,85,91],reprint:58,reproduc:[13,40,58],request:[38,47,50,60,64,65,67,68,69,75,82,85,94,96],requir:[3,4,12,17,19,21,22,26,28,34,39,44,48,51,53,56,60,61,68,69,75,78,81,82,86,87,88,90,91,94,95,98,103,104,105,106,107,108,115,116,119,121],rerun:[29,32],research:[4,13,33,34,58,86,94],reserv:[40,58],reset:[29,64,91],reset_count:91,resetplot:[54,56],resid:[39,41,75],resolut:[4,5,13,32,75,86,90,91,94,98,100,101,107,115,117,118],resolv:[4,24,64,94],resourc:[13,23,33,65,72,77,114],resp:17,respect:[77,78,83],respons:[10,34,60,85],rest:[19,56,64,67,84,101,111,112,115],restart:[10,21,32,56,77,104,106,108],restart_fil:[99,104,106,108],restor:5,restrict:[84,107,115],restructur:[8,38],result:[1,3,4,6,9,13,21,24,25,26,32,34,39,41,42,44,47,48,53,54,55,56,59,63,71,77,83,84,87,91,94,95,96,98,104,105,106,107,108,113,117],retain:[40,58],retak:[104,106,108],retreiv:94,retriev:[10,56,61,86,94,117],reus:84,reutil:61,reveal:[32,90],review:[13,70,72],revis:[5,64],reword:64,rgb:54,rho:[44,90,106],rhou:44,rhov:44,richardson:[19,27,105,106],rid:23,riemann:[4,7,17,19,20,21,23,33,39,47,51,58,60,76,84,86,87,88,90,104,106,108,111,112,121],riemann_solv:86,right:[40,42,47,48,58,64,65,67,75,80,82,83,84,88,90,100,121],rigoutsi:5,rigoutso:13,rise:101,rjl:[5,13,92],rjlevequ:[4,23],rjlkei:10,robust:33,rock:48,roe:[70,84],root:[78,85],rossbi:71,rossmanith:13,rotat:35,rough:42,roughli:[24,94],roundoff:75,routin:[4,5,12,17,21,22,26,27,32,33,41,44,45,48,49,50,51,53,56,58,61,63,78,81,82,84,86,88,89,92,95,98,100,104,106,108,116,118,119,121],row:[70,95,115],rp1:[100,121],rp_:83,rp_sourc:82,rprint:[105,106],rsphere:61,rst:[21,38,74],rsync_clawpack:38,rule:[10,36,61,66,84],run1:41,run:[1,5,6,9,10,12,14,17,19,21,23,27,28,32,37,41,42,44,45,47,50,51,53,54,56,59,61,63,65,72,74,75,76,77,79,82,87,89,90,91,94,95,96,98,99,100,106,107,108,113,118],run_app_from_main:91,run_data:63,run_seri:91,runclaw:[37,100],rundata:[19,27,32,95,98,99,104,105,106,107,108],rundir:63,rung:[77,86],runmak:63,runnabl:91,runtest:80,runtim:[47,91],runup:42,safe:[49,68],safer:41,safeti:70,sage:[21,84],sagemath:[39,62],sagemathcloud:62,sai:[10,12,23,64,67,89,95,99],same:[3,5,10,12,19,23,24,32,33,34,36,42,45,51,53,54,55,56,60,64,66,70,75,77,79,82,83,84,86,91,92,94,98,99,100,104,105,106,107,111,115,118],sampl:[13,21,29,33,96,99,104,105,118],satisfact:68,satisfi:[69,86,95,121],save:[10,21,37,39,50,63,64,65,86,94,99],savecod:63,scalabl:[13,77,84],scalar:[22,79,88,104,121],scale:[4,35,44,51,77,94,98,107],scari:67,scatter:[3,19,44],scenario:[34,101],scheme:[70,83],schlieren:[3,44],sci:13,scienc:[13,58],scientif:[4,13,77,80,92],scipi:[10,61,92],scm:65,scp:10,scratch:90,screen:[10,23,63,80,84,106,108],screenshot:10,script:[8,16,17,28,32,41,44,51,53,58,61,71,76,77,80,84,86,91,92,94,96,103,107,108],scroll:[10,94],sea:[33,34,48,93,94,101,107,115,117],sea_level:[24,34,107,115],seab:42,seafloor:[34,48,117],sealevel:[21,33,107],search:[1,10,21,77,84,91],second:[3,12,27,39,44,60,67,86,94,95,98,99,104,118,121],section:[5,10,12,26,29,33,34,44,53,56,64,65,67,84,94,99,104,107],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,38,39,40,41,42,44,45,46,48,49,50,52,53,54,55,56,57,58,61,63,64,65,68,69,71,75,77,78,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,115,116,117,118,119,120,121],seek_gzip_factori:64,seem:[88,103,115],seen:[9,19,24,26,34,49,82,104,109],segment:94,select:[10,12,23,24,64,86,94,98,104,107,117],self:[84,86],semi:86,send:[10,47,68,82],sens:[22,121],sensibl:[64,67],sensit:[34,42],sent:88,separ:[1,64,68,77,84,86],seper:91,sequenc:[17,19,69,80,84,87,90,91,94,98,100,118],seri:[36,66],serial:[80,85,91],server:10,servic:[21,39,40,58,64],session:[1,26,77,81,87],set:[0,1,2,3,5,7,10,11,12,14,19,21,22,24,26,27,28,29,32,34,35,37,41,46,47,48,49,50,51,52,53,60,61,63,64,65,67,69,71,75,76,77,79,80,84,85,86,87,88,89,90,91,93,95,96,98,99,100,102,103,104,105,106,107,108,109,115,116,117,118,121],set_all_st:85,set_aspect:35,set_aux_from_auxbc:88,set_count:91,set_cparam:[60,88],set_num_ghost:88,set_printopt:75,set_q_from_qbc:88,setaux:[17,19,21,61,84,98,100,104,106,108],setaux_default:38,setdtopo:94,setenv:80,setgaug:[32,94],setplot1:44,setplot2:44,setplot3:44,setplot:[0,1,2,3,6,14,16,17,19,21,32,45,52,81,82,91,116,119],setprob:[106,108,118],setregion:94,setrun:[5,6,12,14,16,17,21,24,26,27,28,33,34,41,42,50,51,54,93,95,98,99,100,101,115,116,118],setrun_setgeo:107,settopo:94,setup:[23,39,60,61,71,77,80,82,84,86,87,88],setup_gauge_fil:75,sever:[0,1,2,12,17,19,20,26,28,30,32,33,34,39,44,53,68,69,84,87,94,95,97,98,103,107,113,115,118],sftp:10,shall:[40,58],shallow:[11,12,24,33,34,47,51,61,71,77,84,93,94,100,102,107,111,112,115,118],shallow_spher:[61,69],shallowest:48,shape:[61,75,80,88],shapshot:10,share:[21,49,51,75,80],sharpclaw:[20,51,58,71,73,76,77,82,98,114],sharpclawnd:86,sharpclawsolv:86,sharpclawsolver1d:86,sharpclawsolver2d:86,sharpen:70,sheet:[36,66],shell:[39,49,54,56,62,80,87,90,92],shg:44,shift:34,shock:[5,13,34,71,86,95],shock_bubble_interact:[26,71,77,87],shockbubbl:82,shoot:21,shore:[33,94,107],shorten:65,shorter:[3,95],shortli:96,shot:10,should:[0,1,2,3,4,5,9,10,12,16,17,19,21,22,23,24,26,27,28,29,32,33,34,38,39,42,44,45,46,47,48,49,53,54,56,61,62,64,65,67,68,69,74,78,80,82,84,85,86,87,88,89,90,91,93,94,95,98,99,100,101,103,104,105,106,107,108,115,116,118,120,121],shouldn:71,show:[0,2,3,26,32,38,41,44,56,64,67,68,69,75,90,94,96,116,118],showcolor:54,showgridlin:44,showitem:1,shown:[3,10,42,44,51,118],showpatchbord:44,shu:86,siam:[13,77],side:[5,12,42,48,84,96,100,121],sigma:60,sign:[10,54],signal:[64,68],signatur:[3,61,70,78,83,84,86],signific:[15,42,101],signitur:85,silo:119,similar:[10,12,32,39,60,61,68,69,82,84,86,90,94,115],similarli:[28,71,80,82],simpl:[26,61,68,69,77,82,86,91,94],simplest:[46,65,68,90],simpli:[10,23,26,32,41,60,63,69,71,79,80,84,87,94,109,115,118,119],simplifi:[53,54,69,94,99,118],simul:[26,33,34,44,63,75,77,80,82,87,90,94,107],sin:54,sinc:[0,3,4,5,12,17,19,24,29,34,38,41,48,49,50,53,54,60,61,64,68,69,92,94,95,96,98,100,101,104,105,107,115,116,117],singl:[0,1,2,3,5,12,16,19,20,22,23,24,32,33,41,44,49,50,60,69,75,79,84,85,91,94,104,105,106,107,115,117,118],sisc:[13,77],sit:10,site:[23,39,47],situat:[44,64],size:[17,21,49,50,75,80,86,94,106,108,115],sketchi:65,skinni:0,slice:[3,44],slide:92,slightli:12,slip:[21,33,94,115,117],slip_angl:94,slope:86,slow:[10,79,89],slowli:115,small:[12,42,69,94,95,96,98,99,104,106,107,115,117],smaller:[10,42,51,75,98,104,106,107,108],smallest:95,smooth:[86,95,118],snapshot:23,snippet:[36,66],softwar:[5,10,21,34,39,40,45,58,69,77,84,92,109,115],sol:60,solid:[3,12,48,82,103,104,106,108],solitari:[13,47],sollut:48,solut:[1,3,4,12,19,21,22,32,39,44,47,48,50,56,61,63,69,75,77,78,79,82,84,86,88,89,90,94,95,99,100,103,104,105,106,108,113,118,121],solv:[4,7,12,17,26,34,59,61,63,73,75,77,82,83,84,87,94,100,104,115,118,121],solver:[4,5,17,19,20,21,23,33,39,58,59,63,73,76,79,84,88,104,106,108,111,112,121],solver_typ:[71,86],some:[3,4,5,6,9,12,13,14,16,17,18,19,20,21,22,23,24,26,29,32,33,34,35,36,38,39,47,48,49,50,53,55,56,58,61,62,65,66,67,68,69,70,72,79,81,82,85,87,88,89,90,92,94,95,98,100,101,103,104,105,106,107,108,109,113,115,118],someon:[23,64,67],someth:[10,21,22,41,46,64,65,68,69,84,85,86,94,115,116,118],sometim:[41,54,60,64,79,101,117],somewhat:[49,53,95,96,104],somewher:[45,68,94],sonel:117,sophist:[64,84],sorin:4,sort:[10,103],sound:[60,64,90],sourc:[20,21,33,38,40,42,47,53,58,61,68,69,71,76,84,86,87,89,90,91,92,101,104,106,107,108,110,111,112,115],source_list:91,source_split:[86,104,106,108,118],sourceforg:39,southernmost:94,space:[5,6,12,27,32,48,75,82,84,94,95,99,104,105,106,107,108,115,118],spacial:107,spatial:[5,13,21,27,42,82,94,95,98,100,106,108,121],spawn:69,special:[4,12,21,33,40,51,58,84,92,95],specif:[3,19,21,23,32,40,42,48,58,59,61,63,68,78,85,91,94,103,104,105,106,107,108],specifi:[0,1,2,3,4,5,6,11,12,14,17,19,21,22,24,25,27,28,29,32,33,34,37,41,42,44,48,49,50,51,52,53,55,60,63,69,75,82,84,85,86,89,91,93,98,99,100,101,102,106,108,109,111,112,115,116,117,119,121],speed:[60,70,83,84,90,100,104,107,118,121],spell:54,sphere:[21,61,107],spheric:13,sphinx:[8,20,21,74],split:[5,49,86,104,106,108,118,121],spot:54,sprint:[105,106],spuriou:[12,69],sqrt:[3,42,60,82,90,106],squash:64,src1:[112,118,121],src1d:[21,112],src2:[61,112,118],src3:[112,118],src:[5,8,11,12,16,17,21,24,28,29,37,41,44,48,49,55,69,81,82,91,93,94,95,96,100,102,104,106,108,111,116,121],src_split:[104,106,108],srcn:[104,118],ssh:[10,64,68],ssp104:86,ssp33:86,ssplmm32:86,ssplmm43:86,ssplmm:86,ssprk22:86,stabil:[86,104],stack:49,stage:[64,86,101,115],stand:[4,84],standard:[5,12,44,50,61,70,84,86,92,96,100,106,107,108,109,115,118,121],start:[1,2,4,5,6,10,22,24,26,28,33,39,41,46,48,54,56,60,64,68,69,80,85,86,92,99,107,114,115,118],start_fram:85,start_max:24,stat:65,state:[10,23,48,54,60,61,63,64,69,77,79,80,82,83,84,85,86,89,90,100,104,115,121],statement:[26,44,50,84,92,106],station:[101,117],stationari:115,statu:[10,36,37,63,64,65,66,68,90],steadi:[48,115],steep:121,stegoton:[47,71],stencil:88,stencil_width:88,step1:84,step2:61,step2qcor:61,step:[5,12,16,21,23,24,26,32,38,39,44,53,56,58,59,60,61,63,68,79,82,86,88,90,94,95,98,99,100,104,105,106,107,108,115,121],step_hyperbol:86,step_index:86,step_interv:106,step_sourc:[82,86],steps_max:[104,106,108],sternli:64,stiff:104,still:[1,6,7,10,12,19,24,32,33,39,44,48,50,53,58,64,84,95,96,99,107],stop:[21,49,54,64,98,106,108],store:[0,1,10,23,28,44,50,82,88,89,90,96,98,103,105,107,113,115],str:[0,1,3,104,105],straightforward:64,strang:[64,86,104,106,108,118],strategi:5,stream:54,stress:[60,79,84],strict:[40,58],stride:19,strike:[48,94],strike_direct:94,string:[0,1,3,6,54,61,63,70,75,78,84,85,91,92,104,107],strong:86,strongli:44,structur:[6,19,51,85,86,94,103],structured_array_extens:64,stuck:64,student:4,studi:[34,42,94],stuff:[64,67],style:[5,19,35,50,54,58,63,69],sub:69,subclass:84,subdirectori:[17,19,20,26,39,41,46,56,71,96,103,107,109,113],subduct:[34,48],subfault:[48,94,117],subject:[95,105,107],submit:[47,94],subpackag:84,subplot:[0,56],subrepositori:23,subroutin:[4,5,12,19,24,27,84,95,100,104,105,118,121],subsequ:[3,44],substanti:[58,64,69,72],substitut:[40,58],subsurfac:[94,115],subvers:66,subversion_:36,succeed:86,succesfulli:61,success:[44,85,118],successfulli:[39,41,64,85],succinctli:64,sudo:65,suffici:[10,12,17,49,84,94,98,107],suggest:[4,56,68,84,107],suit:69,suitabl:[7,12,17,33,34,85,94,100,101],sum:[79,88],sum_:121,sum_p:121,summar:[3,27,65,84,95,97,118],summari:[65,72,84,104,105,106,107],summit:65,superbe:[70,104,106,108],superbee_limit:70,superclass:86,supercomput:[77,80],superpack:92,superposit:48,superpow:70,superpower_limit:70,supplement:109,supplementari:69,suppli:[27,95,118,121],support:[4,10,19,21,34,39,58,60,61,69,78,79,81,94,104,115,119],suppos:[12,27,44,54,64,94,95],suppress:[0,2,3,69,104,105],sure:[1,17,23,28,38,44,51,60,64,65,69,80,82,85,89,91,101,116,117],surfac:[19,21,24,33,34,48,55,61,77,90,93,94,107,115],surface_or_depth:55,surround:95,surviv:58,svn:[36,66],swaphead:94,sweep:7,symbol:[3,39,44],symlink:39,symmetr:[3,118],symmetri:12,syntax:[8,84],sys:[63,106,108],system:[4,12,13,20,39,49,50,58,69,77,80,82,83,87,90,92,100,104,106,108,118,121],systemat:19,t0000:44,t0001:[44,45],t0002:44,t_end:86,t_n:100,tab:[10,84],tabl:[42,53,65],tackl:69,tag:[105,106],tailor:64,take:[5,19,22,23,38,42,44,47,54,60,64,68,69,82,86,90,91,94,95,104,105,106,118,121],take_one_step:86,taken:[5,24,48,86,94,95,104,118],tall:0,tan:54,tangl:64,tank:[12,34],tar:[10,20,39,94],tarfil:39,target:[54,61,82],task:[53,64],tchknnnnn:99,tcp:10,tcsh:80,teach:[33,34,94],team:[4,84],tear:64,technic:[36,66,84],techniqu:13,technolog:58,tell:[45,50,54,60,65,68,94],templat:61,temporari:88,temporarili:44,ten:[4,51],tend:86,tend_max:24,terhorst:65,term:[4,21,33,34,40,61,76,84,86,95,104,106,107,108,111,112],termin:[39,62,104,105],terrain:42,terrel:4,test:[19,21,26,29,37,42,53,58,59,61,64,65,68,72,76,91,94,95,108],test_acoust:69,test_app:[69,91],test_bugfix:65,test_my_bug:68,test_shallow_spher:69,tex:1,text:[8,38,50,63,64,65,67,84,86,92],tfinal:[60,63,90,94,99,104,106,108],tfluct:[84,86],tfluct_solv:86,tgz:94,than:[3,5,10,12,17,19,21,23,24,32,41,42,46,50,53,56,60,61,63,67,68,69,75,79,80,82,83,84,86,91,92,94,95,98,99,100,101,103,104,105,107,115,118,121],thank:[4,65,68,77],thei:[3,5,10,12,22,27,34,44,50,53,64,69,75,82,84,86,91,95,96,99,103,107,115,118],them:[10,19,23,27,38,44,45,47,51,58,60,64,68,69,71,78,79,80,82,91,94,95,110,118],theori:[40,58,84,121],therefor:[61,80],thereof:10,thesi:86,theta:70,theta_limit:70,thi:[0,1,2,3,5,7,8,9,10,12,13,16,17,19,21,22,23,24,25,26,27,28,29,32,33,34,37,39,40,41,42,44,45,48,49,50,53,54,56,58,60,61,63,64,65,67,68,69,70,71,75,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,110,115,116,117,118,119,120,121],thing:[0,10,12,19,23,34,36,56,66,68,69,71,72,92],think:[42,64,68,84],third:[12,70],thn:104,thoroughli:[78,84],those:[4,5,9,19,34,36,39,51,60,61,63,64,66,67,68,79,82,88,94,96,98,99,109,113,118],though:[3,51,84,115],thought:[64,101],thousand:[4,51],thread:[29,49],three:[3,10,13,19,34,44,64,69,73,80,85,91,94,104,107,115,118],threshold:42,through:[4,10,21,23,26,27,32,34,44,51,53,61,68,82,88,90,91,94,95],thu:[5,82,84],thumb:[36,66],ticklabel_format:35,tidal:[79,101],tide:[21,32,94,101],tier:10,tild:121,time:[0,1,5,6,12,14,17,19,21,22,24,25,26,27,28,32,33,34,39,44,45,49,50,51,54,58,60,63,64,68,70,77,79,84,86,88,90,94,95,96,98,99,100,103,106,108,115,116,117,121],time_files_scanf:119,time_integr:86,timestep:[63,79,104,106,108],tip:[21,23,33,36,66,72,76,82,92],tipe:90,titl:[0,1,4,13,21,32,64,77],title_with_t:[0,54],tmp8prh_j6r:36,tmp:64,tmpl2npyxs5:[],toctre:[31,71,77],todo:[12,94,95,99,100,121],togeth:[12,23,48,94,95],toggl:106,tohoku:94,toler:[69,91,95,105,106,107],too:[5,94,106,108],tool:[6,7,13,19,20,23,26,33,34,36,39,44,48,52,53,54,55,66,77,84,94,109,114,119],toolkit:[80,119],top:[0,1,3,8,20,39,46,47,48,54,64,67,69,82,83,84,96,99],topic:44,topo:[21,34,55,98,101,107,115],topo_data:107,topo_upd:98,topofil:[94,107],topographi:[12,13,21,24,34,42,48,55,98,101,111,112],topograpi:115,topoplotdata:94,topotool:[94,115],topotyp:[94,107,115],topotypein:115,topotypeout:115,torrilhon:70,tort:[40,58],torvald:[36,66],tos:[36,66],total:[5,24,79,86,104,105,106,108],total_step:[104,106,108],tout:108,toward:4,tprint:[105,106],trace:79,traceback:54,track:[21,23,39,49,60,65,67,69,91,96,98,107],tracker:69,tradeoff:95,tradit:[51,63,78],traffic:[100,118],tran:13,tranpsort:104,transect:[24,107],transfer:21,translat:[48,94,101,117],transliter:84,transmiss:86,transmit:104,transport:[104,106,108],transvers:[7,100,104,118,121],transverse_wav:[104,106,108],trap:29,travel:105,travi:19,tree:[39,68,82],trigger:107,tripl:84,troubl:[21,26],troubleshoot:[21,77],truli:85,truncat:12,trunk:[68,72],tstart:86,tstart_max:24,tsunami:[12,13,21,24,33,42,48,79,98,101,107,115],tt1:94,tupl:[3,54,75,79],turbul:[34,86],turn:[33,34,54,64,96],tutori:[10,21,56,59,63,72,77,87],tvd:[60,86,121],twice:104,two:[0,3,4,6,7,11,19,23,24,27,32,39,44,48,50,54,60,68,69,75,78,82,84,86,89,91,94,95,96,98,99,100,102,106,107,115,118,121],two_d_classic_sourc:61,txt:[37,39,58,94],type:[3,4,6,10,17,26,28,32,41,44,54,55,56,60,61,62,64,68,70,75,80,81,84,86,87,90,91,92,94,105,106,107,115,121],typic:[3,17,44,48,50,51,56,61,69,80,82,86,88,94,95,105,106,117,118,121],typo:64,u_t:90,u_x:90,ubuntu:[10,65,92],ucar:45,ucsb3:94,ucsb:[94,117],ufunc:65,ulimit:49,ultrabe:70,unavail:22,uncertainti:[34,42,94],unchang:[25,44],uncommit:[23,37],uncompress:94,undefin:89,under:[4,6,19,24,33,39,40,53,58,73,75,84,96],underflow:98,underli:3,underlin:69,underscor:84,understand:[21,26,34,36,53,77,84,90,100],understood:34,underwat:[33,94],undivid:95,unidata:45,uniform:[48,51,61,115],uniformli:115,union:115,uniqu:[1,50,67],unit:[33,65,75],univers:[4,13,40,58,85],unix:[28,46,92,94],unknown:88,unkown:88,unless:[5,23,28,29,32,94,101,104],unlik:50,unlimit:49,unmap:75,unmodifi:68,unpack:94,unpredict:44,unrecogn:91,unsplit:[104,106,108],unsuccess:85,unsur:104,untar:[39,94],unterweg:58,until:[10,94],untrack:64,unus:2,unwant:64,upbnd:[105,106],updat:[5,10,19,21,23,24,35,48,56,65,69,72,86,88,89,98,100,105,106,108,110,118],update_saved_valu:86,upon:88,upper:[19,70,75,82,94,104,106,108,115],upper_bound_limit:70,upper_glob:75,uprint:[105,106],upstream:[36,64,65,66,67,68],upward:34,upwind:104,url:[4,13,64,68,77],usabl:84,usag:[0,1,2,3,10,39,48,78,84],usc0001xgp:94,use:[3,4,9,10,17,18,19,21,23,26,28,29,33,34,36,39,40,41,42,44,45,49,50,52,53,54,56,58,60,61,63,64,65,66,68,69,70,71,75,77,78,80,82,84,86,87,88,89,90,91,92,94,100,101,104,105,106,107,108,115,116,117,118,119,121],use_fwav:[100,104,106,108],use_petsc:[71,80],used:[0,1,2,3,4,5,6,7,8,10,12,14,17,19,20,23,24,26,28,29,32,33,34,36,37,40,41,42,44,45,46,47,48,49,50,51,53,54,56,58,60,61,63,65,66,68,70,71,75,77,80,82,83,84,85,86,88,90,91,93,94,95,96,99,100,101,103,104,105,106,107,108,111,115,116,118,119,121],useful:[0,3,16,22,23,24,26,29,32,33,35,37,39,49,50,55,58,61,64,65,69,79,84,92,94,95,96,100,104,105,107,115,121],useoffset:35,user:[0,2,3,4,5,9,10,16,17,19,20,21,22,23,27,29,34,36,42,44,54,61,62,64,65,66,68,69,71,80,84,89,91,92,95,104,106,107,108,110,121],user_bc_low:82,usernam:23,uservari:44,uservariablefil:44,uses:[26,44,51,61,63,65,69,75,80,91,96,100,121],usg:[4,94,117],usgs100227:94,using:[0,1,3,4,5,8,9,10,12,13,16,19,20,21,26,29,32,33,35,39,41,42,45,46,47,48,49,50,51,53,54,55,56,60,61,62,63,64,68,69,70,75,77,80,81,82,84,86,88,89,90,92,94,95,100,104,106,107,112,115,117,119,121],usr:45,usual:[0,2,3,5,32,33,41,45,48,50,64,71,75,80,82,83,86,91,94,95,104,105,106,107,108,116,118],util:[20,23,50,53,56,69,77,103],uwamath:10,valid:[3,34,48,63,85,88,107],valout:[45,50],valout_geo:45,valout_nc:45,valout_nc_geo:45,valu:[3,5,6,12,17,19,21,22,25,26,29,32,35,37,41,42,44,49,50,54,61,69,75,77,79,82,83,84,85,86,88,90,91,94,95,96,98,99,100,101,104,105,106,107,108,113,115,116,118,121],van:[70,86,104,106,108],van_leer_klein_sharpening_limit:70,vanleer:[60,86,104,106,108],vari:[3,11,13,21,33,42,82,85,94,100,101,102,115,121],variabl:[0,3,10,19,21,22,23,26,28,33,37,44,46,49,51,54,60,61,80,84,85,86,88,89,91,94,100,104,105,106,108,116,118],variable_dt_refinement_ratio:[105,107],variant:[17,69,91],varieti:[63,92],variou:[17,19,34,44,54,56,65,75,90,92,94,95,103,107],vastli:101,vct00:94,vector:[19,60,70,79,84,88,100],veloc:[12,24,44,56,82,90,101,104,105,106,108,118],verbos:[63,69,86,94,104,106,108],verbosity_regrid:[105,106],veri:[3,12,19,21,34,47,48,54,58,61,65,68,69,79,80,81,82,86,94,96,104,113],verifi:[69,91,117],verifyerror:91,version:[0,1,4,5,6,8,10,11,12,15,17,19,20,21,23,24,25,29,33,34,42,44,48,49,53,54,56,61,64,69,70,77,80,86,87,89,92,95,96,98,102,104,105,106,107,108,111,112,115,118,121],vertic:[34,101,107,117],via:[10,14,19,20,23,26,29,32,33,34,39,41,44,49,51,54,60,64,75,81,85,87,89,95,96,109,111,112,113,115,118],video:[36,66],view:[3,4,19,21,26,32,33,38,47,50,53,55,56,60,68,80,87,109,110],viewabl:63,viewable_attribut:63,vim:[65,69],violat:86,virtual:[4,10,21,22,39,88,92],vis:63,visclaw:[1,6,10,19,20,23,33,35,39,41,44,51,54,55,56,77,81,87,94,103,109,114],visibl:[10,109],visit:[19,21,53],visual:[20,23,26,32,44,50,51,53,64,77,81,82,114,119],vol:94,volcano:4,volum:[4,13,14,30,44,77,105,115,118],wai:[5,10,12,21,23,26,32,36,40,54,56,58,60,63,64,65,66,67,68,71,75,80,82,84,85,87,90,92,94,98,103,104,110,115,118,121],wait:10,wakari:39,wall:[12,29,82,90,104,106,108],want:[0,3,10,16,17,23,26,28,29,32,37,38,39,41,42,46,49,54,56,60,61,62,63,65,68,69,72,80,94,100,103,106,107,110,115,116],warm:70,warmli:68,warn:[69,78,104,116],warranti:[40,58],washington:[4,40,92],water:[12,13,21,33,34,47,51,61,77,84,94,100,101,107,115,117,118],wave:[4,5,12,13,24,34,47,70,77,82,83,84,86,94,95,101,104,105,106,107,108,118],wave_toler:107,wavelength:34,wdiff:65,web:[20,21,26,38,39,69,92,109],webpag:[14,19,21,26,33,41,92,101],webserv:10,websit:[12,94,109],webster:65,week:65,welcom:58,well:[5,23,33,39,48,49,50,51,53,56,64,65,84,85,86,99,104,105,111,112,115,118,121],wendroff:[86,104,106,108,121],weno:[21,51,73,77,86],weno_ord:86,went:64,were:[4,5,17,39,44,45,61,95,98],west:[94,115],western:94,wet:[24,33],what:[5,10,19,21,23,32,34,37,38,39,41,44,45,50,60,63,64,69,84,85,88,90,92,94,95,101,103,104,106,107,108,109,115,117,118],whatev:[45,60,85],when:[11,12,17,23,24,28,32,35,37,39,42,44,48,49,50,51,53,54,56,60,64,65,68,69,72,80,81,89,94,96,98,100,101,102,103,104,105,106,107,108,109,115,116,117,118,119,121],whenc:79,whenev:[23,118],where:[1,3,5,10,12,19,22,26,27,28,32,33,34,36,39,41,42,44,45,47,50,51,56,63,64,66,68,75,78,80,83,94,95,98,99,101,103,104,106,107,108,115,118,121],wherea:[32,53,80],whereev:94,wherev:[84,116],whether:[3,5,10,12,19,27,40,44,48,58,78,84,85,86,95,104,105,107],which:[0,1,3,4,5,6,8,10,12,17,19,21,23,24,26,27,32,33,34,38,39,41,42,44,48,49,50,54,56,60,61,63,64,65,68,69,70,71,75,78,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,98,99,101,104,105,106,107,115,117,118,121],whith:61,who:[16,19,29,34,39,65,67,68],whole:[69,79,80,84],whose:[3,54,61,82,83,84,104,105],why:[64,68,84],wide:92,wider:54,width:[48,50,75,82,84,88,95,106,108],wiki:87,wikipedia:84,window:[10,39,44,56,65,92],wise:[69,86],wish:[4,10,11,19,23,26,32,34,39,44,52,53,69,77,82,86,87,89,94,99,102,109,111,112],within:[5,12,27,51,54,62,81,84,91,95,100,103,109],without:[12,19,21,23,28,32,34,40,41,44,54,56,58,64,69,70,78,79,91,92,106,108,116,118],won:[10,61,84],word:[64,65,79,84,94],work:[3,7,10,12,16,17,19,21,23,26,27,28,33,34,36,38,39,44,46,49,54,58,59,60,63,64,66,68,69,70,77,78,80,83,86,87,92,94,95,96,100,103,104,105,107,109,115,120],workflow:[68,72,77],workspac:[44,88],world:[34,42,77,80],worri:64,worst:101,worth:88,worthwhil:82,would:[2,3,10,12,22,23,24,41,50,54,58,60,63,64,69,75,79,84,91,94,101,103,104,115,118],wpalg:13,wrap:[58,61,86,91],write:[37,42,50,51,53,60,63,64,65,67,68,72,75,76,79,80,85,106,108],write_:78,write_aux:[78,85],write_aux_alwai:[60,63],write_aux_init:[60,63],write_p:85,written:[5,8,28,40,50,51,54,58,64,78,79,82,92,104,105,106,107,108,118],wrong:[44,64],www:[4,10,13,40,45,58,61,62,80,94],x_i:[100,118,121],xarr:75,xclaw:[26,63],xclawcmd:63,xclawerr:63,xclawout:63,xcode:39,xdir:63,xleft:[105,106],xlf:87,xlim:94,xlimit:[0,32,94],xll:94,xllcenter:94,xllcorner:115,xlow:50,xlower:[0,3,12,19,22,61,94,106,108,115,118],xlowerg:61,xmax:0,xmin:0,xpoint:107,xrang:82,xtick:35,xupper:[0,19,94,106,108],xxdiff:96,xxxx:44,xyz03:94,xzvf:39,year:[4,13,19,77,97],yellow:[54,65],yellow_red_blu:54,yes:44,yet:[1,10,17,34,53,86,104,106,120],yianni:58,yield:3,yleft:[105,106],ylim:94,ylimit:[0,32,94,103],yllcenter:94,yllcorner:115,ylow:50,ylower:[3,19,22,61,94,106,115],ylowerg:61,ymax:0,ymin:0,yml:96,yong:13,you:[0,3,4,10,11,12,14,16,17,19,20,22,23,26,28,29,32,36,37,38,39,41,44,45,46,47,48,49,50,51,52,53,54,56,58,60,61,62,63,65,66,67,68,69,71,72,74,77,78,80,81,82,86,87,88,89,90,92,94,98,99,101,102,103,106,107,108,109,110,111,112,115,116,117,118,120],your:[5,11,12,16,17,21,26,29,32,36,38,45,46,49,53,54,56,58,59,60,61,62,65,66,67,69,71,72,76,77,84,89,90,92,93,94,95,98,102,111,112,115,116,118],yourdomain:[65,68],yourself:[29,32,47,64,68],ypoint:107,yum:65,yupper:[19,94,106],yuri:65,zaytsev:65,zero:[3,12,29,44,60,82,88,90,101],zip:9,zlower:19,zone:[34,105,106],zoom:94,zsh:80,zupper:19,zxvf:94},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Examples from the book FVMHP","Recent changes \u2014 release notes","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Full Table of Contents","current_data","Developers\u2019 Guide","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","FVMHP book","Galleries of all Clawpack applications","Gauges","GeoClaw","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","git resources","Keeping track of git versions","Guide for updating this documentation","Installation instructions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Development workflow","Installing and configuring git","git resources","Maintainer workflow","Contributing to PyClaw code development","General information for developers","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Information for developers","Future work","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","Advanced output options","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Condensed Table of Contents","Topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":84,"catch":69,"class":[60,63],"default":[11,93,102,111,112],"function":[43,56,79,121],"long":67,"new":[33,46,64,69,71,84],"switch":44,"true":54,Adding:[71,82],For:21,Going:76,One:[100,121],The:[43,44,64,90,94],Use:89,Using:[10,45,49,79,82,86,103,118],about:[4,58],access:56,account:68,acoust:[83,90],adapt:[5,12,21,27],add:[54,84],added:84,addit:[105,107],advanc:[36,66,79],advect:83,after:99,afterfram:44,algorithm:[5,13,51,121],all:[3,31,39],altern:39,amazon:10,ami:10,amr:[3,5,19,49,95,105,107],amrclaw:[6,7,21,97,98,105,106,118],anoth:54,applic:[8,9,13,21,31,41,46,80],arrai:[50,89],arriv:107,ascii:[50,78],ask:64,attribut:[0,1,2,3,22,54],author:4,aux:[50,60],auxiliari:82,avail:14,axes:35,b4step:[11,118],background:54,basic:[59,81],bathymetri:[94,117],befor:118,between:54,bibliographi:[13,21],binari:50,book:[14,30],boundari:[5,12,82,118,121],branch:64,bug:69,build:74,built:71,buoi:117,burger:83,capac:121,cautionari:34,cell:[5,27],cfl:70,chang:[15,19,54,64,67,97,98],chardiff:96,check:[67,69,84],checkpoint:99,choos:5,cite:[4,77],clamshel:12,classic:[86,97,98,104,108],clawcode2html:8,clawpack:[9,10,13,15,16,17,18,19,20,31,39,41,51,57,61,86,87,108,120],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,54],clawutil:98,clone:[23,68],cloud:62,code:[8,21,23,33,68,84,96,113,118],color:54,colormap:54,command:[44,56,71],comment:84,commit:[64,67],commun:69,comparison:96,compil:[29,39,41,45,89,110],compon:[20,54],comput:[51,99],condens:114,condit:[5,12,82,90,118,121],configur:[65,68],consid:64,content:[21,54,60,86,92,114],continu:96,contourf:54,contribut:[68,69],contributor:58,control:[60,63,90],convent:84,convers:17,convert:[8,16,17],coordin:35,copi:[46,68],correctli:80,coverag:69,creat:[10,44,46,60,68],creation:60,criteria:95,current_data:[22,56],curv:54,dart:117,data:[50,103,107,115,116,117,118],debug:[54,105],defin:12,delet:64,depend:[69,70,87],depth:35,deriv:[60,79],describ:13,desir:103,detail:[64,65],develop:[21,23,39,64,68,69,72],differ:[51,54],dimens:[75,121],dimension:100,directli:10,directori:[41,46,54],displac:115,docstr:84,doctest:69,document:[8,38,77,84,110],domain:[75,90],done:118,download:115,dtopo:94,each:118,earthquak:[48,94,117],ec2:10,edit:64,elev:35,environ:[29,39],equat:[83,90],error:[69,89],euler:83,exampl:[9,14,21,26,32,33,44,46,47,52,71,80],exe:116,exist:46,explor:64,extrapol:95,faq:54,fault:48,featur:64,few:67,fflag:29,fgmax:24,figur:54,file:[10,24,44,54,56,96,99,107,115,118],find:[10,54],finer:5,fix:[24,25,49,68,107],flag2refin:95,flag:[5,27,41,95,105],flow:[21,60],fly:53,fork:[23,68],format:50,formul:121,fort:[50,54],fortran:[19,21,28,29,84,89,96,113,118],found:44,friction:42,from:[10,14,16,17,19,23,56,61,64,68,71,81,94],full:21,fund:[4,58],further:76,futur:73,fvmhp:[14,30],galleri:[31,44,74],gaug:[32,79,94,117],gener:[19,69,107],geo:107,geoclaw:[11,12,19,21,33,34,35,49,55,93,95,97,98,102,107,111,112],geometri:75,geophys:21,get:[21,44,68,94],gfortran:[29,87],ghost:5,git:[23,36,37,65,66],github:[23,64,68],godunov:121,grid:[5,12,24,25,49,75,107],guid:[23,38,94],guidelin:69,hazard:34,hdf5:78,help:44,high:[21,121],hint:[34,54,92],histori:[64,67],how:[54,56],html:[8,56],imagediff:96,includ:9,independ:70,indic:77,inform:[69,72],initi:[5,82,90,118],input:[19,24,78,104,105],instal:[23,39,45,51,65,80,87,89,92,113,116],instanc:10,instruct:[23,39,84],integr:[67,96],intel:29,interact:[56,71],interfac:51,iplotclaw:56,ipython:[47,71],item:54,keep:37,latest:39,latex:56,latitud:35,launch:10,layout:84,level:23,licens:[4,40,58],limit:70,line:[56,71,96],link:18,list:71,local:[68,74,110],locat:32,log:10,longitud:35,machin:120,main:68,maintain:67,make:[54,64,68,80,109,116],makefil:[28,41,82,99],man:42,manual:[36,66],mapc2p:43,master:64,math:62,matlab:44,matplotlib:87,maxfram:44,maximum:107,merg:64,mesh:[5,21],mess:64,method:[0,1,2,3,21,121],might:64,mirror:64,model:[34,48,94,117],modifi:[23,99],modul:[77,91,92,106,108],monitor:[24,107],more:[28,64],most:23,motion:94,name:84,netcdf:[45,50,78],next:87,nose:87,note:15,notebook:[47,92],numpi:87,object:[75,103],obtain:87,okada:[48,94],onli:39,onlin:[36,66],openmp:49,option:[53,56,79,80,82],order:[21,84,89],other:[20,54,64,94],out:23,outdir:54,output:[24,25,41,44,45,49,50,60,78,79,96,99,104,105,107,116],overview:[21,33,64,65,103],own:[10,68,82],packag:[19,39,78,83],page:[36,66],paper:13,parallel:[51,75,80,81,88],paramet:[19,32,54,56,90,94,104,105,107],pass:80,patch:[68,75],path:44,pcolor:54,peopl:64,petclaw:[75,88],petsc:80,piec:84,pixel:96,plot:[3,10,19,21,24,32,33,35,41,44,45,52,53,54,55,56,71,80,81,96,103,109,116,119],plot_typ:3,plotclaw:44,point:[23,68],port:61,post:53,prerequisit:39,previou:57,print:105,printfram:56,problem:[7,61,82,90,118],process:[24,53],produc:56,propag:121,provid:54,pull:23,push:67,pyclaw:[19,21,39,58,59,60,61,62,63,68,70,71,74,75,77,78,81,84,85,86,87,88,90,91,96,97,98,113],pyflak:69,pylint:69,python:[17,21,56,87,92],q0002:50,qinit:[93,107,115],quantiti:[60,79],quick:[68,94],raw:50,readm:8,rebas:64,recent:[15,23],recov:64,refer:[77,92],refin:[5,12,21,27,95,107],region:[27,95,107],regress:[84,96],releas:[15,97,98],remot:23,repositori:[9,20,64,68],request:23,requir:[92,118],resolut:121,resourc:[21,36,66],restart:[60,99],result:[10,33,45,81,109],review:64,rewrit:64,richardson:95,riemann:[77,82,83,97,98,100,118],routin:[11,19,55,93,102,111,112],rst:8,run:[26,33,39,60,62,69,71,80,81,104,105,116],sage:[62,92],sampl:[106,108],save:109,script:82,seafloor:94,sealevel:101,search:44,seri:67,serial:[69,75,88],servic:10,set:[23,33,39,44,54,56,68,82,94,101],setaux:[102,118],setplot:[44,54,56,103],setrun:[19,32,94,104,105,106,107,108],sever:64,shallow:83,share:[64,109],sharpclaw:[21,86],shoot:44,should:51,simul:60,simultan:69,singl:64,size:54,slip:48,softwar:[4,13],solut:[54,60,85],solv:90,solver:[51,60,77,82,83,86,90,100,118],some:[54,64,84,117],someth:54,sourc:[48,82,94,117,118,121],space:121,spatial:118,special:[3,105],specif:[24,69,90,118],specifi:[54,56,94,95,103,104,105,107,118],sphere:12,sphinx:110,src1d:[111,118],src:[112,118],start:[21,94],state:88,step:[87,118],stop:10,substanti:68,summari:[36,64,66],surfac:35,t0002:50,tabl:[21,77,114],term:[42,82,118,121],test:[23,39,69,80,84,87,96,113],than:54,thi:[4,38],thing:64,tide:117,time:[104,105,107,118],tip:[28,35,80,84],titl:54,tool:[17,21,32,35,96],top:23,topo:94,topographi:[33,94,107,115,117],track:37,transfer:10,travi:96,troubl:[44,116],troubleshoot:[89,116],trunk:[64,67],tsunami:[34,94,117],tutori:[36,66,90,92],tvd:70,understand:60,updat:[38,64],ups:64,use:51,user:[12,51,118],using:[34,44,118],util:91,valu:[24,60],vari:118,variabl:[29,39,41,82],version:[28,37,39,57],view:10,virtual:120,visclaw:[21,53,97,98],visit:119,visual:21,wai:39,wakari:62,want:64,water:[35,83],wave:[100,121],web:10,webpag:[10,38,109],what:[54,56],when:84,which:51,without:39,work:[4,71,73,118],workflow:[23,36,64,66,67],write:[69,82,84],you:[64,84],your:[10,23,39,64,68,80,82,87,109,113]}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","book","changes","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","contents","current_data","developers","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geohints","geoplot","git_resources","git_versions","howto_doc","installing","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/devel/gitwash/development_workflow","pyclaw/devel/gitwash/git_installation","pyclaw/devel/gitwash/git_resources","pyclaw/devel/gitwash/maintainer_workflow","pyclaw/devel/gitwash/patching_forking","pyclaw/develop","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/for_developers","pyclaw/future","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","toc_condensed","topo","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","book.rst","changes.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","contents.rst","current_data.rst","developers.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geohints.rst","geoplot.rst","git_resources.rst","git_versions.rst","howto_doc.rst","installing.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/devel/gitwash/development_workflow.rst","pyclaw/devel/gitwash/git_installation.rst","pyclaw/devel/gitwash/git_resources.rst","pyclaw/devel/gitwash/maintainer_workflow.rst","pyclaw/devel/gitwash/patching_forking.rst","pyclaw/develop.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/for_developers.rst","pyclaw/future.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","toc_condensed.rst","topo.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[86,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[86,1,1,""],kernel_language:[86,1,1,""],mthlim:[86,1,1,""],order:[86,1,1,""],setup:[86,2,1,""],source_split:[86,1,1,""],step:[86,2,1,""],step_hyperbolic:[86,2,1,""],step_source:[86,1,1,""],verbosity:[86,1,1,""]},"clawpack.riemann":{acoustics_1D_py:[83,3,0,"-"],advection_1D_py:[83,3,0,"-"],burgers_1D_py:[83,3,0,"-"],euler_1D_py:[83,3,0,"-"],shallow_1D_py:[83,3,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[83,4,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[83,4,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[83,4,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[83,4,1,""],euler_hll_1D:[83,4,1,""],euler_hllc_1D:[83,4,1,""],euler_roe_1D:[83,4,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[83,4,1,""],shallow_fwave_1d:[83,4,1,""],shallow_hll_1D:[83,4,1,""],shallow_roe_1D:[83,4,1,""]},"petclaw.geometry":{Domain:[75,0,1,""],Patch:[75,0,1,""]},"petclaw.geometry.Domain":{dimensional_split:[75,1,1,""],fwave:[75,1,1,""],kernel_language:[75,1,1,""],mthlim:[75,1,1,""],order:[75,1,1,""],source_split:[75,1,1,""],step_source:[75,1,1,""],transverse_waves:[75,1,1,""],verbosity:[75,1,1,""]},"petclaw.state":{State:[88,0,1,""]},"petclaw.state.State":{F:[88,2,1,""],aux:[88,2,1,""],fset:[88,2,1,""],gauge_data:[88,1,1,""],get_aux_global:[88,2,1,""],get_auxbc_from_aux:[88,2,1,""],get_q_global:[88,2,1,""],get_qbc_from_q:[88,2,1,""],keep_gauges:[88,1,1,""],mF:[88,2,1,""],mp:[88,2,1,""],num_aux:[88,2,1,""],num_eqn:[88,2,1,""],p:[88,2,1,""],problem_data:[88,1,1,""],q:[88,2,1,""],set_num_ghost:[88,2,1,""],t:[88,1,1,""]},"pyclaw.controller":{Controller:[63,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[63,1,1,""],F_path:[63,2,1,""],check_validity:[63,2,1,""],compute_F:[63,1,1,""],compute_p:[63,1,1,""],file_prefix_p:[63,1,1,""],frames:[63,1,1,""],keep_copy:[63,1,1,""],nstepout:[63,1,1,""],num_output_times:[63,1,1,""],out_times:[63,1,1,""],outdir:[63,1,1,""],outdir_p:[63,2,1,""],output_file_prefix:[63,1,1,""],output_format:[63,1,1,""],output_options:[63,1,1,""],output_style:[63,1,1,""],overwrite:[63,1,1,""],plot:[63,2,1,""],plotdata:[63,1,1,""],run:[63,2,1,""],rundir:[63,1,1,""],runmake:[63,1,1,""],savecode:[63,1,1,""],solver:[63,1,1,""],tfinal:[63,1,1,""],verbosity:[63,2,1,""],viewable_attributes:[63,1,1,""],write_aux_always:[63,1,1,""],write_aux_init:[63,1,1,""],xclawcmd:[63,1,1,""],xclawerr:[63,1,1,""],xclawout:[63,1,1,""],xdir:[63,1,1,""]},"pyclaw.geometry":{Dimension:[75,0,1,""],Domain:[75,0,1,""],Grid:[75,0,1,""],Patch:[75,0,1,""]},"pyclaw.geometry.Dimension":{centers:[75,2,1,""],centers_with_ghost:[75,2,1,""],delta:[75,2,1,""],nodes:[75,2,1,""],nodes_with_ghost:[75,2,1,""]},"pyclaw.geometry.Domain":{grid:[75,2,1,""],num_dim:[75,2,1,""],patch:[75,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[75,2,1,""],add_gauges:[75,2,1,""],c_center:[75,2,1,""],c_centers:[75,2,1,""],c_centers_with_ghost:[75,2,1,""],c_nodes:[75,2,1,""],c_nodes_with_ghost:[75,2,1,""],dimensions:[75,2,1,""],gauge_dir_name:[75,1,1,""],gauge_file_names:[75,1,1,""],gauge_files:[75,1,1,""],gauges:[75,1,1,""],get_dim_attribute:[75,2,1,""],num_dim:[75,2,1,""],p_center:[75,2,1,""],p_centers:[75,2,1,""],p_nodes:[75,2,1,""],plot:[75,2,1,""],setup_gauge_files:[75,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[75,2,1,""],delta:[75,2,1,""],dimensions:[75,2,1,""],get_dim_attribute:[75,2,1,""],level:[75,1,1,""],lower_global:[75,2,1,""],name:[75,2,1,""],num_cells_global:[75,2,1,""],num_dim:[75,2,1,""],patch_index:[75,1,1,""],upper_global:[75,2,1,""]},"pyclaw.limiters":{tvd:[70,3,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[70,4,1,""],beta_limiter:[70,4,1,""],cada_torrilhon_limiter:[70,4,1,""],cada_torrilhon_limiter_nonlinear:[70,4,1,""],cfl_superbee:[70,4,1,""],cfl_superbee_theta:[70,4,1,""],hyperbee_limiter:[70,4,1,""],limit:[70,4,1,""],mc_limiter:[70,4,1,""],minmod_limiter:[70,4,1,""],superbee_limiter:[70,4,1,""],superpower_limiter:[70,4,1,""],theta_limiter:[70,4,1,""],upper_bound_limiter:[70,4,1,""],van_leer_klein_sharpening_limiter:[70,4,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[86,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[86,2,1,""],aux_time_dep:[86,1,1,""],call_before_step_each_stage:[86,1,1,""],cfl_desired:[86,1,1,""],cfl_max:[86,1,1,""],char_decomp:[86,1,1,""],check_3rd_ord_cond:[86,2,1,""],dq:[86,2,1,""],dq_src:[86,1,1,""],dqdt:[86,2,1,""],fwave:[86,1,1,""],get_dt_new:[86,2,1,""],kernel_language:[86,1,1,""],lim_type:[86,1,1,""],num_ghost:[86,1,1,""],setup:[86,2,1,""],step:[86,2,1,""],tfluct:[86,1,1,""],tfluct_solver:[86,1,1,""],time_integrator:[86,1,1,""],update_saved_values:[86,2,1,""],weno_order:[86,1,1,""]},"pyclaw.solution":{Solution:[85,0,1,""]},"pyclaw.solution.Solution":{is_valid:[85,2,1,""],patch:[85,2,1,""],plot:[85,2,1,""],read:[85,2,1,""],set_all_states:[85,2,1,""],start_frame:[85,2,1,""],state:[85,2,1,""],write:[85,2,1,""]},"pyclaw.state":{State:[88,0,1,""]},"pyclaw.state.State":{F:[88,1,1,""],gauge_data:[88,1,1,""],get_aux_global:[88,2,1,""],get_auxbc_from_aux:[88,2,1,""],get_q_global:[88,2,1,""],get_qbc_from_q:[88,2,1,""],is_valid:[88,2,1,""],keep_gauges:[88,1,1,""],mF:[88,2,1,""],mp:[88,2,1,""],num_aux:[88,2,1,""],num_eqn:[88,2,1,""],p:[88,1,1,""],problem_data:[88,1,1,""],set_aux_from_auxbc:[88,2,1,""],set_cparam:[88,2,1,""],set_num_ghost:[88,2,1,""],set_q_from_qbc:[88,2,1,""],t:[88,1,1,""]},"pyclaw.util":{FrameCounter:[91,0,1,""],VerifyError:[91,5,1,""],add_parent_doc:[91,4,1,""],check_diff:[91,4,1,""],compile_library:[91,4,1,""],construct_function_handle:[91,4,1,""],convert_fort_double_to_float:[91,4,1,""],gen_variants:[91,4,1,""],read_data_line:[91,4,1,""],run_app_from_main:[91,4,1,""],run_serialized:[91,4,1,""],test_app:[91,4,1,""]},"pyclaw.util.FrameCounter":{get_counter:[91,2,1,""],increment:[91,2,1,""],reset_counter:[91,2,1,""],set_counter:[91,2,1,""]},pyclaw:{util:[91,3,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","attribute","Python attribute"],"2":["py","method","Python method"],"3":["py","module","Python module"],"4":["py","function","Python function"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:attribute","2":"py:method","3":"py:module","4":"py:function","5":"py:exception"},terms:{"00000000e":50,"000000e":106,"00000e":106,"0000ff":3,"001000e":106,"00er2592":4,"01er25474":4,"0311_v3":94,"04d":119,"0d0":91,"0f22701":64,"115e":94,"11ee694744f2552d":64,"1257_data":94,"13d7934":64,"150w":94,"153w":94,"15n":94,"161w":94,"16m":49,"17th":86,"18n":94,"1d_plot":[32,54,56,103],"1drad":118,"1st":[70,86,104,106,108,118],"210e":94,"23n":94,"25000000e":50,"26aa21a":64,"278dd2a":64,"29001ed":64,"2_installing_git":65,"2d_grid":19,"2d_patch":[3,19],"2d_pcolor":32,"2d_schlieren":3,"2dec1ac":64,"2e991e8":65,"2nd":[77,82,86,104,106,108,118],"30w":94,"376adbd":65,"3rd":[82,86],"40000000e":50,"4aff2a8":65,"4th":86,"50n":94,"5d0":118,"5e3":107,"5r01ar53652":4,"65af65":65,"68f6752":65,"6ad92e5":64,"6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676a":36,"6d8e1e":65,"721fc64":64,"7beda5a":65,"88er25053":4,"92er25139":4,"93er25181":4,"956fbab":65,"96er25292":4,"\u010dert\u00edk":4,"boolean":[3,78,83,104,105],"break":[23,34,69,84,107],"case":[5,7,10,12,16,19,29,34,44,54,60,64,67,68,69,72,75,80,82,85,91,95,101,107,115,118,121],"catch":[28,72],"class":[0,1,2,3,21,54,56,61,75,77,82,84,85,86,88,90,91,92,99,103,104,105,106,108],"default":[0,1,2,3,10,19,24,27,29,32,35,37,44,49,54,56,60,63,64,68,71,75,79,80,81,84,85,86,88,89,91,94,95,98,101,105,106,107,115,118],"export":[29,39,44,49,80,84,89,94],"final":[38,44,60,63,64,68,74,90,98,99,104,106,108],"float":[3,24,32,63,75,83,88,91,104,105,107,108],"function":[0,1,2,3,6,11,13,19,20,21,22,23,24,32,37,41,42,45,48,54,55,60,61,63,69,70,71,75,76,81,82,83,84,85,86,88,91,94,95,98,100,102,103,104,105,106,107,108,115,116,118],"import":[0,3,19,23,32,34,39,42,51,54,56,60,61,62,63,69,71,75,77,80,81,82,84,85,86,87,88,90,92,94,101,104,105,106,107,108,115,117,119],"int":[1,2,3,63,70,75,78,79,84,85,88,104,105,107],"long":[34,46,69,84,94],"new":[1,2,4,5,10,17,19,21,23,28,29,32,38,39,41,42,44,48,49,54,56,59,60,61,62,63,67,68,72,78,80,82,88,94,95,96,98,99,104,105,107,115,118],"ond\u0159ej":4,"public":[4,10,18,64,84],"return":[0,1,2,3,39,44,54,56,63,68,69,70,75,79,82,83,84,85,86,88,91,100,104,106,108,118,121],"short":[34,68,70,82],"super":[20,23],"switch":[64,68,82,94,101,117],"throw":[23,65],"true":[0,1,2,3,5,11,12,21,22,27,32,37,60,63,65,75,80,85,86,88,94,95,99,100,102,104,105,106,107,108],"try":[1,23,26,32,39,54,62,68,69,71,78,85,87,89,90,91,92,96,104,115,116],"var":[0,3,10,11,22,36,93,102,111,112],"while":[10,12,44,54,56,61,64,68,75,79,80,86,91,100,107,117],AND:[40,58],ARE:[40,58],AWS:[10,39],Added:[65,70,98],Adding:[59,76],And:[5,17,38,84],Are:97,Axes:[65,103],BCs:[106,108],BUT:[40,58],Being:67,But:[10,54,64,89,94],CMS:4,DAs:88,DMS:4,DNS:10,EBS:10,FOR:[40,58],For:[0,1,2,3,5,6,10,11,12,15,16,19,22,23,24,26,27,29,32,34,35,38,39,41,44,45,48,49,53,54,56,60,61,64,65,67,68,71,75,77,78,79,80,82,84,86,87,91,92,93,94,95,97,98,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,117,118,121],GIS:115,Going:[10,21,77],Into:92,NOT:[40,54,58,84],Not:75,One:[20,44,61,84,91,95],Res:13,SUCH:[40,58],Such:[44,84],Sys:13,THAT:64,THE:[40,58],That:[26,62,84,90],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,19,20,21,22,23,24,26,27,28,29,32,33,34,35,36,37,38,39,41,42,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,63,65,66,67,68,69,70,72,73,75,77,79,80,82,83,84,85,86,87,88,89,91,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,115,116,118,119,120,121],Their:58,Then:[10,12,23,38,39,49,56,60,62,63,64,68,74,80,87,88,89,99],There:[3,5,10,19,28,36,39,41,50,56,64,65,66,84,87,94,103,104,118,120],These:[1,4,9,12,14,20,23,24,27,34,44,48,54,56,60,69,71,81,84,88,90,93,95,98,99,100,105,109,115,117,121],USE:[40,58],Use:[36,64,65,77,83,84,86,94,104,106,108],Useful:[1,3,104],Using:[0,1,2,3,6,14,19,21,26,29,52,54,56,75,76,77,104,111,112,116,121],WILL:64,Will:85,With:[5,19,23,32,35,51,92,95,104],__doc__:84,__init__:[82,84],__main__:[106,108],__name__:[106,108],_build:38,_compute_c_cent:75,_compute_c_nod:75,_compute_p_cent:75,_compute_p_nod:75,_output2:[54,56],_output:[10,26,37,44,54,56,71,81,85,99,116],_output_from_previous_run:32,_output_new:96,_output_old:96,_plot:[10,26,32,44,56,103,109],_plotindex:[1,32],_plots_new:96,_plots_old:96,_pyclaw_io:63,a351:[13,77],a377:[13,77],a7ff2e5:65,a815645:64,abbrev:65,abbrevi:84,abdullah:58,abil:64,abl:[10,39,62,65,67],abort:[41,64],about:[3,6,10,12,19,21,26,28,34,39,41,42,44,50,55,60,64,68,69,77,80,84,86,94,100,103,106,107,116,118,121],abov:[3,10,12,17,23,26,27,28,32,34,38,39,40,48,50,54,58,61,64,65,67,81,87,90,91,92,94,95,100,103,104,106,107,108,115,118],abs:[82,91],absolut:[69,79,105,106],abstol:91,academ:[89,92],acc:84,acceler:83,accept:[60,79,86,104],accept_reject_step:86,access:[0,13,22,67,68,71,75,77,88,91],accident:[23,54,68],accompani:18,accomplish:41,accord:5,accordingli:115,account:[10,23,62,64,80],accur:[34,48,77,86,94,104,118,121],accuraci:[32,42,51,106,108],achiev:[17,61,64,111,112],acou:54,acount:94,acoust:[12,26,34,59,60,63,71,77,86,87,100,106,118],acoustics_1d:[60,83,90],acoustics_1d_example1:[26,46],acoustics_1d_heterogen:118,acoustics_1d_homogen:[69,71],acoustics_1d_pi:83,acoustics_2d:86,acoustics_2d_radi:[106,118],acoustics_3d_vari:69,acquaint:90,acquir:54,across:[94,115],act:70,acta:13,actanum2011:13,action:[10,61,68],activ:[24,25,36,66,86,107],actual:[5,22,44,47,48,54,64,65,70,91,94,101,107],adapt:[4,6,13,44,51,60,73,84,100,103,104,114,118],add:[0,8,10,12,13,21,22,23,32,36,38,44,45,60,64,65,66,67,68,69,71,72,75,79,80,82,91,94,108,119],add_dimens:75,add_gaug:[75,79],add_label:32,add_param:[106,108],add_parent_doc:91,add_titl:54,add_true_solut:54,addcolorbar:94,addcontour:94,added:[3,12,17,19,23,25,42,44,54,64,65,68,72,75,79,95,98,104,105,119],addgaug:32,adding:[19,22,23,29,32,48,80,93,94],addit:[10,12,20,21,23,33,48,50,51,54,55,61,68,70,75,77,84,86,87,88,94,95,104,108,115,118,119],addition:[68,80],address:65,adequ:34,adjac:[5,12,33,95,104],adjust:[10,17,47,75,94,101,104,118],admin:64,adopt:[69,84],adq:84,adv:[13,71],advanc:[5,13,49,72,76,77,90,104,118],advantag:[23,53,69],advect:[13,54,77,80,100,108,118],advection_1d:83,advection_1d_pi:83,advection_2d_swirl:118,advis:[39,40,58,64],affect:[19,41,64,104,116],afosr:4,after:[0,1,3,5,10,16,21,22,26,32,34,41,44,45,50,54,61,62,63,64,68,71,84,86,88,94,96,98,104,105,106,108,118],afterax:[0,22,32,54],afterfram:[1,21,22],aftergrid:44,afteritem:[3,22],afterpatch:[3,22],again:[19,23,28,41,54,56,60,61,64,65,83,89,115,116],against:[69,91,113],agenc:4,ago:65,agre:[9,23,100,113,118],agreement:34,ahead:64,ahmadia:[4,13,58,77,84],aht:101,aid:61,aim:69,albada:70,alg:106,alghamdi:[4,13,58,77,84],algorithm:[4,6,21,24,27,60,73,75,77,84,86,90,95,100,104,106,108],alia:[64,65],alias:65,align:[24,107],all:[0,1,4,5,8,9,10,12,17,19,20,21,22,23,26,27,28,29,32,33,34,37,38,40,41,44,46,47,49,50,51,52,53,54,56,58,60,63,64,65,68,69,70,71,74,75,80,82,83,84,85,86,88,91,92,94,95,96,98,99,103,104,106,107,108,109,113,115,117,118],alloc:[17,84,86],allow:[4,5,10,19,22,33,37,42,44,48,49,51,53,54,63,68,69,78,84,88,91,92,94,98,100,104,106,107,108,109,115],almost:[69,92,94],alon:[12,84],along:[5,12,21,22,24,27,32,45,48,94,95,99,107,117],alpha:86,alphabet:[58,84],alreadi:[0,1,5,10,23,29,39,56,64,67,68,80,84,85,87,90,92],also:[3,4,5,6,7,8,12,14,17,19,20,21,23,24,26,27,29,31,32,33,34,39,41,44,45,47,48,49,50,51,53,54,56,60,63,64,65,68,69,75,77,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,104,106,107,108,109,111,112,113,115,116,117,118,121],altern:[21,26,41,44,53,80,92],although:[44,81,82,85],alwai:[12,19,22,23,24,29,44,60,69,84,94,95,98,106,107,108,115,118],am583s2013:92,amal:[4,13,58,77,84],amazon:[21,39],amazonaw:10,amdq:[83,84,100],amend:64,ami:[21,39],amount:34,amr:[4,6,12,17,20,21,22,23,24,25,32,44,50,51,53,58,75,94,103,104,106,108,115,118],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_level:50,amr_level_max:106,amr_levels_max:[27,95,105,106],amr_modul:49,amrclaw:[4,5,9,11,12,16,17,19,20,23,27,29,32,33,39,44,45,47,49,50,51,87,93,95,96,99,102,104,107,111,112,113,114],amrdata:[19,95,105,106,107],amrnez:95,anaconda:[87,92],anal:13,analog:[104,105],andi:4,angl:[12,48],ani:[3,4,5,7,10,12,16,17,19,22,23,24,26,27,33,34,37,38,39,40,41,42,44,46,49,50,51,54,58,64,65,67,68,69,70,71,75,77,80,82,84,85,87,91,94,95,96,99,101,103,104,105,107,118,121],anim:[12,47,109],anisotrop:[5,19],anl:80,annot:22,anoth:[3,19,21,39,50,53,65,69,71,86,89,99,118],anyon:64,anyth:[3,5,23,39,64,68,96],apach:10,apdq:[83,84,100],api:65,app:[9,10,14,20,23,24,47,48,115],appar:49,appear:[0,1,3,7,10,20,32,33,38,41,43,54,67,84,85,88,94,107,109,115],append:[17,27,32,54,63,85,94,95,106],appl:13,appli:[3,4,5,10,12,27,34,42,48,54,56,70,75,86,94,95,99,104,107,118],applic:[4,5,11,12,14,16,17,19,20,23,24,26,29,33,45,48,49,52,56,69,71,75,76,79,84,86,91,93,95,96,98,100,102,104,107,109,111,112,113,114,115,118,119],appreci:58,approach:[10,23,46,53,61,80,82,91,95,100,103,107,118,121],appropri:[5,10,12,23,32,33,34,35,42,44,45,46,49,60,63,70,71,78,80,81,82,83,85,94,100,101,104,118,121],approv:34,approxim:[5,12,34,48,84,94],apt:[10,65,92],arbitrari:[24,68,86,98,107],arc:[94,101],architectur:80,archiv:[9,18,39,96,109,113,117],area:[11,19,86,94,102],aren:[84,94],arg:[75,85],argument:[0,1,2,3,22,37,54,60,61,69,71,75,78,82,84,85,86,88,91,100,103,104,105,118],argv:[106,108],aris:[40,47,58],arithmet:42,aro88:94,aron:[4,13,58,77,84],arora:70,arora_ro:70,around:[5,69,105,106,118],arrai:[0,3,5,11,17,19,21,22,35,54,60,61,63,65,70,75,77,78,82,83,84,85,86,88,90,91,92,98,100,102,104,105,106,107,108,118],arriv:[19,21,24,25,101],arrival_tol:24,articl:[13,77,84,109],artifici:12,asc:94,ascii:[21,44,60,63,84,85,94,99,104,106,108,115,119],ascii_output_format:45,ask:72,aspect:[34,35,44],assert:[65,106,108],assess:[34,101],assign:[60,63,85],assist:19,associ:[0,1,2,5,19,49,69,75,78],assum:[3,17,19,34,38,39,44,48,53,67,81,82,83,90,91,94,95,101,104,107,115,117,121],astronom:101,aterrel:4,atmospher:4,attach:88,attempt:[7,8,17,26,41,85,91,94,96,98,116],attent:64,attirbut:19,attr:[75,85],attribut:[6,19,21,32,55,56,60,63,75,80,82,84,85,86,94,95,98,99,103,104,105,107],attributeerror:54,audienc:84,aug_glob:83,augment:100,austin:4,author:[13,21,33,34,70,77,83,84,94],auto:[0,32,61],autom:[61,84,96],automat:[0,2,3,7,8,12,26,29,41,53,54,56,60,67,69,71,78,80,84,87,88,89,91,94,98,104,105,107,115],aux1d:118,aux:[5,11,17,19,21,22,61,77,79,82,84,85,88,89,98,100,102,104,105,106,108,118],aux_bc_low:82,aux_bc_upp:82,aux_l:83,aux_r:83,aux_time_dep:86,aux_typ:[105,106],auxbc:[82,88],auxiliari:[19,61,63,78,83,86,88,100,104,106,108,118],auxillari:85,auxl:[84,100],auxr:[84,100],auxtyp:106,avail:[0,4,12,19,20,32,33,34,41,44,48,53,55,56,60,63,65,77,78,81,83,84,86,89,90,91,92,94,99,101,104,106,107,109,115],averag:[4,5,11,13,33,34,35,44,83,88,100,102,115,118],avoid:[39,44,64,69,75,84,98,99,104,107,121],awai:[23,101],awar:[34,80],awr11:13,axes1:[2,56],axes:[0,1,2,21,22,32,44,54,56,103],axescmd:[0,56],axesnam:[1,56],axi:[0,35,44,54,65,75,94],axisindex:65,b0002:50,b4step1:[11,118],b4step2:[11,118],b4step3:11,b4step:21,b4stepn:118,b605216:65,back:[10,22,38,64,68,84],background:[2,21,84,103],backup:64,backward:[39,69,92],bad:96,bai:[101,117],balanc:[5,13,51,111,112],bale:13,balelevmitross02:[4,13,104,121],bar:10,barrier:91,base:[5,10,17,18,19,23,27,33,42,44,51,61,63,64,70,75,77,83,84,85,86,88,90,91,92,95,96,97,101,104,105,106,107,108,118,121],bash:[29,39,44,49,80],bash_profil:[39,89],bashrc:[10,29,39,89],basi:44,basic:[4,5,9,21,26,44,60,67,75,77,83,84,86,96,121],bathymetri:[11,21,33,34,83,101,102,107,115],bc1:91,bc2amr:12,bc_lower:[12,60,82,90,104,106,108],bc_upper:[12,60,82,90,104,106,108],bcn:[5,12,108,118],bcnamr:[5,12,104,106,118],beam:70,becaus:[19,22,64,67,80,84,98,100,101,104],becom:[34,84,89,121],been:[0,1,4,10,12,14,17,18,19,21,22,23,25,26,27,30,33,34,41,42,44,48,51,54,56,58,61,63,64,67,69,83,84,85,88,89,90,91,94,95,97,98,99,104,105,107,115,118],befor:[1,3,4,5,21,23,24,26,28,29,38,41,44,49,56,60,63,64,69,80,84,86,88,94,95,98,99,100,101,104,105,107,115,116],before_step:86,beforefram:[1,22],begin:[75,79,83,90],behav:32,behavior:[69,84,94,95],behaviour:60,behind:[36,66],being:[1,3,4,7,10,34,48,56,63,83,85,86,91,95,100,104,115,116,118],believ:34,belong:[54,75,80,84,85,88],below:[3,5,10,11,12,19,24,42,44,47,48,56,58,60,62,83,84,90,92,93,94,95,96,100,102,103,104,105,106,107,108,111,112,115,118],benchmark:34,benefit:[65,69,84],berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,40,58],best:[3,12,19,29,46,49,53,54,68,69,82,94,95,96,100,107,110,115,118],beta:[70,86,108],beta_limit:70,better:[0,5,19,24,32,44,48,49,50,53,64,68,84,94,107,115],between:[3,4,5,10,12,20,21,23,44,48,49,51,63,75,86,88,89,91,95,100,101,104,105,106,107,108,109,115,117,118],beyond:[5,27,84],bibliographi:[4,114],bibtex:4,big:84,big_earthquak:94,biggest:77,bilinear:[5,32,98,115],bin:80,binari:[21,40,45,58,81,99,104,106,119],bind:[53,61,80],bisect:[105,106],bit:[12,19,80,89],bitbucket:80,black:[3,32],blank:[3,84],blast:71,bleed:39,block:[6,48,50,51,60,84,88,91,96,118],blossei:4,blue:[3,8,32,54,65],boe:4,bold:65,bomb:[41,49],book:[4,9,13,21,36,65,66,84,85,92],bool:[0,1,2,3,63,78,83,85,86,88,91,107],border:[44,118],bore:34,botch:64,both:[3,12,23,26,27,34,44,50,61,69,78,80,86,87,94,95,100,104,106,108,111,115,118],bottom:[9,10,11,26,33,34,42,48,60,82,83,94,102,111,112,115],bound:[61,70,80,104],boundari:[17,21,49,61,75,83,84,90,104,106,108],boussinesq:34,box:94,branch:[23,29,36,37,65,66,67,68,72],branchnam:64,brett:65,brief:[4,65,94,107],briefli:[65,121],bring:[10,38,44,64],broken:[16,17,23,45,96],brought:23,brown:58,brows:[8,14,44,109,118],browser:[10,26,38,69,109],bsd:[4,40,58],buffer:[95,105,106],bug:[4,7,19,23,29,42,49,54,58,64,65,68,72],bugfix:64,build:[21,44,61,77,80,91],buildsystem:80,built:[42,51,59,69,77,80,82,85,95,111,112],bulk:[16,60,83,90,100,106,118],buoi:[21,94],burg:71,burger:[77,100,118],burgers_1d:83,burgers_1d_pi:83,busi:[40,58],butcher:86,button:[9,10,23,64,68],buxfix:64,c210:[13,77],c231:[13,77],c_center:75,c_centers_with_ghost:75,c_l:83,c_node:75,c_nodes_with_ghost:75,c_r:83,cach:[19,56,58],cada:70,cada_torrilhon_limit:70,cada_torrilhon_limiter_nonlinear:70,cal:[100,118,121],calcul:[3,5,22,33,44,54,75,83,86],calhellev08:13,calhoun:[4,13],calhounhelzellevequ:12,call:[1,5,17,19,22,32,37,39,44,50,54,56,60,61,63,64,65,69,70,74,78,79,82,84,85,86,88,90,91,94,98,100,104,106,107,108,118],call_before_step_each_stag:86,call_setplot:54,callabl:91,calucl:83,cambridg:13,can:[0,2,3,4,5,6,7,8,9,10,12,14,16,17,19,22,23,24,26,28,29,32,33,34,36,38,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,64,65,66,67,68,69,70,71,74,75,78,79,80,81,82,84,85,87,88,89,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,113,115,116,117,118,119,121],canopi:87,capa:85,capa_index:[104,106,108],capabl:[6,9,19,24,25,34,51,61,98,117],capac:[11,83,102,104,105,106,108],capit:84,captur:[34,115],care:[24,32,33,80,94],carefulli:[17,19,42],cartesian:[33,61,107],cascad:4,cast:[36,66],cat:99,caten:99,caus:[19,34,38,40,56,58,69,89,94,103,105],caut:70,caution:[24,34,115],cautionari:[21,33,107],cautiou:34,caxi:44,cbar:83,cdot:[42,82],cdrda:94,cell:[3,4,7,11,12,17,19,21,22,24,32,33,44,49,50,51,60,75,80,83,84,86,88,90,94,95,98,100,101,102,104,105,106,107,108,115,118,121],celledg:3,celledges_show:[3,19],cellgridintegr:98,cellgridintegrate2:98,cellsiz:[94,115],center:[4,22,27,32,48,60,75,82,83,90,95,105,106,115,118],centers_with_ghost:75,central:104,centroid:48,certain:[24,27,33,95,104],certainli:[80,92],certik:[4,58],cf2py:61,cfg:94,cfl:[5,75,86,90,98,104,106,107,108],cfl_desir:[86,104,106,108],cfl_max:[86,104,106,108],cfl_superbe:70,cfl_superbee_theta:70,cgreen:65,chanc:58,chang:[1,5,10,11,12,16,17,21,23,28,29,32,37,38,41,42,44,45,49,50,51,56,60,61,65,68,69,72,88,91,94,95,96,102,104,105,106,107,108,111,112,116,118],changelog:[15,19,97,98],chapter:[12,100,104,118],char_decomp:86,charact:84,characterist:86,charg:10,cheaper:10,cheat:[36,66],check:[5,12,17,23,24,26,28,29,37,38,41,44,54,60,61,63,64,68,72,80,85,86,88,90,91,94,96,105,106,113,116,117,118],check_3rd_ord_cond:86,check_diff:[69,91],check_lmm_cond:86,check_valid:63,check_valu:[69,91],checkout:[23,36,38,64,65,66,67,68],checkpoint:[21,104,106,108],checkpt_interv:[104,106],checkpt_styl:[99,104,106],checkpt_tim:[104,106],chen:117,chile2010:[94,98,115],chile2010_fgmax:24,chile2010b:48,chile:94,chilie2010:94,chk00006:[106,108],chknnnnn:[99,104,106,108],choic:[12,53,65,86,104,106,107,108,118],choos:[0,21,64,82,84,94,104,107],chose:42,chosen:[3,27,90,94,95,101,105],circl:[3,54],circular:13,cise:13,citat:4,cite:[21,84],clamshel:21,clarifi:[19,84],clash:44,classic4:108,classic:[5,9,11,12,14,16,17,19,20,21,23,26,27,29,32,33,39,46,49,50,51,58,60,63,71,75,76,77,82,93,94,96,99,100,102,105,107,112,116,118],claw1:91,claw:[5,8,9,10,11,12,16,17,19,23,24,26,28,29,32,33,35,37,38,39,41,44,46,48,49,55,60,63,69,71,77,79,80,87,89,93,94,95,96,98,100,102,106,107,108,110,111,112,113,115,116,118,119],claw_1dnoncon:121,claw_git_diff:37,claw_git_statu:37,claw_lib:45,claw_outdir:[41,54],claw_packag:86,claw_pkg:[104,105,106,107,108],clawcode2html:21,clawdata2pyclaw:61,clawdata:[94,98,99,104,105,106,107,108],clawgraph:44,clawpac:38,clawpack:[1,4,5,6,8,12,14,21,23,24,25,26,29,30,33,34,37,38,40,44,46,47,49,52,53,54,55,56,58,59,60,62,63,67,68,69,70,71,74,75,76,77,78,80,81,82,83,84,85,88,89,90,92,94,96,97,98,99,100,104,105,106,109,110,113,115,116,118,119,121],clawplotax:[1,2,3,22,54,103],clawplotdata:[2,3,22,54,56,63,103],clawplotfigur:[0,1,54,103],clawplotitem:[0,1,6,19,21,22,55,103],clawrundata:[32,99,104,105,106,108],clawsolut:1,clawsolv:86,clawsolver1d:[60,63,75,86,90],clawsolver2d:[75,86],clawutil:[8,16,17,20,23,28,29,37,39,41,96,104,105,106,108,116],clean:[19,36,48,66,91,94],cleaner:23,clear:[1,2,5,44,56],clearfigur:1,clearfram:[1,56],cleargaug:32,clearli:[32,34],clf:2,clf_each_fram:2,click:[4,9,10,23,47,64,68,92,94,96],climit:94,clockwis:48,clone:[9,14,20,36,39,57,64,66,67,74,80,87],close:[10,44,64,67,84,95,105],closer:[48,106],cloud:[10,39],cluster:[5,13,27,95,105,106],clustering_cutoff:[95,105,106],cmap:[54,94],cmax:94,cmin:94,coars:[3,24,94,95,104,115,118],coarsen:[94,95,105],coarser:[3,12,104,105,118],coarsest:[5,50,98,99,104],coast:94,coastal:[34,94,101,107],coastlin:[24,107,117],code:[4,5,6,7,12,14,16,17,18,19,20,22,26,28,29,32,34,37,38,39,40,41,42,45,46,47,49,50,51,52,54,56,58,60,61,64,65,69,72,75,77,80,82,86,87,90,94,97,98,99,104,106,107,108,109,114,115,116],coeffici:[42,82,83,86,88,89,90,107],colella:[5,13],collabor:[64,109],collaps:64,collect:[9,23,48,53,60,64,86,92,94,109],collis:84,colon:64,color:[3,21,44,65,103],colorbar:[3,94],colormap:[3,21,33,44,55],column:[34,83],com:[9,10,20,23,38,39,57,64,65,67,68,69,74,80,82,87],combin:[17,64,94,117],combinatori:69,come:[3,23,36,47,54,56,64,66,68,71,80,86,115,118],comfort:82,comm_world:91,command:[0,1,2,3,8,10,21,28,36,37,39,41,46,54,60,61,63,64,65,66,68,69,80,81,84,86,90,91,92,96,103,104,105,116],commenc:99,comment:[8,35,72,99],commit:[23,36,37,38,65,66,68,69,84,96],common:[3,20,23,26,28,29,36,41,51,53,60,65,66,83,86,88,89,116,118],commonli:[3,44,54,56],commun:[36,58,66,72,84,88,91],compact:[67,115],compar:[19,32,34,39,54,67,69,79,95,96,101,105,107,113,117,121],comparison:84,compat:[39,53,69,80,89,92],compil:[10,21,26,28,33,49,51,56,61,77,82,87,91,98,116],compile_librari:91,complet:[17,19,41,56,60,61,67,69,80,84,91,92,96],complex:[9,75,84],complex_zero:84,compliant:29,complic:[12,54,61,64,103],compon:[3,12,17,19,21,23,32,39,44,50,82,85,87,88,95,104,105,106,115,118],compos:60,comprehens:[64,69],compress:94,compris:[19,77],comput:[3,4,5,10,12,13,21,22,24,32,39,41,45,53,54,56,61,63,65,75,77,79,80,86,90,92,94,95,98,100,104,106,107,108,115,118,121],computation:[61,86],compute_f:[63,79],compute_gauge_valu:79,compute_p:[60,63],concept:[36,66],concern:[19,33],conclus:4,condens:21,condit:[17,21,40,51,58,59,60,61,63,84,86,93,98,101,104,106,107,108],config:[36,65,66,68,80],configur:[54,60,64,72,77,80],confin:84,confirm:34,conflict:[5,44,64,89],conform:[19,69,85],confus:[3,64,100],conjunct:95,connect:68,consequenti:[40,58],conserv:[4,5,13,79,86,88,118,121],consid:[5,34,39,61,67,68,72,94],consider:[34,60],consist:[5,24,80,84,94,100,107,115,118],consol:10,constant:[34,42,80,83,94,107,118],constrain:[27,95],constraint:[105,121],construct:[19,60,75,91,115],construct_function_handl:91,constructor:[84,88],consult:89,contact:[71,77,87],contain:[1,3,9,10,14,17,20,26,28,31,32,33,35,37,41,44,45,50,51,54,56,60,61,63,65,69,70,71,75,77,78,80,82,83,85,86,88,90,91,92,94,96,98,99,100,103,104,107,109,113,115,118],containt:99,contamin:104,content:[38,61,65,118,119],context:[22,118],contigu:[50,88],contingu:19,continu:[10,19,23,35,39,58,100,104,121],contour:[3,32,44,92,103],contour_color:3,contour_kwarg:3,contour_level:[3,94],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:21,contract:[40,58],contribut:[4,58,61,64,72,77,82,86],contributor:[4,40,77],control:[5,6,20,32,44,56,59,64,70,75,77,78,79,80,82,84,95,107],conveni:[1,22,26,32,36,56,63,66,71,77,81,90,118,121],convens:115,convent:[3,19,33,72,77,83],converg:53,convers:[16,61,95,117],convert43to46:16,convert46to50:17,convert:[3,14,19,21,30,48,61,65,74,82,91,94,104,105,115,117],convert_fort_double_to_float:91,convert_readm:8,converttopotyp:115,cool:[64,67],coordiat:94,coordin:[20,21,24,50,60,75,79,80,90,94,95,107],coordinate_system:[11,102,107],copi:[5,11,12,23,26,32,38,44,60,63,64,65,74,82,88,93,94,95,99,102,109,111,112,115,118],copul:64,copyright:[40,58],core:[4,51,65,69],corioli:[34,107,111,112],coriolis_forc:[34,107],corner:[3,50,75,94,104,106,108,115],corr:65,corran:65,correct:[17,23,29,42,44,54,60,75,80,85,91,98,104,106,108],correctli:[24,61,64,69,76,107],correspond:[3,5,20,22,34,44,48,54,60,69,70,75,82,85,88,94,95,96,100,101,104,105,106,108,115,117,118],cos:[35,60,82],cosin:60,cost:[10,84,86],could:[10,22,24,26,32,49,54,56,60,75,79,84,88,89,92,94,99,105,106,107,108,115,118],council:4,count:60,count_from_zero:60,counter:91,counterclockwis:48,coupl:121,courant:[4,5,95,104,105,106,108],cours:[10,24,32,33,36,48,65,66,80,81,90,107,115],cover:[5,22,27,69,94,95,106,107,115],coverag:[72,96],covert:8,cparam:[60,88],cpu:10,crash:[36,66,104],creat:[0,1,2,3,5,6,14,16,21,23,26,28,32,33,37,38,39,41,50,54,56,61,62,65,69,71,75,77,78,81,84,85,88,89,90,91,94,96,98,99,103,104,105,106,109,110,117,118,119],creation:[54,77,98],cred:65,creset:65,criteria:[5,6,19,21,27,88],criterion:[95,106],critic:100,cross:23,crucial:115,csh:80,ctrl:54,cube:44,current:[3,10,17,19,22,23,27,32,33,34,44,45,50,54,56,64,65,67,68,69,73,75,80,86,88,91,94,95,99,101,103,104,106,107,108,115,117],current_data:[0,3,21,32,54],curv:[3,21,32],custom:[0,10,12,17,19,44,51,53,61,82],custom_bc:82,cut:105,cutoff:[5,106],cxx:80,cyber:13,cygwin:[39,63],cython:80,d304a73:65,dai:[5,10],dalcin:[58,84],dam:71,damag:[5,40,58],damiansra:82,danger:23,darryl:13,dart:[21,94],dash:[3,80],daspect:44,data:[0,1,3,14,21,22,26,28,32,33,40,41,44,53,54,55,56,58,60,63,65,75,79,81,83,85,88,91,93,94,95,98,100,101,106,108,119],data_typ:91,databas:[10,64,91,94,115],dataset:117,date:[23,28,38,41,48,54,65,94,116],datum:[34,83,101,107,117],david:[4,13,58,77,84,86],deal:[34,53,80,88],dealloc:84,debian:[65,92],debug:[21,29,41,50,88,104,106],debugg:54,decid:[60,86],declar:[17,19,88,118],decompos:[50,100,121],decomposit:104,decor:91,deduc:115,deem:69,deep:107,deeper:107,deepli:90,def:[0,1,3,32,54,60,75,79,82,84,86,106,108],default_tfluct:86,defenc:4,defin:[0,1,3,5,19,21,22,24,27,41,44,48,54,56,60,63,75,81,82,84,85,86,88,90,91,95,98,100,106,108,116,118,121],definit:[44,60,84,95],deform:[48,94,117],degre:[48,94],delet:[17,23,32,72,94,99],deliber:68,delimit:84,delin:107,delta:[70,75,82,84,86,100,118,121],delta_h:83,delta_hu:83,demo:[47,80],demonstr:[9,47,71,80],denot:[5,19,32,100],densiti:[63,79,83,88,90,105,106,118],depart:4,depdend:70,depend:[3,10,12,23,26,27,28,29,33,34,41,42,44,54,59,72,83,85,86,91,94,95,107,116,118,121],deprec:107,depth:[4,12,13,19,21,24,33,34,36,42,48,55,66,94,101,107,115],deriv:[40,48,58,63,76,77,88,96],describ:[3,4,5,6,10,12,16,20,23,24,25,26,27,33,34,38,39,41,44,48,50,51,53,54,55,69,75,85,91,94,95,96,100,101,103,104,105,107,115,117,118,121],descript:[3,4,19,27,36,44,53,64,84,91,94,95,100,107,115,121],design:[4,22,58,60,69,90,94,101,115,117],desir:[0,1,2,3,5,6,12,14,19,21,24,32,39,52,53,54,56,60,61,63,79,85,86,93,104,106,108,115,116],desktop:80,detach:[23,64],detail:[4,5,12,19,26,27,29,33,34,36,40,44,54,58,63,66,68,69,70,71,75,78,80,81,82,83,84,86,94,96,100,103,104,107,109,116,118,121],detect:[41,67,78,87,91],determin:[3,5,27,32,34,37,54,70,75,83,88,94,95,99,101,103,104,105,107,113,118],dev:[23,69,80],develop:[4,5,6,10,19,20,24,33,34,36,38,44,53,57,58,61,66,67,73,77,82,84,86,87,96,101,106,114,115],dict:[63,78,83,85,88],dictionari:[0,1,2,3,54,60,63,78,83,85,88,90],did:64,didn:71,died:98,diff:[36,37,64,65,66,67,98],differ:[1,3,5,6,9,12,19,21,23,26,32,33,34,37,42,44,48,49,56,60,61,63,71,75,83,84,86,91,92,94,95,96,100,101,104,105,106,107,115,117,118,121],differenti:13,difficult:32,difficulti:[87,89],diffus:82,digit:54,dim:[82,83],dimens:[5,6,12,17,19,32,44,60,61,63,80,82,83,85,88,90,95,100,104,105,106,108,118],dimension:[3,6,7,13,19,24,26,32,34,44,73,75,82,94,106,107,108,118],dimensional_split:[75,104,106,108],dip:[48,94],dip_angl:94,dir:[80,119],direct:[5,7,12,19,24,26,36,40,41,44,48,49,54,58,63,82,90,94,104,105,107],directli:[16,20,21,23,34,44,54,56,60,61,64,65,67,68,70,88,91,92,119],directori:[1,3,5,8,9,10,11,12,14,16,17,19,20,21,23,26,28,32,33,36,37,39,44,45,48,49,52,56,63,64,65,68,69,71,75,82,84,90,93,94,95,96,98,99,100,102,103,104,105,109,111,112,113,115,116,118,119],disabl:[35,64,87],disable_petsc:91,disallow:84,discard:[64,86],disclaim:[40,58],discontinu:[4,73,86,121],discov:[42,68],discoveri:69,discret:86,discrib:4,discuss:[34,65,69,84,90,92,95,100,107,121],disk:[10,60,69],disloc:94,dispers:[34,47],displac:[21,34,48,94,107,117],displai:[1,10,26,28,54,84,96],distanc:[48,94,115],distribut:[4,10,40,48,51,58,86,92],distutil:61,dive:92,divid:[95,104],divis:4,dlgeorg:4,doc:[20,23,38,70,74,91,110],docstr:[61,69,71,72,96],doctest:75,document:[0,1,2,3,15,18,19,20,21,23,24,31,33,34,36,40,48,53,54,55,56,58,70,71,72,74,75,78,80,81,86,88,91,94,103,106,119,120],doe:[4,8,12,17,22,23,28,34,39,44,51,54,69,75,84,85,88,91,100,115,116,118],doesn:[64,69,88,94],doing:[5,8,16,23,32,34,36,37,38,39,54,56,64,65,66,67,68,69,75,84,94,99],domain:[5,12,13,27,34,50,59,60,61,63,80,82,85,88,94,95,105,106,108,115],don:[10,22,23,54,64,68,69,80,84,87,106],done:[1,5,6,7,8,10,12,16,17,21,23,26,32,33,39,41,44,48,53,54,56,60,64,68,70,71,91,94,95,99,100,103,105,107,117],donna:4,donnabois:4,donor:[104,106,108],dot:[28,32,41,116],doubl:[44,61,75,91,100,105],down:[10,64,68,94,115],download:[9,10,20,21,23,39,45,47,65,71,80,87,92,94],downward:48,dpng:44,dprint:[105,106],dq_src:[82,86],dqdt:86,draw:3,drawcontourlin:44,drawn:103,driver:17,drop:[10,104],dropdown:64,dry:[12,24,33,83],dry_toler:83,dt_check:24,dt_initi:[98,104,106,107,108],dt_max:[104,106,108],dt_max_dtopo:[98,107],dt_variabl:[104,106,108],dtdx:70,dtfe:86,dtopo:[21,34,48,98,107,115,117],dtopo_data:[98,107],dtopo_modul:98,dtopofil:[48,94,107],dtopotool:48,dtopotyp:[107,115],due:69,dummi:[61,86,118],dump:[50,104],dumpgaug:32,duplic:[54,99],durat:101,dure:[19,32,51,64,65,98,101,106,107,108,115],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,36,93,102,111,112],dxc:61,dyc:61,dynam:[5,17,34,47,51,94],e10:94,e_l:83,e_r:83,each:[1,2,3,5,6,12,19,21,23,24,25,27,32,44,47,48,49,50,52,53,54,56,60,61,64,70,75,78,79,80,82,83,84,85,86,88,90,94,95,96,98,100,103,104,105,106,107,108,115,117,121],each_fram:32,each_gaug:32,eadc391:64,earli:[5,17],earlier:[17,19,24,60,82,98],earth:[48,94,107],earth_radiu:107,earthquak:[21,33,34,107,115],easi:[4,5,8,23,36,44,61,66,80,81,84,109,118],easier:[53,64,118],easiest:[16,23,27,29,51,54,56,68,92,94,95,118],easili:[3,10,23,44,54,61,69,75,84,87,91,92,94,109],east:[10,94,115],eastern:94,easy_instal:80,ec2:[21,39],edebug:[105,106],edg:[3,5,11,12,22,39,48,75,83,84,94,100,102,105,106,108,118],edit:[23,36,56,65,66,68,72],editor:[50,64,65],edu:[45,77,92,94],effect:[23,42,44,69,75,84,92,95,101,107],effici:[21,34,58,77,79,84,88,95],effort:84,efix:83,eigenvector:[100,121],either:[9,12,17,27,33,39,44,48,54,56,60,62,67,69,75,84,86,91,95,100,118,121],elabor:84,elast:[10,48,94],element:[0,3,19,83,86,88,104,105,106,107],elev:[19,21,24,33,34,93,107,115,117],elif:[106,108],elimin:[19,61],ell:100,els:[22,23,64,68,88,108],elsewher:94,email:[65,68],embarass:64,emdash:36,emmett:[13,58,77],empir:[34,42],empti:[32,85,88,91,94,104],empyclaw:82,enabl:[69,75,79,84,87,91],encapsul:34,encount:[28,54,87,89],encourag:[44,84],end:[10,24,63,64,67,79,83,84,90,92,94,95,106,108],enddo:118,endors:[40,58],energi:[79,83],enforc:[65,107],engin:13,english:84,enh:64,enhanc:[42,58,84],enough:[94,115],ensur:[26,44,64,99],enter:[44,64,80,87],enthought:[87,89,92],entir:[5,34,49,60,84,85,99],entireti:63,entri:[60,91],entropi:83,enumer:[75,86],environ:[21,23,26,28,37,44,46,49,51,81,84,89,91,94,116],envis:12,epd:89,epicenter_latitud:94,epicenter_longitud:94,eprint:[105,106],epsilon:70,eqinthenew:94,eqn:121,eqnarrai:90,equal:[12,65,80,82,94,95,99,104,106,108,115],equat:[4,12,13,26,33,34,42,47,54,59,60,61,63,77,79,82,84,86,87,88,94,100,104,106,107,108,115,118,121],equiv:121,equival:5,err:106,errno:36,error:[12,17,26,27,28,39,44,49,54,63,72,77,84,91,95,105,106,116],escap:[95,106],escienc:10,especi:[61,69,82],essenti:[44,86,94,107],est:106,establish:4,estim:[42,95,105,107],estimat:106,etc:[0,2,12,16,17,22,23,34,38,50,53,61,84,100,103,104,107,118],etopo10min120w60w60s0:94,etopo1:[94,101,117],etopo:[94,117],euler:[77,86,100,118],euler_1d_pi:83,euler_2d:[26,82],euler_exact_1d:83,euler_hll_1d:83,euler_hllc_1d:83,euler_roe_1d:83,evalu:[22,42,60,75,86,118],even:[34,40,48,58,64,68,84,91,94,95,105,106,115,118],event:[34,40,58,94,101,104],eventu:[10,33],ever:[84,103,107],everi:[5,24,27,32,39,60,63,69,71,79,88,94,95,96,100,104,106,108,118],everyth:[23,39,49,64,80,90,91,96],everywher:[42,88],evolv:[19,60,63,86],evolve_to_tim:[60,86],exact:83,exactli:[37,69,88,104],exam:54,examin:[12,26,94],exampl:[0,1,2,3,4,5,10,12,17,19,22,23,24,27,28,29,30,31,39,41,42,45,48,49,50,53,54,56,58,59,60,61,62,63,64,65,67,68,69,74,75,76,77,78,82,83,84,85,86,87,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,113,114,115,116,117,118],exce:[24,95,105],exceed:95,excel:[36,66,68],except:[19,22,65,83,84,91,104,107,115],excerpt:80,exclud:67,exe:[26,63],exec:[0,1,3,54],execut:[0,1,3,12,16,22,26,32,39,44,54,56,63,69,71,80,96,116],exemplari:[40,58],exercis:[33,69],exist:[1,18,26,44,54,69,75,82,85,88,91,92],exit:[54,80,87],exp:[60,79,90],expand:[36,66,84],expect:[69,83,84,90,91,106,107,108],expens:[86,95],experi:[34,86],experiment:58,expert:34,explain:[10,27,34,36,64,66,68,84,95,104],explan:[64,69,70],explicit:[91,105],explicitli:[44,104,121],explor:[4,54,56,84],expon:42,expos:10,express:[4,40,58,87],extend:[12,19,36,44,66,75,84,94,107,115,121],extens:[4,13,19,34,44,61,69,77,78,91,104,113,121],extent:[34,39,42,44,60,75,88,98,107],extra:3,extract:84,extrap:[12,82,90,104,106],extrapol:[12,19,27,82,90,104,105,106,108],extrem:89,extropl:12,f2py:[39,61,82,91],f2py_flag:91,f49620:4,f77:29,f90:[11,17,24,39,49,82,93,95,98,102,111,112,115,118],f95:91,f_file_nam:63,f_path:63,facecolor:[2,54,103],facilit:109,fact:88,factor:[5,94,105,107],faculti:[92,94],fade:54,fail:[11,23,80,91,93,96,102,111,112],failur:69,fairli:[12,34,84,94],faith:[64,68],fall:101,fals:[0,1,2,3,27,34,35,37,63,64,75,83,85,86,88,91,94,95,99,104,105,106,107,108],famili:[69,75,86,106,108],familiar:39,fanci:[64,65],faq:[10,21,92],far:[12,14,53],fast:67,fastest:87,fault:[21,33,94,115,117],fault_length:94,fault_width:94,favorit:53,fbound:29,fc02:4,fdefault:91,feasibl:84,featur:[19,23,24,25,44,54,61,65,67,68,69,72,73,84,95,107,115],fedora:65,feet:[101,117],fernando:[36,66],fetch:[10,23,64,67,68],few:[5,9,10,19,34,38,39,44,61,64,86,90,95,96,101,113,118],fewer:[94,95],ff0000:3,ff9999:103,ffff00:54,fflag:[21,28,41,45,49,61,91],ffpe:29,fg02:4,fg03:4,fg06:4,fgmax:[21,49,107],fgmax_fil:107,fgmax_process:24,fgmax_valu:24,field:[82,85,88],fignam:[1,56],figno:[1,2,32,54,56,94,103],figsiz:[2,54,103],figur:[0,1,2,4,10,14,21,26,32,44,56,85,100,103],file1info:107,file2info:107,file:[1,5,7,8,11,14,16,17,19,20,21,22,23,26,28,29,32,33,34,36,37,38,39,41,45,48,50,51,53,55,58,61,63,64,65,68,69,71,74,75,78,79,80,81,82,84,85,88,89,91,93,94,98,101,102,103,104,105,106,108,110,111,112,116,117,119],file_format:85,file_prefix:[78,85],file_prefix_p:63,fill:[0,3,4,5,12,75,77,88,104,118],fill_between:3,fill_var2:3,fill_wher:3,find:[1,3,4,5,21,22,41,45,47,48,51,53,58,64,68,69,71,82,88,89,91,92,116],fine:[3,24,51,82,95,104,107,115,118],finer:[3,21,94,95,98,104,105],finest:[3,32],finish:[10,54,60,64,68,84],finit:[4,13,14,30,44,48,86,94,115,118],finite_fault:94,finlin:91,first:[1,3,10,16,17,19,23,24,26,27,38,39,41,44,54,56,60,61,64,67,69,74,75,80,82,84,86,87,88,90,91,94,95,98,99,100,104,106,107,115,121],fit:[40,58,84],fix:[5,16,17,19,21,23,58,64,65,72,83,98,104,106,108,115],fixedgrid:107,fixup:64,flag2refin:[19,27,105,106],flag2refine_tol:[95,105,106],flag:[10,19,21,28,29,45,49,61,64,68,89,91,106,107],flag_richardson:[95,105,106],flag_richardson_tol:[95,105,106],flat:[48,94,115],flavor:[9,18],flexibl:[19,61,100],floor:[33,48,94],flow:[4,12,13,20,24,33,34,77,84,94,100,104,107,114,115,118],fluctuat:[83,86,121],fluid:[34,47,101],flux2:61,flux:[13,24,75,83,84,86,100,104,121],fly:[21,64],fmt:3,fname:[94,106,107,108],focal_depth:94,focu:[4,33],fold:12,folder:[11,36,93,102,111,112],follow:[0,2,3,4,5,10,12,16,20,23,24,26,27,32,33,39,40,44,45,50,54,55,58,60,61,62,64,65,68,69,71,73,74,75,78,80,82,83,84,85,87,88,90,91,94,95,99,100,103,104,105,107,115,116,118,120],fontsiz:54,foo:64,foot:48,fopenmp:[49,91],forbidden:27,forc:[19,27,28,41,67,91,94,116],forgot:64,fork:[38,64,67,72],form:[0,2,3,4,5,14,16,17,19,24,26,27,30,32,40,42,48,50,58,61,67,79,83,84,86,90,91,94,95,99,100,104,105,106,107,111,115,118,121],formal:84,format:[1,3,10,21,26,33,34,35,44,45,53,54,60,63,65,68,78,81,82,85,91,94,104,107,115,119],format_str:32,former:[54,118],formul:[4,34,42,100,104],formula:42,fort:[1,7,21,22,32,44,45,85,99,104,105,106,108,119],fortfil:26,fortran90:84,fortran:[5,8,10,17,20,22,23,26,33,39,41,42,47,49,50,51,53,56,58,60,61,63,69,72,75,77,80,82,83,86,87,88,91,106,108,114,116],fortran_modul:88,fortran_src_wrapp:61,forward:[67,86,118],found:[1,4,5,8,9,10,11,12,14,19,22,24,26,28,32,34,37,41,47,48,52,54,55,56,57,60,70,80,85,89,91,93,94,96,99,101,102,103,111,112,116],foundat:[36,66],founder:4,four:[69,75,94,95],fpe0:29,frac:[42,83,90,121],fraction:[5,10,95,104,118,121],fragil:88,fragment:3,frame0000:44,frame:[1,2,3,22,32,44,45,50,53,54,56,60,63,78,80,85,87,91,94,99,103,106,108,109],framecount:91,framenam:44,frameno:[1,3,22],framesoln_dict:1,frametool:[1,22,56],framework:[4,58,61],free:[10,39,48,58,62,82,87,89,92],frequenc:86,frequent:[17,22,89],friction:[21,33,34,107,111,112],friction_depth:[42,107],friction_forc:107,friedemann:70,from:[0,1,3,4,5,6,9,12,13,15,20,21,22,24,25,26,27,30,32,34,36,38,39,40,41,44,46,48,50,54,57,58,59,60,63,65,66,67,69,72,75,76,77,79,80,82,83,84,85,86,87,88,89,90,91,92,95,96,98,99,100,101,104,105,106,107,108,113,115,117,118,119],frommm:70,front:[44,85,91],fset:88,fstr:44,ftrapuv:29,full:[5,39,54,63,79,84,86,90,92,114,115,118],fulli:[5,34],fun:91,func:91,function_nam:91,fund:[21,77],funni:68,funrol:91,further:[5,12,21,24,25,34,41,44,69,77,94,95],furthermor:90,futur:[10,19,21,26,30,34,42,60,77,86,94,115],fvmbook:[9,14],fvmhp:[4,9,12,13,21,51,100,104,118,121],fwave:[75,83,86,100],g77:89,galerkin:[73,86],galleri:[9,21,26,52,71,77,92,96,109,113,118],gallery_al:[31,77],gallery_classic_amrclaw:[26,31],gallery_fvmbook:[13,14,30,31],gallery_geoclaw:[31,33],gamma1:83,gamma:[42,83],gas:[5,83],gaug:[21,75,76,88,98,99,101,106],gauge1:99,gauge2:99,gauge_coord:75,gauge_data:88,gauge_dir_nam:75,gauge_fil:75,gauge_file_nam:75,gaugedata:[32,106],gaugeno:[32,94,106],gaugetool:32,gaussian:[60,90,108],gca:35,gcc:[80,87],gd_ship:94,gear:10,gen_vari:[69,91],gener:[0,1,2,3,4,5,6,8,10,12,13,16,17,21,23,28,29,34,39,41,42,48,49,50,53,54,55,56,58,61,64,65,68,70,72,74,75,77,80,81,82,84,85,86,87,90,91,92,94,95,98,99,101,104,105,109,115,118,119],geo:[21,42],geo_data:107,geoclaw:[4,9,13,20,23,24,25,27,29,32,39,42,45,48,51,87,94,96,99,101,104,105,114,115,117,118],geoda:[94,101,117],geodaa:94,geodata:94,geohazard:34,geol:94,geolib:[45,98],geom:[75,88],geometr:118,geometri:[77,82,85,88],geophys:[4,12,13,20,33,34,51,104,114,115],geoplot:[35,55,94],georg:[4,13],geoscientist:34,geotool:48,get:[0,10,23,28,36,39,41,60,61,64,65,66,69,72,75,79,80,84,87,89,90,91,92,99,114,116],get_aux_glob:88,get_auxbc_from_aux:88,get_cmap:54,get_count:91,get_dim_attribut:75,get_dt:86,get_dt_new:86,get_q_glob:88,get_qbc_from_q:88,getax:1,getcwd:54,getfigur:1,getfram:[1,3,56],gethandl:[0,2,3],getitem:1,gfortran:[10,21,39,49,59,89,116],gfortranbinari:87,ghamdi:4,ghost:[12,21,49,50,75,86,88,104,106,108,118,121],gif:94,git:[9,10,20,21,38,64,67,68,72,74,77,87,96],git_link:36,git_statu:37,gitconfig:65,githhub:64,github:[9,19,20,36,38,39,57,65,66,67,69,74,82,87,96],gitk:[36,64],give:[3,5,10,12,23,26,32,36,49,50,54,56,64,65,66,68,80,81,84,86,94,96,104,107,115,117],given:[42,44,48,70,80,85,86,88,91,94,95,101,107,115,118],glob:71,global:[5,65,68,75,84,88,91,94,101,117,118],gloss:117,glu:12,gnu:87,goal:5,godunov:[4,75,86,104,106,108,118],goe:[33,84],going:[12,19,60,63,64,68,71,83,84,92,94,97,109,115,121],good:[12,34,36,40,49,58,64,65,66,67,90,94,96],googl:[69,71,80,89,94],googlecod:80,got:[64,67],gov:[80,94],govern:107,gprint:[105,106],gpu:73,gradi:[4,58],gradient:121,gradylemoin:4,grant:[4,58],graph:[64,65,67],graphic:[20,23,44,53,64],grav:83,gravit:[42,83,107,118],graviti:107,grd98:94,great:[71,94],greater:[24,42,87,92,94,95,99,104,105],greatest:95,greatli:[58,101],green:[48,54,94,96],grid1d:75,grid1info:107,grid2info:107,grid:[4,6,13,16,17,19,20,21,22,23,27,32,33,34,44,50,51,53,58,60,69,77,79,80,82,83,84,85,86,88,90,94,95,98,100,101,104,105,106,108,115,117,118,121],grid_files_scanf:119,grid_numb:50,gridedges_show:94,grideges_show:19,gridlin:44,gridlines_show:19,group:[3,10,34,69,71,80,89,94],guarante:[33,34,86,94],gui:[19,119],guid:[10,20,21,33,36,57,64,66,92,110],guidelin:72,gzip:[64,94],h_l:83,h_r:83,hack:[64,68,88],had:64,hadjimichael:58,half:[0,12,48,86,94,104,118],halfspac:48,hand:[3,16,17,42,60,69],handi:41,handl:[0,2,3,5,24,29,33,39,49,51,53,64,75,82,85,86,88,89,90,91,94,98,107],hang:48,happen:[41,60,85,88,116],happi:64,hard:[35,49,54,64],hardcopi:[1,54,56,103],hardcor:68,harder:104,hardest:[45,92],hardwir:49,harmon:64,has:[0,4,5,10,12,15,17,18,19,20,21,22,23,24,25,26,27,36,37,41,42,44,48,50,51,54,58,61,63,64,66,67,69,75,82,83,84,85,88,89,91,92,93,94,95,97,98,100,101,104,105,107,115,118,119,121],hash:[37,38,96],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,22,23,24,26,29,30,32,33,34,36,38,39,41,42,44,45,47,49,50,53,54,56,58,60,61,64,65,66,67,68,69,70,71,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,98,99,100,101,104,105,107,109,113,115,118],haven:90,hawaii:94,hazard:[21,24,42,101],head:[23,64,65,67,94],header:[8,50,85,94,115],heat:83,heavili:61,height:[83,94],held:34,hello:80,help:[6,20,21,28,35,36,39,41,56,64,65,66,68,69,77,80,84,87,91,94,109],helzel:13,hemispher:94,henc:[86,95],here:[10,12,34,36,47,51,54,56,57,60,63,64,65,66,68,70,77,80,82,83,84,89,90,94,121],heterogen:118,hex:54,hhuuggoo:65,hidden:[3,41,54],hide:44,hierarchi:75,high:[4,13,34,51,61,77,86,100,101,107,114,117,118],higher:[3,5,75,86,87,101],highlight:[8,10],hilo:[101,117],hint:[12,21,24,33,39,56,107,116],histor:[34,48,117],histori:[23,36,56,66,92,99],hit:[12,44,56,104],hll:83,hllc:83,hoc:61,hold:[3,56,90,95],holder:[40,58],home:[10,39,65,68],homepag:[18,65],homogen:[48,86,118,121],honshu:94,hood:53,hope:96,horizont:94,host:[64,69],hour:[10,94],how:[1,5,6,9,12,19,21,26,27,29,32,33,36,47,48,49,50,63,66,67,68,69,71,78,82,84,86,90,91,94,95,99,100,103,104,107,109,119],howev:[5,10,12,19,23,26,29,33,34,40,48,49,50,58,61,64,68,69,95,101,103,107],hpc:39,htm:94,html:[1,10,13,20,21,26,28,32,38,47,53,54,65,69,71,74,80,81,92,94,96],html_plot:81,htmlplot:71,http:[4,9,10,13,23,38,39,40,45,57,58,61,62,64,65,68,69,77,80,82,92,94],hugo:65,hyd93:94,hydrodynam:13,hyperbe:70,hyperbee_limit:70,hyperbol:[4,5,13,14,30,51,61,77,82,83,90,100,104,107,118,121],hyperol:104,hyphen:84,ibm:87,idea:[44,51,60,84,90,94,96,121],ideal:[83,94,101],ident:[75,80,96],identifi:[26,61,84,95],idl:10,ieee:13,ifort:29,ignor:[12,101],iii:94,iinstal:80,illustr:[26,44,47,100,109],imag:[10,26,84,96],imaginari:84,immedi:[23,34,44,60,63,64],impati:82,imped:[60,83,90],implement:[1,4,6,12,27,46,58,64,69,82,83,84,86,90,91,95,100,104,118,121],impli:[40,58,67],implicit:[58,84,86],impliment:65,importantli:80,impos:[12,61,95,107,111,112,121],imposs:[34,104],improv:[4,10,19,24,25,33,48,84,94,98,104],imshow:94,inaccur:34,inaccuraci:34,inadequaci:42,inadvertantli:54,inbound:10,inc:[36,44],incept:4,inch:[2,54,103],incident:[40,58],includ:[4,5,10,11,18,19,20,21,22,23,26,28,32,34,36,39,40,42,44,45,49,51,53,54,56,58,60,61,64,67,69,71,75,77,80,81,82,83,84,85,86,87,88,90,92,93,94,98,100,102,104,106,107,109,110,111,112,115,118],incom:12,incompat:69,incomplet:24,incompress:13,incorpor:[19,34,38,58,67,86,92,98],incorrect:84,increas:[49,84,107],increment:[24,75,91,94,104,106,108],ind:75,inde:[61,80],indent:84,independ:20,index:[1,5,10,19,22,32,38,54,75,77,80,82,83,84,91,104,106,108],index_bi:65,indic:[6,12,17,19,21,29,44,52,56,75,80,83,84,86,90,94,95,96,100,104,106,107,108,115,118],indirect:[40,58],individu:[4,19,20,44,75,84,95,96],infinit:104,inflat:12,info:[44,63,75,86,105,106],inform:[10,19,21,26,33,34,35,37,39,50,54,55,56,57,58,60,61,64,65,68,75,77,80,81,83,84,85,91,99,100,104,105,107,115,116,117,118,119],inhabit:60,inherit:[54,75,86],initi:[4,10,19,21,27,32,34,44,48,51,56,58,59,60,61,63,65,70,75,76,83,84,85,86,88,89,91,93,94,95,101,104,106,107,108,115],initialize_sourc:61,inlin:92,input:[6,12,17,20,21,22,27,28,44,60,63,70,75,77,83,84,85,86,91,100,106,107,108,115,118],input_filenam:61,inputerror:36,inputfil:[91,115],inrati:94,inratt:94,inratx:94,ins:19,insert:[8,12,48,64],insid:[75,80,84,85],inspect:[16,17,94],instal:[9,10,20,21,26,56,58,59,62,64,68,69,72,76,77,78,90,94,97,98,120],install_output:39,instanc:[3,21,51,56,60,61,63,64,75,79,82,84],instantan:[86,115],instanti:[63,80,82,86,88,106,108],instead:[3,10,23,26,45,67,68,87,88,91,94,100,115],institut:4,instruct:[10,21,26,45,60,62,64,65,67,68,69,72,80,87,90,97,98,99,120],insur:[37,41,56,94,95,96,98,105,107,115],intact:46,integ:[3,24,32,42,54,61,85,94,95,100,104,107],integr:[19,21,58,72,77,79,86,98,106,108,115,118],intel:21,intend:[34,61,84],intens:61,intent:[61,100],inter:23,interact:[1,10,19,21,26,28,32,33,41,47,51,54,61,64,80,81,87,90],interactive_plot:[81,90],interdepend:88,interest:[9,12,20,22,24,35,44,61,68,69,88,94,104],interfac:[4,16,19,21,44,58,61,70,77,83,84,86,91,92,100,118,119,121],interface_funct:91,interior:[5,12,50,88],interleav:[58,83],intermedi:[16,24,36,66,118],intern:[5,32,115,121],interpol:[5,12,24,25,32,44,54,101,107],interpret:92,interrupt:[40,58],interv:[32,60,84,90,94,95,104,107],introduc:[12,16,54,68,69,84,121],introduct:[36,47,66,69],introductori:92,introspect:84,intuit:77,inund:[33,42,94,101,117],inundataion:[101,117],invalid:[29,85],invert:84,invest:34,investig:96,invis:28,invok:[8,49,84,116],involv:[82,86],ioerror:85,ioexcept:91,iout:108,ioutarrivaltim:107,ioutsurfacemax:107,ipdb:54,iplot:[26,71,80],iplotclaw:[1,10,19,21,26,32,33,54,81],iplotclaw_:54,iplotclaw_figno:1,ipython:[10,21,31,51,54,56,61,62,64,77,87,90,92],ipython_displai:98,iqinit:[107,115],irregular:94,is_valid:[85,88],island:94,isn:[41,49,50,116],isosurfac:44,isotrop:48,issu:[19,23,38,39,44,60,64,69,75,77,87,89,96,98,107],item1:[0,56],item:[0,1,3,21,44,56,91,103],itemnam:[1,56],iter:83,ith:83,its:[4,5,10,19,34,40,50,58,63,70,71,75,77,82,84,85,86,88,91,92,95,106,121],itself:[39,53,74,107],ixi:84,jacobian:[100,121],jan:4,januari:97,javascript:109,jed:58,jet:44,job:10,join:54,jonathan:65,joshu:65,journal:[13,77,109],jpg:44,jsanim:98,jump:[4,39,44,56,75,86,104,121],junction:[24,107],just:[0,5,23,28,39,60,61,63,64,67,68,69,79,80,81,82,84,88,91,92,94,104,118],justifi:48,kappa:[90,121],kappa_i:121,karg:85,kaust:[4,77],keep:[21,23,26,49,60,63,64,68,84,88,91,94,96,107],keep_copi:[60,63],keep_gaug:88,kei:[0,1,2,10,68,86,90,91],kemm:70,kemm_2009:70,kernel:91,kernel_languag:[69,75,86,91],ketch:4,ketcheson2011:77,ketcheson:[4,13,58,77,84,86],ketchesonmandliet:13,ketparlev13:[13,51],keyboard:44,keypair:10,keyword:[2,3,54,60,69,71,75,84,85,91,103],kind:[63,71],king:58,klein:70,kneplei:[13,58,77,84],know:[34,39,41,58,64,101,116,117],knowledg:34,known:[29,44,48,49,54,69,87,89,104],kpp:71,kristof:58,kutta:[77,86],kwarg:[2,54,69,91,103],kyle:[4,13,58,70,77,83,84],label:[35,65,68],lack:3,lake:[33,115],lambda:75,lambda_roe_1:83,lambda_roe_2:83,land:[12,33,55],landslid:34,langseth:[4,13],langsethleveque00:[4,13],langtangen:92,languag:[8,53,91,92],lapack:98,laptop:77,larg:[5,17,24,25,26,34,44,49,53,69,79,80,94,95,99,104],larger:[10,17,24,49,50,54,75,98,107,115],largest:[95,101],last:[3,22,24,54,60,61,64,82,90,94,104],lat:94,later:[10,37,56,84,86,94,99],latest:[20,21,68,80,87],latex:[1,21,53,81],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:84,latitud:[11,21,33,48,94,102,107],latter:[11,38,82,102,104,118],launch:[21,71,77,80,81,87],law:[4,13,121],lax:[75,86,104,106,108,121],layer:[13,75,98],layout:72,lbla:89,lead:[5,10,19,34,42,44,48,105],leak:64,learn:[34,36,65,66,71,92],least:[4,5,10,27,44,69,89,94,95,104,106,115],leav:[10,12,68,105],led:17,leer:[70,86,104,106,108],left:[3,10,12,22,50,56,64,75,82,83,84,90,94,99,100,101,105,115,117,121],legaci:20,lemoin:[4,58],len:[75,106,108],lenght:104,length:[11,34,48,82,84,88,94,102,104,105,106,107,118],less:[34,42,49,84,86,95,104],let:[12,33,39,58,64,67,94],letter:84,level:[3,5,6,12,20,22,24,27,32,33,34,39,44,46,49,50,61,63,69,75,84,86,93,94,95,96,98,99,101,104,105,106,107,108,115,117,118],levequ:[4,12,13,40,51,70,75,77,86,92,100,104,118,121],leveque09:13,leveque1996:13,leveque1997:77,leveque96:13,leveque97:[4,13],leveque_book_2002:83,levequegeorgeberg:[4,13],levyon03:13,lgomp:91,liabil:[33,34,40,58,94],liabl:[40,58],lib:64,librari:[5,10,11,12,17,19,22,24,26,32,45,49,50,51,58,70,78,80,84,86,91,93,95,102,105,111,112,116,118],library_path:91,licens:[21,33,34,77,94],lie:5,lies:[5,12,24,27,95,107],life:84,lifetim:84,light:[44,95],like:[10,38,44,45,56,61,63,64,65,67,68,69,75,79,80,83,84,85,86,88,92,94,103,115,116],lim_typ:[84,86],limit:[0,4,5,34,40,44,49,53,58,60,61,75,77,84,86,95,104,106,107,108,115,121],limiter_typ:84,limitertyp:84,linalgexcept:84,line:[1,3,12,21,24,29,32,33,37,41,44,45,50,54,64,65,67,68,69,80,84,86,90,91,94,98,103,104,106,115],linear:[4,48,54,60,64,70,86,100],liner:[0,84],linewidth:54,link:[4,8,10,13,14,16,17,21,23,33,36,39,45,47,64,66,84,92,101,108,117],linspac:[44,63,90],linu:[36,66],linux:[10,36,39,46,64,66,89,92,96],lisandro:[58,84],list:[1,3,4,6,7,8,10,19,24,26,27,28,32,39,40,42,44,49,54,56,58,59,60,63,64,68,69,70,75,79,81,82,83,84,85,86,88,89,91,94,95,99,104,105,106,107,108],liter:84,literalinclud:38,literatur:34,littl:[34,36,64,66,101],live:88,llapack:89,lmm:86,lnetcdf:45,lnetcdff:45,load:[10,69,81,85,91,92,119],local:[10,13,17,21,23,44,64,67,70,75,77,82,88,118],local_path:91,locat:[5,10,21,33,44,50,75,79,81,83,85,91,94,99,101],log:[21,23,36,64,65,66,67,68,75,85,86,94],logger:88,logic:[5,12,13,84],longer:[17,21,23,67,94],longest:94,longitud:[21,33,48,94,107],look:[10,19,44,45,54,56,61,64,65,67,69,75,80,84,85,86,90,91,92,94,96,104,105,107,116],loop:[27,32,44,53,91,95,103,104,118],loss:[40,58],lost:64,lot:[39,69],love:71,low:[61,117],lower:[3,19,50,75,80,84,94,104,106,108,115,117],lower_glob:75,lowerg:80,luckili:64,luna:[13,58,77],lying:5,m_w:121,mac:[39,49,89,92,96],machin:[10,21,36,39,49,51,66,68,69,92],made:[4,19,23,64,65,67,68,85,88,94,98,107,118],magic:[36,66],magnitud:94,mai:[0,1,2,3,4,5,10,16,17,19,20,22,23,24,26,28,33,34,35,38,39,40,41,42,44,45,48,49,53,54,56,58,61,62,64,65,68,69,71,75,77,79,82,84,85,86,89,91,92,94,95,96,99,101,103,104,105,106,107,115,116,118],mail:[64,68,82,89],main:[8,16,23,44,51,61,63,64,67,69,78,82,84,90,91],mainli:80,maintain:[64,69,72,77,84,105,115,118],mainten:[58,84],major:[4,19,58,61,97,98],make:[1,8,10,16,17,19,21,22,23,26,28,29,32,33,34,36,37,38,39,41,42,44,49,51,56,60,61,63,65,66,67,69,72,74,75,76,77,82,84,85,91,96,98,104,113,115,117,118],make_colormap:54,make_lib:10,makefil:[5,8,11,12,16,17,20,21,23,26,29,45,49,51,54,56,61,76,95,98,102,104,106,107,108,109,111,112,116,118],maketopo:115,man:[13,21,33,34,64,107,111,112],manag:[10,36,66,79,94],mandli:[4,13,58,70,77,83,84],mani:[1,3,4,5,9,10,14,17,18,19,23,26,27,29,33,36,41,48,49,50,54,56,58,60,66,69,71,77,82,84,85,90,91,92,94,95,97,98,100,103,104,105,113,115,118],manifold:44,manner:[32,53,104,111,112],manning_break:107,manning_coeffici:107,manual:[23,39,61,64,67,69,72,87,89],manuel:[13,58,77],map2d_to_1d:22,map:[3,12,44,54,58,61,75,77,82,95,121],map_2d_to_1d:3,mapc2p:[3,21,22,44,61,75],mappedgrid:[3,44],march:[94,98],margin:33,mark:[12,96],mark_cent:75,mark_nod:75,markup:8,marsha:[4,5],mask:[35,64],maskedconst:64,mass:[5,79],massiv:77,master:[10,23,38,65,67,68,72,82],match:[71,78,85,96],materi:[4,40,48,58],math:[13,90],mathemat:[4,92],mathwork:44,matlab:[6,19,21,26,52,53,54,81,92],matlab_plot:6,matlabpath:44,matplotlib:[0,2,3,10,35,39,53,54,59,92,103,116],matric:[100,121],matrix:[83,84],matteo:[4,13,58,77],matthew:[13,58,65,77,84],maux:[19,100,118],max1d:49,max:[0,44,83,94,95,106,108,121],max_level_deep:107,max_step:86,maxima:[24,49,107],maximum:[3,19,21,24,25,27,44,86,90,95,98,104,105,106,108],maxlevel:[27,44,94,95,105,106,107],maxm:100,maxmi:[17,61],maxmx:[17,61,84,100],maxmz:17,maxwell_1d_homogen:82,mayb:64,mbc:[100,118],mc_limit:70,mcs:80,mean:[3,10,19,32,34,44,64,68,69,80,94,95,100,101,104,106,108,117],mean_latitud:35,meant:[75,86],meantim:64,measur:[32,48],mechan:88,media:[13,47],medial:84,medium:[106,118],meld:64,member:[82,85,90],memori:[17,19,49,50,51,60,63,84,88,105,106],mention:[104,105],menu:[10,64,101,117],meqn:[32,50,100,118],merchant:[40,58],mercuri:80,merg:[5,10,23,36,65,66,67,68,72],mesh:[4,6,13,44,51,53,60,73,95,103,104,114,118],meshgrid:[60,82],messag:[28,38,44,49,63,64,68,69,75,81,84,85,86,88,89,104,106,108,116],messi:64,met:[40,58],metadata:[50,84,94],meter:[101,107,117],method:[4,13,14,30,32,54,56,60,63,65,68,69,70,75,80,84,85,86,91,95,100,103,104,105,106,108,114,115,118],method_data:84,mgd2000:94,mgd77:94,mhhw:101,mhw:[34,101,117],micro:10,mid:54,middl:83,midpoint:75,might:[10,12,19,23,26,27,38,39,44,46,49,54,60,65,72,79,83,92,94,95,98,100,104,105,115,117,118],migrat:16,min:[0,83,121],min_level_check:24,mind:84,minim:[5,84,105],minimum:[3,24,48,90,107],minlevel:[27,94,95,105,106,107],minmod:[70,75,86,104,106,108],minmod_limit:70,minor:[8,98],minut:[38,65,94,101,117],mirror:72,mis:54,misc:[4,77],miscellan:83,miss:[19,84,115,116],mistak:64,mitig:34,mitran:[4,13],mjb:[5,13],mjberger:4,mllw:117,mode:[1,10,23,91,94],model:[12,13,21,24,29,33,42,68,79,101,107,115],modern:87,modif:[28,40,44,54,58,69,70,107],modifi:[5,11,12,17,19,21,22,26,32,33,41,44,46,48,54,61,64,70,75,82,93,94,95,102,104,106,107,108,111,112,115,118],modul:[0,21,23,35,39,48,49,53,54,55,56,60,61,69,70,71,78,82,83,84,85,88,99,104,105,107],module_nam:91,modulu:[83,90,106,118],molsolv:86,moment:22,momentum:[12,24,34,42,107,115],monitor:[19,21,25,49],monoton:[104,107],month:[13,77],more:[1,2,3,4,5,6,9,10,12,13,17,19,21,23,26,27,32,33,34,36,39,40,41,44,47,48,53,54,55,56,58,61,63,68,69,70,75,79,80,81,82,83,84,86,87,88,90,91,94,95,96,98,100,101,103,104,105,106,107,109,113,115,116,118,121],most:[3,17,19,22,26,27,28,34,37,38,39,41,44,49,51,53,54,56,58,64,65,69,75,80,84,86,89,90,94,95,96,101,103,104,105,107,110,118],mostli:[3,53],motion:115,move:[12,26,38,39,48,82,94,95,98,107,115],movetopo:98,mparsani:4,mpi:[51,80],mpich:80,mpiexec:80,mpirun:[69,80,87],msl:[101,117],msysgit:65,mthlim:[75,86],much:[10,24,29,39,50,51,53,64,69,92,94,98,104,107],muct:86,multi:[13,60,84,98,118],multicor:49,multidimension:[61,77],multipl:[5,10,20,23,53,60,69,75,79,84,91,98],multistep:86,must:[5,10,12,17,19,24,33,39,40,41,44,48,49,50,58,61,78,79,82,84,85,86,88,89,90,91,94,98,99,100,101,104,106,107,108,116,117,118,121],mwave:100,mx1d:118,mxnest:[19,94],mxnext:94,my_acoustics_rp:60,my_initial_solut:63,my_new_fil:64,my_rp_modul:60,my_setplot_fil:56,my_solv:63,myclaw:46,n00014:4,name:[0,1,2,3,6,8,10,17,19,23,24,26,28,32,40,41,44,45,54,56,58,61,63,64,65,67,68,71,72,75,78,79,83,85,90,91,94,99,100,103,104,105,106,107,108,113,118,119],namespac:61,nation:[4,34,115],natur:[24,121],naux:50,navig:[9,109],nbviewer:47,ncar:4,ncol:94,ndarrai:[70,75,83,88],ndarrari:75,ndim:[19,50,56,104,105],nearbi:101,nearest:32,nearli:[75,115],nearshor:34,necessari:[5,10,26,33,34,44,48,50,51,56,60,61,75,84,99,103,104,115,118],necessarili:[4,69],necessit:69,need:[0,4,5,10,11,12,16,17,19,22,23,24,26,28,32,34,35,38,39,41,44,45,48,49,50,51,56,60,61,63,64,65,67,68,69,70,74,77,78,80,82,84,86,90,92,94,95,99,100,102,104,105,106,107,108,111,112,115,117,118,121],neg:[19,24,94,115],negat:115,neglig:[40,49,58,107],neighbor:[4,95,105,106],neither:[40,58],nep:64,nest:[98,105,106],net:39,netcdf3:78,netcdf4:78,netcdf:[10,21,104,106,108,115],network:64,never:[23,82,88,93,95,104,106,108,116],new_featur:23,new_file_nam:64,new_frame_num:91,new_plotax:[0,2,32,54,103],new_plotfgur:54,new_plotfigur:[1,2,32,54,103],new_plotitem:[0,3,32,54,103],new_userdata:[106,108],newdir:46,newer:[23,49,70],newli:99,newton:83,next:[2,3,5,10,26,27,32,38,39,44,48,50,54,56,59,60,74,80,84,86,90,94,95,96,104,105,107],nfr:4,ngdc:[94,101,115,117],nghost:50,ngrid:50,nhtmp:34,nice:[36,47,61,65,66,68,69,82],nicer:[56,92,94],nih:4,nnnnn:[99,104],no_tran:75,noaa:[101,115,117],nodata_valu:[94,115],nodatav:115,nodatavalu:115,node:75,nodes_with_ghost:75,non:[12,47,51,61,65,82,84,90,104,106,108,121],nonconserv:121,none:[0,1,2,3,12,22,63,69,75,84,85,86,88,91,94,98,104,106,108,115],nonexist:[31,71,77],nonlinear:[4,13,34,70,84,104,121],nonoverlap:5,nonphys:32,nonuniform:44,nor:[40,58],norm:95,normal:[12,54,82,84,100,104,105,106,108],north:[48,94],northernmost:[94,115],norwegian:4,nose:[59,69,80,84],nosetest:[23,39,69,80,87,96,113],notat:100,note:[1,3,4,10,12,17,19,21,23,27,28,29,32,33,39,41,48,49,54,56,61,64,65,67,68,70,71,75,77,78,80,82,83,84,87,88,91,92,94,95,99,100,101,103,104,105,106,107,108,115,117,118],notebook:[21,31,62],noth:[11,88,102,111,112,118],notic:[40,58,64,69,90],nout:[94,108],nov:[13,77],now:[5,6,10,17,19,23,24,29,37,38,39,42,48,50,54,60,61,62,64,65,67,68,75,77,79,80,81,82,85,87,90,94,96,98,100,103,107,109,115,120],npacif:94,nprint:[105,106],npt:24,nrow:94,nsf:4,nstepout:63,nthmp:34,ntime:106,ntot:108,num_aux:[61,80,82,83,88,100,104,105,106,108,118],num_cel:[7,19,75,100,104,105,106,108],num_cells_glob:75,num_dim:[19,75,82,104,105,106,108],num_entri:91,num_eqn:[50,60,61,70,80,82,83,84,85,88,90,100,104,106,108,118],num_ghost:[61,75,82,83,84,86,88,104,106,108],num_output_tim:[60,63,99,104,106,108],num_wav:[70,83,84,100,104,106,108],number:[1,2,3,4,5,7,12,13,16,19,22,24,26,32,39,41,44,49,50,51,56,60,61,63,69,70,71,75,77,78,79,80,82,84,85,86,88,90,91,94,95,98,99,100,104,105,106,107,108,113,118],numer:[4,13,77,84,92],numerica:13,numpi:[3,10,39,59,60,61,62,63,69,75,82,84,88,89,90,92,106,116],nyu:4,obj:64,object:[0,1,2,3,19,21,22,32,54,56,60,61,63,64,65,78,79,80,82,84,85,88,89,90,91,92,94,98,99,104,105,106,108],obliqu:12,obscur:19,observ:[24,34,98,101,104,107,115,117],observatori:4,obtain:[5,9,20,32,33,34,39,78,80,84,94,95,100,107,109,115,121],obviou:84,occasion:69,occur:[48,84,115],ocean:[12,34,94,107,111,112,115,117],off:[10,34,44,56,63,67,94,105],offer:[28,69],offici:39,offset:35,offshor:42,oft:83,often:[5,8,10,12,17,22,24,26,28,29,32,33,34,35,37,42,48,50,64,92,94,96,99,100,101,103,104,107,115,117,118,121],okada2:48,okada:[21,33,115,117],okai:69,olav:4,old:[1,17,19,56,63,80,81,82,86,96],older:[19,39,86,107],olig:[5,13],omega:60,omit:107,omp_num_thread:[29,49],omp_stacks:49,on_lower_boundari:75,on_upper_boundari:75,onc:[1,10,19,23,26,44,56,60,68,79,80,81,82,88,91],ondrej:58,one:[0,1,2,3,4,5,7,10,11,12,17,19,22,23,24,26,32,33,42,44,45,46,48,50,51,53,54,60,64,68,69,75,79,80,82,84,85,86,87,90,91,94,95,96,99,102,103,104,105,106,107,108,111,112,115,118,119],onelin:[64,67],ones:[60,61,88,104,105],onli:[1,3,5,7,10,12,16,19,21,22,23,24,34,42,44,48,49,50,51,54,60,63,64,67,68,69,75,79,80,82,84,85,86,87,88,90,91,94,95,98,99,100,101,103,104,105,106,107,108,115,116,118,121],onlin:[72,92,110],onr:4,onshor:42,onto:[23,64],open:[10,39,53,58,62,64,69,75,84,91,92,119],opendiff:96,openli:20,openmp:[19,21,29,51,91],opensourc:[40,58],oper:[35,39,69],opinion:4,oppos:[23,84],opposit:[5,12],optim:[29,58,91],option:[1,2,6,10,12,17,19,21,26,28,33,37,39,41,44,45,54,55,60,61,63,64,67,68,69,71,75,76,77,78,81,84,85,86,87,90,91,92,93,95,103,104,106,108,109],order:[5,10,12,13,24,34,39,44,50,51,54,56,58,60,63,70,72,75,77,78,79,81,82,86,90,91,100,103,104,105,106,108,114,115,118,121],ordinari:100,ordinarili:89,org:[4,13,40,58,61,62,75,80],organ:[19,20,26,63,64,84],orient:[48,61,92,94],origin:[3,5,10,12,17,23,38,48,49,50,61,64,65,68,84,86,91,98,99,105,106,108],oscil:[32,121],osher:86,osx:[39,65,92],other:[3,4,5,10,12,13,17,19,21,22,24,26,30,32,33,34,36,38,39,40,41,42,44,45,48,49,50,56,58,60,61,63,66,67,69,72,75,77,79,81,82,83,84,87,90,95,98,101,103,104,107,109,115,117,118,119],otherwis:[40,58,79,83,85,86,87,88,91,104],ought:86,ouput:63,our:[60,64,67,68,94],out:[3,12,26,37,38,40,41,44,48,54,58,60,61,63,68,78,79,80,81,85,90,92,94,100,106,108],out_tim:63,outaux:22,outdat:69,outdir:[1,3,21,26,32,37,41,56,63,71,75,106,108,116],outdir_p:63,outer:65,outflow:[12,104,106,108],outgo:12,outlin:[44,56,94,103],outn:22,output:[1,7,10,12,21,22,26,28,29,32,33,35,37,39,53,54,56,61,63,64,65,69,70,71,75,76,77,80,81,83,84,85,86,87,88,90,91,94,98,100,103,106,108,118,119],output_aux_compon:[104,106,108],output_aux_onlyonc:[104,106,108],output_file_prefix:63,output_filenam:61,output_format:[63,104,106,108],output_opt:63,output_q_compon:[104,106,108],output_step_interv:[104,106,108],output_styl:[50,60,63,99,104,106,108],output_t0:[99,104,106,108],output_tim:[99,104,106],outputdir:44,outputfil:115,outsid:[5,12,115],outstyl:94,over:[1,3,5,10,12,13,19,23,24,27,32,33,34,44,48,53,79,86,94,95,98,103,106,107,115,118,121],overal:60,overflow:29,overhead:[5,49,95],overlap:[27,95,98,115],overli:84,overrid:[29,60,61,91],overridden:[44,86,88],overrul:3,overview:[97,114],overwrit:[1,63,85],overwritten:[99,118],own:[12,17,21,23,32,36,46,60,61,64,66,67,69,76,77,84,87,88,92,109],p_center:[75,90],p_function:79,p_l:83,p_node:75,p_r:83,p_t:90,p_x:90,pacif:94,packag:[4,20,21,23,26,51,53,58,60,69,75,77,81,82,84,85,87,90,92,119],page:[1,8,9,10,13,19,23,34,38,47,64,65,67,68,71,72,77,80,81,84,89,92,94,96,101,103,109,117,118],pair:[10,24,96],paper:[4,5,12,33,70,77,84],parabl:[36,66],paragraph:48,parallel:[4,19,20,21,49,59,69,71,76,77,79,82,84,85,87,91],paramet:[1,5,6,12,14,17,21,22,26,27,28,33,34,41,42,44,47,48,49,50,59,60,63,70,81,83,84,85,88,91,93,95,98,99,100,101,106,108,115,116,118],paramt:24,parent:[3,22,75,88,91],pars:[32,91],parsani:[4,13,58,77],part:[4,19,23,33,34,45,58,61,69,80,84,87,88,90,92,94,107,118],partial:[13,51],particular:[5,9,17,19,24,33,34,40,44,54,55,58,60,64,69,83,85,86,88,90,92,94,103,107,121],particularli:[12,22,37,48,50],partit:80,pass:[12,16,17,49,54,60,63,69,71,76,82,84,88,89,91,106,118],past:[15,18,85,101],patch:[3,5,6,12,19,22,24,44,48,49,50,53,54,67,72,80,85,88,103,105,107,118],patch_index:75,patchedges_show:[3,19],patchno:[3,22],path:[1,10,21,23,36,39,41,46,54,63,78,80,85,91,116],pathtool:44,pattern:[17,33,71,101],paus:68,pcolor:[3,21,32,92,94],pcolor_cmap:3,pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pdb:54,pde:[13,51,77,90,104,118],pdf:[1,94],pdflatex:1,peanoclaw:58,pedant:29,pem:10,pend:3,peopl:[4,10,58,67,92],pep8:69,pep:84,per:[10,44,49,84,105],perez:[36,66],perfect:12,perfectli:12,perfom:96,perform:[5,19,22,34,39,49,51,53,54,63,69,75,82,86,91,96,107,113],perhap:[5,32,54,64,84,88,91,94],period:[5,12,24,47,60,82,84,95,104,106,108],perman:44,permiss:[40,58],permit:[40,58],permut:17,person:65,perturb:[93,107,115],petclaw:[21,58,69,80,81,82,84,85,91],peter:4,petsc4pi:[69,80,87,88],petsc:[19,20,21,51,58,60,76,87,88,89,91],petsc_arch:80,petsc_dir:80,petsc_hello_world:80,phase:[80,84],philim:61,phoni:54,php:[40,58,94],phrase:[84,92],phy:13,physic:[12,32,61,75,77,90,95,121],pick:[60,64,86],pictur:84,piec:[12,34,72,75],piecewis:[100,115],pink:[54,103],pinkfig:54,pip:[23,39,62,77,80,87,89],pkg:108,place:[12,17,26,46,69,80,82,87,98,118],placehold:65,plai:47,plain:35,plan:[23,34,39,42,69,86],planar:48,plane:[48,94,117],platform:[10,47,63,65,80,92,96],pleas:[4,15,39,47,58,60,63,68,69,71,77,78,80,82,85,86,87,89],plot:[0,1,2,4,6,7,9,14,22,26,28,29,39,47,50,59,60,63,75,76,77,84,85,87,89,90,92,94,113,114],plot_gauge_loc:32,plot_topo_fil:55,plot_typ:[0,19,32,54,56,103],plot_var2:3,plot_var:[3,22,32,54,55],plotax:[3,32,54,103],plotclaw1:44,plotclaw2:44,plotclaw3:44,plotclaw:[21,32,54,56,103],plotdata:[22,32,45,54,56,63,103],plotdir:[1,56,103],plotexampl:54,plotfigur:[32,54,103],plotfram:1,plotgaug:32,plotitem:[3,22,32,54,103],plotloop:[54,56],plotstyl:[3,32,54,103],plotter:[1,3,22,32,56],plotting_makeplot:26,plottyp:44,plu:[54,98,106,108],png:[1,10,26,28,44],point:[3,5,10,11,12,13,17,24,26,27,29,32,33,34,38,39,44,45,48,60,64,67,79,80,85,91,94,95,99,101,102,104,105,106,107,111,112,115,116,118],pointer:[4,12,48,53,56,68,86,91,94],pointwis:88,poisson:48,polici:84,polygon:3,poor:69,popup:10,port:[10,76,77,82,105],portion:[5,61],posit:[48,51,91,94,115],possibl:[5,10,19,24,27,32,34,36,40,48,54,58,60,64,66,69,75,80,81,86,91,94,95,101,104,105,115,118],post:[21,36,65,66,69,80,109],poster:64,posteriori:86,postprocess:[50,79],potenti:[23,44,84,101],power:[53,92],pprint:[105,106],practic:[65,69,94],pre:[3,10,64,92],preced:[23,54],preceed:[50,118],precis:[29,61,75,100],predefin:54,predict:94,prefer:[39,64,80,82,92],prefix:[63,78,85],preliminari:[64,94,117],prepar:[69,84],prepend:[23,63],prerequisit:21,prescrib:84,present:[5,75,83,85,86,91,118,121],preserv:[32,51,86,99],press:[13,80,87],pressur:[32,44,56,79,83,90],presum:101,pretti:[10,65],prevent:65,previou:[1,21,23,32,39,44,56,60,64,86,98,104,106,108],previous:[5,19,56,84],price:10,primari:[19,33,69],prime:69,principl:118,print:[1,3,21,44,54,75,80,81,84,88,90,94,98,104,106,108,116],print_figno:1,print_fnam:94,print_format:1,print_frameno:1,print_git_statu:37,printenv:116,printfig:1,printfram:[1,21],prior:[40,58,106,108,118],pro:[36,66],probabl:[10,23,42,68,94],probdata:[106,108],problem:[4,6,12,13,14,17,21,22,23,26,30,33,36,44,48,51,54,59,60,64,69,71,76,77,80,83,84,86,89,94,96,98,100,104,106,107,108,115],problem_data:[60,83,85,88,90],proce:[5,23],procedur:[5,12,84,118],proceed:38,process:[21,26,60,69,71,75,80,87,88,91,94],processor:88,procur:[40,58],produc:[1,3,19,21,22,26,28,32,39,44,47,49,52,53,96,103,107],product:[40,58,91],profession:84,professorship:4,profit:[40,58],program:[4,33,34,51,84,92],programm:84,programmat:58,progress:[64,68,69,86,115],prohibit:19,proj:106,project:[34,36,58,62,64,66,68,84,105,115],promot:[40,58,84],prompt:[44,54,56,71,90,92,94],propag:[4,5,13,34,75,77,84,86,94,100],proper:[5,11,42,44,78,91,98,102,105,106,111,112,118],properli:[17,24,26,28,34,39,46,63,84,92,96,98,104,107,116,118],properti:[44,60,63,75,85,88],propos:[23,65,84,121],protocol:64,provid:[0,2,4,6,12,17,21,22,33,34,40,48,50,53,58,61,63,65,69,70,79,80,82,84,85,86,90,91,92,94,96,100,104,112,115,118],pseudo:44,psi:[82,118,121],psystem:71,pth:23,pts:[105,106],publicli:109,publish:[13,77],pull:[36,38,47,64,65,66,67,68,69,82,96],pure:[21,39,56,69,75,77,80,86,92],purpos:[24,33,34,40,44,50,58,64,75,92,94,96],push:[23,36,38,64,66,68],put:[1,8,12,23,39,44,46,60,71,82,84],pwd:94,pyclaw:[1,3,4,9,13,15,20,22,23,26,31,32,47,48,50,51,56,64,67,69,72,73,76,79,80,82,89,92,114],pyflak:72,pylab:[0,54],pylint:72,python:[3,4,6,7,8,10,13,14,16,19,20,22,23,26,28,32,33,37,39,48,50,51,53,54,55,58,59,61,69,71,74,75,77,80,81,82,83,84,86,89,90,91,94,96,114,116,119],python_io:50,pythonpath:[23,39],pyweno:[21,58,86],q0000:[44,104],q0001:[44,45],q000n:[1,7],q0_vs_radiu:3,q1d:118,q_hat:83,q_hat_l:83,q_hat_r:83,q_i:[100,121],q_l:83,q_r:[83,100],q_t:[82,83,86,90,118,121],q_x:[83,90,121],qbc:[82,88],qcor:61,qinit:[17,19,21,61,84,101,118],qinitdata:107,qinitfil:107,qquad:121,qtrue:54,quantiti:[11,24,44,63,76,77,83,88,102,107],queri:[61,75,91],question:[23,85],quezada:[13,58,77],quick:[10,21,33,39,47,72,84,92,96,113],quicker:[10,64],quickest:68,quickli:[62,84,113],quit:[44,54,56,64,94],quot:84,radial:[3,118],radiu:[3,107],rais:[39,84,85,87,91],rake:[48,94],randal:[4,40,77],randi:[70,75],rang:[3,10,32,98],rare:[48,84],raster:94,rate:10,rather:[5,17,19,23,42,46,67,68,75,80,82,84,86,93,94,100,103,104,105,118,121],ratio:[5,11,19,35,44,48,70,83,86,94,102,104,105,106],raw:[21,104],reach:[67,94],reachabl:85,reaction:82,read:[1,4,11,23,26,34,35,36,44,50,53,61,63,64,66,67,68,84,85,91,93,102,106,107,108,111,112,115,118,119],read_:[78,85],read_aux:85,read_data_lin:91,readabl:[64,84],reader:119,readi:[36,60,61,63,64,66,87],readm:[21,39,64,94,118],real:[34,42,64,84,91,94,117],realiti:34,realli:[5,69,84,118],reason:[34,48,49,51,64,80,82,84,94,95,104],rebas:[23,67],recal:[1,9,94],receiv:69,recent:[10,19,21,22,37,38,39,41,42,49,54,56,65,69,115],recogn:[33,115],recommend:[4,24,26,49,53,75,80,81,84,86,87,89,90,104,106,107,108,119],recompil:[23,28,29,41,49,91,118],recomput:[56,60],reconstruct:[21,77,86],record:[24,32,88,94,117],recov:23,recoveri:64,recreat:[23,28,41],rectangl:[5,95],rectangular:[5,6,12,13,24,33,48,75,94,95,105,107,115],recurs:[46,98],red:[2,3,30,32,54,69,96,103],redhat:92,redirect:39,redistribut:[40,58],redraw:[44,56],reduc:[5,12,64,84,121],ref:[64,84],refactor:[64,84,98],refer:[17,21,26,31,33,44,60,64,68,70,71,75,83,84,86,88,94,99,115,117,118],referenc:101,refin:[3,4,6,7,13,19,34,44,50,51,60,73,94,103,104,105,106,114,115,118],refinement_data:107,refinement_ratios_i:[7,105,106],refinement_ratios_t:[105,106,107],refinement_ratios_x:[105,106],reflect:[4,12,23,104,106,108],reflog:64,refresh:[10,32,68],regard:4,regardless:[10,95,104,107],regener:41,region:[3,5,10,12,19,21,24,34,35,42,51,94,101,105,106,115],regiondata:[27,95,106],regist:39,regress:[19,21,23,37,72,80,113],regrid:[27,95,98,105,106],regrid_buffer_width:[95,105,106],regrid_interv:[95,105,106],regular:24,reiter:84,reject:[86,104],rejoin:67,rel:[10,17,28,33,34,48,49,54,64,65,69,91,101,105,107,109,115,117],relat:[3,19,51,64,67,83,101],releas:[19,21,39,48,57,87,94],relev:[19,22,29,33],reli:[51,61,81],relief:[94,101,117],reltol:91,remain:[64,82,91,98,111,112],rememb:[11,22,23,49,54,64,67,80,102,111,112],remind:[64,67],remot:[10,36,64,65,66,67,68],remov:[1,3,17,28,41,45,56,64,80,98,116],renam:[17,19,26,68,82,86],render:[19,119],reorder:[17,19],reorgan:[19,61,97],repeat:[56,68,99],repeatedli:[3,80,87],replac:[5,10,32,34,53,61,65,69,71,80,81,82,83,84,88,91,98],replai:64,replot:56,repo:[64,67,68],report:[24,37,39,84,96,104,106,113],repositori:[14,19,21,23,24,33,37,38,41,47,67,69,72,74,86,96,110,113],repres:[27,60,64,75,82,83,86,88,95,121],represent:[64,67,75,85,91],reprint:58,reproduc:[13,40,58],request:[38,47,50,60,64,65,67,68,69,75,82,85,94,96],requir:[3,4,12,17,19,21,22,26,28,34,39,44,48,51,53,56,60,61,68,69,75,78,81,82,86,87,88,90,91,94,95,98,103,104,105,106,107,108,115,116,119,121],rerun:[29,32],research:[4,13,33,34,58,86,94],reserv:[40,58],reset:[29,64,91],reset_count:91,resetplot:[54,56],resid:[39,41,75],resolut:[4,5,13,32,75,86,90,91,94,98,100,101,107,115,117,118],resolv:[4,24,64,94],resourc:[13,23,33,65,72,77,114],resp:17,respect:[77,78,83],respons:[10,34,60,85],rest:[19,56,64,67,84,101,111,112,115],restart:[10,21,32,56,77,104,106,108],restart_fil:[99,104,106,108],restor:5,restrict:[84,107,115],restructur:[8,38],result:[1,3,4,6,9,13,21,24,25,26,32,34,39,41,42,44,47,48,53,54,55,56,59,63,71,77,83,84,87,91,94,95,96,98,104,105,106,107,108,113,117],retain:[40,58],retak:[104,106,108],retreiv:94,retriev:[10,56,61,86,94,117],reus:84,reutil:61,reveal:[32,90],review:[13,70,72],revis:[5,64],reword:64,rgb:54,rho:[44,83,90,106],rho_l:83,rho_r:83,rhou:44,rhov:44,richardson:[19,27,105,106],rid:23,riemann:[4,7,17,19,20,21,23,33,39,47,51,58,60,75,76,84,86,87,88,90,104,106,108,111,112,121],riemann_solv:86,right:[40,42,47,48,58,64,65,67,75,80,82,83,84,88,90,100,121],rigoutsi:5,rigoutso:13,rise:101,rjl:[5,13,92],rjlevequ:[4,23],rjlkei:10,robust:33,rock:48,roe:[70,83,84],root:[78,85],rossbi:71,rossmanith:13,rotat:35,rough:42,roughli:[24,94],roundoff:75,routin:[4,5,12,17,21,22,26,27,32,33,41,44,45,48,49,50,51,53,56,58,61,63,75,78,81,82,84,86,88,89,92,95,98,100,104,106,108,116,118,119,121],row:[70,95,115],rp1:[100,121],rp_:83,rp_sourc:82,rprint:[105,106],rsphere:61,rst:[21,38,74],rsync_clawpack:38,rule:[10,36,61,66,84],run1:41,run:[1,5,6,9,10,12,14,17,19,21,23,27,28,32,37,41,42,44,45,47,50,51,53,54,56,59,61,63,65,72,74,75,76,77,79,82,87,89,90,91,94,95,96,98,99,100,106,107,108,113,118],run_app_from_main:91,run_data:63,run_seri:91,runclaw:[37,100],rundata:[19,27,32,95,98,99,104,105,106,107,108],rundir:63,rung:[77,86],runmak:63,runnabl:91,runtest:80,runtim:[47,91],runup:42,s_1:83,s_2:83,s_3:83,s_l:83,s_m:83,s_r:83,safe:[49,68],safer:41,safeti:70,sage:[21,84],sagemath:[39,62],sagemathcloud:62,sai:[10,12,23,64,67,89,95,99],same:[3,5,10,12,19,23,24,32,33,34,36,42,45,51,53,54,55,56,60,64,66,70,75,77,79,82,83,84,86,91,92,94,98,99,100,104,105,106,107,111,115,118],sampl:[13,21,29,33,96,99,104,105,118],satisfact:68,satisfi:[69,86,95,121],save:[10,21,37,39,50,63,64,65,86,94,99],savecod:63,scalabl:[13,77,84],scalar:[22,79,88,104,121],scale:[4,35,44,51,77,94,98,107],scari:67,scatter:[3,19,44],scenario:[34,101],scheme:[70,83],schlieren:[3,44],sci:13,scienc:[13,58],scientif:[4,13,77,80,92],scipi:[10,61,92],scm:65,scp:10,scratch:90,screen:[10,23,63,80,84,106,108],screenshot:10,script:[8,16,17,28,32,41,44,51,53,58,61,71,76,77,80,84,86,91,92,94,96,103,107,108],scroll:[10,94],sea:[33,34,48,93,94,101,107,115,117],sea_level:[24,34,83,107,115],seab:42,seafloor:[34,48,117],sealevel:[21,33,107],search:[1,10,21,77,84,91],second:[3,12,27,39,44,60,67,75,86,94,95,98,99,104,118,121],section:[5,10,12,26,29,33,34,44,53,56,64,65,67,84,94,99,104,107],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,38,39,40,41,42,44,45,46,48,49,50,52,53,54,55,56,57,58,61,63,64,65,68,69,71,75,77,78,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,115,116,117,118,119,120,121],seek_gzip_factori:64,seem:[88,103,115],seen:[9,19,24,26,34,49,82,104,109],segment:94,select:[10,12,23,24,64,86,94,98,104,107,117],self:[84,86],semi:86,send:[10,47,68,82],sens:[22,121],sensibl:[64,67],sensit:[34,42],sent:88,separ:[1,64,68,77,84,86],seper:91,sequenc:[17,19,69,80,84,87,90,91,94,98,100,118],seri:[36,66],serial:[80,85,91],server:10,servic:[21,39,40,58,64],session:[1,26,77,81,87],set:[0,1,2,3,5,7,10,11,12,14,19,21,22,24,26,27,28,29,32,34,35,37,41,46,47,48,49,50,51,52,53,60,61,63,64,65,67,69,71,75,76,77,79,80,83,84,85,86,87,88,89,90,91,93,95,96,98,99,100,102,103,104,105,106,107,108,109,115,116,117,118,121],set_all_st:85,set_aspect:35,set_aux_from_auxbc:88,set_count:91,set_cparam:[60,88],set_num_ghost:88,set_printopt:75,set_q_from_qbc:88,setaux:[17,19,21,61,84,98,100,104,106,108],setaux_default:38,setdtopo:94,setenv:80,setgaug:[32,94],setplot1:44,setplot2:44,setplot3:44,setplot:[0,1,2,3,6,14,16,17,19,21,32,45,52,81,82,91,116,119],setprob:[106,108,118],setregion:94,setrun:[5,6,12,14,16,17,21,24,26,27,28,33,34,41,42,50,51,54,93,95,98,99,100,101,115,116,118],setrun_setgeo:107,settopo:94,setup:[23,39,60,61,71,77,80,82,84,86,87,88],setup_gauge_fil:75,sever:[0,1,2,12,17,19,20,26,28,30,32,33,34,39,44,53,68,69,84,87,94,95,97,98,103,107,113,115,118],sftp:10,shall:[40,58],shallow:[11,12,24,33,34,47,51,61,71,77,84,93,94,100,102,107,111,112,115,118],shallow_1d_pi:83,shallow_exact_1d:83,shallow_fwave_1d:83,shallow_hll_1d:83,shallow_roe_1d:83,shallow_spher:[61,69],shallowest:48,shape:[61,75,80,88],shapshot:10,share:[21,49,51,75,80],sharpclaw:[20,51,58,71,73,76,77,82,98,114],sharpclawnd:86,sharpclawsolv:86,sharpclawsolver1d:86,sharpclawsolver2d:86,sharpen:70,sheet:[36,66],shell:[39,49,54,56,62,80,87,90,92],shg:44,shift:34,shock:[5,13,34,71,86,95],shock_bubble_interact:[26,71,77,87],shockbubbl:82,shoot:21,shore:[33,94,107],shorten:65,shorter:[3,95],shortli:96,shot:10,should:[0,1,2,3,4,5,9,10,12,16,17,19,21,22,23,24,26,27,28,29,32,33,34,38,39,42,44,45,46,47,48,49,53,54,56,61,62,64,65,67,68,69,74,75,78,80,82,83,84,85,86,87,88,89,90,91,93,94,95,98,99,100,101,103,104,105,106,107,108,115,116,118,120,121],shouldn:71,show:[0,2,3,26,32,38,41,44,56,64,67,68,69,75,90,94,96,116,118],showcolor:54,showgridlin:44,showitem:1,shown:[3,10,42,44,51,118],showpatchbord:44,shu:86,siam:[13,77],side:[5,12,42,48,84,96,100,121],sigma:60,sign:[10,54],signal:[64,68],signatur:[3,61,70,75,78,83,84,86],signific:[15,42,101],signitur:85,silo:119,similar:[10,12,32,39,60,61,68,69,82,84,86,90,94,115],similarli:[28,71,80,82],simpl:[26,61,68,69,77,82,83,86,91,94],simplest:[46,65,68,90],simpli:[10,23,26,32,41,60,63,69,71,79,80,84,87,94,109,115,118,119],simplifi:[53,54,69,94,99,118],simul:[26,33,34,44,63,75,77,80,82,87,90,94,107],sin:54,sinc:[0,3,4,5,12,17,19,24,29,34,38,41,48,49,50,53,54,60,61,64,68,69,92,94,95,96,98,100,101,104,105,107,115,116,117],singl:[0,1,2,3,5,12,16,19,20,22,23,24,32,33,41,44,49,50,60,69,75,79,84,85,91,94,104,105,106,107,115,117,118],sisc:[13,77],sit:10,site:[23,39,47],situat:[44,64],size:[17,21,49,50,75,80,86,94,106,108,115],sketchi:65,skinni:0,slice:[3,44],slide:92,slightli:12,slip:[21,33,94,115,117],slip_angl:94,slope:86,slow:[10,79,89],slowli:115,small:[12,42,69,94,95,96,98,99,104,106,107,115,117],smaller:[10,42,51,75,98,104,106,107,108],smallest:95,smooth:[86,95,118],snapshot:23,snippet:[36,66],softwar:[5,10,21,34,39,40,45,58,69,77,84,92,109,115],sol:60,solid:[3,12,48,82,103,104,106,108],solitari:[13,47],sollut:48,solut:[1,3,4,12,19,21,22,32,39,44,47,48,50,56,61,63,69,75,77,78,79,82,83,84,86,88,89,90,94,95,99,100,103,104,105,106,108,113,118,121],solv:[4,7,12,17,26,34,59,61,63,73,75,77,82,83,84,87,94,100,104,115,118,121],solver:[4,5,17,19,20,21,23,33,39,58,59,63,73,75,76,79,84,88,104,106,108,111,112,121],solver_typ:[71,86],some:[3,4,5,6,9,12,13,14,16,17,18,19,20,21,22,23,24,26,29,32,33,34,35,36,38,39,47,48,49,50,53,55,56,58,61,62,65,66,67,68,69,70,72,79,81,82,85,87,88,89,90,92,94,95,98,100,101,103,104,105,106,107,108,109,113,115,118],someon:[23,64,67],someth:[10,21,22,41,46,64,65,68,69,84,85,86,94,115,116,118],sometim:[41,54,60,64,79,101,117],somewhat:[49,53,95,96,104],somewher:[45,68,94],sonel:117,sophist:[64,84],sorin:4,sort:[10,103],sound:[60,64,83,90],sourc:[20,21,33,38,40,42,47,53,58,61,68,69,71,75,76,84,86,87,89,90,91,92,101,104,106,107,108,110,111,112,115],source_list:91,source_split:[75,86,104,106,108,118],sourceforg:39,southernmost:94,space:[5,6,12,27,32,48,75,82,84,94,95,99,104,105,106,107,108,115,118],spacial:107,spatial:[5,13,21,27,42,82,94,95,98,100,106,108,121],spawn:69,special:[4,12,21,33,40,51,58,84,92,95],specif:[3,19,21,23,32,40,42,48,58,59,61,63,68,78,83,85,91,94,103,104,105,106,107,108],specifi:[0,1,2,3,4,5,6,11,12,14,17,19,21,22,24,25,27,28,29,32,33,34,37,41,42,44,48,49,50,51,52,53,55,60,63,69,75,82,84,85,86,89,91,93,98,99,100,101,102,106,108,109,111,112,115,116,117,119,121],speed:[60,70,83,84,90,100,104,107,118,121],spell:54,sphere:[21,61,107],spheric:13,sphinx:[8,20,21,74],split:[5,49,75,86,104,106,108,118,121],spot:54,sprint:[105,106],spuriou:[12,69],sqrt:[3,42,60,82,83,90,106],squash:64,src1:[112,118,121],src1d:[21,112],src2:[61,112,118],src3:[112,118],src:[5,8,11,12,16,17,21,24,28,29,37,41,44,48,49,55,69,81,82,91,93,94,95,96,100,102,104,106,108,111,116,121],src_split:[104,106,108],srcn:[104,118],ssh:[10,64,68],ssp104:86,ssp33:86,ssplmm32:86,ssplmm43:86,ssplmm:86,ssprk22:86,stabil:[86,104],stabl:75,stack:49,stage:[64,86,101,115],stand:[4,84],standard:[5,12,44,50,61,70,84,86,92,96,100,106,107,108,109,115,118,121],start:[1,2,4,5,6,10,22,24,26,28,33,39,41,46,48,54,56,60,64,68,69,80,85,86,92,99,107,114,115,118],start_fram:85,start_max:24,stat:65,state:[10,23,48,54,60,61,63,64,69,75,77,79,80,82,83,84,85,86,89,90,100,104,115,121],statement:[26,44,50,84,92,106],station:[101,117],stationari:115,statu:[10,36,37,63,64,65,66,68,90],steadi:[48,115],steep:121,stegoton:[47,71],stencil:88,stencil_width:88,step1:84,step2:61,step2qcor:61,step:[5,12,16,21,23,24,26,32,38,39,44,53,56,58,59,60,61,63,68,79,82,86,88,90,94,95,98,99,100,104,105,106,107,108,115,121],step_hyperbol:86,step_index:86,step_interv:106,step_sourc:[75,82,86],steps_max:[104,106,108],sternli:64,stiff:104,still:[1,6,7,10,12,19,24,32,33,39,44,48,50,53,58,64,84,95,96,99,107],stop:[21,49,54,64,98,106,108],store:[0,1,10,23,28,44,50,82,88,89,90,96,98,103,105,107,113,115],str:[0,1,3,104,105],straightforward:64,strang:[64,75,86,104,106,108,118],strategi:5,stream:54,stress:[60,79,84],strict:[40,58],stride:19,strike:[48,94],strike_direct:94,string:[0,1,3,6,54,61,63,70,75,78,84,85,91,92,104,107],strong:86,strongli:44,structur:[6,19,51,85,86,94,103],structured_array_extens:64,stuck:64,student:4,studi:[34,42,94],stuff:[64,67],style:[5,19,35,50,54,58,63,69],sub:69,subclass:84,subdirectori:[17,19,20,26,39,41,46,56,71,96,103,107,109,113],subduct:[34,48],subfault:[48,94,117],subject:[95,105,107],submit:[47,94],subpackag:84,subplot:[0,56],subrepositori:23,subroutin:[4,5,12,19,24,27,84,95,100,104,105,118,121],subsequ:[3,44],substanti:[58,64,69,72],substitut:[40,58],subsurfac:[94,115],subvers:66,subversion_:36,succeed:86,succesfulli:61,success:[44,85,118],successfulli:[39,41,64,85],succinctli:64,sudo:65,suffici:[10,12,17,49,84,94,98,107],suggest:[4,56,68,84,107],suit:69,suitabl:[7,12,17,33,34,85,94,100,101],sum:[79,88],sum_:121,sum_p:121,summar:[3,27,65,84,95,97,118],summari:[65,72,84,104,105,106,107],summit:65,superbe:[70,104,106,108],superbee_limit:70,superclass:86,supercomput:[77,80],superpack:92,superposit:48,superpow:70,superpower_limit:70,supplement:109,supplementari:69,suppli:[27,95,118,121],support:[4,10,19,21,34,39,58,60,61,69,75,78,79,81,83,94,104,115,119],suppos:[12,27,44,54,64,94,95],suppress:[0,2,3,69,104,105],sure:[1,17,23,28,38,44,51,60,64,65,69,80,82,85,89,91,101,116,117],surfac:[19,21,24,33,34,48,55,61,77,90,93,94,107,115],surface_or_depth:55,surround:95,surviv:58,svn:[36,66],swaphead:94,sweep:7,symbol:[3,39,44],symlink:39,symmetr:[3,118],symmetri:12,syntax:[8,84],sys:[63,106,108],system:[4,12,13,20,39,49,50,58,69,77,80,82,83,87,90,92,100,104,106,108,118,121],systemat:19,t0000:44,t0001:[44,45],t0002:44,t_end:86,t_n:100,tab:[10,84],tabl:[42,53,65],tackl:69,tag:[105,106],tailor:64,take:[5,19,22,23,38,42,44,47,54,60,64,68,69,75,82,86,90,91,94,95,104,105,106,118,121],take_one_step:86,taken:[5,24,48,86,94,95,104,118],tall:0,tan:54,tangl:64,tank:[12,34],tar:[10,20,39,94],tarfil:39,target:[54,61,82],task:[53,64],tchknnnnn:99,tcp:10,tcsh:80,teach:[33,34,94],team:[4,84],tear:64,technic:[36,66,84],techniqu:13,technolog:58,tell:[45,50,54,60,65,68,94],templat:61,temporari:88,temporarili:44,ten:[4,51],tend:86,tend_max:24,terhorst:65,term:[4,21,33,34,40,61,75,76,84,86,95,104,106,107,108,111,112],termin:[39,62,104,105],terrain:42,terrel:4,test:[19,21,26,29,37,42,53,58,59,61,64,65,68,72,76,83,91,94,95,108],test_acoust:69,test_app:[69,91],test_bugfix:65,test_my_bug:68,test_shallow_spher:69,tex:1,text:[8,38,50,63,64,65,67,84,86,92],tfinal:[60,63,90,94,99,104,106,108],tfluct:[84,86],tfluct_solv:86,tgz:94,than:[3,5,10,12,17,19,21,23,24,32,41,42,46,50,53,56,60,61,63,67,68,69,75,79,80,82,83,84,86,91,92,94,95,98,99,100,101,103,104,105,107,115,118,121],thank:[4,65,68,77],thei:[3,5,10,12,22,27,34,44,50,53,64,69,75,82,84,86,91,95,96,99,103,107,115,118],them:[10,19,23,27,38,44,45,47,51,58,60,64,68,69,71,78,79,80,82,91,94,95,110,118],theori:[40,58,84,121],therefor:[61,80],thereof:10,thesi:86,theta:70,theta_limit:70,thi:[0,1,2,3,5,7,8,9,10,12,13,16,17,19,21,22,23,24,25,26,27,28,29,32,33,34,37,39,40,41,42,44,45,48,49,50,53,54,56,58,60,61,63,64,65,67,68,69,70,71,75,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,98,99,100,101,103,104,105,106,107,108,109,110,115,116,117,118,119,120,121],thing:[0,10,12,19,23,34,36,56,66,68,69,71,72,92],think:[42,64,68,83,84],third:[12,70],thn:104,thoroughli:[78,84],those:[4,5,9,19,34,36,39,51,60,61,63,64,66,67,68,79,82,88,94,96,98,99,109,113,118],though:[3,51,84,115],thought:[64,101],thousand:[4,51],thread:[29,49],three:[3,10,13,19,34,44,64,69,73,80,85,91,94,104,107,115,118],threshold:42,through:[4,10,21,23,26,27,32,34,44,51,53,61,68,82,88,90,91,94,95],thu:[5,82,84],thumb:[36,66],ticklabel_format:35,tidal:[79,101],tide:[21,32,94,101],tier:10,tild:121,time:[0,1,5,6,12,14,17,19,21,22,24,25,26,27,28,32,33,34,39,44,45,49,50,51,54,58,60,63,64,68,70,77,79,84,86,88,90,94,95,96,98,99,100,103,106,108,115,116,117,121],time_files_scanf:119,time_integr:86,timestep:[63,79,104,106,108],tip:[21,23,33,36,66,72,76,82,92],tipe:90,titl:[0,1,4,13,21,32,64,77],title_with_t:[0,54],tmp:64,tmpp0jqt8z_:36,toctre:[31,71,77],todo:[12,94,95,99,100,121],togeth:[12,23,48,94,95],toggl:106,tohoku:94,toler:[69,83,91,95,105,106,107],too:[5,94,106,108],tool:[6,7,13,19,20,23,26,33,34,36,39,44,48,52,53,54,55,66,77,84,94,109,114,119],toolkit:[80,119],top:[0,1,3,8,20,39,46,47,48,54,64,67,69,82,83,84,96,99],topic:44,topo:[21,34,55,98,101,107,115],topo_data:107,topo_upd:98,topofil:[94,107],topographi:[12,13,21,24,34,42,48,55,98,101,111,112],topograpi:115,topoplotdata:94,topotool:[94,115],topotyp:[94,107,115],topotypein:115,topotypeout:115,torrilhon:70,tort:[40,58],torvald:[36,66],tos:[36,66],total:[5,24,79,86,104,105,106,108],total_step:[104,106,108],tout:108,toward:4,tprint:[105,106],trace:79,traceback:54,track:[21,23,39,49,60,65,67,69,91,96,98,107],tracker:69,tradeoff:95,tradit:[51,63,78],traffic:[100,118],tran:13,tranpsort:104,trans_cor:75,trans_inc:75,transect:[24,107],transfer:21,translat:[48,94,101,117],transliter:84,transmiss:86,transmit:104,transport:[104,106,108],transvers:[7,75,100,104,118,121],transverse_wav:[75,104,106,108],trap:29,travel:105,travi:19,tree:[39,68,82],trigger:107,tripl:84,troubl:[21,26],troubleshoot:[21,77],truli:85,truncat:12,trunk:[68,72],tstart:86,tstart_max:24,tsunami:[12,13,21,24,33,42,48,79,98,101,107,115],tt1:94,tupl:[3,54,75,79],turbul:[34,86],turn:[33,34,54,64,96],tutori:[10,21,56,59,63,72,77,87],tvd:[60,75,86,121],twice:104,two:[0,3,4,6,7,11,19,23,24,27,32,39,44,48,50,54,60,68,69,75,78,82,84,86,89,91,94,95,96,98,99,100,102,106,107,115,118,121],two_d_classic_sourc:61,txt:[37,39,58,94],type:[3,4,6,10,17,26,28,32,41,44,54,55,56,60,61,62,64,68,70,75,80,81,84,86,87,90,91,92,94,105,106,107,115,121],typic:[3,17,44,48,50,51,56,61,69,80,82,86,88,94,95,105,106,117,118,121],typo:64,u_l:83,u_r:83,u_t:[83,90],u_x:90,ubar:83,ubuntu:[10,65,92],ucar:45,ucsb3:94,ucsb:[94,117],ufunc:65,ulimit:49,ultrabe:70,unavail:22,uncertainti:[34,42,94],unchang:[25,44],uncommit:[23,37],uncompress:94,undefin:89,under:[4,6,19,24,33,39,40,53,58,73,75,84,96],underflow:98,underli:3,underlin:69,underscor:84,understand:[21,26,34,36,53,77,84,90,100],understood:34,underwat:[33,94],undivid:95,unidata:45,uniform:[48,51,61,115],uniformli:115,union:115,uniqu:[1,50,67],unit:[33,65,75],univers:[4,13,40,58,85],unix:[28,46,92,94],unknown:88,unkown:88,unless:[5,23,28,29,32,83,94,101,104],unlik:50,unlimit:49,unmap:75,unmodifi:68,unpack:94,unpredict:44,unrecogn:91,unsplit:[75,104,106,108],unsuccess:85,unsur:104,untar:[39,94],unterweg:58,until:[10,94],untrack:64,unus:2,unwant:64,upbnd:[105,106],updat:[5,10,19,21,23,24,35,48,56,65,69,72,86,88,89,98,100,105,106,108,110,118],update_saved_valu:86,upon:88,upper:[19,70,75,82,94,104,106,108,115],upper_bound_limit:70,upper_glob:75,uprint:[105,106],upstream:[36,64,65,66,67,68],upward:34,upwind:104,url:[4,13,64,68,77],usabl:84,usag:[0,1,2,3,10,39,48,78,84],usc0001xgp:94,use:[3,4,9,10,17,18,19,21,23,26,28,29,33,34,36,39,40,41,42,44,45,49,50,52,53,54,56,58,60,61,63,64,65,66,68,69,70,71,75,77,78,80,82,83,84,86,87,88,89,90,91,92,94,100,101,104,105,106,107,108,115,116,117,118,119,121],use_fwav:[100,104,106,108],use_petsc:[71,80],used:[0,1,2,3,4,5,6,7,8,10,12,14,17,19,20,23,24,26,28,29,32,33,34,36,37,40,41,42,44,45,46,47,48,49,50,51,53,54,56,58,60,61,63,65,66,68,70,71,75,77,80,82,83,84,85,86,88,90,91,93,94,95,96,99,100,101,103,104,105,106,107,108,111,115,116,118,119,121],useful:[0,3,16,22,23,24,26,29,32,33,35,37,39,49,50,55,58,61,64,65,69,79,84,92,94,95,96,100,104,105,107,115,121],useoffset:35,user:[0,2,3,4,5,9,10,16,17,19,20,21,22,23,27,29,34,36,42,44,54,61,62,64,65,66,68,69,71,80,84,89,91,92,95,104,106,107,108,110,121],user_bc_low:82,usernam:23,uservari:44,uservariablefil:44,uses:[26,44,51,61,63,65,69,75,80,91,96,100,121],usg:[4,94,117],usgs100227:94,using:[0,1,3,4,5,8,9,10,12,13,16,19,20,21,26,29,32,33,35,39,41,42,45,46,47,48,49,50,51,53,54,55,56,60,61,62,63,64,68,69,70,75,77,80,81,82,83,84,86,88,89,90,92,94,95,100,104,106,107,112,115,117,119,121],usr:45,usual:[0,2,3,5,32,33,41,45,48,50,64,71,75,80,82,83,86,91,94,95,104,105,106,107,108,116,118],util:[20,23,50,53,56,69,77,103],uwamath:10,valid:[3,34,48,63,85,88,107],valout:[45,50],valout_geo:45,valout_nc:45,valout_nc_geo:45,valu:[3,5,6,12,17,19,21,22,25,26,29,32,35,37,41,42,44,49,50,54,61,69,75,77,79,82,83,84,85,86,88,90,91,94,95,96,98,99,100,101,104,105,106,107,108,113,115,116,118,121],van:[70,86,104,106,108],van_leer_klein_sharpening_limit:70,vanleer:[60,86,104,106,108],vari:[3,11,13,21,33,42,82,85,94,100,101,102,115,121],variabl:[0,3,10,19,21,22,23,26,28,33,37,44,46,49,51,54,60,61,80,84,85,86,88,89,91,94,100,104,105,106,108,116,118],variable_dt_refinement_ratio:[105,107],variant:[17,69,91],varieti:[63,92],variou:[17,19,34,44,54,56,65,75,90,92,94,95,103,107],vastli:101,vct00:94,vector:[19,60,70,79,84,88,100],veloc:[12,24,44,56,82,83,90,101,104,105,106,108,118],verbos:[63,69,75,86,94,104,106,108],verbosity_regrid:[105,106],veri:[3,12,19,21,34,47,48,54,58,61,65,68,69,79,80,81,82,86,94,96,104,113],verifi:[69,91,117],verifyerror:91,version:[0,1,4,5,6,8,10,11,12,15,17,19,20,21,23,24,25,29,33,34,42,44,48,49,53,54,56,61,64,69,70,77,80,83,86,87,89,92,95,96,98,102,104,105,106,107,108,111,112,115,118,121],vertic:[34,101,107,117],via:[10,14,19,20,23,26,29,32,33,34,39,41,44,49,51,54,60,64,75,81,85,87,89,95,96,109,111,112,113,115,118],video:[36,66],view:[3,4,19,21,26,32,33,38,47,50,53,55,56,60,68,80,87,109,110],viewabl:63,viewable_attribut:63,vim:[65,69],violat:86,virtual:[4,10,21,22,39,88,92],vis:63,visclaw:[1,6,10,19,20,23,33,35,39,41,44,51,54,55,56,77,81,87,94,103,109,114],visibl:[10,109],visit:[19,21,53],visual:[20,23,26,32,44,50,51,53,64,77,81,82,114,119],vol:94,volcano:4,volum:[4,13,14,30,44,77,105,115,118],w_1:83,w_2:83,w_3:83,wai:[5,10,12,21,23,26,32,36,40,54,56,58,60,63,64,65,66,67,68,71,75,80,82,84,85,87,90,92,94,98,103,104,110,115,118,121],wait:10,wakari:39,wall:[12,29,82,90,104,106,108],want:[0,3,10,16,17,23,26,28,29,32,37,38,39,41,42,46,49,54,56,60,61,62,63,65,68,69,72,80,94,100,103,106,107,110,115,116],wari:83,warm:70,warmli:68,warn:[69,78,104,116],warranti:[40,58],washington:[4,40,92],water:[12,13,21,33,34,47,51,61,77,84,94,100,101,107,115,117,118],wave:[4,5,12,13,24,34,47,70,75,77,82,83,84,86,94,95,101,104,105,106,107,108,118],wave_toler:107,wavelength:34,wdiff:65,web:[20,21,26,38,39,69,92,109],webpag:[14,19,21,26,33,41,92,101],webserv:10,websit:[12,94,109],webster:65,week:65,welcom:58,well:[5,23,33,39,48,49,50,51,53,56,64,65,84,85,86,99,104,105,111,112,115,118,121],wendroff:[75,86,104,106,108,121],weno:[21,51,73,77,86],weno_ord:86,went:64,were:[4,5,17,39,44,45,61,95,98],west:[94,115],western:94,wet:[24,33],what:[5,10,19,21,23,32,34,37,38,39,41,44,45,50,60,63,64,69,84,85,88,90,92,94,95,101,103,104,106,107,108,109,115,117,118],whatev:[45,60,85],when:[11,12,17,23,24,28,32,35,37,39,42,44,48,49,50,51,53,54,56,60,64,65,68,69,72,80,81,89,94,96,98,100,101,102,103,104,105,106,107,108,109,115,116,117,118,119,121],whenc:79,whenev:[23,118],where:[1,3,5,10,12,19,22,26,27,28,32,33,34,36,39,41,42,44,45,47,50,51,56,63,64,66,68,75,78,80,83,94,95,98,99,101,103,104,106,107,108,115,118,121],wherea:[32,53,80],whereev:94,wherev:[84,116],whether:[3,5,10,12,19,27,40,44,48,58,75,78,83,84,85,86,95,104,105,107],which:[0,1,3,4,5,6,8,10,12,17,19,21,23,24,26,27,32,33,34,38,39,41,42,44,48,49,50,54,56,60,61,63,64,65,68,69,70,71,75,78,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,98,99,101,104,105,106,107,115,117,118,121],whith:61,who:[16,19,29,34,39,65,67,68],whole:[69,79,80,84],whose:[3,54,61,82,83,84,104,105],why:[64,68,84],wide:92,wider:54,width:[48,50,75,82,84,88,95,106,108],wiki:87,wikipedia:84,window:[10,39,44,56,65,92],wise:[69,86],wish:[4,10,11,19,23,26,32,34,39,44,52,53,69,77,82,86,87,89,94,99,102,109,111,112],within:[5,12,27,51,54,62,81,84,91,95,100,103,109],without:[12,19,21,23,28,32,34,40,41,44,54,56,58,64,69,70,78,79,91,92,106,108,116,118],won:[10,61,84],word:[64,65,79,84,94],work:[3,7,10,12,16,17,19,21,23,26,27,28,33,34,36,38,39,44,46,49,54,58,59,60,63,64,66,68,69,70,77,78,80,83,86,87,92,94,95,96,100,103,104,105,107,109,115,120],workflow:[68,72,77],workspac:[44,88],world:[34,42,77,80],worri:64,worst:101,worth:88,worthwhil:82,would:[2,3,10,12,22,23,24,41,50,54,58,60,63,64,69,75,79,84,91,94,101,103,104,115,118],wpalg:13,wrap:[58,61,75,86,91],write:[37,42,50,51,53,60,63,64,65,67,68,72,75,76,79,80,85,106,108],write_:78,write_aux:[78,85],write_aux_alwai:[60,63],write_aux_init:[60,63],write_p:85,written:[5,8,28,40,50,51,54,58,64,78,79,82,92,104,105,106,107,108,118],wrong:[44,64],www:[4,10,13,40,45,58,61,62,75,80,94],x_i:[100,118,121],xarr:75,xclaw:[26,63],xclawcmd:63,xclawerr:63,xclawout:63,xcode:39,xdir:63,xleft:[105,106],xlf:87,xlim:94,xlimit:[0,32,94],xll:94,xllcenter:94,xllcorner:115,xlow:50,xlower:[0,3,12,19,22,61,94,106,108,115,118],xlowerg:61,xmax:0,xmin:0,xpoint:107,xrang:82,xtick:35,xupper:[0,19,94,106,108],xxdiff:96,xxxx:44,xyz03:94,xzvf:39,year:[4,13,19,77,97],yellow:[54,65],yellow_red_blu:54,yes:44,yet:[1,10,17,34,53,86,104,106,120],yianni:58,yield:3,yleft:[105,106],ylim:94,ylimit:[0,32,94,103],yllcenter:94,yllcorner:115,ylow:50,ylower:[3,19,22,61,94,106,115],ylowerg:61,ymax:0,ymin:0,yml:96,yong:13,you:[0,3,4,10,11,12,14,16,17,19,20,22,23,26,28,29,32,36,37,38,39,41,44,45,46,47,48,49,50,51,52,53,54,56,58,60,61,62,63,65,66,67,68,69,71,72,74,77,78,80,81,82,83,86,87,88,89,90,92,94,98,99,101,102,103,106,107,108,109,110,111,112,115,116,117,118,120],your:[5,11,12,16,17,21,26,29,32,36,38,45,46,49,53,54,56,58,59,60,61,62,65,66,67,69,71,72,76,77,84,89,90,92,93,94,95,98,102,111,112,115,116,118],yourdomain:[65,68],yourself:[29,32,47,64,68],ypoint:107,yum:65,yupper:[19,94,106],yuri:65,zaytsev:65,zero:[3,12,29,44,60,82,83,88,90,101],zip:9,zlower:19,zone:[34,105,106],zoom:94,zsh:80,zupper:19,zxvf:94},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Examples from the book FVMHP","Recent changes \u2014 release notes","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Full Table of Contents","current_data","Developers\u2019 Guide","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","FVMHP book","Galleries of all Clawpack applications","Gauges","GeoClaw","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","git resources","Keeping track of git versions","Guide for updating this documentation","Installation instructions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Development workflow","Installing and configuring git","git resources","Maintainer workflow","Contributing to PyClaw code development","General information for developers","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Information for developers","Future work","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","Advanced output options","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Condensed Table of Contents","Topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":84,"catch":69,"class":[60,63],"default":[11,93,102,111,112],"function":[43,56,79,121],"long":67,"new":[33,46,64,69,71,84],"switch":44,"true":54,Adding:[71,82],For:21,Going:76,One:[100,121],The:[43,44,64,90,94],Use:89,Using:[10,45,49,79,82,86,103,118],about:[4,58],access:56,account:68,acoust:[83,90],adapt:[5,12,21,27],add:[54,84],added:84,addit:[105,107],advanc:[36,66,79],advect:83,after:99,afterfram:44,algorithm:[5,13,51,121],all:[3,31,39],altern:39,amazon:10,ami:10,amr:[3,5,19,49,95,105,107],amrclaw:[6,7,21,97,98,105,106,118],anoth:54,applic:[8,9,13,21,31,41,46,80],arrai:[50,89],arriv:107,ascii:[50,78],ask:64,attribut:[0,1,2,3,22,54],author:4,aux:[50,60],auxiliari:82,avail:14,axes:35,b4step:[11,118],background:54,basic:[59,81],bathymetri:[94,117],befor:118,between:54,bibliographi:[13,21],binari:50,book:[14,30],boundari:[5,12,82,118,121],branch:64,bug:69,build:74,built:71,buoi:117,burger:83,capac:121,cautionari:34,cell:[5,27],cfl:70,chang:[15,19,54,64,67,97,98],chardiff:96,check:[67,69,84],checkpoint:99,choos:5,cite:[4,77],clamshel:12,classic:[86,97,98,104,108],clawcode2html:8,clawpack:[9,10,13,15,16,17,18,19,20,31,39,41,51,57,61,86,87,108,120],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,54],clawutil:98,clone:[23,68],cloud:62,code:[8,21,23,33,68,84,96,113,118],color:54,colormap:54,command:[44,56,71],comment:84,commit:[64,67],commun:69,comparison:96,compil:[29,39,41,45,89,110],compon:[20,54],comput:[51,99],condens:114,condit:[5,12,82,90,118,121],configur:[65,68],consid:64,content:[21,54,60,86,92,114],continu:96,contourf:54,contribut:[68,69],contributor:58,control:[60,63,90],convent:84,convers:17,convert:[8,16,17],coordin:35,copi:[46,68],correctli:80,coverag:69,creat:[10,44,46,60,68],creation:60,criteria:95,current_data:[22,56],curv:54,dart:117,data:[50,103,107,115,116,117,118],debug:[54,105],defin:12,delet:64,depend:[69,70,87],depth:35,deriv:[60,79],describ:13,desir:103,detail:[64,65],develop:[21,23,39,64,68,69,72],differ:[51,54],dimens:[75,121],dimension:100,directli:10,directori:[41,46,54],displac:115,docstr:84,doctest:69,document:[8,38,77,84,110],domain:[75,90],done:118,download:115,dtopo:94,each:118,earthquak:[48,94,117],ec2:10,edit:64,elev:35,environ:[29,39],equat:[83,90],error:[69,89],euler:83,exampl:[9,14,21,26,32,33,44,46,47,52,71,80],exe:116,exist:46,explor:64,extrapol:95,faq:54,fault:48,featur:64,few:67,fflag:29,fgmax:24,figur:54,file:[10,24,44,54,56,96,99,107,115,118],find:[10,54],finer:5,fix:[24,25,49,68,107],flag2refin:95,flag:[5,27,41,95,105],flow:[21,60],fly:53,fork:[23,68],format:50,formul:121,fort:[50,54],fortran:[19,21,28,29,84,89,96,113,118],found:44,friction:42,from:[10,14,16,17,19,23,56,61,64,68,71,81,94],full:21,fund:[4,58],further:76,futur:73,fvmhp:[14,30],galleri:[31,44,74],gaug:[32,79,94,117],gener:[19,69,107],geo:107,geoclaw:[11,12,19,21,33,34,35,49,55,93,95,97,98,102,107,111,112],geometri:75,geophys:21,get:[21,44,68,94],gfortran:[29,87],ghost:5,git:[23,36,37,65,66],github:[23,64,68],godunov:121,grid:[5,12,24,25,49,75,107],guid:[23,38,94],guidelin:69,hazard:34,hdf5:78,help:44,high:[21,121],hint:[34,54,92],histori:[64,67],how:[54,56],html:[8,56],imagediff:96,includ:9,independ:70,indic:77,inform:[69,72],initi:[5,82,90,118],input:[19,24,78,104,105],instal:[23,39,45,51,65,80,87,89,92,113,116],instanc:10,instruct:[23,39,84],integr:[67,96],intel:29,interact:[56,71],interfac:51,iplotclaw:56,ipython:[47,71],item:54,keep:37,latest:39,latex:56,latitud:35,launch:10,layout:84,level:23,licens:[4,40,58],limit:70,line:[56,71,96],link:18,list:71,local:[68,74,110],locat:32,log:10,longitud:35,machin:120,main:68,maintain:67,make:[54,64,68,80,109,116],makefil:[28,41,82,99],man:42,manual:[36,66],mapc2p:43,master:64,math:62,matlab:44,matplotlib:87,maxfram:44,maximum:107,merg:64,mesh:[5,21],mess:64,method:[0,1,2,3,21,121],might:64,mirror:64,model:[34,48,94,117],modifi:[23,99],modul:[77,91,92,106,108],monitor:[24,107],more:[28,64],most:23,motion:94,name:84,netcdf:[45,50,78],next:87,nose:87,note:15,notebook:[47,92],numpi:87,object:[75,103],obtain:87,okada:[48,94],onli:39,onlin:[36,66],openmp:49,option:[53,56,79,80,82],order:[21,84,89],other:[20,54,64,94],out:23,outdir:54,output:[24,25,41,44,45,49,50,60,78,79,96,99,104,105,107,116],overview:[21,33,64,65,103],own:[10,68,82],packag:[19,39,78,83],page:[36,66],paper:13,parallel:[51,75,80,81,88],paramet:[19,32,54,56,90,94,104,105,107],pass:80,patch:[68,75],path:44,pcolor:54,peopl:64,petclaw:[75,88],petsc:80,piec:84,pixel:96,plot:[3,10,19,21,24,32,33,35,41,44,45,52,53,54,55,56,71,80,81,96,103,109,116,119],plot_typ:3,plotclaw:44,point:[23,68],port:61,post:53,prerequisit:39,previou:57,print:105,printfram:56,problem:[7,61,82,90,118],process:[24,53],produc:56,propag:121,provid:54,pull:23,push:67,pyclaw:[19,21,39,58,59,60,61,62,63,68,70,71,74,75,77,78,81,84,85,86,87,88,90,91,96,97,98,113],pyflak:69,pylint:69,python:[17,21,56,87,92],q0002:50,qinit:[93,107,115],quantiti:[60,79],quick:[68,94],raw:50,readm:8,rebas:64,recent:[15,23],recov:64,refer:[77,92],refin:[5,12,21,27,95,107],region:[27,95,107],regress:[84,96],releas:[15,97,98],remot:23,repositori:[9,20,64,68],request:23,requir:[92,118],resolut:121,resourc:[21,36,66],restart:[60,99],result:[10,33,45,81,109],review:64,rewrit:64,richardson:95,riemann:[77,82,83,97,98,100,118],routin:[11,19,55,93,102,111,112],rst:8,run:[26,33,39,60,62,69,71,80,81,104,105,116],sage:[62,92],sampl:[106,108],save:109,script:82,seafloor:94,sealevel:101,search:44,seri:67,serial:[69,75,88],servic:10,set:[23,33,39,44,54,56,68,82,94,101],setaux:[102,118],setplot:[44,54,56,103],setrun:[19,32,94,104,105,106,107,108],sever:64,shallow:83,share:[64,109],sharpclaw:[21,86],shoot:44,should:51,simul:60,simultan:69,singl:64,size:54,slip:48,softwar:[4,13],solut:[54,60,85],solv:90,solver:[51,60,77,82,83,86,90,100,118],some:[54,64,84,117],someth:54,sourc:[48,82,94,117,118,121],space:121,spatial:118,special:[3,105],specif:[24,69,90,118],specifi:[54,56,94,95,103,104,105,107,118],sphere:12,sphinx:110,src1d:[111,118],src:[112,118],start:[21,94],state:88,step:[87,118],stop:10,substanti:68,summari:[36,64,66],surfac:35,t0002:50,tabl:[21,77,114],term:[42,82,118,121],test:[23,39,69,80,84,87,96,113],than:54,thi:[4,38],thing:64,tide:117,time:[104,105,107,118],tip:[28,35,80,84],titl:54,tool:[17,21,32,35,96],top:23,topo:94,topographi:[33,94,107,115,117],track:37,transfer:10,travi:96,troubl:[44,116],troubleshoot:[89,116],trunk:[64,67],tsunami:[34,94,117],tutori:[36,66,90,92],tvd:70,understand:60,updat:[38,64],ups:64,use:51,user:[12,51,118],using:[34,44,118],util:91,valu:[24,60],vari:118,variabl:[29,39,41,82],version:[28,37,39,57],view:10,virtual:120,visclaw:[21,53,97,98],visit:119,visual:21,wai:39,wakari:62,want:64,water:[35,83],wave:[100,121],web:10,webpag:[10,38,109],what:[54,56],when:84,which:51,without:39,work:[4,71,73,118],workflow:[23,36,64,66,67],write:[69,82,84],you:[64,84],your:[10,23,39,64,68,80,82,87,109,113]}}) \ No newline at end of file diff --git a/v5.1.x/setaux_defaults.html b/v5.1.x/setaux_defaults.html index fdda9c417..8937b6043 100644 --- a/v5.1.x/setaux_defaults.html +++ b/v5.1.x/setaux_defaults.html @@ -82,17 +82,17 @@

            Navigation

            as needed. Remember to change to Makefile to point to the proper version.

            $CLAW/classic/src/1d/setaux.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 18)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 18)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

            $CLAW/classic/src/2d/setaux.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 24)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 24)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

            $CLAW/classic/src/3d/setaux.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 30)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 30)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

            @@ -104,7 +104,7 @@

            Navigation

            with latitude when coordinate_system == 2).

            $CLAW/geoclaw/src/2d/shallow/setaux.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 48)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/setaux_defaults.rst, line 48)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

            diff --git a/v5.1.x/src1d_defaults.html b/v5.1.x/src1d_defaults.html index d1826d74b..ddad3fecc 100644 --- a/v5.1.x/src1d_defaults.html +++ b/v5.1.x/src1d_defaults.html @@ -84,12 +84,12 @@

            Navigation

            as needed. Remember to change to Makefile to point to the proper version.

            $CLAW/amrclaw/src/2d/src1d.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 21)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 21)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

            $CLAW/amrclaw/src/3d/src1d.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 28)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 28)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

            @@ -100,7 +100,7 @@

            Navigation

            (an ocean at rest remains at rest).

            $CLAW/geoclaw/src/2d/shallow/src1d.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 46)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src1d_defaults.rst, line 46)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

            diff --git a/v5.1.x/src_defaults.html b/v5.1.x/src_defaults.html index be4a70337..b1bb8289f 100644 --- a/v5.1.x/src_defaults.html +++ b/v5.1.x/src_defaults.html @@ -85,17 +85,17 @@

            Navigation

            see Using src1d for source terms with AMRClaw.

            $CLAW/classic/src/1d/src1.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 23)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 23)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

            $CLAW/classic/src/2d/src2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 29)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 29)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

            $CLAW/classic/src/3d/src3.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 35)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 35)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

            @@ -106,7 +106,7 @@

            Navigation

            (an ocean at rest remains at rest).

            $CLAW/geoclaw/src/2d/shallow/src2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 52)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/src_defaults.rst, line 52)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

            diff --git a/v5.2.x/.buildinfo b/v5.2.x/.buildinfo index eba31c2ea..98ab1630b 100644 --- a/v5.2.x/.buildinfo +++ b/v5.2.x/.buildinfo @@ -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: 9490cba2d1844b3df48c1a7a18ed4616 +config: bc2f3fddbecc493126be4dc70535c488 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.2.x/.doctrees/ClawPlotAxes.doctree b/v5.2.x/.doctrees/ClawPlotAxes.doctree index 25dadc1ce..bdce539dd 100644 Binary files a/v5.2.x/.doctrees/ClawPlotAxes.doctree and b/v5.2.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.2.x/.doctrees/ClawPlotData.doctree b/v5.2.x/.doctrees/ClawPlotData.doctree index 55ef74c46..dc613caa8 100644 Binary files a/v5.2.x/.doctrees/ClawPlotData.doctree and b/v5.2.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.2.x/.doctrees/ClawPlotFigure.doctree b/v5.2.x/.doctrees/ClawPlotFigure.doctree index 8f591b715..0c71cbccb 100644 Binary files a/v5.2.x/.doctrees/ClawPlotFigure.doctree and b/v5.2.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.2.x/.doctrees/ClawPlotItem.doctree b/v5.2.x/.doctrees/ClawPlotItem.doctree index 6550d2b5f..5947fba07 100644 Binary files a/v5.2.x/.doctrees/ClawPlotItem.doctree and b/v5.2.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.2.x/.doctrees/about.doctree b/v5.2.x/.doctrees/about.doctree index 49632d1e0..cb6244aba 100644 Binary files a/v5.2.x/.doctrees/about.doctree and b/v5.2.x/.doctrees/about.doctree differ diff --git a/v5.2.x/.doctrees/amr_algorithm.doctree b/v5.2.x/.doctrees/amr_algorithm.doctree index 1b93c09d0..e5a396fa2 100644 Binary files a/v5.2.x/.doctrees/amr_algorithm.doctree and b/v5.2.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.2.x/.doctrees/amrclaw.doctree b/v5.2.x/.doctrees/amrclaw.doctree index 12b85225a..93bf79e9b 100644 Binary files a/v5.2.x/.doctrees/amrclaw.doctree and b/v5.2.x/.doctrees/amrclaw.doctree differ diff --git a/v5.2.x/.doctrees/amrclaw1d.doctree b/v5.2.x/.doctrees/amrclaw1d.doctree index 728a4a88d..0ebd50f95 100644 Binary files a/v5.2.x/.doctrees/amrclaw1d.doctree and b/v5.2.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.2.x/.doctrees/application_documentation.doctree b/v5.2.x/.doctrees/application_documentation.doctree index dcb417d4e..7f7dfe64e 100644 Binary files a/v5.2.x/.doctrees/application_documentation.doctree and b/v5.2.x/.doctrees/application_documentation.doctree differ diff --git a/v5.2.x/.doctrees/apps.doctree b/v5.2.x/.doctrees/apps.doctree index c6378b30c..36a61dcba 100644 Binary files a/v5.2.x/.doctrees/apps.doctree and b/v5.2.x/.doctrees/apps.doctree differ diff --git a/v5.2.x/.doctrees/aws.doctree b/v5.2.x/.doctrees/aws.doctree index 16379fac4..68f44b909 100644 Binary files a/v5.2.x/.doctrees/aws.doctree and b/v5.2.x/.doctrees/aws.doctree differ diff --git a/v5.2.x/.doctrees/b4step_defaults.doctree b/v5.2.x/.doctrees/b4step_defaults.doctree index 9575e8cbe..a6afcf3b3 100644 Binary files a/v5.2.x/.doctrees/b4step_defaults.doctree and b/v5.2.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.2.x/.doctrees/bc.doctree b/v5.2.x/.doctrees/bc.doctree index 53896dafe..3a5e1924d 100644 Binary files a/v5.2.x/.doctrees/bc.doctree and b/v5.2.x/.doctrees/bc.doctree differ diff --git a/v5.2.x/.doctrees/biblio.doctree b/v5.2.x/.doctrees/biblio.doctree index 0bfbe7365..41e1110e4 100644 Binary files a/v5.2.x/.doctrees/biblio.doctree and b/v5.2.x/.doctrees/biblio.doctree differ diff --git a/v5.2.x/.doctrees/book.doctree b/v5.2.x/.doctrees/book.doctree index 96c194371..556c58e38 100644 Binary files a/v5.2.x/.doctrees/book.doctree and b/v5.2.x/.doctrees/book.doctree differ diff --git a/v5.2.x/.doctrees/changes.doctree b/v5.2.x/.doctrees/changes.doctree index 9e4889cc7..d908d90e5 100644 Binary files a/v5.2.x/.doctrees/changes.doctree and b/v5.2.x/.doctrees/changes.doctree differ diff --git a/v5.2.x/.doctrees/changes_to_master.doctree b/v5.2.x/.doctrees/changes_to_master.doctree index 3b6550c6a..abb37ffd9 100644 Binary files a/v5.2.x/.doctrees/changes_to_master.doctree and b/v5.2.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.2.x/.doctrees/claw43to46.doctree b/v5.2.x/.doctrees/claw43to46.doctree index 26bfa70a8..0bc0b5393 100644 Binary files a/v5.2.x/.doctrees/claw43to46.doctree and b/v5.2.x/.doctrees/claw43to46.doctree differ diff --git a/v5.2.x/.doctrees/claw46to50.doctree b/v5.2.x/.doctrees/claw46to50.doctree index 153ef3999..e51ad8d85 100644 Binary files a/v5.2.x/.doctrees/claw46to50.doctree and b/v5.2.x/.doctrees/claw46to50.doctree differ diff --git a/v5.2.x/.doctrees/claw4x.doctree b/v5.2.x/.doctrees/claw4x.doctree index dde7e8ad8..813eab34b 100644 Binary files a/v5.2.x/.doctrees/claw4x.doctree and b/v5.2.x/.doctrees/claw4x.doctree differ diff --git a/v5.2.x/.doctrees/clawpack5.doctree b/v5.2.x/.doctrees/clawpack5.doctree index e408d9828..e6b189b45 100644 Binary files a/v5.2.x/.doctrees/clawpack5.doctree and b/v5.2.x/.doctrees/clawpack5.doctree differ diff --git a/v5.2.x/.doctrees/clawpack_components.doctree b/v5.2.x/.doctrees/clawpack_components.doctree index 1001f2386..f0569eeaa 100644 Binary files a/v5.2.x/.doctrees/clawpack_components.doctree and b/v5.2.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.2.x/.doctrees/contents.doctree b/v5.2.x/.doctrees/contents.doctree index aafa29fbc..5cf27db65 100644 Binary files a/v5.2.x/.doctrees/contents.doctree and b/v5.2.x/.doctrees/contents.doctree differ diff --git a/v5.2.x/.doctrees/current_data.doctree b/v5.2.x/.doctrees/current_data.doctree index a81690d36..3f65696c3 100644 Binary files a/v5.2.x/.doctrees/current_data.doctree and b/v5.2.x/.doctrees/current_data.doctree differ diff --git a/v5.2.x/.doctrees/developers.doctree b/v5.2.x/.doctrees/developers.doctree index 92732bc40..7cd1857cd 100644 Binary files a/v5.2.x/.doctrees/developers.doctree and b/v5.2.x/.doctrees/developers.doctree differ diff --git a/v5.2.x/.doctrees/dtopotools_module.doctree b/v5.2.x/.doctrees/dtopotools_module.doctree index 93d2f5958..d1fe00ccc 100644 Binary files a/v5.2.x/.doctrees/dtopotools_module.doctree and b/v5.2.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.2.x/.doctrees/environment.pickle b/v5.2.x/.doctrees/environment.pickle index 53358df63..8f5c918bf 100644 Binary files a/v5.2.x/.doctrees/environment.pickle and b/v5.2.x/.doctrees/environment.pickle differ diff --git a/v5.2.x/.doctrees/fgmax.doctree b/v5.2.x/.doctrees/fgmax.doctree index 6f7958351..d2749f0be 100644 Binary files a/v5.2.x/.doctrees/fgmax.doctree and b/v5.2.x/.doctrees/fgmax.doctree differ diff --git a/v5.2.x/.doctrees/fgout.doctree b/v5.2.x/.doctrees/fgout.doctree index e04a8a8a4..ffa5ca0f4 100644 Binary files a/v5.2.x/.doctrees/fgout.doctree and b/v5.2.x/.doctrees/fgout.doctree differ diff --git a/v5.2.x/.doctrees/first_run.doctree b/v5.2.x/.doctrees/first_run.doctree index 698fc5fc9..238224f12 100644 Binary files a/v5.2.x/.doctrees/first_run.doctree and b/v5.2.x/.doctrees/first_run.doctree differ diff --git a/v5.2.x/.doctrees/flag.doctree b/v5.2.x/.doctrees/flag.doctree index 36b8205f4..566fad95e 100644 Binary files a/v5.2.x/.doctrees/flag.doctree and b/v5.2.x/.doctrees/flag.doctree differ diff --git a/v5.2.x/.doctrees/fortran.doctree b/v5.2.x/.doctrees/fortran.doctree index 33bb7c4e0..f7c77424b 100644 Binary files a/v5.2.x/.doctrees/fortran.doctree and b/v5.2.x/.doctrees/fortran.doctree differ diff --git a/v5.2.x/.doctrees/fortran_compilers.doctree b/v5.2.x/.doctrees/fortran_compilers.doctree index 12479c01e..edb983683 100644 Binary files a/v5.2.x/.doctrees/fortran_compilers.doctree and b/v5.2.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.2.x/.doctrees/fvmbook.doctree b/v5.2.x/.doctrees/fvmbook.doctree index b6719ac6c..3e2d5b6f8 100644 Binary files a/v5.2.x/.doctrees/fvmbook.doctree and b/v5.2.x/.doctrees/fvmbook.doctree differ diff --git a/v5.2.x/.doctrees/galleries.doctree b/v5.2.x/.doctrees/galleries.doctree index d261700f4..6cb7b0138 100644 Binary files a/v5.2.x/.doctrees/galleries.doctree and b/v5.2.x/.doctrees/galleries.doctree differ diff --git a/v5.2.x/.doctrees/gauges.doctree b/v5.2.x/.doctrees/gauges.doctree index b758b7890..3b9c311f4 100644 Binary files a/v5.2.x/.doctrees/gauges.doctree and b/v5.2.x/.doctrees/gauges.doctree differ diff --git a/v5.2.x/.doctrees/geoclaw.doctree b/v5.2.x/.doctrees/geoclaw.doctree index 10e158f03..d4b11071e 100644 Binary files a/v5.2.x/.doctrees/geoclaw.doctree and b/v5.2.x/.doctrees/geoclaw.doctree differ diff --git a/v5.2.x/.doctrees/geoclaw_util_module.doctree b/v5.2.x/.doctrees/geoclaw_util_module.doctree index 93a89197e..48ab21c8d 100644 Binary files a/v5.2.x/.doctrees/geoclaw_util_module.doctree and b/v5.2.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.2.x/.doctrees/geohints.doctree b/v5.2.x/.doctrees/geohints.doctree index 3cefd06b9..690af762f 100644 Binary files a/v5.2.x/.doctrees/geohints.doctree and b/v5.2.x/.doctrees/geohints.doctree differ diff --git a/v5.2.x/.doctrees/geoplot.doctree b/v5.2.x/.doctrees/geoplot.doctree index b352a9f1d..6b97d9294 100644 Binary files a/v5.2.x/.doctrees/geoplot.doctree and b/v5.2.x/.doctrees/geoplot.doctree differ diff --git a/v5.2.x/.doctrees/git_resources.doctree b/v5.2.x/.doctrees/git_resources.doctree index 4a83855e0..2c8c1788f 100644 Binary files a/v5.2.x/.doctrees/git_resources.doctree and b/v5.2.x/.doctrees/git_resources.doctree differ diff --git a/v5.2.x/.doctrees/git_versions.doctree b/v5.2.x/.doctrees/git_versions.doctree index 3ae1f5892..e0e6d3a43 100644 Binary files a/v5.2.x/.doctrees/git_versions.doctree and b/v5.2.x/.doctrees/git_versions.doctree differ diff --git a/v5.2.x/.doctrees/howto_doc.doctree b/v5.2.x/.doctrees/howto_doc.doctree index f4bc32a5d..6297c2b4d 100644 Binary files a/v5.2.x/.doctrees/howto_doc.doctree and b/v5.2.x/.doctrees/howto_doc.doctree differ diff --git a/v5.2.x/.doctrees/installing.doctree b/v5.2.x/.doctrees/installing.doctree index 3f78a71fd..25016383c 100644 Binary files a/v5.2.x/.doctrees/installing.doctree and b/v5.2.x/.doctrees/installing.doctree differ diff --git a/v5.2.x/.doctrees/kmltools_module.doctree b/v5.2.x/.doctrees/kmltools_module.doctree index 63181076d..85768eb38 100644 Binary files a/v5.2.x/.doctrees/kmltools_module.doctree and b/v5.2.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.2.x/.doctrees/license.doctree b/v5.2.x/.doctrees/license.doctree index 20b13c90e..5aac72dab 100644 Binary files a/v5.2.x/.doctrees/license.doctree and b/v5.2.x/.doctrees/license.doctree differ diff --git a/v5.2.x/.doctrees/makefiles.doctree b/v5.2.x/.doctrees/makefiles.doctree index 5063a3c31..6a62b5486 100644 Binary files a/v5.2.x/.doctrees/makefiles.doctree and b/v5.2.x/.doctrees/makefiles.doctree differ diff --git a/v5.2.x/.doctrees/manning.doctree b/v5.2.x/.doctrees/manning.doctree index e535543a8..5330945ca 100644 Binary files a/v5.2.x/.doctrees/manning.doctree and b/v5.2.x/.doctrees/manning.doctree differ diff --git a/v5.2.x/.doctrees/mapc2p.doctree b/v5.2.x/.doctrees/mapc2p.doctree index 34749dcba..a668b9ce8 100644 Binary files a/v5.2.x/.doctrees/mapc2p.doctree and b/v5.2.x/.doctrees/mapc2p.doctree differ diff --git a/v5.2.x/.doctrees/matlab_plotting.doctree b/v5.2.x/.doctrees/matlab_plotting.doctree index a6b7caf70..829def78c 100644 Binary files a/v5.2.x/.doctrees/matlab_plotting.doctree and b/v5.2.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.2.x/.doctrees/netcdf.doctree b/v5.2.x/.doctrees/netcdf.doctree index 523ff394d..0e7d02b60 100644 Binary files a/v5.2.x/.doctrees/netcdf.doctree and b/v5.2.x/.doctrees/netcdf.doctree differ diff --git a/v5.2.x/.doctrees/newapp.doctree b/v5.2.x/.doctrees/newapp.doctree index 57b0d3014..69740b7ea 100644 Binary files a/v5.2.x/.doctrees/newapp.doctree and b/v5.2.x/.doctrees/newapp.doctree differ diff --git a/v5.2.x/.doctrees/notebooks.doctree b/v5.2.x/.doctrees/notebooks.doctree index f9901760b..1a335841d 100644 Binary files a/v5.2.x/.doctrees/notebooks.doctree and b/v5.2.x/.doctrees/notebooks.doctree differ diff --git a/v5.2.x/.doctrees/okada.doctree b/v5.2.x/.doctrees/okada.doctree index 09b495c20..ea54a802b 100644 Binary files a/v5.2.x/.doctrees/okada.doctree and b/v5.2.x/.doctrees/okada.doctree differ diff --git a/v5.2.x/.doctrees/openmp.doctree b/v5.2.x/.doctrees/openmp.doctree index 5d6e41330..dca2e7bb5 100644 Binary files a/v5.2.x/.doctrees/openmp.doctree and b/v5.2.x/.doctrees/openmp.doctree differ diff --git a/v5.2.x/.doctrees/output_styles.doctree b/v5.2.x/.doctrees/output_styles.doctree index a4ff9f614..15af5c7ba 100644 Binary files a/v5.2.x/.doctrees/output_styles.doctree and b/v5.2.x/.doctrees/output_styles.doctree differ diff --git a/v5.2.x/.doctrees/packages.doctree b/v5.2.x/.doctrees/packages.doctree index 360eb8921..768fdd25a 100644 Binary files a/v5.2.x/.doctrees/packages.doctree and b/v5.2.x/.doctrees/packages.doctree differ diff --git a/v5.2.x/.doctrees/plotexamples.doctree b/v5.2.x/.doctrees/plotexamples.doctree index 1762a2eea..4e73c96cc 100644 Binary files a/v5.2.x/.doctrees/plotexamples.doctree and b/v5.2.x/.doctrees/plotexamples.doctree differ diff --git a/v5.2.x/.doctrees/plotting.doctree b/v5.2.x/.doctrees/plotting.doctree index 77ba4ca89..aef7414a4 100644 Binary files a/v5.2.x/.doctrees/plotting.doctree and b/v5.2.x/.doctrees/plotting.doctree differ diff --git a/v5.2.x/.doctrees/plotting_faq.doctree b/v5.2.x/.doctrees/plotting_faq.doctree index b9619fa61..0883ac955 100644 Binary files a/v5.2.x/.doctrees/plotting_faq.doctree and b/v5.2.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.2.x/.doctrees/plotting_geoclaw.doctree b/v5.2.x/.doctrees/plotting_geoclaw.doctree index 95d4c8957..86ec16584 100644 Binary files a/v5.2.x/.doctrees/plotting_geoclaw.doctree and b/v5.2.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.2.x/.doctrees/plotting_python.doctree b/v5.2.x/.doctrees/plotting_python.doctree index 4ff7e4b23..eee2ae78c 100644 Binary files a/v5.2.x/.doctrees/plotting_python.doctree and b/v5.2.x/.doctrees/plotting_python.doctree differ diff --git a/v5.2.x/.doctrees/previous.doctree b/v5.2.x/.doctrees/previous.doctree index 22c918fcc..3f9bd3876 100644 Binary files a/v5.2.x/.doctrees/previous.doctree and b/v5.2.x/.doctrees/previous.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/about.doctree b/v5.2.x/.doctrees/pyclaw/about.doctree index b33748a3d..6a2758c00 100644 Binary files a/v5.2.x/.doctrees/pyclaw/about.doctree and b/v5.2.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/basics.doctree b/v5.2.x/.doctrees/pyclaw/basics.doctree index 83eca5bb1..c84dd79f0 100644 Binary files a/v5.2.x/.doctrees/pyclaw/basics.doctree and b/v5.2.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/classes.doctree b/v5.2.x/.doctrees/pyclaw/classes.doctree index 7fe429f43..cd9558d17 100644 Binary files a/v5.2.x/.doctrees/pyclaw/classes.doctree and b/v5.2.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.2.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 4a087414d..8f8c956c8 100644 Binary files a/v5.2.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.2.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/cloud.doctree b/v5.2.x/.doctrees/pyclaw/cloud.doctree index 92c02b754..dfe44af93 100644 Binary files a/v5.2.x/.doctrees/pyclaw/cloud.doctree and b/v5.2.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/controller.doctree b/v5.2.x/.doctrees/pyclaw/controller.doctree index 9f68008a4..f9047d2c7 100644 Binary files a/v5.2.x/.doctrees/pyclaw/controller.doctree and b/v5.2.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree b/v5.2.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree index 5be6ef767..2f936c0b4 100644 Binary files a/v5.2.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree and b/v5.2.x/.doctrees/pyclaw/devel/gitwash/development_workflow.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree b/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree index 05740693e..b251af30c 100644 Binary files a/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree and b/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_installation.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree b/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree index 9312c1e5b..8564a64ce 100644 Binary files a/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree and b/v5.2.x/.doctrees/pyclaw/devel/gitwash/git_resources.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree b/v5.2.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree index 33142a0e9..f6e233ccf 100644 Binary files a/v5.2.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree and b/v5.2.x/.doctrees/pyclaw/devel/gitwash/maintainer_workflow.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree b/v5.2.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree index 73be9d626..377e11759 100644 Binary files a/v5.2.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree and b/v5.2.x/.doctrees/pyclaw/devel/gitwash/patching_forking.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/develop.doctree b/v5.2.x/.doctrees/pyclaw/develop.doctree index 829b66798..db8949ff6 100644 Binary files a/v5.2.x/.doctrees/pyclaw/develop.doctree and b/v5.2.x/.doctrees/pyclaw/develop.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.2.x/.doctrees/pyclaw/evolve/limiters.doctree index f8076dcdd..b76b3dfcf 100644 Binary files a/v5.2.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.2.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/examples.doctree b/v5.2.x/.doctrees/pyclaw/examples.doctree index 9c28b2b9e..9f5fe2a36 100644 Binary files a/v5.2.x/.doctrees/pyclaw/examples.doctree and b/v5.2.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/for_developers.doctree b/v5.2.x/.doctrees/pyclaw/for_developers.doctree index a9789217d..7a75a3193 100644 Binary files a/v5.2.x/.doctrees/pyclaw/for_developers.doctree and b/v5.2.x/.doctrees/pyclaw/for_developers.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/future.doctree b/v5.2.x/.doctrees/pyclaw/future.doctree index 8783b057b..f6bf42f1b 100644 Binary files a/v5.2.x/.doctrees/pyclaw/future.doctree and b/v5.2.x/.doctrees/pyclaw/future.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/gallery/how-to-build.doctree b/v5.2.x/.doctrees/pyclaw/gallery/how-to-build.doctree index c02aeda2e..765e07de1 100644 Binary files a/v5.2.x/.doctrees/pyclaw/gallery/how-to-build.doctree and b/v5.2.x/.doctrees/pyclaw/gallery/how-to-build.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/geometry.doctree b/v5.2.x/.doctrees/pyclaw/geometry.doctree index ea4eaf35f..e1a51e2dc 100644 Binary files a/v5.2.x/.doctrees/pyclaw/geometry.doctree and b/v5.2.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/going_further.doctree b/v5.2.x/.doctrees/pyclaw/going_further.doctree index 478fb4f49..c36483b2a 100644 Binary files a/v5.2.x/.doctrees/pyclaw/going_further.doctree and b/v5.2.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/index.doctree b/v5.2.x/.doctrees/pyclaw/index.doctree index 154a13fdb..64744da7c 100644 Binary files a/v5.2.x/.doctrees/pyclaw/index.doctree and b/v5.2.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/io.doctree b/v5.2.x/.doctrees/pyclaw/io.doctree index 5bb457b7e..adf879bc8 100644 Binary files a/v5.2.x/.doctrees/pyclaw/io.doctree and b/v5.2.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/output.doctree b/v5.2.x/.doctrees/pyclaw/output.doctree index 2821798de..b13c49a27 100644 Binary files a/v5.2.x/.doctrees/pyclaw/output.doctree and b/v5.2.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/parallel.doctree b/v5.2.x/.doctrees/pyclaw/parallel.doctree index 222e5ffa1..f69e35615 100644 Binary files a/v5.2.x/.doctrees/pyclaw/parallel.doctree and b/v5.2.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/plotting.doctree b/v5.2.x/.doctrees/pyclaw/plotting.doctree index 96ed02592..793fc3047 100644 Binary files a/v5.2.x/.doctrees/pyclaw/plotting.doctree and b/v5.2.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/problem.doctree b/v5.2.x/.doctrees/pyclaw/problem.doctree index a7779aca4..ec3b13245 100644 Binary files a/v5.2.x/.doctrees/pyclaw/problem.doctree and b/v5.2.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/rp.doctree b/v5.2.x/.doctrees/pyclaw/rp.doctree index b6c98250b..caf8bf99f 100644 Binary files a/v5.2.x/.doctrees/pyclaw/rp.doctree and b/v5.2.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/rulesProposal.doctree b/v5.2.x/.doctrees/pyclaw/rulesProposal.doctree index eea4269ea..fdb657567 100644 Binary files a/v5.2.x/.doctrees/pyclaw/rulesProposal.doctree and b/v5.2.x/.doctrees/pyclaw/rulesProposal.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/solution.doctree b/v5.2.x/.doctrees/pyclaw/solution.doctree index 7ff127e4d..1e56e25c1 100644 Binary files a/v5.2.x/.doctrees/pyclaw/solution.doctree and b/v5.2.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/solvers.doctree b/v5.2.x/.doctrees/pyclaw/solvers.doctree index 15e630099..c57309764 100644 Binary files a/v5.2.x/.doctrees/pyclaw/solvers.doctree and b/v5.2.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/started.doctree b/v5.2.x/.doctrees/pyclaw/started.doctree index 638c19cc5..3468305a5 100644 Binary files a/v5.2.x/.doctrees/pyclaw/started.doctree and b/v5.2.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/state.doctree b/v5.2.x/.doctrees/pyclaw/state.doctree index 6b094fa30..ef8968115 100644 Binary files a/v5.2.x/.doctrees/pyclaw/state.doctree and b/v5.2.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.2.x/.doctrees/pyclaw/troubleshooting.doctree index a3a6ae79b..a3469dec4 100644 Binary files a/v5.2.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.2.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/tutorial.doctree b/v5.2.x/.doctrees/pyclaw/tutorial.doctree index 55ad7850f..c2efd0fe7 100644 Binary files a/v5.2.x/.doctrees/pyclaw/tutorial.doctree and b/v5.2.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.2.x/.doctrees/pyclaw/util.doctree b/v5.2.x/.doctrees/pyclaw/util.doctree index 22137f43d..b84506cb7 100644 Binary files a/v5.2.x/.doctrees/pyclaw/util.doctree and b/v5.2.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.2.x/.doctrees/python.doctree b/v5.2.x/.doctrees/python.doctree index 9aecb7e07..4c7c04823 100644 Binary files a/v5.2.x/.doctrees/python.doctree and b/v5.2.x/.doctrees/python.doctree differ diff --git a/v5.2.x/.doctrees/qinit_defaults.doctree b/v5.2.x/.doctrees/qinit_defaults.doctree index 80d73db86..a7ed3f266 100644 Binary files a/v5.2.x/.doctrees/qinit_defaults.doctree and b/v5.2.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.2.x/.doctrees/quick_tsunami.doctree b/v5.2.x/.doctrees/quick_tsunami.doctree index dcf4e9d08..07b7aa9c9 100644 Binary files a/v5.2.x/.doctrees/quick_tsunami.doctree and b/v5.2.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.2.x/.doctrees/refinement.doctree b/v5.2.x/.doctrees/refinement.doctree index 9752b2850..15dba9111 100644 Binary files a/v5.2.x/.doctrees/refinement.doctree and b/v5.2.x/.doctrees/refinement.doctree differ diff --git a/v5.2.x/.doctrees/regression.doctree b/v5.2.x/.doctrees/regression.doctree index 5bad2e2f1..f299b29d5 100644 Binary files a/v5.2.x/.doctrees/regression.doctree and b/v5.2.x/.doctrees/regression.doctree differ diff --git a/v5.2.x/.doctrees/release_5_0_0.doctree b/v5.2.x/.doctrees/release_5_0_0.doctree index be6d03817..6ecd69594 100644 Binary files a/v5.2.x/.doctrees/release_5_0_0.doctree and b/v5.2.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.2.x/.doctrees/release_5_1_0.doctree b/v5.2.x/.doctrees/release_5_1_0.doctree index 192b1a464..09846fe7a 100644 Binary files a/v5.2.x/.doctrees/release_5_1_0.doctree and b/v5.2.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.2.x/.doctrees/release_5_2_0.doctree b/v5.2.x/.doctrees/release_5_2_0.doctree index e3b9c3a18..4e024597b 100644 Binary files a/v5.2.x/.doctrees/release_5_2_0.doctree and b/v5.2.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.2.x/.doctrees/release_5_2_1.doctree b/v5.2.x/.doctrees/release_5_2_1.doctree index db7ded5cf..e1d0cc9bd 100644 Binary files a/v5.2.x/.doctrees/release_5_2_1.doctree and b/v5.2.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.2.x/.doctrees/restart.doctree b/v5.2.x/.doctrees/restart.doctree index 586cd0dc0..d2102105d 100644 Binary files a/v5.2.x/.doctrees/restart.doctree and b/v5.2.x/.doctrees/restart.doctree differ diff --git a/v5.2.x/.doctrees/riemann.doctree b/v5.2.x/.doctrees/riemann.doctree index b530c5587..5d7163786 100644 Binary files a/v5.2.x/.doctrees/riemann.doctree and b/v5.2.x/.doctrees/riemann.doctree differ diff --git a/v5.2.x/.doctrees/sealevel.doctree b/v5.2.x/.doctrees/sealevel.doctree index eeb35d45d..ea805f469 100644 Binary files a/v5.2.x/.doctrees/sealevel.doctree and b/v5.2.x/.doctrees/sealevel.doctree differ diff --git a/v5.2.x/.doctrees/setaux_defaults.doctree b/v5.2.x/.doctrees/setaux_defaults.doctree index 85d983c63..54d3fe67c 100644 Binary files a/v5.2.x/.doctrees/setaux_defaults.doctree and b/v5.2.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.2.x/.doctrees/setplot.doctree b/v5.2.x/.doctrees/setplot.doctree index 71835eb85..17c94ec10 100644 Binary files a/v5.2.x/.doctrees/setplot.doctree and b/v5.2.x/.doctrees/setplot.doctree differ diff --git a/v5.2.x/.doctrees/setrun.doctree b/v5.2.x/.doctrees/setrun.doctree index f3c2ba020..7a4079256 100644 Binary files a/v5.2.x/.doctrees/setrun.doctree and b/v5.2.x/.doctrees/setrun.doctree differ diff --git a/v5.2.x/.doctrees/setrun_amrclaw.doctree b/v5.2.x/.doctrees/setrun_amrclaw.doctree index 3556dacc8..6d45e5f87 100644 Binary files a/v5.2.x/.doctrees/setrun_amrclaw.doctree and b/v5.2.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.2.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.2.x/.doctrees/setrun_amrclaw_sample.doctree index eb92b3067..e70d45121 100644 Binary files a/v5.2.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.2.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.2.x/.doctrees/setrun_geoclaw.doctree b/v5.2.x/.doctrees/setrun_geoclaw.doctree index 23268e768..fa26c2ab0 100644 Binary files a/v5.2.x/.doctrees/setrun_geoclaw.doctree and b/v5.2.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.2.x/.doctrees/setrun_sample.doctree b/v5.2.x/.doctrees/setrun_sample.doctree index 5108b2498..c11a4e371 100644 Binary files a/v5.2.x/.doctrees/setrun_sample.doctree and b/v5.2.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.2.x/.doctrees/sharing.doctree b/v5.2.x/.doctrees/sharing.doctree index c507ecb7b..0f621ccaa 100644 Binary files a/v5.2.x/.doctrees/sharing.doctree and b/v5.2.x/.doctrees/sharing.doctree differ diff --git a/v5.2.x/.doctrees/sphinxdoc.doctree b/v5.2.x/.doctrees/sphinxdoc.doctree index 535829dba..0f1e26d05 100644 Binary files a/v5.2.x/.doctrees/sphinxdoc.doctree and b/v5.2.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.2.x/.doctrees/src1d_defaults.doctree b/v5.2.x/.doctrees/src1d_defaults.doctree index ccf64928b..743ffed4d 100644 Binary files a/v5.2.x/.doctrees/src1d_defaults.doctree and b/v5.2.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.2.x/.doctrees/src_defaults.doctree b/v5.2.x/.doctrees/src_defaults.doctree index 602285ff7..501181cff 100644 Binary files a/v5.2.x/.doctrees/src_defaults.doctree and b/v5.2.x/.doctrees/src_defaults.doctree differ diff --git a/v5.2.x/.doctrees/testing.doctree b/v5.2.x/.doctrees/testing.doctree index 163ca64b9..abcdf65fb 100644 Binary files a/v5.2.x/.doctrees/testing.doctree and b/v5.2.x/.doctrees/testing.doctree differ diff --git a/v5.2.x/.doctrees/toc_condensed.doctree b/v5.2.x/.doctrees/toc_condensed.doctree index a6f50e112..10a0e8568 100644 Binary files a/v5.2.x/.doctrees/toc_condensed.doctree and b/v5.2.x/.doctrees/toc_condensed.doctree differ diff --git a/v5.2.x/.doctrees/topo.doctree b/v5.2.x/.doctrees/topo.doctree index eca30443a..224c6794e 100644 Binary files a/v5.2.x/.doctrees/topo.doctree and b/v5.2.x/.doctrees/topo.doctree differ diff --git a/v5.2.x/.doctrees/topotools.doctree b/v5.2.x/.doctrees/topotools.doctree index 95539d452..b51bb3abd 100644 Binary files a/v5.2.x/.doctrees/topotools.doctree and b/v5.2.x/.doctrees/topotools.doctree differ diff --git a/v5.2.x/.doctrees/topotools_module.doctree b/v5.2.x/.doctrees/topotools_module.doctree index 35073c695..8a0dffe19 100644 Binary files a/v5.2.x/.doctrees/topotools_module.doctree and b/v5.2.x/.doctrees/topotools_module.doctree differ diff --git a/v5.2.x/.doctrees/trouble.doctree b/v5.2.x/.doctrees/trouble.doctree index 634699688..2bf9bbd31 100644 Binary files a/v5.2.x/.doctrees/trouble.doctree and b/v5.2.x/.doctrees/trouble.doctree differ diff --git a/v5.2.x/.doctrees/tsunamidata.doctree b/v5.2.x/.doctrees/tsunamidata.doctree index 235ff1acf..ee043f502 100644 Binary files a/v5.2.x/.doctrees/tsunamidata.doctree and b/v5.2.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.2.x/.doctrees/user_routines.doctree b/v5.2.x/.doctrees/user_routines.doctree index 39fba7154..84d0fc3ed 100644 Binary files a/v5.2.x/.doctrees/user_routines.doctree and b/v5.2.x/.doctrees/user_routines.doctree differ diff --git a/v5.2.x/.doctrees/visit_plotting.doctree b/v5.2.x/.doctrees/visit_plotting.doctree index 3bd7da3fc..7c2548540 100644 Binary files a/v5.2.x/.doctrees/visit_plotting.doctree and b/v5.2.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.2.x/.doctrees/vm.doctree b/v5.2.x/.doctrees/vm.doctree index 9e67b8ca7..0a240162d 100644 Binary files a/v5.2.x/.doctrees/vm.doctree and b/v5.2.x/.doctrees/vm.doctree differ diff --git a/v5.2.x/.doctrees/wp_algorithms.doctree b/v5.2.x/.doctrees/wp_algorithms.doctree index f0c8e9aba..db6203143 100644 Binary files a/v5.2.x/.doctrees/wp_algorithms.doctree and b/v5.2.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.2.x/b4step_defaults.html b/v5.2.x/b4step_defaults.html index 11f4cf175..cce274728 100644 --- a/v5.2.x/b4step_defaults.html +++ b/v5.2.x/b4step_defaults.html @@ -82,17 +82,17 @@

            Navigation

            as needed. Remember to change to Makefile to point to the proper version.

            $CLAW/classic/src/1d/b4step1.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 18)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 18)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

            $CLAW/classic/src/2d/b4step2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 24)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 24)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

            $CLAW/classic/src/3d/b4step3.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 30)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 30)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

            @@ -104,7 +104,7 @@

            Navigation

            with latitude when coordinate_system == 2).

            $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 48)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/b4step_defaults.rst, line 48)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

            diff --git a/v5.2.x/galleries.html b/v5.2.x/galleries.html index 8540248bf..d02afe637 100644 --- a/v5.2.x/galleries.html +++ b/v5.2.x/galleries.html @@ -85,19 +85,19 @@

            Navigation

            Galleries of all Clawpack applications

            See also IPython notebook examples.

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            toctree contains reference to nonexisting document ‘gallery/gallery_classic_amrclaw’

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            toctree contains reference to nonexisting document ‘gallery/gallery_geoclaw’

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/galleries.rst, line 10)

            toctree contains reference to nonexisting document ‘gallery/gallery_fvmbook’

            diff --git a/v5.2.x/genindex.html b/v5.2.x/genindex.html index 8da5a9490..931ff8d40 100644 --- a/v5.2.x/genindex.html +++ b/v5.2.x/genindex.html @@ -109,6 +109,8 @@

            A

             
            + c
            + clawpack +
                + clawpack.riemann.acoustics_1D_py +
                + clawpack.riemann.advection_1D_py +
                + clawpack.riemann.burgers_1D_py +
                + clawpack.riemann.euler_1D_py +
                + clawpack.riemann.shallow_1D_py +
             
            p
            pyclaw
                pyclaw.limiters.tvd
                pyclaw.util diff --git a/v5.1.x/pyclaw/examples.html b/v5.1.x/pyclaw/examples.html index 7d74c6e11..2678bf0db 100644 --- a/v5.1.x/pyclaw/examples.html +++ b/v5.1.x/pyclaw/examples.html @@ -136,47 +136,47 @@

            From the command lineList of built-in examples

            You can see results from many of the examples in the Galleries of all Clawpack applications.

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*adv*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*acoust*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*burg*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*shallow*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*blast*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*shock*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*psystem*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*Rossby*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree glob pattern ‘gallery/*dam*’ didn’t match any documents

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree contains reference to nonexisting document ‘pyclaw/gallery/kpp’

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/examples.rst, line 62)

            toctree contains reference to nonexisting document ‘pyclaw/gallery/stegoton’

            diff --git a/v5.1.x/pyclaw/geometry.html b/v5.1.x/pyclaw/geometry.html index 871f93129..2e0ce48ea 100644 --- a/v5.1.x/pyclaw/geometry.html +++ b/v5.1.x/pyclaw/geometry.html @@ -619,10 +619,120 @@

            Parallel Geometry Objects

            -

            petclaw.geometry.Domain

            +

            petclaw.geometry.Domain

            +
            +
            +class petclaw.geometry.Domain(geom)
            +

            Bases: clawpack.pyclaw.geometry.Domain

            +

            Parallel Domain Class

            +

            Parent Class Documentation:

            +

            2D Classic (Clawpack) solver.

            +

            Solve using the wave propagation algorithms of Randy LeVeque’s +Clawpack code (www.clawpack.org).

            +

            In addition to the attributes of ClawSolver1D, ClawSolver2D +also has the following options:

            +
            +
            +dimensional_split
            +

            If True, use dimensional splitting (Godunov splitting). +Dimensional splitting with Strang splitting is not supported +at present but could easily be enabled if necessary. +If False, use unsplit Clawpack algorithms, possibly including +transverse Riemann solves.

            +
            + +
            +
            +transverse_waves
            +

            If dimensional_split is True, this option has no effect. If +dimensional_split is False, then transverse_waves should be one of +the following values:

            +

            ClawSolver2D.no_trans: Transverse Riemann solver +not used. The stable CFL for this algorithm is 0.5. Not recommended.

            +

            ClawSolver2D.trans_inc: Transverse increment waves are computed +and propagated.

            +

            ClawSolver2D.trans_cor: Transverse increment waves and transverse +correction waves are computed and propagated.

            +
            + +

            Note that only the fortran routines are supported for now in 2D.

            +

            Parent Class Documentation:

            +

            Generic classic Clawpack solver

            +

            All Clawpack solvers inherit from this base class.

            +
            +
            +mthlim
            +

            Limiter(s) to be used. Specified either as one value or a list. +If one value, the specified limiter is used for all wave families. +If a list, the specified values indicate which limiter to apply to +each wave family. Take a look at pyclaw.limiters.tvd for an enumeration. +Default = limiters.tvd.minmod

            +
            + +
            +
            +order
            +

            Order of the solver, either 1 for first order (i.e., Godunov’s method) +or 2 for second order (Lax-Wendroff-LeVeque). +Default = 2

            +
            + +
            +
            +source_split
            +

            Which source splitting method to use: 1 for first +order Godunov splitting and 2 for second order Strang splitting. +Default = 1

            +
            + +
            +
            +fwave
            +

            Whether to split the flux jump (rather than the jump in Q) into waves; +requires that the Riemann solver performs the splitting. +Default = False

            +
            + +
            +
            +step_source
            +

            Handle for function that evaluates the source term. +The required signature for this function is:

            +

            def step_source(solver,state,dt)

            +
            + +
            +
            +kernel_language
            +

            Specifies whether to use wrapped Fortran routines (‘Fortran’) +or pure Python (‘Python’). Default = 'Fortran'.

            +
            + +
            +
            +verbosity
            +

            The level of detail of logged messages from the Fortran solver. +Default = 0.

            +
            + +
            +
            -

            petclaw.geometry.Patch

            +

            petclaw.geometry.Patch

            +
            +
            +class petclaw.geometry.Patch(dimensions)
            +

            Bases: clawpack.pyclaw.geometry.Patch

            +

            Parallel Patch class.

            +

            Parent Class Documentation:

            +
            +
            Global Patch information
            +

            Each patch has a value for level and patch_index.

            +
            +
            +
            +

            diff --git a/v5.1.x/pyclaw/index.html b/v5.1.x/pyclaw/index.html index fc6dae00c..48c07de70 100644 --- a/v5.1.x/pyclaw/index.html +++ b/v5.1.x/pyclaw/index.html @@ -116,7 +116,7 @@

            PyClaw is:

            PyClaw Documentation

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/index.rst, line 42)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/6c7c4a351d3bdc60fa855e7f5fa7fcf9fa1676ae/pyclaw/index.rst, line 42)

            toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

            diff --git a/v5.1.x/pyclaw/rp.html b/v5.1.x/pyclaw/rp.html index a34d27b9c..c841f6177 100644 --- a/v5.1.x/pyclaw/rp.html +++ b/v5.1.x/pyclaw/rp.html @@ -163,18 +163,328 @@

            Navigation

            Acoustics

            +

            Riemann solvers for constant coefficient acoustics.

            +
            +\[q_t + A q_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
            +

            and the coefficient matrix is

            +
            +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
            +

            The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

            +
            +
            Authors
            +

            Kyle T. Mandli (2009-02-03): Initial version

            +
            +
            +
            +
            +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Basic 1d acoustics riemann solver, with interleaved arrays

            +
            +
            problem_data is expected to contain -
              +
            • zz - (float) Impedence

            • +
            • cc - (float) Speed of sound

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-02-03)

            +
            +
            +
            +

            Advection

            +

            Simple advection Riemann solvers

            +

            Basic advection Riemann solvers of the form (1d)

            +
            +\[q_t + A q_x = 0.\]
            +
            +
            Authors
            +

            Kyle T. Mandli (2008-2-20): Initial version

            +
            +
            +
            +
            +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Basic 1d advection riemann solver

            +
            +
            problem_data should contain -
              +
            • u - (float) Determines advection speed

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2008-2-20)

            +
            +
            +
            +

            Burgers Equation

            +

            Riemann solvers for Burgers equation

            +
            +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
            +
            +
            Authors
            +

            Kyle T. Mandli (2009-2-4): Initial version

            +
            +
            +
            +
            +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Riemann solver for Burgers equation in 1d

            +
            +
            problem_data should contain -
              +
            • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-2-4)

            +
            +
            +
            +

            Euler Equations

            +

            Riemann solvers for the Euler equations

            +

            This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

            +
            +\[q_t + f(q)_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
            +

            the flux function is

            +
            +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
            +

            and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

            +

            Unless otherwise noted, the ideal gas equation of state is used:

            +
            +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
            +
            +
            +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Exact euler Riemann solver

            +
            +

            Warning

            +

            This solver has not been implemented.

            +
            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLL euler solver

            +
            W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +
            +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
            +
            +
            +
            +
            problem_data should contain:
              +
            • gamma - (float) Ratio of the heat capacities

            • +
            • gamma1 - (float) \(1 - \gamma\)

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2014-03-04)

            +
            +
            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLLC Euler solver

            +
            W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = q_hat_r - q_hat_l  s_2 = s_m
            +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
            +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
            +
            +
            +

            left middle state:

            +
            q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
            +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
            +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
            +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
            +
            +
            +

            right middle state:

            +
            q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
            +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
            +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
            +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
            +
            +
            +

            problem_data should contain:

            +
            +
              +
            • gamma: (float) Ratio of specific heat capacities

            • +
            • gamma1: (float) \(\gamma - 1\)

            • +
            +
            +

            :Version 1.0 (2015-11-18)

            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Roe Euler solver in 1d

            +
            +
            aug_global should contain -
              +
            • gamma - (float) Ratio of the heat capacities

            • +
            • gamma1 - (float) \(1 - \gamma\)

            • +
            • efix - (bool) Whether to use an entropy fix or not

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-6-26)

            +
            +
            +
            +

            Shallow Water Equations

            +

            Riemann solvers for the shallow water equations.

            +
            +
            The available solvers are:
              +
            • Roe - Use Roe averages to caluclate the solution to the Riemann problem

            • +
            • HLL - Use a HLL solver

            • +
            • +
              Exact - Use a newton iteration to calculate the exact solution to the

              Riemann problem

              +
              +
              +
            • +
            +
            +
            +
            +\[q_t + f(q)_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
            +

            the flux function is

            +
            +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
            +

            and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

            +
            +
            +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Exact shallow water Riemann solver

            +
            +

            Warning

            +

            This solver has not been implemented.

            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Shallow water Riemann solver using fwaves

            +

            Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

            +
            +
            problem_data should contain:
              +
            • grav - (float) Gravitational constant

            • +
            • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

            • +
            • sea_level - (float) Datum from which the dry-state is calculated.

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2014-09-05)

            +
            +
            Version
            +

            2.0 (2017-03-07)

            +
            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLL shallow water solver

            +
            W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +
            +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
            +
            +
            +
            +
            problem_data should contain:
              +
            • g - (float) Gravitational constant

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2009-02-05)

            +
            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Roe shallow water solver in 1d:

            +
            ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
            +cbar = sqrt( 0.5 * g * (h_l + h_r))
            +
            +W_1 = |      1      |  s_1 = ubar - cbar
            +      | ubar - cbar |
            +
            +W_2 = |      1      |  s_1 = ubar + cbar
            +      | ubar + cbar |
            +
            +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
            +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
            +
            +
            +
            +
            problem_data should contain:
              +
            • g - (float) Gravitational constant

            • +
            • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2009-02-05)

            +
            +
            +
            +
            diff --git a/v5.1.x/pyclaw/solution.html b/v5.1.x/pyclaw/solution.html index ad255a1c3..a965e9366 100644 --- a/v5.1.x/pyclaw/solution.html +++ b/v5.1.x/pyclaw/solution.html @@ -116,10 +116,10 @@

            Navigation

            petclaw.state.State

            pyclaw.geometry.Domain

            petclaw.geometry.Domain

            petclaw.geometry.Domain

            pyclaw.geometry.Patch

            petclaw.geometry.Patch

            petclaw.geometry.Patch

            pyclaw.geometry.Grid

            - +
            @@ -196,11 +202,21 @@

            C

          • clawpack.geoclaw.kmltools (module)
          • -
          - +
          • verbosity() (pyclaw.controller.Controller property) diff --git a/v5.2.x/geoclaw_util_module.html b/v5.2.x/geoclaw_util_module.html index 400f358dc..25d974437 100644 --- a/v5.2.x/geoclaw_util_module.html +++ b/v5.2.x/geoclaw_util_module.html @@ -105,7 +105,7 @@

            Navigation

            Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

            -

            System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

            +

            System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

            Unexpected indentation.

            diff --git a/v5.2.x/git_resources.html b/v5.2.x/git_resources.html index fdabb4da3..640b2bcc4 100644 --- a/v5.2.x/git_resources.html +++ b/v5.2.x/git_resources.html @@ -139,9 +139,9 @@

            Manual pages online`git status`_

          -

          System Message: SEVERE/4 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/git_resources.rst, line 62)

          +

          System Message: SEVERE/4 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/git_resources.rst, line 62)

          Problems with “include” directive path: -InputError: [Errno 2] No such file or directory: ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/git_links.inc’.

          +InputError: [Errno 2] No such file or directory: ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/git_links.inc’.

          .. include:: git_links.inc
           
          diff --git a/v5.2.x/kmltools_module.html b/v5.2.x/kmltools_module.html index b286bff37..bcd973216 100644 --- a/v5.2.x/kmltools_module.html +++ b/v5.2.x/kmltools_module.html @@ -103,6 +103,7 @@

          Navigation

        • topo2kml - create a kml outline for each topo grid specified in setrun

        • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

        • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

        • +
        • fgout2kml - create a kml outline for each fgout grid specified in setrun

        • make_input_data_kmls - make kml files for many things specified in setrun

        • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

        • png2kml - create kml file wrapping a png figure to be viewed on GE

        • @@ -182,6 +183,28 @@

          Navigation

          +
          +
          +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
          +

          Create a KML box for each fgout grid specified for a GeoClaw run.

          +
          +
          Inputs
          +
            +
          • rundata - an object of class ClawRunData or None

            +

            If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

            +
          • +
          • fname (str) - resulting kml file.

          • +
          • verbose (bool) - If True, print out info about each region found

          • +
          • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

          • +
          +
          +
          +
          +
          clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
          @@ -329,7 +352,7 @@

          Navigation

          Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          Unexpected indentation.

          @@ -337,7 +360,7 @@

          Navigation

          dpi * y_inches = dcp * y_cells

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          Block quote ends without a blank line; unexpected unindent.

          where x_cells, y_cells are the number of cells in each direction.

          @@ -347,14 +370,14 @@

          Navigation

          annotate the figure befor saving it as a png file, which should then be done with:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          Unexpected indentation.

          plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          Block quote ends without a blank line; unexpected unindent.

          The png_extent is needed in construcing a kml file to display the @@ -490,7 +513,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          Field list ends without a blank line; unexpected unindent.

          If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.2.x/objects.inv b/v5.2.x/objects.inv index 963cd5566..c081a2090 100644 Binary files a/v5.2.x/objects.inv and b/v5.2.x/objects.inv differ diff --git a/v5.2.x/py-modindex.html b/v5.2.x/py-modindex.html index 941afc2be..daf605c94 100644 --- a/v5.2.x/py-modindex.html +++ b/v5.2.x/py-modindex.html @@ -114,6 +114,31 @@

          Python Module Index

              clawpack.geoclaw.util + + +     + clawpack.riemann.acoustics_1D_py + + + +     + clawpack.riemann.advection_1D_py + + + +     + clawpack.riemann.burgers_1D_py + + + +     + clawpack.riemann.euler_1D_py + + + +     + clawpack.riemann.shallow_1D_py +   p diff --git a/v5.2.x/pyclaw/examples.html b/v5.2.x/pyclaw/examples.html index a5da96581..66bb382e9 100644 --- a/v5.2.x/pyclaw/examples.html +++ b/v5.2.x/pyclaw/examples.html @@ -136,47 +136,47 @@

          From the command lineList of built-in examples

          You can see results from many of the examples in the Galleries of all Clawpack applications.

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*adv*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*acoust*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*burg*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*shallow*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*blast*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*shock*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*psystem*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*Rossby*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree glob pattern ‘gallery/*dam*’ didn’t match any documents

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree contains reference to nonexisting document ‘pyclaw/gallery/kpp’

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/examples.rst, line 62)

          toctree contains reference to nonexisting document ‘pyclaw/gallery/stegoton’

          diff --git a/v5.2.x/pyclaw/geometry.html b/v5.2.x/pyclaw/geometry.html index 7468ed6b5..3034f39f8 100644 --- a/v5.2.x/pyclaw/geometry.html +++ b/v5.2.x/pyclaw/geometry.html @@ -619,10 +619,120 @@

          Parallel Geometry Objects

          -

          petclaw.geometry.Domain

          +

          petclaw.geometry.Domain

          +
          +
          +class petclaw.geometry.Domain(geom)
          +

          Bases: clawpack.pyclaw.geometry.Domain

          +

          Parallel Domain Class

          +

          Parent Class Documentation:

          +

          2D Classic (Clawpack) solver.

          +

          Solve using the wave propagation algorithms of Randy LeVeque’s +Clawpack code (www.clawpack.org).

          +

          In addition to the attributes of ClawSolver1D, ClawSolver2D +also has the following options:

          +
          +
          +dimensional_split
          +

          If True, use dimensional splitting (Godunov splitting). +Dimensional splitting with Strang splitting is not supported +at present but could easily be enabled if necessary. +If False, use unsplit Clawpack algorithms, possibly including +transverse Riemann solves.

          +
          + +
          +
          +transverse_waves
          +

          If dimensional_split is True, this option has no effect. If +dimensional_split is False, then transverse_waves should be one of +the following values:

          +

          ClawSolver2D.no_trans: Transverse Riemann solver +not used. The stable CFL for this algorithm is 0.5. Not recommended.

          +

          ClawSolver2D.trans_inc: Transverse increment waves are computed +and propagated.

          +

          ClawSolver2D.trans_cor: Transverse increment waves and transverse +correction waves are computed and propagated.

          +
          + +

          Note that only the fortran routines are supported for now in 2D.

          +

          Parent Class Documentation:

          +

          Generic classic Clawpack solver

          +

          All Clawpack solvers inherit from this base class.

          +
          +
          +mthlim
          +

          Limiter(s) to be used. Specified either as one value or a list. +If one value, the specified limiter is used for all wave families. +If a list, the specified values indicate which limiter to apply to +each wave family. Take a look at pyclaw.limiters.tvd for an enumeration. +Default = limiters.tvd.minmod

          +
          + +
          +
          +order
          +

          Order of the solver, either 1 for first order (i.e., Godunov’s method) +or 2 for second order (Lax-Wendroff-LeVeque). +Default = 2

          +
          + +
          +
          +source_split
          +

          Which source splitting method to use: 1 for first +order Godunov splitting and 2 for second order Strang splitting. +Default = 1

          +
          + +
          +
          +fwave
          +

          Whether to split the flux jump (rather than the jump in Q) into waves; +requires that the Riemann solver performs the splitting. +Default = False

          +
          + +
          +
          +step_source
          +

          Handle for function that evaluates the source term. +The required signature for this function is:

          +

          def step_source(solver,state,dt)

          +
          + +
          +
          +kernel_language
          +

          Specifies whether to use wrapped Fortran routines (‘Fortran’) +or pure Python (‘Python’). Default = 'Fortran'.

          +
          + +
          +
          +verbosity
          +

          The level of detail of logged messages from the Fortran solver. +Default = 0.

          +
          + +
          +
          -

          petclaw.geometry.Patch

          +

          petclaw.geometry.Patch

          +
          +
          +class petclaw.geometry.Patch(dimensions)
          +

          Bases: clawpack.pyclaw.geometry.Patch

          +

          Parallel Patch class.

          +

          Parent Class Documentation:

          +
          +
          Global Patch information
          +

          Each patch has a value for level and patch_index.

          +
          +
          +
          +

        diff --git a/v5.2.x/pyclaw/index.html b/v5.2.x/pyclaw/index.html index bd4a54e65..40bed51f9 100644 --- a/v5.2.x/pyclaw/index.html +++ b/v5.2.x/pyclaw/index.html @@ -116,7 +116,7 @@

        PyClaw is:

        PyClaw Documentation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/index.rst, line 42)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/pyclaw/index.rst, line 42)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

        diff --git a/v5.2.x/pyclaw/rp.html b/v5.2.x/pyclaw/rp.html index 65c2cea94..d3af9e4f0 100644 --- a/v5.2.x/pyclaw/rp.html +++ b/v5.2.x/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +

        diff --git a/v5.2.x/pyclaw/solution.html b/v5.2.x/pyclaw/solution.html index 5ccb5807e..42105d6aa 100644 --- a/v5.2.x/pyclaw/solution.html +++ b/v5.2.x/pyclaw/solution.html @@ -116,10 +116,10 @@

        Navigation

        petclaw.state.State

        pyclaw.geometry.Domain

        -

        petclaw.geometry.Domain

        +

        petclaw.geometry.Domain

        pyclaw.geometry.Patch

        -

        petclaw.geometry.Patch

        +

        petclaw.geometry.Patch

        pyclaw.geometry.Grid

        @@ -215,7 +215,7 @@

        Navigation

        -read(frame, path='./_output', file_format='ascii', file_prefix=None, read_aux=True, options={}, **kargs)
        +read(frame, path='./_output', file_format=None, file_prefix='fort', read_aux=True, options={}, **kargs)

        Reads in a Solution object from a file

        Reads in and initializes this Solution with the data specified. This function will raise an IOError if it was unsuccessful.

        @@ -234,7 +234,8 @@

        Navigation

      • path - (string) Base path to the files to be read. default = './_output'

      • file_format - (string) Format of the file, should match on of the -modules inside of the io package. default = 'ascii'

      • +modules inside of the io package. default = None +but now attempts to read from header file (as of v5.9.0).

      • file_prefix - (string) Name prefix in front of all the files, defaults to whatever the format defaults to, e.g. fort for ascii

      • options - (dict) Dictionary of optional arguments dependent on diff --git a/v5.2.x/pyclaw/state.html b/v5.2.x/pyclaw/state.html index 739659e33..cd61b4413 100644 --- a/v5.2.x/pyclaw/state.html +++ b/v5.2.x/pyclaw/state.html @@ -92,7 +92,7 @@

        Navigation

        object also handles some of the parallel communication required of the state on the given patch such that only the parts of the fields local to the process. If you are interested in the geometry of the local state you can find it through the -Patch object’s reference to its own +Patch object’s reference to its own Grid.

        Serial pyclaw.state.State

        diff --git a/v5.2.x/python.html b/v5.2.x/python.html index 6fec94114..e4ef675b1 100644 --- a/v5.2.x/python.html +++ b/v5.2.x/python.html @@ -163,7 +163,7 @@

        References and tutorialsMatplotlib gallery

      • `LeVeque’s class notes

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/python.rst, line 96); backlink

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/python.rst, line 96); backlink

        Inline interpreted text or phrase reference start-string without end-string.

      • diff --git a/v5.2.x/qinit_defaults.html b/v5.2.x/qinit_defaults.html index cc03f83e7..38491ce58 100644 --- a/v5.2.x/qinit_defaults.html +++ b/v5.2.x/qinit_defaults.html @@ -82,17 +82,17 @@

        Navigation

        the initial conditions as desired.

        $CLAW/classic/src/1d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/2d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/3d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

        @@ -103,7 +103,7 @@

        Navigation

        qinit data file parameters.

        $CLAW/geoclaw/src/2d/shallow/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/qinit_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

        diff --git a/v5.2.x/searchindex.js b/v5.2.x/searchindex.js index 0604c5297..6bfc2b323 100644 --- a/v5.2.x/searchindex.js +++ b/v5.2.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","book","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","contents","current_data","developers","dtopotools_module","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_util_module","geohints","geoplot","git_resources","git_versions","howto_doc","installing","kmltools_module","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/devel/gitwash/development_workflow","pyclaw/devel/gitwash/git_installation","pyclaw/devel/gitwash/git_resources","pyclaw/devel/gitwash/maintainer_workflow","pyclaw/devel/gitwash/patching_forking","pyclaw/develop","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/for_developers","pyclaw/future","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","toc_condensed","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","book.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","contents.rst","current_data.rst","developers.rst","dtopotools_module.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_resources.rst","git_versions.rst","howto_doc.rst","installing.rst","kmltools_module.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/devel/gitwash/development_workflow.rst","pyclaw/devel/gitwash/git_installation.rst","pyclaw/devel/gitwash/git_resources.rst","pyclaw/devel/gitwash/maintainer_workflow.rst","pyclaw/devel/gitwash/patching_forking.rst","pyclaw/develop.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/for_developers.rst","pyclaw/future.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","toc_condensed.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[25,1,0,"-"],kmltools:[43,1,0,"-"],topotools:[123,1,0,"-"],util:[36,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[25,0,1,""],DTopography:[25,0,1,""],Fault:[25,0,1,""],Mw:[25,3,1,""],SiftFault:[25,0,1,""],SubFault:[25,0,1,""],SubdividedPlaneFault:[25,0,1,""],TensorProductFault:[25,0,1,""],UCSBFault:[25,0,1,""],plot_dZ_colors:[25,3,1,""],plot_dZ_contours:[25,3,1,""],rise_fraction:[25,3,1,""],strike_direction:[25,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[25,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[25,2,1,""],dZ_max:[25,2,1,""],plot_dZ_colors:[25,2,1,""],plot_dZ_contours:[25,2,1,""],read:[25,2,1,""],write:[25,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[25,2,1,""],Mw:[25,2,1,""],containing_rect:[25,2,1,""],create_dtopo_xy:[25,2,1,""],create_dtopography:[25,2,1,""],plot_subfaults:[25,2,1,""],plot_subfaults_depth:[25,2,1,""],read:[25,2,1,""],set_dynamic_slip:[25,2,1,""],write:[25,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[25,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[25,2,1,""],calculate_geometry:[25,2,1,""],calculate_geometry_triangles:[25,2,1,""],centers:[25,2,1,""],convert_to_standard_units:[25,2,1,""],coordinate_specification:[25,4,1,""],corners:[25,2,1,""],depth:[25,4,1,""],dip:[25,4,1,""],dynamic_slip:[25,2,1,""],gauss_pts:[25,2,1,""],latitude:[25,4,1,""],length:[25,4,1,""],longitude:[25,4,1,""],mu:[25,4,1,""],okada:[25,2,1,""],rake:[25,4,1,""],rise_shape:[25,4,1,""],rise_time:[25,4,1,""],rise_time_starting:[25,4,1,""],rupture_time:[25,4,1,""],rupture_type:[25,4,1,""],set_corners:[25,2,1,""],slip:[25,4,1,""],strike:[25,4,1,""],width:[25,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[25,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[25,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[43,3,1,""],deg2dms:[43,3,1,""],dtopo2kml:[43,3,1,""],f2s:[43,3,1,""],fgmax2kml:[43,3,1,""],gauges2kml:[43,3,1,""],kml_build_colorbar:[43,3,1,""],kml_cb:[43,3,1,""],kml_png:[43,3,1,""],kml_timespan:[43,3,1,""],line2kml:[43,3,1,""],make_input_data_kmls:[43,3,1,""],pcolorcells_for_kml:[43,3,1,""],png2kml:[43,3,1,""],poly2kml:[43,3,1,""],quad2kml:[43,3,1,""],regions2kml:[43,3,1,""],topo2kml:[43,3,1,""],topo2kmz:[43,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[123,0,1,""],create_topo_func:[123,3,1,""],determine_topo_type:[123,3,1,""],fetch_topo_url:[123,3,1,""],get_topo:[123,3,1,""],read_netcdf:[123,3,1,""],swapheader:[123,3,1,""],topo1writer:[123,3,1,""],topo2writer:[123,3,1,""],topo3writer:[123,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[123,2,1,""],Y:[123,2,1,""],Z:[123,2,1,""],crop:[123,2,1,""],delta:[123,2,1,""],extent:[123,2,1,""],generate_2d_coordinates:[123,2,1,""],generate_2d_topo:[123,2,1,""],in_poly:[123,2,1,""],interp_unstructured:[123,2,1,""],make_shoreline_xy:[123,2,1,""],plot:[123,2,1,""],read:[123,2,1,""],read_header:[123,2,1,""],replace_no_data_values:[123,2,1,""],replace_values:[123,2,1,""],set_xyZ:[123,2,1,""],smooth_data:[123,2,1,""],write:[123,2,1,""],x:[123,2,1,""],y:[123,2,1,""],z:[123,2,1,""]},"clawpack.geoclaw.util":{bearing:[36,3,1,""],dist_latlong2meters:[36,3,1,""],dist_meters2latlong:[36,3,1,""],dms2decimal:[36,3,1,""],fetch_noaa_tide_data:[36,3,1,""],haversine:[36,3,1,""],inv_haversine:[36,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[90,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[90,4,1,""],kernel_language:[90,4,1,""],mthlim:[90,4,1,""],order:[90,4,1,""],setup:[90,2,1,""],source_split:[90,4,1,""],step:[90,2,1,""],step_hyperbolic:[90,2,1,""],step_source:[90,4,1,""],verbosity:[90,4,1,""]},"petclaw.state":{State:[92,0,1,""]},"petclaw.state.State":{F:[92,2,1,""],aux:[92,2,1,""],fset:[92,2,1,""],gauge_data:[92,4,1,""],get_aux_global:[92,2,1,""],get_auxbc_from_aux:[92,2,1,""],get_q_global:[92,2,1,""],get_qbc_from_q:[92,2,1,""],keep_gauges:[92,4,1,""],mF:[92,2,1,""],mp:[92,2,1,""],num_aux:[92,2,1,""],num_eqn:[92,2,1,""],p:[92,2,1,""],problem_data:[92,4,1,""],q:[92,2,1,""],set_num_ghost:[92,2,1,""],t:[92,4,1,""]},"pyclaw.controller":{Controller:[67,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[67,4,1,""],F_path:[67,2,1,""],check_validity:[67,2,1,""],compute_F:[67,4,1,""],compute_p:[67,4,1,""],file_prefix_p:[67,4,1,""],frames:[67,4,1,""],keep_copy:[67,4,1,""],nstepout:[67,4,1,""],num_output_times:[67,4,1,""],out_times:[67,4,1,""],outdir:[67,4,1,""],outdir_p:[67,2,1,""],output_file_prefix:[67,4,1,""],output_format:[67,4,1,""],output_options:[67,4,1,""],output_style:[67,4,1,""],overwrite:[67,4,1,""],plot:[67,2,1,""],plotdata:[67,4,1,""],run:[67,2,1,""],rundir:[67,4,1,""],runmake:[67,4,1,""],savecode:[67,4,1,""],solver:[67,4,1,""],tfinal:[67,4,1,""],verbosity:[67,2,1,""],viewable_attributes:[67,4,1,""],write_aux_always:[67,4,1,""],write_aux_init:[67,4,1,""],xclawcmd:[67,4,1,""],xclawerr:[67,4,1,""],xclawout:[67,4,1,""],xdir:[67,4,1,""]},"pyclaw.geometry":{Dimension:[79,0,1,""],Domain:[79,0,1,""],Grid:[79,0,1,""],Patch:[79,0,1,""]},"pyclaw.geometry.Dimension":{centers:[79,2,1,""],centers_with_ghost:[79,2,1,""],delta:[79,2,1,""],nodes:[79,2,1,""],nodes_with_ghost:[79,2,1,""]},"pyclaw.geometry.Domain":{grid:[79,2,1,""],num_dim:[79,2,1,""],patch:[79,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[79,2,1,""],add_gauges:[79,2,1,""],c_center:[79,2,1,""],c_centers:[79,2,1,""],c_centers_with_ghost:[79,2,1,""],c_nodes:[79,2,1,""],c_nodes_with_ghost:[79,2,1,""],dimensions:[79,2,1,""],gauge_dir_name:[79,4,1,""],gauge_file_names:[79,4,1,""],gauge_files:[79,4,1,""],gauges:[79,4,1,""],get_dim_attribute:[79,2,1,""],num_dim:[79,2,1,""],p_center:[79,2,1,""],p_centers:[79,2,1,""],p_nodes:[79,2,1,""],plot:[79,2,1,""],setup_gauge_files:[79,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[79,2,1,""],delta:[79,2,1,""],dimensions:[79,2,1,""],get_dim_attribute:[79,2,1,""],level:[79,4,1,""],lower_global:[79,2,1,""],name:[79,2,1,""],num_cells_global:[79,2,1,""],num_dim:[79,2,1,""],patch_index:[79,4,1,""],upper_global:[79,2,1,""]},"pyclaw.limiters":{tvd:[74,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[74,3,1,""],beta_limiter:[74,3,1,""],cada_torrilhon_limiter:[74,3,1,""],cada_torrilhon_limiter_nonlinear:[74,3,1,""],cfl_superbee:[74,3,1,""],cfl_superbee_theta:[74,3,1,""],hyperbee_limiter:[74,3,1,""],limit:[74,3,1,""],mc_limiter:[74,3,1,""],minmod_limiter:[74,3,1,""],superbee_limiter:[74,3,1,""],superpower_limiter:[74,3,1,""],theta_limiter:[74,3,1,""],upper_bound_limiter:[74,3,1,""],van_leer_klein_sharpening_limiter:[74,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[90,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[90,2,1,""],aux_time_dep:[90,4,1,""],call_before_step_each_stage:[90,4,1,""],cfl_desired:[90,4,1,""],cfl_max:[90,4,1,""],char_decomp:[90,4,1,""],check_3rd_ord_cond:[90,2,1,""],dq:[90,2,1,""],dq_src:[90,4,1,""],dqdt:[90,2,1,""],fwave:[90,4,1,""],get_dt_new:[90,2,1,""],kernel_language:[90,4,1,""],lim_type:[90,4,1,""],num_ghost:[90,4,1,""],setup:[90,2,1,""],step:[90,2,1,""],tfluct:[90,4,1,""],tfluct_solver:[90,4,1,""],time_integrator:[90,4,1,""],update_saved_values:[90,2,1,""],weno_order:[90,4,1,""]},"pyclaw.solution":{Solution:[89,0,1,""]},"pyclaw.solution.Solution":{is_valid:[89,2,1,""],patch:[89,2,1,""],plot:[89,2,1,""],read:[89,2,1,""],set_all_states:[89,2,1,""],start_frame:[89,2,1,""],state:[89,2,1,""],write:[89,2,1,""]},"pyclaw.state":{State:[92,0,1,""]},"pyclaw.state.State":{F:[92,4,1,""],gauge_data:[92,4,1,""],get_aux_global:[92,2,1,""],get_auxbc_from_aux:[92,2,1,""],get_q_global:[92,2,1,""],get_qbc_from_q:[92,2,1,""],is_valid:[92,2,1,""],keep_gauges:[92,4,1,""],mF:[92,2,1,""],mp:[92,2,1,""],num_aux:[92,2,1,""],num_eqn:[92,2,1,""],p:[92,4,1,""],problem_data:[92,4,1,""],set_aux_from_auxbc:[92,2,1,""],set_cparam:[92,2,1,""],set_num_ghost:[92,2,1,""],set_q_from_qbc:[92,2,1,""],t:[92,4,1,""]},"pyclaw.util":{FrameCounter:[95,0,1,""],VerifyError:[95,5,1,""],add_parent_doc:[95,3,1,""],check_diff:[95,3,1,""],compile_library:[95,3,1,""],construct_function_handle:[95,3,1,""],convert_fort_double_to_float:[95,3,1,""],gen_variants:[95,3,1,""],read_data_line:[95,3,1,""],run_app_from_main:[95,3,1,""],run_serialized:[95,3,1,""],test_app:[95,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[95,2,1,""],increment:[95,2,1,""],reset_counter:[95,2,1,""],set_counter:[95,2,1,""]},pyclaw:{util:[95,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":54,"000000e":112,"00000e":112,"0000ff":[3,43],"001000e":112,"00er2592":4,"00ff00":43,"00ffff":43,"01er25474":4,"020204mag_polici":25,"0311_v3":98,"04d":127,"0d0":95,"0f22701":68,"115e":98,"11ee694744f2552d":68,"13d7934":68,"150w":98,"153w":98,"15e":123,"15n":98,"161w":98,"16m":53,"17th":90,"18n":98,"1d_plot":[34,58,60,109],"1drad":126,"1st":[74,90,110,112,114,126],"2013it":13,"210e":98,"23n":98,"25000000e":54,"26aa21a":68,"278dd2a":68,"27t06":43,"27t07":43,"29001ed":68,"2_installing_git":69,"2d_grid":20,"2d_patch":[3,20],"2d_pcolor":34,"2d_schlieren":3,"2dec1ac":68,"2e991e8":69,"2nd":[81,86,90,110,112,114,126],"376adbd":69,"3rd":[86,90],"40000000e":54,"4aff2a8":69,"4th":90,"50n":98,"5d0":126,"5e3":113,"5fcd911597685d99d94bee49a3dcea97a4bab85a":39,"5r01ar53652":4,"610000000000000e":98,"65af65":69,"68f6752":69,"6ad92e5":68,"6d8e1e":69,"721fc64":68,"7beda5a":69,"8888ff":43,"88er25053":4,"92er25139":4,"93er25181":4,"956fbab":69,"96er25292":4,"990000000000000e":98,"99999000e":26,"\u010dert\u00edk":4,"boolean":[3,82,110,111],"break":[24,25,37,43,73,88,113,123],"case":[5,7,10,12,17,20,25,26,31,37,43,48,58,64,68,71,72,73,76,79,84,86,89,95,99,103,107,113,121,123,126,129],"catch":[30,76],"class":[0,1,2,3,22,25,26,43,58,60,65,79,81,86,88,89,90,92,94,95,96,98,105,109,110,111,112,114,123],"default":[0,1,2,3,10,20,25,26,29,31,34,36,38,40,43,48,53,58,60,64,67,68,72,75,79,83,84,85,88,89,90,92,93,95,99,102,107,111,112,113,121,123,126],"export":[31,42,48,53,84,88,93,98],"final":[25,41,48,64,67,68,72,78,94,102,105,110,112,114,123],"float":[3,25,26,34,36,43,67,79,92,95,110,111,113,114,123],"function":[0,1,2,3,6,11,13,20,21,22,23,24,25,26,34,40,45,46,49,52,58,59,64,65,67,73,74,75,80,85,86,87,88,89,92,95,98,99,102,103,106,108,109,110,111,112,113,114,121,122,123,124,126],"import":[0,3,20,24,34,37,42,43,46,55,58,60,64,65,66,67,73,75,79,81,83,84,85,86,88,89,90,91,92,94,96,98,107,110,111,112,113,114,121,123,125,127],"int":[1,2,3,25,43,67,74,79,82,83,88,89,92,110,111,113,123],"long":[25,36,37,50,73,88,98,123],"new":[1,2,4,5,10,18,20,22,24,25,30,31,34,36,41,42,43,45,46,48,52,53,58,60,63,64,65,66,67,71,72,76,82,84,86,90,92,98,99,100,102,105,110,111,113,121,122,123,126],"ond\u0159ej":4,"public":[4,10,19,68,88],"return":[0,1,2,3,25,36,42,43,48,58,60,67,72,73,74,79,83,86,87,88,89,90,92,95,106,110,112,114,123,126,129],"short":[37,72,74,86],"static":25,"super":[21,24,123],"switch":[68,72,86,98,107,125],"throw":[24,69],"true":[0,1,2,3,5,11,12,22,23,25,29,34,36,40,43,64,67,69,79,83,84,89,90,92,99,105,106,108,110,111,112,113,114,123],"try":[1,24,28,34,42,43,58,66,72,73,75,82,89,91,93,94,95,96,100,110,121,123,124],"var":[0,3,10,11,23,39,97,108,117,118],"while":[10,12,48,58,60,65,68,72,79,83,84,90,95,106,113,125],AND:[44,62],ARE:[44,62],AWS:[10,42],Added:[69,74,102,104],Adding:[63,80],And:[5,18,41,88],Are:101,Axes:[69,109],BCs:[112,114],BUT:[44,62],Being:71,But:[10,58,68,93,98,103],CMS:4,DAs:92,DMS:4,DNS:10,EBS:10,FOR:[44,62],For:[0,1,2,3,5,6,10,11,12,15,16,17,20,23,24,25,26,28,29,31,34,36,37,38,41,42,45,48,49,52,53,57,58,60,64,65,68,69,71,72,75,79,81,82,83,84,86,88,90,91,95,96,97,98,99,101,102,103,104,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,123,125,126,129],GIS:121,Going:[10,22,81],Into:96,NOT:[43,44,58,62,88],Not:25,OPS:36,One:[21,25,48,65,88,95,99,123],Res:13,SUCH:[44,62],Such:[48,88],Sys:13,THAT:68,THE:[44,62],That:[28,66,88,94],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,20,21,22,23,24,25,26,28,29,30,31,34,35,36,37,38,39,40,41,42,43,45,46,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,76,77,79,81,83,84,86,87,88,89,90,91,92,93,95,99,100,102,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,123,124,126,127,128,129],Their:62,Then:[10,12,24,25,34,41,42,53,60,64,66,67,68,72,78,84,91,92,93,105,123],There:[3,5,10,20,26,30,39,42,45,54,60,68,69,70,83,88,91,98,109,110,126,128],These:[1,4,9,12,14,16,21,24,25,26,29,37,41,43,48,58,60,64,73,75,83,85,88,92,94,97,99,102,105,106,111,115,121,125,129],USE:[44,62],Use:[25,39,68,69,81,88,90,98,110,112,114,123],Useful:[1,3,110],Uses:[25,123],Using:[0,1,2,3,6,14,20,22,28,31,56,58,60,79,80,81,110,117,118,123,124,129],WILL:68,Will:89,With:[5,20,24,34,38,55,96,99,110],__________________o:123,__doc__:88,__init__:[86,88],__main__:[112,114],__name__:[112,114],_build:41,_compute_c_cent:79,_compute_c_nod:79,_compute_p_cent:79,_compute_p_nod:79,_output2:[58,60],_output:[10,28,34,40,48,58,60,75,85,89,105,124],_output_from_previous_run:34,_output_new:100,_output_old:100,_plot:[10,28,34,48,60,109,115],_plotindex:[1,34],_plots_new:100,_plots_old:100,_pyclaw_io:67,a351:[13,81],a377:[13,81],a7ff2e5:69,a815645:68,aabbggrr:43,abbrev:69,abbrevi:88,abdullah:62,abil:[68,123],abl:[10,42,66,69,71],abort:[45,68],about:[3,6,10,12,20,22,28,30,36,37,42,43,45,46,48,54,59,64,68,72,73,81,84,88,90,98,106,109,112,113,124,126,129],aboutu:25,abov:[3,10,12,18,24,26,28,29,30,34,37,41,42,44,52,54,58,62,65,68,69,71,83,85,91,94,95,96,98,99,106,109,110,112,113,114,121,123,126],abs:[25,86,95,123],absolut:[73,83,111,112],abstol:95,academ:[93,96],acc:88,accept:[64,83,90,110],accept_reject_step:90,access:[0,13,23,71,72,75,79,81,90,92,95],accident:[24,58,72],accompani:19,accomplish:45,accord:5,accordingli:121,account:[10,24,66,68,84],accur:[37,52,81,90,98,110,126,129],accuraci:[34,46,55,112,114],achiev:[18,65,68,117,118],acou:58,acount:98,acoust:[12,28,37,63,64,67,75,81,90,91,106,112,126],acoustics_1d:[64,94],acoustics_1d_example1:[28,50],acoustics_1d_heterogen:126,acoustics_1d_homogen:[73,75],acoustics_2d:90,acoustics_2d_radi:[112,126],acoustics_3d_vari:73,acquaint:94,acquir:58,across:[98,121,123],acsza1:25,acszb1:25,act:[74,123],acta:13,actanum2011:13,action:[10,65,72],activ:[26,27,39,70,90,113],actual:[5,23,25,43,48,51,52,58,68,69,74,95,98,107,113],adapt:[4,6,13,25,48,55,64,77,88,106,109,110,120,126],add:[0,8,10,12,13,22,23,24,25,26,34,36,39,41,48,49,64,68,69,70,71,72,73,75,76,79,83,84,86,95,98,103,114,123,127],add_colorbar:[25,98,123],add_dimens:79,add_gaug:[79,83],add_label:34,add_param:[112,114],add_parent_doc:95,add_titl:58,add_true_solut:58,added:[3,12,18,20,24,25,26,27,36,43,46,48,52,58,68,69,72,76,79,83,99,102,103,110,111,122,123,127],addgaug:34,adding:[20,23,24,31,34,43,52,84,97],addit:[10,12,21,22,24,26,35,43,52,54,55,58,59,65,72,74,81,83,88,90,91,92,98,99,110,114,121,126,127],addition:[72,84],address:[41,69],adequ:37,adjac:[5,12,26,35,99,110],adjust:[10,18,43,51,79,83,98,107,110,126],admin:68,adopt:[25,73,88,90],adq:88,adv:[13,75],advanc:[5,13,53,76,94,110,126],advantag:[24,57,73],advect:[13,58,81,84,106,114,126],advection_2d_swirl:126,advis:[42,44,62,68],affect:[20,45,68,110,124],afosr:4,after:[0,1,3,5,10,17,22,23,26,28,34,37,43,45,48,49,54,58,65,66,67,68,72,75,88,90,92,98,100,102,110,111,112,114,126],afterax:[0,23,34,58],afterfram:[1,22,23],aftergrid:48,afteritem:[3,23],afterpatch:[3,23],again:[20,24,30,45,58,60,64,65,68,69,83,87,93,121,124],against:[73,95,119],agenc:4,ago:69,agre:[9,24,106,119,123,126],agreement:37,ahead:68,ahmadia:[4,13,62,81,88],aht:107,aid:65,aim:73,albada:74,alg:112,alghamdi:[4,13,62,81,88],algorithm:[4,6,22,26,29,64,77,81,88,90,94,99,106,110,112,114,123],alia:[68,69],alias:69,align:[26,43,113],all:[0,1,4,5,8,9,10,12,18,20,21,22,23,24,25,26,28,29,30,31,34,35,37,40,41,43,44,45,48,50,51,53,54,55,56,57,58,60,62,64,67,68,69,72,73,74,75,78,79,83,84,86,87,88,89,90,92,95,96,98,99,100,102,103,105,109,110,112,113,114,115,119,121,123,125,126],alloc:[18,88,90],allot:43,allow:[4,5,10,20,23,26,35,36,40,46,48,53,55,57,58,67,72,73,82,88,90,92,95,96,98,102,103,106,110,112,113,114,115,121,123],almost:[73,96,98],alon:[12,88],along:[5,12,22,23,25,26,29,34,49,52,98,99,105,113,125],alpha:90,alphabet:[62,88],alreadi:[0,1,5,10,24,31,42,43,60,68,71,72,84,88,89,91,94,96,103,123],also:[3,4,5,6,7,8,12,14,18,20,21,22,24,25,26,28,29,31,33,34,35,36,37,41,42,43,45,48,49,51,52,53,54,55,57,58,60,64,67,68,69,72,73,79,81,83,84,86,88,89,90,91,92,93,94,95,96,97,98,99,100,102,105,106,107,110,112,113,114,115,117,118,119,121,123,124,125,126,129],altern:[22,25,26,28,36,45,48,57,84,96],although:[25,48,85,86,89,123],alwai:[12,20,23,24,26,31,48,64,73,88,98,99,102,103,112,113,114,121,126],am583s2013:96,amal:[4,13,62,81,88],amazon:[22,42],amazonaw:10,amdq:[87,88,106],amend:68,ami:[22,42],amount:[37,41],amr:[4,6,12,18,21,22,23,24,26,27,34,43,48,54,55,57,62,79,98,109,110,112,114,121,126],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_level:54,amr_level_max:112,amr_levels_max:[26,29,99,111,112],amr_modul:53,amrclaw:[4,5,9,11,12,17,18,20,21,24,29,31,34,35,42,48,49,51,53,54,55,91,97,99,100,105,108,110,113,117,118,119,120],amrdata:[20,99,111,112,113],amrnez:99,an11:41,anaconda:[91,96],anal:13,analog:[110,111],andi:4,angl:[12,25,36,52],ani:[3,4,5,7,10,12,17,18,20,23,24,26,28,29,35,37,40,41,42,44,45,46,48,50,53,54,55,58,62,68,69,71,72,73,74,75,79,81,84,86,88,89,91,95,98,99,100,105,107,109,110,111,113,126,129],anim:[12,51,115],anisotrop:[5,20],anl:84,annot:[23,43],anoth:[3,20,22,42,43,54,57,69,73,75,90,93,105,126],anyon:68,anyth:[3,5,24,42,68,72,100],apach:10,apdq:[87,88,106],api:[36,69],app:[9,10,14,21,24,26,51],appar:[25,53],appear:[0,1,3,7,10,16,21,26,34,35,41,43,45,47,58,71,83,88,89,92,98,113,115,121],append:[18,29,34,58,67,89,98,99,112],appl:13,appli:[3,4,5,10,12,25,29,37,46,52,58,60,74,90,98,99,105,110,113,126],applic:[4,5,11,12,14,17,18,20,21,24,26,28,31,35,49,53,56,60,73,75,79,80,83,88,90,95,97,99,100,102,106,108,110,113,115,117,118,119,120,121,123,126,127],appreci:62,approach:[10,24,50,57,65,84,86,95,99,106,109,113,126,129],appropri:[5,10,12,24,34,35,37,38,43,46,48,49,50,53,64,67,74,75,82,84,85,86,87,89,98,106,107,110,126,129],approv:37,approxim:[5,12,37,52,88],apt:[10,69,96],arbitrari:[26,43,72,90,102,113],arc:[98,107],arcgi:123,architectur:84,archiv:[9,19,42,100,115,119,123,125],area:[11,20,90,98,108],aren:[88,98],arg:[79,89],argument:[0,1,2,3,23,25,36,40,58,64,65,73,75,79,82,86,88,89,90,92,95,106,109,110,111,123,126],argv:[112,114],aris:[44,51,62],arithmet:46,aron:[4,13,62,81,88],arora:74,arora_ro:74,around:[5,25,26,43,73,111,112,123,126],arrai:[0,3,5,11,18,20,22,23,25,26,34,36,38,43,58,64,65,67,69,74,79,81,82,86,87,88,89,90,92,94,95,96,102,103,104,106,108,110,111,112,113,114,123,126],arrang:123,arriv:[20,22,26,27,107],arrival_tol:26,articl:[13,81,88,115],artifici:12,asc:[98,123],ascii:[22,48,64,67,88,89,98,105,110,112,114,121,127],ascii_output_format:49,ask:76,ask_us:123,aspect:[37,38,48,98,123],assembl:42,assert:[69,112,114],assess:[37,107],assign:[25,64,67,89,98],assist:[20,26],associ:[0,1,2,5,20,53,73,79,82,83],assum:[3,18,20,25,36,37,41,42,43,48,52,57,71,85,86,94,95,98,99,107,110,113,121,123,125,129],astronom:107,aterrel:4,atmospher:4,attach:92,attempt:[7,8,18,28,45,95,98,100,102,123,124],attent:68,attirbut:20,attr:[79,89],attribut:[6,20,22,25,34,59,60,64,67,79,84,86,88,89,90,99,102,105,109,110,111,113,123],attributeerror:58,audienc:88,aug:13,augment:106,austin:4,author:[13,22,35,37,74,81,88,98],auto:[0,34,65],autom:[65,88,100],automat:[0,2,3,7,8,12,25,28,31,45,57,58,60,64,71,73,75,82,84,88,91,92,93,95,102,110,111,113,121],aux1:26,aux1d:126,aux:[5,11,18,20,22,23,26,65,81,83,86,88,89,90,92,93,102,103,106,108,110,111,112,114,126],aux_bc_low:86,aux_bc_upp:86,aux_l:87,aux_r:87,aux_time_dep:90,aux_typ:[111,112],auxbc:[86,90,92],auxiliari:[20,65,67,82,87,90,92,106,110,112,114,126],auxillari:89,auxl:[88,106],auxr:[88,106],auxtyp:112,avail:[0,4,12,20,21,34,35,37,45,48,57,59,60,64,67,69,81,82,85,87,88,90,93,94,95,96,98,105,107,110,112,113,115,121],averag:[4,5,11,13,35,37,38,48,92,103,106,108,121,123,126],avoid:[26,42,43,48,68,73,79,88,102,103,105,110,113,129],awai:[24,107],awar:[37,84],awr11:13,axes1:[2,60],axes:[0,1,2,22,23,25,34,48,58,60,98,109,123],axescmd:[0,60],axesnam:[1,60],axessubplot:25,axi:[0,25,38,48,58,69,79,98],axisindex:69,b0002:54,b4step1:[11,126],b4step2:[11,126],b4step3:11,b4step:22,b4stepn:126,b605216:69,back:[10,23,41,68,72,88,98],background:[2,22,88,109],backup:68,backward:[25,36,42,43,73,96,103,104,123],bad:100,bai:[107,125],balanc:[5,13,55,117,118],bale:13,balelevmitross02:[4,13,110,129],ball:123,band1:123,band:123,bar:[10,41],barrier:95,base:[5,10,18,19,20,24,25,29,35,36,43,46,48,55,65,67,68,74,79,81,87,88,89,90,92,94,95,96,99,100,101,107,110,111,112,113,114,123,126,129],base_subfault:25,bash:[31,42,48,53,84],bash_profil:[42,93],bashrc:[10,31,42,93],basi:48,basic:[5,9,22,25,28,48,64,71,79,81,88,90,100,129],bathymetri:[11,22,26,35,37,43,107,108,113,121,123],bc1:95,bc2amr:12,bc_arrai:90,bc_lower:[12,64,86,94,110,112,114],bc_upper:[12,64,86,94,110,112,114],bcn:[5,12,114,126],bcnamr:[5,12,110,112,126],beam:74,bear:[25,36],bearing_unit:36,becaus:[20,23,26,68,71,83,84,88,102,106,107,110],becom:[37,88,93,129],been:[0,1,4,10,12,14,16,18,19,20,22,23,24,26,27,28,29,32,35,37,41,45,46,48,55,58,60,62,65,67,68,71,73,88,89,92,93,94,95,98,99,101,102,103,105,110,111,113,121,123,126],befor:[1,3,4,5,22,24,25,26,28,30,31,41,43,45,48,53,60,64,67,68,73,84,88,90,92,98,99,102,103,105,106,107,110,111,113,121,123,124],before_step:90,beforefram:[1,23],begin:[36,43,79,83,94],begin_d:36,behav:34,behavior:[41,73,88,98,99],behaviour:64,behind:[39,70],being:[1,3,4,7,10,37,60,67,87,89,90,95,99,106,110,121,124,126],believ:37,belong:[58,79,84,88,89,92],below:[3,5,10,11,12,20,25,26,43,46,48,51,52,60,62,64,66,83,88,94,96,97,98,99,100,103,104,106,108,109,110,111,112,113,114,117,118,121,123,126],benchmark:37,benefit:[69,73,88],beowulf:42,berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,44,62],best:[3,12,20,31,50,53,57,58,72,73,86,98,99,100,106,113,116,121,126],beta:[36,74,90,114],beta_limit:74,better:[0,5,20,26,34,48,53,54,57,68,72,88,90,113,121],between:[3,4,5,10,12,21,22,24,25,36,43,48,52,53,55,67,79,90,92,93,95,99,106,107,110,111,112,113,114,115,121,123,125,126],bewar:123,beyond:[5,25,29,88],bgr:43,bibliographi:[4,120],bibtex:4,big:88,big_earthquak:[25,98],biggest:81,bilinear:[5,26,34,102,103,121],bin:84,binari:[22,44,49,62,85,105,110,112,123,127],bind:[57,65,84],bisect:[111,112],bit:[12,20,25,84,93],bitbucket:84,black:[3,34],blank:[3,43,88],blast:75,bleed:42,block:[6,25,43,52,54,55,64,88,92,95,100,126],blossei:4,blue:[3,8,34,43,58,69,123],boe:4,bold:69,bomb:[45,53],book:[4,9,13,22,39,69,70,88,89,96],bool:[0,1,2,3,36,43,67,82,89,90,92,95,113,123],border:[48,126],bore:37,botch:68,both:[3,12,24,25,28,29,37,48,54,65,73,82,83,84,90,91,98,99,106,110,112,114,117,121,126],bottom:[9,10,11,25,28,35,37,46,64,86,87,98,108,117,118,121],bound:[65,74,84,110,123],boundari:[18,22,43,53,65,79,87,88,90,94,103,110,112,114],boussinesq:37,box2kml:43,box:[25,43,98,123],branch:[16,24,31,39,40,69,70,71,72,76],branchnam:68,brett:69,brief:[4,69,98,113],briefli:[69,129],bring:[10,41,48,68],broad:123,broken:[17,18,24,49,100],brought:24,brown:[62,123],brows:[8,14,48,115,126],browser:[10,28,41,73,115],bsd:[4,44,62],buffer:[25,99,111,112,123],buffer_length:123,buffer_s:25,bug:[4,7,20,24,26,31,46,53,58,62,68,69,72,76],bugfix:68,build:[22,41,48,65,81,84,95],buildsystem:84,built:[46,55,63,73,81,84,86,89,99,117,118],bulk:[17,64,94,106,112,126],bull:[13,25],buoi:[22,98],burg:75,burger:[81,106,126],busi:[44,62],butcher:90,button:[9,10,24,43,68,72],buxfix:68,c210:[13,81],c231:[13,81],c_center:79,c_centers_with_ghost:79,c_node:79,c_nodes_with_ghost:79,cach:[20,36,60,62],cache_dir:36,cada:74,cada_torrilhon_limit:74,cada_torrilhon_limiter_nonlinear:74,cal:[106,126,129],calcul:[3,5,23,25,35,36,48,58,79,90,103,123],calculate_geometri:25,calculate_geometry_triangl:25,calhellev08:13,calhoun:[4,13],calhounhelzellevequ:12,call:[1,5,18,20,23,25,34,40,42,48,54,58,60,64,65,67,68,69,73,74,78,82,83,86,88,89,90,92,94,95,98,102,106,110,112,113,114,123,126],call_before_step_each_stag:90,call_setplot:58,callabl:95,cambridg:13,can:[0,2,3,4,5,6,7,8,9,10,12,14,17,18,20,23,24,25,26,28,30,31,34,35,36,37,39,41,42,43,45,46,48,49,50,51,53,54,55,56,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,78,79,82,83,84,85,86,88,89,90,91,92,93,94,95,96,98,99,100,102,103,105,106,107,109,110,111,112,113,114,115,119,121,123,124,125,126,127,129],canopi:91,capa:89,capa_index:[110,112,114],capab:123,capabl:[6,9,20,26,27,37,55,65,102,123,125],capac:[11,108,110,111,112,114],capit:88,captur:[37,121],care:[26,34,35,84,98],carefulli:[18,20,46],cartesian:[26,35,43,65,113],cascad:4,cast:[39,70,123],cat:105,caten:105,caus:[20,37,41,44,60,62,73,93,98,109,111,123],caut:74,caution:[37,121],cautionari:[22,35,113],cautiou:37,caxi:48,cb_file:43,cb_filenam:43,cb_kwarg:123,cb_name:43,cb_xfrac:43,cb_yfrac:43,cbar:123,cdot:[46,86],cell:[3,4,7,11,12,18,20,22,23,26,34,35,43,48,53,54,55,64,79,84,87,88,90,92,94,98,99,102,103,106,107,108,110,111,112,113,114,121,126,129],celledg:3,celledges_show:[3,20],cellgridintegr:102,cellgridintegrate2:102,cellsiz:[98,121],center:[4,23,25,26,29,34,43,52,64,79,86,87,94,98,99,111,112,126],centerlin:25,centers_with_ghost:79,central:110,centroid:[25,52],certain:[26,29,35,99,110],certainli:[84,96],certik:[4,62],cf2py:65,cfl:[5,83,90,94,102,110,112,113,114],cfl_desir:[90,110,112,114],cfl_max:[90,110,112,114],cfl_superbe:74,cfl_superbee_theta:74,cgreen:69,chanc:62,chang:[1,5,10,11,12,17,18,22,24,25,26,30,31,34,40,41,43,45,46,48,49,53,54,55,60,64,65,69,72,73,76,80,83,92,95,98,99,100,108,110,111,112,113,114,117,118,124,126],changelog:[15,16,20,101,102,103,104],chapter:[12,106,110,126],char_decomp:90,charact:[36,88],characterist:90,charg:10,cheaper:10,cheat:[39,70],check:[5,12,18,24,26,28,30,31,40,41,45,48,58,64,65,67,68,72,76,84,89,90,92,94,95,98,100,103,111,112,119,123,124,125,126],check_3rd_ord_cond:90,check_diff:[73,95],check_lmm_cond:90,check_valid:67,check_valu:[73,95],checkout:[24,39,41,68,69,70,71,72],checkpoint:[22,110,112,114],checkpt_interv:[110,112],checkpt_styl:[105,110,112],checkpt_tim:[110,112],chen:[25,125],chile2010:[98,102,121],chile2010_fgmax:26,chile:[43,98],chilie2010:98,chk00006:[112,114],chknnnnn:[105,110,112,114],choic:[12,22,57,69,90,110,112,113,114,126],choos:[0,22,43,68,86,88,98,110,113],chose:46,chosen:[3,29,94,98,99,107,111],circl:[3,36,58],circular:13,cise:13,citat:4,cite:[22,88],clamshel:[22,103],clarifi:[20,88],clash:48,classic4:114,classic:[4,5,9,11,12,14,17,18,20,21,22,24,28,29,31,34,35,42,50,53,54,55,62,64,67,75,80,81,86,97,98,100,105,106,108,111,113,118,124,126],claw1:95,claw:[5,8,9,10,11,12,17,18,20,24,25,26,28,30,31,34,35,36,38,40,41,42,43,45,48,50,52,53,59,64,67,73,75,81,83,84,91,93,97,98,99,100,102,103,106,108,112,113,114,116,117,118,119,121,123,124,126,127],claw_1dnoncon:129,claw_git_diff:40,claw_git_statu:40,claw_lib:49,claw_outdir:[45,58],claw_packag:90,claw_pkg:[110,111,112,113,114],claw_topo_download:123,clawcode2html:22,clawdata2pyclaw:65,clawdata:[98,102,105,110,111,112,113,114],clawdev2013:41,clawgraph:48,clawpac:41,clawpack:[1,4,5,6,8,12,14,22,24,25,26,27,28,31,32,34,35,36,37,40,41,43,44,48,50,51,52,53,56,57,58,59,60,62,63,64,66,67,71,72,73,74,75,78,79,80,81,82,84,85,86,88,89,92,93,94,96,98,100,101,102,103,104,105,106,110,111,112,115,116,119,121,122,123,124,126,127,129],clawplotax:[1,2,3,23,58,109],clawplotdata:[2,3,23,34,58,60,67,109],clawplotfigur:[0,1,58,109],clawplotitem:[0,1,6,20,22,23,59,109],clawrundata:[34,43,105,110,111,112,114],clawsolut:1,clawsolv:90,clawsolver1d:[64,67,90,94],clawsolver2d:90,clawutil:[8,17,18,21,24,30,31,40,42,45,100,110,111,112,114,123,124],clean:[20,39,70,95],cleaner:24,clear:[1,2,5,48,60],clearfigur:1,clearfram:[1,60],cleargaug:34,clearli:[34,37],clf:2,clf_each_fram:2,click:[4,9,10,24,51,68,72,96,98,100],clint:13,clockwis:[26,36,52,123],clone:[9,14,16,21,39,42,61,68,70,71,78,84,91],close:[10,43,48,68,71,88,99,111],close_fig:43,closer:[52,112],cloud:[10,42],cluster:[5,13,29,42,99,111,112],clustering_cutoff:[99,111,112],cmap:[43,58,123],cmap_slip:25,cmax:43,cmax_dz:25,cmax_slip:25,cmin:43,cmin_slip:25,cname:41,coars:[3,26,98,99,110,121,126],coarsen:[99,111,123],coarser:[3,12,110,111,126],coarsest:[5,54,102,105,110],coast:[98,123],coastal:[37,98,107,113],coastlin:[26,113,125],code:[4,5,6,7,12,14,17,18,19,20,21,23,26,28,30,31,34,37,40,41,42,44,45,46,49,50,51,53,54,55,56,58,60,62,64,65,68,69,73,76,81,83,84,86,90,91,94,98,101,102,103,105,110,112,113,114,115,120,121,124],coeffici:[46,86,90,92,93,94,113],colella:[5,13],collabor:[68,115],collaps:68,collect:[9,24,25,26,52,57,64,68,90,96,98,115],collis:88,colon:68,color:[3,22,25,43,48,69,109,123],colorbar:[3,43,123],colorbar_labels:25,colorbar_shrink:25,colorbar_ticks:25,colormap:[3,22,25,35,48,59,123],column:[25,26,37,123],column_list:25,column_map:25,com:[9,10,21,24,41,42,61,68,69,71,72,73,78,84,86,91],combin:[18,41,43,68,98,125],combinatori:73,come:[3,24,39,51,58,60,68,70,72,75,84,90,121,126],comfort:86,comm_world:95,command:[0,1,2,3,8,10,22,30,39,40,42,45,50,58,64,65,67,68,69,70,72,73,84,85,88,90,94,95,96,98,100,109,110,111,123,124],commenc:105,comment:[8,38,76,105],commit:[24,25,39,40,41,69,70,72,73,88,100],common:[3,21,24,28,30,31,39,45,55,57,64,69,70,87,90,92,93,124,126],commonli:[3,48,58,60],commun:[39,62,70,76,88,92,95],compact:[71,121],compar:[20,34,37,42,58,71,73,83,99,100,107,111,113,119,125,129],comparison:88,compat:[25,36,42,43,57,73,84,93,96,103,104,123],compens:123,compil:[10,22,28,30,35,53,55,60,65,81,86,91,95,102,124],compile_librari:95,complet:[18,20,36,45,60,64,65,71,73,84,88,95,96,100],complex:[9,79,88],complex_zero:88,compliant:31,complic:[12,58,65,68,109],compon:[3,12,18,20,22,24,26,34,42,48,54,86,89,91,92,99,110,111,112,121,126],compos:[25,64],comprehens:[68,73],compress:[25,98,123],compris:[20,81,123],comput:[3,4,5,10,12,13,22,23,25,26,34,36,42,43,45,49,57,58,60,65,67,69,79,81,83,84,90,94,96,98,99,102,103,106,110,112,113,114,121,126,129],computation:[65,90],compute_f:[67,83],compute_gauge_valu:83,compute_p:[64,67],concept:[39,70],concern:[20,35],conclus:4,condens:22,condit:[18,22,44,55,62,63,64,65,67,88,90,97,102,103,107,110,112,113,114],config:[39,69,70,72,84],configur:[58,64,68,76,81,84,123],confin:88,confirm:37,conflict:[5,48,68,93],conform:[20,73,89],confus:[3,68,106],conjunct:99,connect:[26,43,72],consequenti:[44,62],conserv:[4,5,13,83,90,92,126,129],consid:[5,37,42,65,71,72,76,123],consider:[37,64],consist:[5,26,36,43,84,88,98,106,113,121,126],consol:[10,83],constant:[25,26,37,43,46,84,98,113,123,126],constrain:[29,99],constraint:[111,129],construc:43,construct:[20,25,64,79,95,121],construct_function_handl:95,constructor:[88,92],consult:93,contact:[75,81,91],contain:[1,3,9,10,14,18,21,25,26,28,30,33,34,35,36,38,40,41,43,45,48,49,54,55,58,60,64,65,67,69,73,74,75,79,81,82,84,86,87,89,90,92,94,95,96,98,100,102,103,105,106,109,110,113,115,119,121,123,126],containing_rect:25,containt:105,contamin:110,content:[41,65,69,126,127],context:[23,126],contigu:[54,92],contingu:20,continu:[10,20,24,25,38,42,62,106,110,129],contour:[3,25,34,48,96,109,123],contour_color:3,contour_kwarg:[3,123],contour_level:[3,123],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:22,contract:[44,62],contribut:[4,62,65,68,76,81,86,90],contributor:[4,44,81],control:[5,6,21,34,48,60,63,68,74,79,81,82,83,84,86,88,99,113],conveni:[1,23,28,34,39,60,67,70,75,81,85,94,126,129],convens:121,convent:[3,20,25,35,76,81,87],converg:57,convers:[17,65,99,125],convert43to46:17,convert46to50:18,convert:[3,14,20,22,25,32,36,43,52,65,69,78,86,95,98,110,111,121,125],convert_fort_double_to_float:95,convert_readm:8,convert_to_standard_unit:25,converttopotyp:121,convex:26,coodin:25,cool:[68,71],coord:36,coordiat:98,coordin:[21,22,25,26,36,54,64,79,83,84,94,98,99,113,123],coordinate_specif:[25,98],coordinate_system:[11,108,113],coorind:123,copi:[5,11,12,24,28,34,41,48,64,67,68,69,78,86,92,97,98,99,103,105,108,115,117,118,121,126],copul:68,copyright:[44,62],core:[4,55,69,73],corioli:[37,113,117,118],coriolis_forc:[37,113],corner:[3,25,26,54,79,98,110,112,114,121,123],corr:69,corran:69,correct:[18,24,31,46,48,58,64,84,89,95,102,103,110,112,114],correctli:[26,65,68,73,80,113],correspond:[3,5,21,23,25,36,37,43,48,58,64,73,74,79,83,86,89,92,98,99,100,106,107,110,111,112,114,121,125,126],cos:[36,38,64,86],cosin:64,cost:[10,88,90],could:[10,23,26,28,34,53,58,60,64,79,83,88,92,93,96,98,105,111,112,113,114,121,123,126],council:4,count:64,count_from_zero:64,counter:[95,123],counterclockwis:52,coupl:129,courant:[4,5,99,110,111,112,114],cours:[10,26,34,35,39,52,69,70,84,85,94,113,121],cover:[5,23,25,26,29,43,73,98,99,103,112,113,121],coverag:[76,100],covert:8,cparam:[64,92],cpu:10,crash:[39,70,110],creat:[0,1,2,3,5,6,14,17,22,24,25,28,30,34,35,40,41,42,43,45,54,58,60,65,66,69,73,75,79,81,82,85,88,89,92,93,94,95,98,100,102,105,109,110,111,112,115,116,123,125,126,127],create_dtopo_xi:25,create_dtopographi:[25,98],create_topo_func:123,creation:[58,81,102],cred:69,creset:69,criteria:[5,6,20,22,29,92],criterion:[26,99,112],critic:[83,106],crop:123,cross:24,crucial:121,csh:84,csv:25,csvfault:25,ctrl:58,cube:48,current:[3,10,18,20,23,24,25,29,34,35,37,43,48,49,54,58,60,68,69,71,72,73,77,79,83,84,90,92,95,98,99,105,107,109,110,112,113,114,121,123,125],current_data:[0,3,22,34,58],curv:[3,22,34],custom:[0,10,12,18,20,48,55,57,65,80,86],custom_bc:86,cut:111,cutoff:[5,112],cxx:84,cyber:13,cygwin:[42,67],cython:84,d304a73:69,dai:[5,10],dalcin:[62,88],dam:75,damag:[5,44,62],damian:42,damiansra:86,danger:24,darryl:13,dart:[22,98],dash:[3,84],daspect:48,dat:25,data:[0,1,3,14,22,23,25,26,28,30,34,35,36,41,43,44,45,48,57,58,59,60,62,64,67,69,79,83,85,87,89,90,92,95,97,98,99,102,104,106,107,112,114,122,127],data_break:123,data_typ:95,databas:[10,25,68,95,98,121],dataset:[123,125],date:[24,30,36,41,45,58,69,124],date_tim:36,datetim:36,datum:[36,37,107,113,125],dave:25,david:[4,13,62,81,88,90],dawson:13,daylight:43,dcp:43,deal:[25,37,57,83,84,92,123],dealloc:88,dealt:26,debian:[69,96],debug:[22,31,45,54,83,92,110,112],debugg:58,decid:[64,90],decim:[36,43],declar:[18,20,92,126],decompos:[54,106,129],decomposit:110,decor:95,deduc:121,deem:73,deep:113,deeper:113,deepli:94,def:[0,1,3,34,58,64,83,86,88,90,112,114],default_tfluct:90,defenc:4,defin:[0,1,3,5,20,22,23,25,26,29,43,45,48,52,58,60,64,67,79,85,86,88,89,90,92,94,95,99,102,106,112,114,123,124,126,129],definit:[25,48,64,88,99],deform:[13,25,52,125],deg2dm:43,degre:[25,36,43,52,98],delet:[18,24,34,76,98,105],deliber:72,delimit:[25,88],delin:113,delta:[74,79,86,88,90,106,123,126,129],delta_i:123,delta_limit:123,delta_x:123,dem:[43,123],demo:[51,84],demonstr:[9,51,75,84],denot:[5,20,34,106,123],densiti:[67,83,92,94,111,112,126],depart:4,depdend:74,depend:[3,10,12,24,25,26,28,29,30,31,35,37,45,46,48,58,63,76,87,89,90,95,98,99,113,123,124,126,129],deprec:[25,113,123],depth:[4,12,13,20,22,25,26,35,37,39,46,52,59,70,98,107,113,121],deriv:[44,52,62,67,80,81,92,100],describ:[3,4,5,6,10,12,17,21,24,25,26,27,28,29,35,36,37,41,42,43,45,48,52,54,55,57,58,59,73,79,89,95,98,99,100,106,107,109,110,111,113,121,122,123,125,126,129],descript:[3,4,20,29,39,43,48,57,68,88,95,98,99,106,113,121,129],design:[4,23,62,64,73,94,98,107,125],desir:[0,1,2,3,5,6,12,14,20,22,25,26,34,42,43,56,57,58,60,64,65,67,83,89,90,97,110,112,114,121,123,124],desktop:84,detach:[24,68],detail:[4,5,12,20,25,26,28,29,31,35,37,39,44,48,58,62,67,70,72,73,74,75,82,83,84,85,86,87,88,90,98,100,103,106,109,110,113,115,124,126,129],detect:[45,71,82,91,95],deterimin:123,determin:[3,5,25,26,29,34,37,40,41,43,58,74,79,92,98,99,103,105,107,109,110,111,113,119,123,126],determine_topo_typ:123,dev:[24,73,84],develop:[4,5,6,10,16,20,21,35,37,39,41,48,57,61,62,65,70,71,77,81,86,88,90,91,100,107,112,120,121],dict:[25,67,82,87,89,92,123],dictionari:[0,1,2,3,25,58,64,67,82,87,89,92,94,123],dicuss:25,did:68,didn:75,died:102,diff:[16,39,40,68,69,70,71,102,103,104],differ:[1,3,5,6,9,12,20,22,24,25,26,28,34,35,37,40,43,46,48,52,53,60,64,65,67,75,79,87,88,90,95,96,98,99,100,106,107,110,111,112,113,121,123,125,126,129],differenti:[13,25],difficult:34,difficulti:[91,93],diffus:86,digit:[43,58,123],dim:[86,87,90],dimens:[5,6,12,18,20,34,36,43,48,64,65,67,84,86,87,89,92,94,99,106,110,111,112,114,123,126],dimension:[3,6,7,13,20,25,26,28,34,37,48,77,79,86,98,112,113,114,123,126],dimensional_split:[110,112,114],dip:[25,52,98],dir:[84,127],direct:[5,7,12,20,25,26,28,36,39,43,44,45,48,52,53,58,62,67,86,94,98,110,111,113,123],directli:[17,21,22,24,37,48,58,60,64,65,68,69,71,72,74,92,95,96,123,127],directori:[1,3,5,8,9,10,11,12,14,17,18,20,21,22,24,26,28,30,34,35,36,39,40,41,42,43,48,49,53,56,60,67,68,69,72,73,75,79,83,86,88,94,97,98,99,100,102,105,106,108,109,110,111,115,117,118,119,121,124,126,127],disabl:[38,68,91],disable_petsc:95,disallow:88,discard:[68,90],disclaim:[44,62],discontinu:[4,77,90,129],discov:[46,72],discoveri:73,discret:90,discrib:4,discuss:[25,37,69,73,88,94,96,98,99,106,113,129],disk:[10,64,73],disloc:98,dispers:[37,51],displac:[22,25,37,52,98,113,125],displai:[1,10,28,30,43,58,83,88,100],dist_latlong2met:36,dist_meters2latlong:36,distanc:[25,36,52,98,121,123],distribut:[4,10,25,44,52,55,62,90,96],distutil:65,dive:96,divid:[99,110],divis:4,dlgeorg:4,dms2decim:36,doc:[21,24,25,41,74,78,95,116],docstr:[65,73,75,76,100],doctest:79,document:[0,1,2,3,15,19,20,21,22,24,26,33,35,37,39,44,52,57,58,59,60,62,74,75,76,78,82,84,85,90,92,95,98,103,109,112,127,128],doe:[4,8,12,18,23,24,26,30,37,42,48,55,58,73,79,88,89,92,95,103,106,121,123,124,126],doesn:[68,73,92,98],doing:[5,8,17,24,26,34,37,39,40,41,42,58,60,68,69,70,71,72,73,79,88,98,105],domain:[5,12,13,29,37,41,43,54,63,64,65,67,84,86,89,92,98,99,111,112,114,121],don:[10,23,24,58,68,72,73,83,84,88,91,112],done:[1,5,6,7,8,10,12,17,18,22,24,28,34,35,42,43,45,48,52,57,58,60,64,68,72,74,75,95,98,99,103,105,106,109,111,113,123,125],donna:4,donnabois:4,donor:[110,112,114],dot:[30,34,43,45,124],doubl:[48,65,79,95,106,111],down:[10,25,68,72,83,98,121,123],download:[9,10,21,22,24,25,42,49,51,69,75,84,91,96,98,123],downward:52,dpc:43,dpi:43,dpng:48,dprint:[111,112],dq_src:[86,90],dqdt:90,draw:3,drawcontourlin:48,drawn:[25,109],driver:18,drop:[10,110],dropdown:68,dry:[12,13,35],dst:43,dt_check:26,dt_initi:[102,110,112,113,114],dt_max:[110,112,114],dt_max_dtopo:[102,113],dt_variabl:[110,112,114],dtdx1d:104,dtdx:74,dtdy1d:104,dtfe:90,dtopo2kml:43,dtopo:[22,25,37,43,52,102,104,113,121,125],dtopo_data:[102,113],dtopo_file_nam:43,dtopo_fnam:98,dtopo_modul:102,dtopo_typ:[25,43,98],dtopo_usgs100227:98,dtopofil:[43,52,98,113],dtopographi:25,dtopotool:[52,98,104,122],dtopotools_exampl:25,dtopotyp:[113,121],due:[13,25,36,73],dummi:[65,90,126],dump:[54,110],dumpgaug:34,duplic:[58,105],durat:[25,107],dure:[20,26,34,43,55,68,69,102,107,112,113,114,121],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,39,97,108,117,118],dxc:65,dyc:65,dynam:[5,18,25,37,51,55,98],dynamic_slip:25,dz_at_t:25,dz_interv:25,dz_max:25,e10:98,each:[1,2,3,5,6,12,16,20,22,24,25,26,27,29,34,36,43,48,51,52,53,54,56,57,58,60,64,65,68,74,79,82,83,84,86,87,88,89,90,92,94,98,99,100,102,103,106,109,110,111,112,113,114,121,123,125,129],each_fram:34,each_gaug:34,eadc391:68,earli:[5,18],earlier:[18,20,26,64,86,98,102,123],earth:[43,52,98,113],earth_radiu:113,earthquak:[22,25,35,37,113,121],eas:43,easi:[4,5,8,24,39,48,65,70,83,84,85,88,115,126],easier:[57,68,126],easiest:[17,24,29,31,55,58,60,72,96,98,99,126],easili:[3,10,24,26,48,58,65,73,88,91,95,96,98,115],east:[10,98,121],eastern:98,easy_instal:84,ec2:[22,42],edebug:[111,112],edg:[3,5,11,12,23,25,26,42,43,52,79,87,88,98,106,108,111,112,114,126],edit:[24,39,60,69,70,72,76],editor:[54,68,69],edu:[25,49,96,98],effect:[24,46,48,73,83,88,96,99,107,113,123],effici:[22,37,62,81,83,88,92,99],effort:88,eigenvector:[106,129],either:[9,12,18,25,29,35,42,48,52,58,60,64,66,71,73,83,88,90,95,99,106,123,126,129],elabor:88,elast:[10,52,98],element:[0,3,20,43,87,90,92,110,111,112,113],elev:[20,22,26,35,37,43,97,113,121,123,125],elif:[112,114],elimin:[20,65],ell:106,els:[23,24,68,72,92,114],elsewher:98,email:[69,72],embarass:68,emdash:39,emmett:[13,62,81],empir:[37,46],empti:[34,89,92,95,98,110,123],empyclaw:86,enabl:[73,83,88,91,95],encapsul:37,encount:[30,58,91,93],encourag:[48,88],end:[10,25,26,36,43,67,68,71,83,88,94,96,98,99,112,114],end_dat:36,enddo:126,endors:[44,62],energi:83,enforc:[69,113],engin:13,english:88,enh:68,enhanc:[46,62,88],enough:121,ensur:[28,48,68,105],enter:[48,68,84,91],enthought:[91,93,96],entir:[5,37,43,53,64,83,88,89,103,105,123],entireti:67,entri:[64,95],enumer:90,environ:[22,24,28,30,40,48,50,53,55,85,88,93,95,98,123,124],envis:12,epd:93,eprint:[111,112],epsilon:74,eqinthenew:98,eqn:129,eqnarrai:94,equal:[12,25,26,69,84,86,98,99,105,110,112,114,121,123],equat:[4,12,13,28,35,37,46,51,58,63,64,65,67,81,83,86,88,90,91,92,98,103,106,110,112,113,114,121,126,129],equiv:129,equival:[5,43],err:112,errno:39,error:[12,18,28,29,30,42,48,53,58,67,76,81,83,88,95,99,111,112,124],escap:[99,112],escienc:10,especi:[65,73,86],essenti:[48,90,98,113],est:112,establish:4,estim:[46,99,111,113],estimat:112,eta:[25,26],eta_tild:26,etc:[0,2,12,17,18,23,24,26,37,41,43,54,57,65,88,106,109,110,113,126],etopo10min120w60w60s0:98,etopo1:[98,107,123,125],etopo:[98,125],etopo_sample_2min:123,euler:[81,90,104,106,126],euler_2d:[28,86],evalu:[23,25,46,64,90,98,123,126],even:[37,44,52,62,68,72,88,95,98,99,111,112,121,126],event:[37,43,44,62,98,107,110],event_tim:43,eventu:[10,35],ever:[88,109,113],everi:[5,26,29,34,42,64,67,73,75,83,92,98,99,100,106,110,112,114,123,126],everyth:[24,42,53,68,84,94,95,100],everywher:[36,46,92],evolv:[20,64,67,90],evolve_to_tim:[64,90],exactli:[40,73,92,110],exam:58,examin:[12,28,34,98],exampl:[0,1,2,3,4,5,10,12,18,20,23,24,25,26,29,30,31,32,33,36,41,42,43,45,46,49,52,53,54,57,58,60,62,63,64,65,66,67,68,69,71,72,73,78,79,80,81,82,86,87,88,89,90,91,94,95,96,98,99,100,102,104,105,106,107,109,110,111,112,113,114,115,119,120,121,123,124,125,126],exce:[26,99,111],exceed:99,excel:[39,70,72],except:[20,23,25,69,87,88,95,110,113,121],excerpt:84,exclud:71,exe:[28,67],exec:[0,1,3,58],execut:[0,1,3,12,17,23,28,34,42,43,48,58,60,67,73,75,84,100,124],exemplari:[44,62],exercis:[35,73],exist:[1,19,25,28,48,58,73,79,86,89,92,95,96,103,123],exit:[58,84,91],exp:[64,83,94],expand:[39,43,70,88],expect:[73,88,94,95,112,113,114],expens:[90,99,103],experi:[37,90],experiment:62,expert:37,explain:[10,29,37,39,42,68,70,72,88,99,110],explan:[68,73,74],explicit:[95,111],explicitli:[48,110,129],explor:[4,43,58,60,88],expon:46,expos:10,express:[4,25,44,62,91],extend:[12,20,39,43,48,70,79,88,98,113,121,123,129],extens:[4,13,20,25,37,48,65,73,81,82,95,98,110,119,123,129],extent:[37,42,43,46,48,64,79,92,98,102,113,123],extra:3,extra_fil:41,extract:[88,123],extrap:[12,86,94,110,112],extrapol:[12,20,26,29,86,94,110,111,112,114],extrem:93,extropl:12,f2py:[42,65,86,95],f2py_flag:95,f2s:43,f49620:4,f77:31,f90:[11,18,26,42,53,86,97,99,102,108,117,118,121,126],f95:95,f_file_nam:67,f_path:67,facecolor:[2,58,109],facilit:115,fact:92,factor:[5,98,111,113,123],faculti:[25,96,98],fade:58,fail:[11,24,84,95,97,100,108,117,118],failur:73,fairli:[12,37,88,98],faith:[68,72],fall:107,fals:[0,1,2,3,25,29,37,38,40,43,67,68,79,89,90,92,95,98,99,105,110,111,112,113,114,123],famili:[73,90,112,114],familiar:42,fanci:[68,69],faq:[10,22,96],far:[12,14,57],fast:71,faster:123,fastest:91,fault:[13,22,25,35,98,121,125],fault_plan:25,favor:123,favorit:57,fbound:31,fc02:4,fdefault:95,feasibl:88,featur:[20,24,26,27,48,58,65,69,71,72,73,76,77,88,99,113,121],fedora:69,feet:[107,125],fernando:[39,70],fetch:[10,24,36,68,71,72],fetch_noaa_tide_data:36,fetch_topo_url:123,few:[5,9,10,20,37,41,42,48,65,68,90,94,99,100,107,119,126],fewer:[98,99,123],ff0000:[3,43],ff9999:109,ffff00:58,fflag:[22,30,45,49,53,65,95],ffpe:31,fg02:4,fg03:4,fg06:4,fg1:26,fg2:26,fg_num_val:26,fgmax2kml:43,fgmax:[20,22,27,43,53,103,113],fgmax_data:[26,113],fgmax_fil:[26,113],fgmax_grid:43,fgmax_interpol:26,fgmax_interpolate0:26,fgmax_modul:26,fgmax_tool:26,fgmax_tools_modul:26,fgmax_valu:26,fgmaxgrid:26,field:[43,86,89,92],fig:43,fig_kwarg:[25,123],fignam:[1,60],figno:[1,2,34,58,60,109],figsiz:[2,58,98,109],figur:[0,1,2,4,10,14,22,25,28,34,43,48,60,89,98,106,109,123],file1info:113,file2info:113,file:[1,5,7,8,11,14,17,18,20,21,22,23,24,25,28,30,31,34,35,37,39,40,42,43,45,49,52,54,55,57,59,62,65,67,68,69,72,73,75,78,79,82,83,84,85,86,88,89,92,93,95,97,98,102,103,107,108,109,110,111,112,114,116,117,118,122,123,124,125,127],file_format:89,file_prefix:[82,89],file_prefix_p:67,filenam:123,fill:[0,3,4,5,12,79,81,92,110,123,126],fill_between:3,fill_topo:123,fill_valu:123,fill_var2:3,fill_wher:3,filter:123,filter_region:123,find:[1,3,4,5,22,23,25,36,45,49,51,52,55,57,62,68,72,73,75,86,92,93,95,96,124],fine:[3,26,55,86,99,110,113,121,126],finer:[3,22,98,99,102,103,110,111],finest:[3,34,123],finish:[10,58,64,68,72,88],finit:[4,13,14,26,32,43,48,52,90,98,121,126],finite_fault:98,finlin:95,first:[1,3,10,17,18,20,24,25,26,28,29,41,42,43,45,48,58,60,64,65,68,71,73,78,79,84,86,88,90,91,92,94,95,98,99,102,105,106,110,112,113,121,123,129],fit:[44,62,88],five:26,fix:[5,17,18,20,22,24,43,62,68,69,76,102,103,104,110,112,114,121,123],fixedgrid:113,fixup:68,flag2refin:[20,29,111,112],flag2refine_tol:[99,111,112],flag:[10,20,22,30,31,49,53,65,68,72,93,95,112,113],flag_richardson:[99,111,112],flag_richardson_tol:[99,111,112],flat:[52,98,121],flavor:[9,19],flexibl:[20,25,43,65,106],floor:[25,35,52],flow:[4,12,13,21,26,35,37,81,88,98,106,110,113,120,121,126],fluctuat:[87,90,129],fluid:[37,51,107],flux2:65,flux:[13,26,88,90,106,110,129],fly:[22,68],fmt:3,fname:[43,98,112,113,114],focu:[4,35],fold:12,folder:[11,39,97,108,117,118],follow:[0,2,3,4,5,10,12,16,17,21,24,25,26,28,29,34,35,42,44,48,49,52,54,58,59,62,64,65,66,68,69,72,73,75,77,78,79,82,84,86,87,88,89,91,92,94,95,98,99,105,106,109,110,111,113,121,124,126,128],fontsiz:58,foo:68,foot:52,fopenmp:[53,95],forbidden:29,forc:[20,29,30,45,71,95,98,123,124],force_dri:43,forgot:68,fork:[41,68,71,76],form:[0,2,3,4,5,14,17,18,20,25,26,28,29,32,34,36,44,46,52,54,62,65,71,83,88,90,94,95,98,99,103,105,106,110,111,112,113,117,121,123,126,129],formal:88,format:[1,3,10,22,25,28,35,37,38,43,48,49,57,58,64,67,69,72,82,85,86,89,95,98,110,113,121,123,127],format_str:34,former:[58,126],formul:[4,37,46,106,110],formula:46,fort:[1,7,22,23,26,34,48,49,89,103,105,110,111,112,114,127],fortfil:28,fortran90:88,fortran:[5,8,10,18,21,23,24,25,26,28,35,42,45,46,51,53,54,55,57,60,62,64,65,67,73,76,81,84,86,87,90,91,92,95,112,114,120,124],fortran_modul:92,fortran_src_wrapp:65,forward:[71,90,126],found:[1,4,5,8,9,10,11,12,14,20,23,26,28,30,34,36,37,40,43,45,51,56,58,59,60,61,64,74,84,89,93,95,97,98,100,105,107,108,109,117,118,123,124],foundat:[39,70],founder:4,four:[73,79,99],fourth:26,fpe0:31,frac:[46,94,129],fraction:[5,10,25,99,110,126,129],fragil:92,fragment:3,frame0000:48,frame:[1,2,3,23,34,48,49,54,57,58,60,64,67,82,84,89,91,95,98,105,109,112,114,115],framecount:95,framenam:48,frameno:[1,3,23],framesoln_dict:1,frametool:[1,23,60],framework:[4,62,65],free:[10,42,52,62,66,86,91,93,96],frequenc:90,frequent:[18,23,93],friction:[22,35,37,113,117,118],friction_depth:[46,113],friction_forc:113,friedemann:74,from:[0,1,3,4,5,6,9,12,13,15,16,21,22,23,26,27,28,29,32,34,37,39,41,42,44,45,48,50,52,54,58,61,62,63,64,67,69,70,71,73,76,79,80,81,83,84,86,87,88,89,90,91,92,93,94,95,96,99,100,102,103,105,106,107,110,111,112,113,114,119,121,125,126,127],frommm:74,front:[48,89,95],fset:92,fstr:48,ftrapuv:31,full:[5,42,43,58,67,83,88,90,94,96,120,121,126],fulli:[5,37],fun:95,func:95,function_nam:95,fund:[22,81],funni:72,funrol:95,further:[5,12,22,27,37,43,45,48,73,81,98,99],furthermor:94,futur:[10,20,22,28,32,37,43,46,64,81,90,98,121],fvmbook:[9,14],fvmhp:[4,9,12,13,22,55,106,110,126,129],fwave:[90,106],g77:93,galerkin:[77,90],galleri:[9,22,28,56,75,81,96,100,115,119,126],gallery_al:[33,81],gallery_classic_amrclaw:[28,33],gallery_fvmbook:[13,14,32,33],gallery_geoclaw:[33,35],gamma:46,gap:123,gas:5,gaug:[22,43,79,80,92,102,105,107,112],gauge1:105,gauge2:105,gauge_coord:79,gauge_data:92,gauge_dir_nam:79,gauge_fil:79,gauge_file_nam:79,gaugedata:[34,112],gaugeno:[34,98,112],gauges2kml:43,gaugetool:34,gauss_pt:25,gaussian:[64,94,114],gca:38,gcc:[84,91],gear:10,gen_vari:[73,95],gener:[0,1,2,3,4,5,6,8,10,12,13,17,18,22,24,26,30,31,37,42,45,46,52,53,54,57,58,59,60,62,65,68,69,72,74,76,78,79,81,84,85,86,88,89,90,91,94,95,96,98,99,102,105,107,110,111,115,121,126,127],generate_2d_coordin:123,generate_2d_topo:123,geo:[22,46],geo_data:113,geoclaw:[4,9,13,21,24,25,26,27,29,31,34,42,43,46,49,52,55,91,98,100,105,107,110,111,120,121,122,123,125,126],geoda:[98,107,125],geodaa:98,geodas_npacif:98,geodata:98,geohazard:37,geol:[25,98],geolib:[26,49,102],geom:92,geometr:126,geometri:[25,81,86,89,92],geophys:[4,12,13,21,35,37,55,110,120],geoplot:[38,59],georg:[4,13,25],geoscientist:37,get:[0,10,24,30,39,42,45,64,65,68,69,70,73,76,79,83,84,88,91,93,94,95,96,105,120,123,124],get_aux_glob:92,get_auxbc_from_aux:92,get_cmap:58,get_count:95,get_dim_attribut:79,get_dt:90,get_dt_new:90,get_q_glob:92,get_qbc_from_q:92,get_remote_fil:123,get_topo:123,getax:1,getcwd:58,getfigur:1,getfram:[1,3,60],getgaug:34,gethandl:[0,2,3],getitem:1,getlogg:83,gfortran:[10,22,42,53,63,93,124],gfortranbinari:91,ghamdi:4,ghost:[12,22,53,54,79,90,92,110,112,114,126,129],gica2937:25,gist:42,git:[9,10,21,22,41,68,71,72,76,78,81,91,100],git_link:39,git_statu:40,gitconfig:69,githhub:68,github:[9,20,21,39,41,42,61,69,70,71,73,78,86,91,100],gitk:[39,68],give:[3,5,10,12,24,25,28,34,39,43,53,54,58,60,68,69,70,72,84,85,88,90,98,100,103,110,113,121,123,125],given:[25,36,43,46,48,52,74,84,89,90,92,95,98,99,107,113,121,123,126],glob:75,global:[5,69,72,79,88,92,95,98,107,125,126],gloss:125,glu:12,gmt:36,gnu:91,goal:5,godaddi:41,godunov:[4,90,110,112,114,126],goe:[25,35,88],going:[12,20,64,67,68,72,75,87,88,96,98,101,115,121,129],gone:83,good:[12,37,39,44,53,62,68,69,70,71,94,98,100],googl:[43,73,75,84,93,98],googlecod:84,googleearth:43,got:[68,71],gov:[25,36,84,98],govern:113,gprint:[111,112],gpu:77,gradi:[4,62],gradient:129,gradylemoin:4,grant:[4,62],graph:[68,69,71],graphic:[21,24,48,57,68],gravit:[46,113,126],graviti:113,great:[36,75,98],greater:[26,43,46,91,96,99,105,110,111],greatest:99,greatli:[62,107],green:[43,52,58,98,100,123],grid1d:79,grid1info:113,grid2info:113,grid:[4,6,13,17,18,20,21,22,23,24,29,34,35,37,43,48,54,55,57,62,64,73,81,83,84,86,87,88,89,90,92,94,98,99,102,103,106,107,110,111,112,114,121,123,125,126,129],grid_files_scanf:127,grid_numb:54,grid_registr:123,griddata:123,grideges_show:20,gridlin:48,gridlines_show:20,ground:26,group:[3,10,25,37,73,75,84,93,98],guarante:[35,37,90,98],gui:[20,127],guid:[10,16,21,22,35,39,61,68,70,96,116],guidelin:76,gzip:68,hack:[68,72,92],had:68,hadjimichael:62,half:[0,12,13,52,90,98,110,126],halfspac:52,hand:[3,17,18,46,64,73,98],handi:45,handl:[0,2,3,5,26,31,35,42,43,53,55,57,68,79,86,89,90,92,93,94,95,98,102,103,113,123],hang:52,happen:[45,64,89,92,124],happi:68,harbor:26,hard:[38,53,58,68,123],hardcopi:[1,58,60,109],hardcor:72,harder:110,hardest:[49,96],hardwir:53,harmon:68,has:[0,4,5,10,12,15,18,19,20,21,22,23,24,26,27,28,29,39,40,43,45,46,48,52,54,55,58,62,65,67,68,70,71,73,79,83,86,87,88,89,92,93,95,96,97,98,99,101,102,103,106,107,110,111,113,121,123,126,127,129],hash:[40,41,100],have:[0,1,2,3,4,5,7,8,10,12,14,16,18,20,23,24,25,26,28,31,32,34,35,37,39,41,42,45,46,48,49,51,53,54,57,58,60,62,64,65,68,69,70,71,72,73,74,75,79,81,83,84,85,86,87,88,89,90,91,92,93,94,95,98,99,100,102,103,105,106,107,110,111,113,115,119,121,123,126],haven:94,haversin:36,hawaii:98,hazard:[22,26,46,107],head:[24,25,68,69,71,98],header:[8,25,54,98,121,123],header_styl:123,heavili:65,height:[98,123],held:37,hello:84,help:[6,21,22,30,38,39,42,45,60,68,69,70,72,73,81,84,88,91,95,115],helzel:13,hemispher:98,henc:[41,90,99],here:[10,12,26,37,39,43,51,55,58,60,61,64,67,68,69,70,72,74,81,84,86,87,88,93,94,98,123,129],heterogen:126,hex:[43,58],hhuuggoo:69,hidden:[3,45,58],hide:48,hierarchi:79,high:[4,13,37,55,65,81,90,106,107,113,120,125,126],higher:[3,5,79,90,91,107],highlight:[8,10],hilo:[107,125],hint:[12,22,35,42,60,113,124],histor:[37,52,125],histori:[24,39,60,70,96,105],hit:[12,48,60,83,110],hmin:26,hoc:65,hold:[3,60,94,98,99],holder:[44,62],home:[10,25,42,69,72],homepag:[19,69],homogen:[52,90,126,129],honshu:98,honshu_ucsb3:98,hood:57,hope:100,horizont:[98,123],host:[68,73],hour:[10,43,98],how:[1,5,6,9,12,20,22,25,26,28,29,31,34,35,39,43,51,52,53,54,67,70,71,72,73,75,82,86,88,90,94,95,98,99,103,105,106,109,110,113,115,123,127],howev:[5,10,12,20,24,28,31,35,37,44,52,53,54,62,65,68,72,73,99,107,109,113],hpc:42,html:[1,10,13,21,22,25,28,30,34,41,51,57,58,69,73,75,78,84,85,96,98,100],html_plot:85,htmlplot:75,http:[4,9,10,13,24,25,36,41,42,44,49,61,62,65,66,68,69,72,73,81,84,86,96,98,123],hugo:69,hydrodynam:13,hyperbe:74,hyperbee_limit:74,hyperbol:[4,5,13,14,32,55,65,81,86,87,94,106,110,113,126,129],hyperol:110,hyphen:88,ibm:91,idea:[25,48,55,64,88,94,98,100,103,123,129],ideal:[98,107],ident:[79,84,100,123],identifi:[28,65,88,99],idl:10,ieee:13,ifort:31,ignor:[12,43,107,123],iii:98,iinstal:84,illustr:[25,28,48,51,52,106,115,122,123],imag:[10,28,43,88,100],imaginari:88,immedi:[24,37,48,64,67,68,83],impati:86,imped:[64,94],implement:[1,4,6,12,25,29,43,50,62,68,73,86,88,90,94,95,99,106,110,123,126,129],impli:[44,62,71],implicit:[62,88,90],impliment:69,importantli:84,impos:[12,65,99,113,117,118,129],imposs:[37,110],improv:[4,10,20,26,27,35,88,102,103,110],imshow:123,in_poli:123,inaccur:37,inaccuraci:37,inadequaci:46,inadvertantli:58,inbound:10,inc:[39,48],incept:4,inch:[2,43,58,109],incident:[44,62],includ:[4,5,10,11,19,20,21,22,23,24,25,28,30,34,37,39,42,43,44,46,48,49,53,55,57,58,60,62,64,65,68,71,73,75,79,81,83,84,85,86,88,89,90,91,92,94,96,97,98,102,106,108,110,112,113,115,116,117,118,121,123,126],incom:12,incompat:73,incomplet:26,incompress:13,incorpor:[20,37,41,62,71,90,96,102,123],incorrect:88,increas:[43,53,88,113],increment:[26,95,98,110,112,114],ind:79,inde:[65,84],indent:[36,43,88],independ:[21,25],index:[1,5,10,20,23,26,34,41,58,79,81,84,86,87,88,95,110,112,114],index_bi:69,indic:[6,12,18,20,22,25,31,48,56,60,79,83,84,87,88,90,94,98,99,100,106,110,112,113,114,121,123,126],indirect:[44,62],individu:[4,20,21,43,48,79,88,99,100],inf:123,infer:123,infinit:110,inflat:12,info:[25,43,48,67,79,83,90,111,112],info_sz:25,inform:[10,20,22,28,35,36,37,38,40,42,54,58,59,60,61,62,64,65,68,69,72,79,81,83,84,85,87,88,89,95,98,105,106,110,111,113,121,124,125,126,127],inhabit:64,inherit:[58,90],initi:[4,10,20,22,25,26,29,34,36,37,48,52,55,60,62,63,64,65,67,69,74,79,80,88,89,90,92,93,95,97,98,99,107,110,112,113,114,121,123],initialize_sourc:65,inlin:96,input:[6,12,18,21,22,23,25,29,30,43,48,64,67,74,79,81,87,88,89,90,95,106,112,113,114,121,123,126],input_filenam:65,input_unit:25,inputerror:39,inputfil:[95,121,123],inrati:98,inratt:98,inratx:98,ins:20,insert:[8,12,52,68,98],insid:[79,84,88,89,123],inspect:[17,18,98],instal:[9,10,16,21,22,28,60,62,63,66,68,72,73,76,80,81,82,94,98,101,102,103,104,128],install_output:42,instanc:[3,22,55,60,64,65,67,68,79,83,86,88],instantan:[90,121],instanti:[67,84,86,90,92,112,114],instati:123,instead:[3,10,24,26,28,49,71,72,91,92,95,98,106,121,123],institut:4,instruct:[10,16,22,28,49,64,66,68,69,71,72,73,76,84,91,94,101,102,103,104,105,128],insur:[40,45,60,98,99,100,102,111,113,121],intact:50,integ:[3,26,34,43,46,58,65,89,99,106,110,113,123],integr:[20,22,62,76,81,83,90,102,103,112,114,121,126],intel:22,intend:[37,65,88],intens:65,intent:[65,106],inter:24,interac:83,interact:[1,10,20,22,28,30,34,35,45,51,55,58,65,68,84,85,91,94],interactive_plot:[85,94],interdepend:92,interest:[9,12,21,23,26,38,48,65,72,73,92,98,110],interfac:[4,17,20,22,48,62,65,74,81,87,88,90,95,96,106,126,127,129],interface_funct:95,interior:[5,12,54,92],interleav:62,intermedi:[17,26,39,70,126],intern:[5,25,34,43,121,123,129],interp_unstructur:123,interpol:[5,12,22,25,27,34,43,48,58,107,113,123],interpret:[26,96],interrupt:[44,62],intersect:26,interv:[34,36,64,88,94,98,99,110,113],introduc:[12,17,26,58,72,73,88,129],introduct:[39,51,70,73],introductori:96,introspect:88,intuit:81,inund:[26,35,46,98,107,125],inundataion:[107,125],inv_haversin:36,invalid:[31,89],invert:[36,88],invest:37,investig:100,invis:30,invok:[8,53,88,124],involv:[86,90],ioerror:89,ioexcept:95,iout:114,ioutarrivaltim:113,ioutsurfacemax:113,ipdb:58,iplot:[28,75,84],iplotclaw:[1,10,20,22,28,34,35,58,85],iplotclaw_:58,iplotclaw_figno:1,ipynb:25,ipython:[10,22,25,33,52,55,58,60,65,66,68,81,83,91,94,96,122,123],ipython_displai:102,iqinit:[113,121],irregular:98,is_valid:[89,92],island:98,isn:[45,53,54,124],isosurfac:48,isotrop:52,issu:[20,24,41,42,48,64,68,73,79,81,90,91,93,100,102,113],item1:[0,60],item:[0,1,3,22,48,60,95,109],itemnam:[1,60],iter:25,ith:87,its:[4,5,10,20,37,44,54,62,67,74,75,79,81,86,88,89,90,92,95,96,99,112,123,129],itself:[42,57,78,113,123],ixi:88,jacobian:[106,129],jan:4,januari:[15,101],japan:43,javascript:115,jed:62,jet:[25,48],job:10,join:[58,98],jonathan:69,joshu:69,journal:[13,81,115],jpg:48,jsanim:102,jsanimation_frametool:104,juli:[15,103,104],jump:[4,42,48,60,90,110,129],junction:[26,113],just:[0,5,24,30,42,64,65,67,68,71,72,73,83,84,85,86,88,92,95,96,98,103,110,126],justifi:52,kappa:[94,129],kappa_i:129,karg:89,kaust:4,keep:[22,24,28,53,64,67,68,72,88,92,95,98,100,103,113],keep_copi:[64,67],keep_gaug:92,kei:[0,1,2,10,25,72,90,94,95,123],kemm:74,kemm_2009:74,kernel:95,kernel_languag:[73,90,95],ketch:4,ketcheson:[4,13,62,81,88,90],ketchesonmandliet:[4,13],ketparlev13:[4,13,55,81],keyboard:48,keypair:10,keyword:[2,3,58,64,73,75,79,88,89,95,109,123],kind:[67,75],kinemat:25,king:62,klein:74,kml:43,kml_build_colorbar:43,kml_cb:43,kml_dpi:43,kml_footer:43,kml_gaug:43,kml_header:43,kml_png:43,kml_region:43,kml_timespan:43,kmltool:122,kmz:43,kneplei:[13,62,81,88],know:[37,42,45,62,68,107,123,124,125],knowledg:37,known:[31,48,52,53,58,73,91,93,110],kpp:75,kristof:62,kutta:[81,90],kwarg:[2,25,43,58,73,95,109],kyle:[4,13,62,74,81,88],label:[25,38,43,69,72,123],lack:3,lake:[35,121],lambda:[79,123],land:[12,35,43,59,123],landslid:37,langseth:[4,13],langsethleveque00:[4,13],langtangen:96,languag:[8,57,95,96],lapack:102,laptop:81,larg:[5,18,27,28,37,41,48,53,57,73,83,84,98,99,105,110,123],larger:[10,18,26,43,53,54,58,79,102,113,121],largest:[99,107],last:[3,16,23,26,58,64,65,68,86,94,98,110],lat:[25,36,98,123],later:[10,40,60,88,90,98,105],latest:[21,22,72,84,91,103],latex:[1,22,57,85],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:88,latitud:[11,22,25,26,35,36,52,98,108,113,123],latitudin:36,latitutd:25,latlong:25,latter:[11,41,86,108,110,126],launch:[22,75,81,84,85,91],law:[4,13,43,129],lax:[90,110,112,114,129],layer:[13,43,79,102,104],layout:76,lbla:93,lead:[5,10,20,37,46,48,52,111],leak:68,learn:[37,39,69,70,75,96],least:[4,5,10,29,43,48,73,93,98,99,110,112,121,123],leav:[10,12,72,111,123],led:18,leer:[74,90,110,112,114],left:[3,10,12,23,26,54,60,68,79,86,87,88,94,98,105,106,107,111,121,123,125,129],legaci:21,lemoin:[4,62],len:[25,79,112,114,123],lenght:110,length:[11,25,37,43,52,86,88,92,98,108,110,111,112,113,126],less:[37,46,53,88,90,99,110],let:[12,35,42,62,68,71,98],letter:88,level:[3,5,6,12,21,23,26,29,34,35,36,37,42,48,50,53,54,65,67,73,79,83,88,90,97,98,99,100,102,103,105,107,110,111,112,113,114,121,123,125,126],levequ:[4,12,13,25,44,55,74,81,90,96,106,110,126,129],leveque09:13,leveque1996:13,leveque1997:81,leveque96:13,leveque97:[4,13],leveque_book_2002:87,levequegeorgeberg:[4,13],levyon03:13,lgomp:95,liabil:[35,37,44,62,98],liabl:[44,62],lib:68,librari:[5,10,11,12,18,20,23,26,28,34,43,49,53,54,55,62,74,82,84,88,90,95,97,99,108,111,117,118,124,126],library_path:95,licens:[22,35,37,81,98],lie:[5,26],lies:[5,12,26,29,99,113],life:88,lifetim:88,light:[48,99],like:[10,41,43,48,49,60,65,67,68,69,71,72,73,79,83,84,87,88,89,90,92,96,109,121,124],lim_typ:[88,90],limit:[0,4,5,25,37,43,44,48,53,57,62,64,65,81,88,90,98,99,104,110,112,113,114,121,123,129],limiter_typ:88,limitertyp:88,linalgexcept:88,line2kml:43,line:[1,3,4,12,22,25,26,31,34,35,36,40,43,45,48,49,54,58,68,69,71,72,73,84,88,90,94,95,98,102,103,109,110,112,121,123],linear:[4,25,26,52,58,64,68,74,90,106],liner:[0,25,88],linestyl:123,linewidth:58,link:[4,8,10,13,14,16,17,18,24,35,39,41,42,43,49,51,68,70,88,96,107,114,121,125],linspac:[48,67,94,98],linu:[39,70],linux:[10,39,42,50,68,70,93,96,100],lisandro:[62,88],list:[1,3,4,6,7,8,10,20,25,26,28,29,30,34,42,43,44,46,48,53,58,60,62,63,64,67,68,72,73,74,79,83,85,86,87,88,89,90,92,93,95,98,99,105,110,111,112,113,114,123],liter:88,literalinclud:41,literatur:37,littl:[37,39,68,70,107],live:92,llapack:93,llcenter:123,llcorner:123,lmm:90,lnetcdf:49,lnetcdff:49,load:[10,43,73,85,89,95,96,123,127],load_sift_unit_sourc:25,loc:123,local:[10,13,18,22,24,43,48,68,71,74,79,81,86,92,123,126],local_fnam:123,local_path:95,locat:[5,10,22,25,35,36,48,54,79,83,85,87,89,95,98,105,107,123],log:[22,24,39,68,69,70,71,72,80,89,90],logger:[83,92],logic:[5,12,13,26,88],long_lat:123,longer:[18,22,24,43,71],longest:98,longitud:[22,25,26,35,36,52,98,113,123],longitude_shift:25,longitudin:36,look:[10,20,25,43,48,49,58,60,65,68,69,71,73,79,84,88,89,90,94,95,96,98,100,103,110,111,113,123,124],loop:[29,34,48,57,95,99,109,110,126],loss:[44,62],lost:68,lot:[42,73],love:75,low:[65,123,125],lower:[3,20,25,26,54,79,84,88,98,110,112,114,121,123,125],lower_glob:79,lowerg:84,luckili:68,luna:[13,62,81],lying:5,m_w:129,mac:[42,53,93,96,100],machin:[10,22,39,42,53,55,70,72,73,96],made:[4,16,20,24,25,68,69,71,72,89,92,98,102,103,113,123,126],magic:[39,43,70],magnitud:[25,98],mai:[0,1,2,3,4,5,10,17,18,20,21,23,24,25,26,28,30,35,36,37,38,41,42,44,45,46,48,49,52,53,57,58,60,62,65,66,68,69,72,73,75,79,81,83,86,88,89,90,93,95,96,98,99,100,104,105,107,109,110,111,112,113,121,123,124,126],mail:[68,72,86,93],main:[8,17,24,48,55,65,67,68,71,73,82,86,88,94,95],mainli:84,maintain:[68,73,76,81,88,111,121,126],mainten:[62,88],major:[4,20,62,65,101,102,103,104],make:[1,8,10,17,18,20,22,23,24,28,30,31,34,35,37,39,40,41,42,43,45,46,48,53,55,60,64,65,67,69,70,71,73,76,78,79,80,81,86,88,89,95,98,100,102,110,119,121,123,125,126],make_colormap:58,make_input_data_kml:43,make_lib:10,make_plot:78,make_shoreline_xi:123,makefil:[5,8,11,12,17,18,21,22,24,26,28,31,49,53,55,58,60,65,80,99,102,108,110,112,113,114,115,117,118,124,126],maketopo:[98,121],man:[13,22,35,37,68,113,117,118],manag:[10,39,70,83,98],mandli13a:13,mandli13b:13,mandli:[4,13,62,74,81,88],mani:[1,3,4,5,9,10,14,18,19,20,24,26,28,29,31,35,39,43,45,52,53,54,58,60,62,64,70,73,75,81,86,88,89,94,95,96,98,99,101,102,106,109,110,111,113,119,121,126],manifold:48,manipul:[34,123],manner:[34,57,110,117,118],manning_break:113,manning_coeffici:113,manual:[24,42,65,68,71,73,76,91,93],manuel:[13,62,81],map2d_to_1d:23,map:[3,12,25,43,48,58,62,65,79,81,86,99,123,129],map_2d_to_1d:3,mapc2p:[3,22,23,48,65,79],mappedgrid:[3,48],march:[15,98,102,103],margin:[26,35],mark:[12,100],mark_cent:79,mark_nod:79,marker:43,markup:8,marsha:[4,5],mask:[38,68,123],mask_outside_zlim:43,maskedarrai:123,maskedconst:68,mass:[5,83],massiv:81,master:[10,15,24,41,69,71,72,76,86],match:[25,43,75,82,89,100,123],materi:[4,44,52,62],math:[13,94],mathemat:[4,96],mathwork:48,matlab:[6,20,22,28,56,57,58,85,96],matlabpath:48,matplotlib:[0,2,3,10,25,38,42,57,58,63,96,98,109,123,124],matric:[106,129],matrix:88,matteo:[4,13,62,81],matthew:[13,62,69,81,88],maux:[20,106,126],max1d:53,max:[0,25,48,98,99,103,112,114,123,129],max_inch:43,max_level_deep:113,max_step:90,max_vertices_in_descript:43,maxima:[26,53,113],maximum:[3,20,22,25,26,27,29,48,90,94,99,102,103,110,111,112,114],maxlevel:[29,48,98,99,111,112,113],maxm:106,maxmi:[18,65],maxmx:[18,65,88,106],maxmz:18,maxwell_1d_homogen:86,mayb:[68,123],mbc:[106,126],mc_limit:74,mcs:84,mean:[3,10,20,34,37,48,68,72,73,83,84,98,99,106,107,110,112,114,125],mean_latitud:38,meant:[79,90],meantim:68,measur:[25,34,36,52],mechan:92,media:[13,51],medial:88,medium:[112,126],meld:68,member:[86,89,94],memori:[18,20,53,54,55,64,67,88,92,111,112],mention:[110,111],menu:[10,43,68,107,125],meqn:[34,54,106,126],merchant:[44,62],mercuri:84,merg:[5,10,24,39,69,70,71,72,76],mesh:[4,6,13,48,55,57,64,77,99,109,110,120,126],meshgrid:[64,86,123],messag:[30,36,41,48,53,67,68,72,73,83,85,88,89,90,92,93,110,112,114,124],messi:68,met:[26,44,62],metadata:[54,88,98,123],meter:[25,36,107,113,123,125],method:[4,13,14,32,34,58,60,64,67,69,72,73,74,79,84,88,89,90,95,99,106,109,110,111,112,114,120,121,123,126],method_data:88,metric:36,mhhw:107,mhw:[37,107,125],micro:10,mid:58,midpoint:79,might:[10,12,20,24,28,29,36,41,42,48,50,53,58,64,69,76,83,96,98,99,102,106,110,111,121,123,125,126],migrat:17,millimet:123,min:[0,123,129],min_level_check:26,mind:88,minim:[5,88,111,123],minimum:[3,26,52,94,113,123],minlevel:[29,98,99,111,112,113],minmod:[74,90,110,112,114],minmod_limit:74,minor:[8,83,102,103,104],minut:[36,41,43,69,98,107,123,125],mirror:76,mis:58,misc:[4,81],miscellan:87,miss:[20,88,121,123,124],mistak:68,mitig:37,mitran:[4,13],mix:25,mjb:[5,13],mjberger:4,mllw:125,mode:[1,10,24,95],model:[12,13,22,25,26,31,35,46,72,83,107,113,121,122],modern:91,modif:[30,44,48,58,62,73,74,113],modifi:[5,11,12,18,20,22,23,26,28,34,35,45,48,50,58,65,68,74,79,86,97,98,99,108,110,112,113,114,117,118,121,123,126],modul:[0,22,24,38,42,52,53,57,58,59,60,64,65,73,74,75,82,86,87,88,89,92,98,103,104,105,110,111,113,122],module_nam:95,modulu:[25,94,112,126],molsolv:90,moment:[23,25],momentum:[12,26,37,46,113,121],monitor:[20,22,27],monoton:[110,113],month:[13,81],more:[1,2,3,4,5,6,9,10,12,13,18,20,22,24,25,26,28,29,34,35,37,39,42,43,44,45,48,51,52,57,58,59,60,62,65,67,72,73,74,79,83,84,85,86,87,88,90,91,92,94,95,98,99,100,102,103,106,107,109,110,111,112,113,115,119,121,123,124,126,129],most:[3,18,20,23,26,28,29,30,37,40,41,42,43,45,48,53,55,57,58,60,62,68,69,73,79,84,88,90,93,94,98,99,100,107,109,110,111,113,116,126],mostli:[3,57],motion:121,movabl:25,move:[12,28,41,42,52,86,98,99,102,104,113,121,122],movement:25,movetopo:102,mparsani:4,mpi:[55,84],mpich:84,mpiexec:84,mpirun:[73,84,91],msl:[107,125],msysgit:69,mthlim:90,much:[10,26,31,42,54,55,57,68,73,96,98,102,110,113,123],muct:90,multi:[13,64,88,102,104,126],multicor:53,multidimension:[65,81],multilay:103,multipl:[5,10,21,24,57,64,73,79,83,88,95,102],multistep:90,must:[5,10,12,18,20,25,26,35,42,44,45,48,52,53,54,62,65,82,83,86,88,89,90,92,93,94,95,98,102,105,106,107,110,112,113,114,123,124,125,126,129],mwave:106,mx1d:126,mxnest:[20,98],mxnext:98,my_acoustics_rp:64,my_custom_bc:90,my_initial_solut:67,my_new_fil:68,my_rp_modul:64,my_setplot_fil:60,my_solv:67,myclaw:50,n00014:4,n12:26,n23:26,name:[0,1,2,3,6,8,10,18,20,24,25,26,28,30,34,43,44,45,48,49,58,60,62,65,67,68,69,71,72,75,76,79,82,83,87,89,94,95,98,105,106,109,110,111,112,113,114,119,123,126,127],namespac:65,nan:[36,123],nation:[4,37],natur:[26,41,129],naux:54,navig:[9,115],nbviewer:51,nc_param:123,ncar:4,ncol:98,nctr:25,ndarrai:[36,74,79,87,92,123],ndarrari:79,ndim:[20,54,60,110,111],ndip:25,nearbi:107,nearest:[34,123],nearli:[79,121],nearshor:37,necessari:[5,10,28,35,37,43,48,52,54,55,60,64,65,88,105,109,110,121,126],necessarili:[4,73],necessit:73,need:[0,4,5,10,11,12,16,17,18,20,23,24,26,28,30,34,37,38,41,42,43,45,48,49,52,53,54,55,60,64,65,67,68,69,71,72,73,74,78,81,82,83,84,86,88,90,94,96,98,99,103,105,106,108,110,111,112,113,114,117,118,121,123,125,126,129],neg:[20,98,121,123],negat:[36,121],neglig:[44,53,62,113],neighbor:[4,99,111,112,123],neither:[43,44,62],nep:68,nest:[102,111,112],net:42,netcdf3:82,netcdf4:[82,123],netcdf:[10,22,110,112,114,121,123],network:68,never:[24,26,86,92,97,99,110,112,114,124],new_featur:24,new_file_nam:68,new_frame_num:95,new_plotax:[0,2,34,58,109],new_plotfgur:58,new_plotfigur:[1,2,34,58,109],new_plotitem:[0,3,34,58,109],new_userdata:[112,114],newdir:50,newer:[24,53,74],newli:105,next:[2,3,5,10,16,26,28,29,34,41,42,48,54,58,60,63,64,78,84,88,90,94,98,99,100,110,111,113],nfr:4,ngdc:[98,107,125],nghost:54,ngrid:54,nhtmp:37,nice:[39,43,51,65,69,70,72,73,86,103],nicer:[60,96],nih:4,nnnnn:[105,110],no_data_valu:123,noaa:[25,36,107,125],nodata_valu:[98,121,123],nodatav:121,nodatavalu:121,node:79,nodes_with_ghost:79,nohup:103,non:[12,51,55,65,69,86,88,94,110,112,114,129],nonconserv:129,none:[0,1,2,3,12,23,25,36,43,67,73,79,88,89,90,92,95,102,110,112,114,121,123],nonexist:[33,75,81],nonlinear:[4,13,37,74,88,110,129],nonoverlap:5,nonphys:34,nonuniform:48,nor:[44,62],norm:[43,99,123],normal:[12,58,86,88,106,110,111,112,114],north:[36,52,98],northernmost:[98,121],norwegian:4,nose:[63,73,84,88],nosetest:[24,42,73,84,91,100,119],notat:[25,36,43,106],note:[1,3,4,10,12,18,20,22,24,25,29,30,31,34,35,36,41,42,43,45,52,53,58,60,65,68,69,71,72,74,75,79,81,82,84,86,88,91,92,95,96,98,99,105,106,107,109,110,111,112,113,114,121,123,125,126],notebook:[22,25,33,52,66,83,122,123],noth:[11,92,108,117,118,123,126],notic:[44,62,68,73,94],nout:[98,114],nov:[13,81],now:[5,6,10,16,18,20,24,25,26,31,40,41,42,46,54,58,64,65,66,68,69,71,72,81,83,84,85,86,90,91,94,98,100,102,103,106,109,113,115,121,128],npacif:98,nprint:[111,112],npt:26,npy:123,nrm:43,nrow:98,nsf:4,nstepout:67,nstrike:25,nthmp:37,ntime:112,ntot:114,num_aux:[65,84,86,87,92,106,110,111,112,114,126],num_cel:[7,20,79,106,110,111,112,114],num_cells_glob:79,num_digit:43,num_dim:[20,79,86,110,111,112,114],num_entri:95,num_eqn:[54,64,65,74,84,86,87,88,89,92,94,106,110,112,114,126],num_fgmax_v:[26,113],num_ghost:[65,79,86,87,88,90,92,110,112,114],num_output_tim:[64,67,105,110,112,114],num_wav:[74,87,88,106,110,112,114],number:[1,2,3,4,5,7,12,13,17,20,23,25,26,28,34,42,43,45,48,53,54,55,60,64,65,67,73,74,75,79,81,82,83,84,86,88,89,90,92,94,95,98,99,102,103,105,106,110,111,112,113,114,119,123,126],numer:[4,13,88,96],numerica:13,numpi:[3,10,25,36,42,63,64,65,66,67,73,79,86,88,92,93,94,96,98,112,123,124],nxpoint:123,nypoint:123,nyu:4,obj:68,object:[0,1,2,3,20,22,23,25,26,34,43,58,60,64,65,67,68,69,82,83,84,86,88,89,92,93,94,95,96,102,105,110,111,112,114,123],obliqu:12,obscur:20,observ:[26,37,102,107,110,113,121,125],observatori:4,obtain:[5,9,21,26,34,35,37,42,43,82,84,88,98,99,106,113,115,121,129],obviou:88,occasion:73,occur:[52,88,121],ocean:[12,13,37,98,113,117,118,121,125],octob:[15,16,104],off:[10,26,37,43,48,60,67,71,83,98,111,123],offer:[30,73],offici:42,offset:[38,43,123],offshor:[43,46],oft:87,often:[5,8,10,12,18,23,26,28,30,31,34,35,37,38,40,43,46,52,54,68,96,98,100,105,106,107,109,110,113,121,125,126,129],okada85:[13,25,52],okada:[13,22,25,35,98,121,122,125],okadamap:25,okai:73,olav:4,old:[1,18,20,60,67,84,85,86,90,100],older:[20,42,90,113],olig:[5,13],omega:64,omit:113,omp_num_thread:[31,53],omp_stacks:53,on_lower_boundari:79,on_upper_boundari:79,onc:[1,10,20,24,28,48,60,64,72,83,84,85,86,92,95],ondrej:62,one:[0,1,2,3,4,5,7,10,11,12,18,20,23,24,25,26,28,34,35,43,46,48,49,50,52,54,55,57,58,64,68,72,73,79,83,84,86,88,89,90,91,94,95,98,99,100,105,108,109,110,111,112,113,114,117,118,121,123,126,127],onelin:[68,71],ones:[64,65,92,98,110,111],onli:[1,3,5,7,10,12,17,20,22,23,24,25,26,37,43,46,48,52,53,54,55,58,64,67,68,71,72,73,79,83,84,86,88,89,90,91,92,94,95,98,99,102,105,106,107,109,110,111,112,113,114,121,123,124,126,129],onlin:[76,96,116],onr:4,onshor:[26,43,46],onto:[24,25,68,123],open:[10,25,42,43,57,62,66,68,73,79,88,95,96,127],opendiff:100,openli:21,openmp:[20,22,31,55,95],opensourc:[44,62],oper:[38,42,73],opinion:4,oppos:[24,88],opposit:[5,12],optim:[31,62,95],option:[1,2,6,10,12,18,20,22,25,26,28,30,35,36,40,42,45,48,49,58,59,64,65,67,68,71,72,73,75,79,80,82,83,85,88,89,90,91,94,95,96,97,99,103,109,110,112,114,115,123],order:[4,5,10,12,13,25,26,37,42,48,54,55,58,60,62,64,67,74,76,79,81,82,83,85,86,90,94,95,106,109,110,111,112,114,120,121,123,126,129],ordinari:106,ordinarili:93,org:[4,13,41,44,62,65,66,81,84,123],organ:[20,21,28,67,68,88],orient:[52,65,96,98],origin:[3,5,10,12,18,24,25,41,53,54,65,68,69,72,88,90,95,102,105,111,112,114,123],oscil:[34,129],oscillatori:123,osher:90,osx:[42,69,96],other:[3,4,5,10,12,18,20,22,23,25,26,28,32,34,35,37,39,41,44,45,46,48,49,52,53,54,60,62,64,65,67,70,71,73,76,79,81,83,85,86,87,88,91,94,99,102,103,107,109,110,113,115,121,122,123,125,126,127],otherwis:[25,44,62,83,89,90,91,92,95,110,123],ought:90,ouput:67,our:[64,68,71,72,98],out:[3,12,25,28,40,41,43,44,45,48,58,62,64,65,67,72,82,83,84,85,89,94,96,106,112,114,123],out_tim:67,outaux:23,outdat:73,outdir:[1,3,22,28,34,40,45,60,67,75,79,112,114,124],outdir_p:67,outer:69,outfil:123,outflow:[12,110,112,114],outgo:12,outlin:[43,48,60,98,109],outn:23,output:[1,7,10,12,22,23,25,28,30,31,34,35,36,38,40,42,57,58,60,65,67,68,69,73,74,75,79,80,81,84,85,87,88,89,90,91,92,94,95,98,102,106,109,112,114,123,126,127],output_aux_compon:[110,112,114],output_aux_onlyonc:[110,112,114],output_file_prefix:67,output_filenam:65,output_format:[67,110,112,114],output_opt:67,output_q_compon:[110,112,114],output_step_interv:[110,112,114],output_styl:[54,64,67,105,110,112,114],output_t0:[105,110,112,114],output_tim:[105,110,112],output_unit:25,outputdir:48,outputfil:[121,123],outsid:[5,12,43,121,123],outsiz:43,outstyl:98,over:[1,3,5,10,12,13,20,24,25,26,29,34,35,37,43,48,52,57,83,90,98,99,102,103,109,112,113,121,126,129],overal:64,overflow:31,overhead:[5,53,99],overlai:43,overlaid:43,overlap:[29,99,102,103,121],overli:88,overrid:[31,64,65,95],overridden:[48,90,92],overrul:3,overview:[101,104,120],overwrit:[1,67,89],overwritten:[105,126],own:[12,18,22,24,34,39,50,64,65,68,70,71,73,80,81,88,91,92,96,115],p_center:[79,94],p_function:83,p_node:79,p_t:94,p_x:94,pacif:98,packag:[4,21,22,24,28,55,57,62,64,73,79,81,85,86,88,89,91,94,96,127],page:[1,8,9,10,13,20,24,37,41,51,68,69,71,72,75,76,81,84,85,88,93,96,98,100,107,109,115,125,126],pair:[10,100,123],paper:[4,5,12,25,35,41,74,81,88],parabl:[39,70],paragraph:26,parallel:[4,20,21,22,53,63,73,75,80,81,83,86,88,89,91,95],paramet:[1,5,6,12,14,18,22,23,25,26,28,29,30,35,37,45,46,48,51,52,53,54,63,64,67,74,83,85,88,89,92,95,97,99,102,105,106,107,112,114,121,123,124,126],paramt:26,parent:[3,23,92,95],pars:[34,95],parsani:[4,13,62,81],part:[4,20,24,25,35,37,43,49,62,65,73,84,88,91,92,94,96,98,113,126],partial:[13,55],particular:[5,9,18,20,25,26,34,35,37,44,48,58,59,62,64,68,73,87,89,90,92,94,96,98,103,109,113,129],particularli:[12,23,40,52,54,103],partit:84,pascal:25,pass:[12,17,18,25,43,53,58,64,67,73,75,80,86,88,90,92,93,95,112,123,126],past:[15,19,89,107],patch:[3,5,6,12,20,23,26,48,52,53,54,57,58,71,76,84,89,92,109,111,113,126],patch_index:79,patchedges_show:[3,20],patchno:[3,23],path:[1,10,22,24,25,36,39,42,45,50,58,67,82,84,89,95,98,123,124],pathtool:48,pattern:[18,35,75,107],paus:72,pcolor:[3,22,34,96,123],pcolor_cmap:3,pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:43,pcolormesh:43,pdb:58,pde:[13,55,81,94,110,126],pdf:[1,25],pdflatex:1,peanoclaw:62,pedant:31,pem:10,pend:3,peopl:[4,10,62,71,96],pep8:73,pep:88,per:[10,25,43,48,53,88,111],perez:[39,70],perfect:12,perfectli:12,perfom:100,perform:[5,20,23,37,42,53,55,57,58,67,73,86,90,95,100,113,119],perhap:[5,26,34,58,68,88,92,95,98],perimet:26,period:[5,12,26,51,64,86,88,99,110,112,114],perman:48,permiss:[44,62],permit:[44,62],permut:18,person:69,perturb:[97,113,121],petclaw:[22,62,73,84,85,86,88,89,95],peter:4,petsc4pi:[73,84,91,92],petsc:[20,21,22,55,62,64,80,91,92,93,95],petsc_arch:84,petsc_dir:84,petsc_hello_world:84,phase:[84,88],philim:65,phoni:58,php:[25,44,62,98],phrase:[88,96],phy:13,physic:[12,34,65,79,81,94,99,129],pick:[64,68,90],pictur:88,piec:[12,37,76,79],piecewis:[25,26,103,106,121],pink:[43,58,109],pinkfig:58,pip:[24,42,66,81,84,91,93],pixel:43,pkg:114,place:[12,18,28,41,50,73,84,86,91,102,126],placehold:69,plai:51,plain:38,plan:[24,37,42,46,73,90],planar:52,plane:[25,52,98,125],platform:[10,51,67,69,84,96,100],pleas:[4,15,42,51,62,64,67,72,73,75,81,82,84,86,89,90,91,93],plot:[0,1,2,4,6,7,9,14,23,25,28,30,31,42,43,51,54,63,64,67,79,80,81,83,88,89,91,93,94,96,98,119,120,123],plot_box:[25,98,123],plot_centerlin:25,plot_dz_color:25,plot_dz_contour:25,plot_gauge_loc:34,plot_rak:25,plot_subfault:25,plot_subfaults_depth:25,plot_topo_fil:59,plot_typ:[0,20,34,58,60,109],plot_var2:3,plot_var:[3,23,34,58,59],plotax:[3,34,58,109],plotclaw1:48,plotclaw2:48,plotclaw3:48,plotclaw:[22,34,58,60,109],plotdata:[23,34,49,58,60,67,109],plotdir:[1,60,109],plotexampl:58,plotfigur:[34,58,109],plotfram:1,plotgaug:34,plotitem:[3,23,34,58,109],plotloop:[58,60],plotstyl:[3,34,58,109],plotter:[1,3,23,34,60],plotting_makeplot:28,plottyp:48,plt:[43,98],plu:[58,102,112,114,123],pmel:25,png2kml:43,png:[1,10,28,30,43,48],png_extent:43,png_file:43,png_filenam:43,png_name:43,point:[3,5,10,11,12,13,18,25,26,28,29,31,34,35,36,37,41,42,43,48,49,52,64,68,71,83,84,89,95,98,99,105,107,108,110,111,112,113,117,118,121,123,124,126],point_styl:26,pointer:[4,12,52,57,60,72,90,95,98],pointwis:92,poisson:52,poli:43,polici:88,poly2kml:43,polygon:[3,43,123],poor:73,popup:10,port:[10,80,81,86,111],portion:[5,65],posit:[52,55,95,98,121,123],possibl:[5,10,20,25,26,29,34,36,37,39,44,52,58,62,64,68,70,73,79,84,85,90,95,98,99,107,110,111,121,126],post:[22,39,69,70,73,84,115],poster:68,posteriori:90,postprocess:[54,83],potenti:[24,48,88,107],power:[57,96],pprint:[111,112],practic:[69,73,98],pre:[3,10,68,96],preced:[24,58],preceed:[26,54,126],precis:[31,43,65,79,106,123],predefin:58,predict:36,prefer:[42,43,68,84,86,96],prefix:[67,82,89],preliminari:[36,68,98,125],prepar:[73,88],prepend:[24,67],prerequisit:22,prescrib:88,present:[5,43,89,90,95,126,129],preserv:[34,55,90,105],press:[13,84,91],pressur:[34,48,60,83,94],presum:107,pretti:[10,69],prevent:69,previou:[1,22,24,26,34,42,48,60,64,68,90,102,110,112,114,123],previous:[5,20,60,88],price:10,primari:[20,35,73],prime:73,principl:[123,126],print:[1,3,22,43,48,58,79,83,84,85,88,92,94,98,102,103,110,112,114,124],print_figno:1,print_format:1,print_frameno:1,print_git_statu:40,printenv:124,printfig:1,printfram:[1,22],prior:[44,62,112,114,126],pro:[39,70],probabl:[10,24,46,72,98],probdata:[112,114],problem:[4,6,12,13,14,18,22,23,24,26,28,32,35,39,48,52,55,58,63,64,68,73,75,80,81,84,87,88,90,93,98,100,102,103,106,110,112,113,114,121],problem_data:[64,87,89,92,94],problemat:83,proce:[5,24],procedur:[5,12,22,88,126],proceed:41,process:[22,28,64,73,75,79,84,91,92,95,98],processor:92,procur:[44,62],produc:[1,3,20,22,23,25,28,30,34,42,43,48,51,53,56,57,100,109,113,123],product:[25,44,62,95],profession:88,professorship:4,profil:123,profit:[44,62],program:[4,35,37,55,88,96],programm:88,programmat:62,progress:[68,72,73,90,121,123],prohibit:20,proj:112,project:[25,37,39,62,66,68,70,72,88,111,121,123],projection_zon:25,promot:[44,62,88],prompt:[48,58,60,75,94,96,98,123],propag:[4,5,13,25,37,81,88,90,98,106],proper:[5,11,34,43,46,48,82,95,102,108,111,112,117,118,126],properli:[18,26,28,30,37,41,42,43,50,67,88,96,100,102,110,113,123,124,126],properti:[25,48,64,67,79,89,92,123],propos:[24,69,88,129],protocol:68,provid:[0,2,4,6,12,18,22,23,25,35,36,37,41,43,44,52,54,57,62,65,67,69,73,74,83,84,86,88,89,90,94,95,96,98,100,106,110,118,121,123,126],proximity_radiu:123,pseudo:48,psi:[86,126,129],psystem:75,pth:24,pts:[111,112],pub:25,publicli:115,publish:[13,41,81],pull:[39,41,51,68,69,70,71,72,73,86,100],pure:[22,42,60,73,81,84,90,96],purpos:[26,35,37,44,48,54,62,68,79,96,98,100],push:[24,39,41,68,70,72],put:[1,8,12,24,42,43,48,50,64,75,86,88,98],pwd:98,pyclaw:[1,3,4,9,13,15,21,23,24,28,33,34,51,54,55,60,68,71,73,76,77,80,84,86,93,96,120],pyflak:76,pylab:[0,58],pylint:76,pyplot:[43,98,123],python:[3,4,6,7,8,10,13,14,17,20,21,23,24,25,26,28,30,34,35,36,40,42,43,52,54,55,57,58,59,62,63,65,73,75,78,81,84,85,86,87,88,90,93,94,95,98,100,103,104,120,121,123,124,127],python_io:54,pythonpath:[24,42],pyweno:[22,62,90],q0000:[48,110],q0001:[48,49],q000n:[1,7],q0_vs_radiu:3,q1d:126,q_i:[106,129],q_l:87,q_r:[87,106],q_t:[86,90,94,126,129],q_x:[94,129],qbc:[86,90,92],qcor:65,qinit:[18,20,22,65,88,107,126],qinitdata:113,qinitfil:113,qquad:129,qtrue:58,quad2kml:43,quad:43,quadrat:25,quadrilater:[26,43],quantiti:[11,26,43,48,67,80,81,87,92,108,113],queri:[65,79,95],question:[24,89],quezada:[13,62,81],quick:[10,22,35,42,51,76,88,96,100,119],quicker:[10,68],quickest:72,quickli:[43,66,88,119,123],quit:[48,58,60,68,98],quot:[43,88,98],radial:[3,36,126],radian:36,radio:43,radio_styl:43,radiu:[3,113,123],rai:123,rais:[25,42,88,89,91,95,123],rake:[25,52,98],randal:[4,13,44,81],randi:[25,74],rang:[3,10,25,34,36,102],rare:[52,88],raster:98,rate:10,rather:[5,18,20,24,26,46,50,71,72,84,86,88,90,97,98,106,109,110,111,123,126,129],ratio:[5,11,20,38,48,52,74,90,98,108,110,111,112],raw:[22,110],reach:[71,98],reachabl:89,reaction:86,read:[1,4,11,24,25,26,28,34,37,38,39,43,48,54,57,65,67,68,70,71,72,83,88,89,95,97,108,112,113,114,117,118,121,123,126,127],read_:[82,89],read_aux:89,read_data_lin:95,read_head:123,read_netcdf:123,read_output:26,readabl:[68,88],reader:127,readi:[39,64,65,67,68,70,91],readm:[22,42,68,126],real:[37,46,68,88,95,98,125],realiti:37,realli:[5,73,88,126],reason:[37,43,52,53,55,68,84,86,88,98,99,110],rebas:[24,71],recal:[1,9,98],recalcul:103,receiv:73,recent:[10,20,22,23,25,40,41,42,45,46,53,58,60,69,73,121],recogn:[35,121],recommend:[4,25,26,28,53,57,84,85,88,90,91,93,94,110,112,113,114,127],recompil:[24,30,31,45,53,95,126],recomput:[60,64,103],reconstruct:[22,81,90],record:[26,34,92,98,125],recov:24,recoveri:68,recreat:[24,30,45],rect:25,rectangl:[5,25,99,123],rectangular:[5,6,12,13,25,26,35,43,52,79,98,99,111,113,121],recurs:[41,50,102],red:[2,3,32,34,43,58,73,100,109],redhat:96,redirect:[41,42],redistribut:[44,62],redraw:[48,60],reduc:[5,12,68,88,129],ref:[68,88],refactor:[68,88,102,103,104],refer:[18,22,25,28,33,35,48,64,68,72,74,75,79,87,88,90,92,98,105,121,123,125,126],referenc:107,refin:[3,4,6,7,13,20,37,48,54,55,64,77,98,109,110,111,112,120,121,126],refinement_data:113,refinement_ratios_i:[7,111,112],refinement_ratios_t:[111,112,113],refinement_ratios_x:[111,112],reflect:[4,12,24,110,112,114],reflog:68,refresh:[10,34,72],regard:4,regardless:[10,99,110,113],regener:45,region00:43,region:[3,5,10,12,20,22,26,37,38,43,46,55,98,107,111,112,121,123],regiondata:[29,99,112],regions2kml:43,regist:42,registr:123,regress:[20,22,24,40,76,84,119],regrid:[29,99,102,103,111,112],regrid_buffer_width:[99,111,112],regrid_interv:[99,111,112],regular:[26,123],reiter:88,reject:[83,90,110],rejoin:71,rel:[10,18,25,30,35,37,52,53,58,68,69,73,95,103,104,107,111,113,115,121,125],relat:[3,20,55,68,71,87,107],releas:[16,20,22,42,61,90,91],relev:[20,23,31,35],reli:[55,65,85],relief:[98,107,125],reload:123,reltol:95,remain:[26,68,86,95,102,117,118],rememb:[11,23,24,53,58,68,71,84,108,117,118],remind:[68,71,98],remot:[10,39,68,69,70,71,72,123],remote_directori:123,remote_topo_url:123,remov:[1,3,18,30,43,45,49,60,68,84,102,123,124],renam:[18,20,28,72,86,90],render:[20,43,127],reorder:[18,20],reorgan:[20,65,101],repeat:[60,72,105],repeatedli:[3,84,91],replac:[5,10,26,34,37,57,65,69,73,75,84,85,86,87,88,92,95,102,123],replace_no_data_valu:123,replace_valu:123,replai:68,replot:60,repo:[68,71,72],report:[25,26,40,42,88,100,110,112,119],repositori:[14,16,20,22,24,26,35,40,41,45,51,71,73,76,78,90,100,116,119],repres:[25,29,64,68,79,86,87,90,92,99,123,129],represent:[68,71,79,89,95,123],reprint:62,reproduc:[13,44,62],request:[25,41,51,54,64,68,69,71,72,73,79,83,86,89,98,100,123],requir:[3,4,12,18,20,22,23,28,30,36,37,42,48,52,55,57,60,64,65,72,73,79,82,85,86,90,91,92,94,95,98,99,102,103,109,110,111,112,113,114,121,124,127,129],rerun:[31,34],rescal:25,research:[4,13,35,37,62,90,98],reserv:[44,62],reset:[31,68,95],reset_count:95,resetplot:[58,60],resid:[42,45,79],resolut:[4,5,13,25,34,79,90,94,95,98,102,106,107,113,121,123,125,126],resolution_limit:123,resolv:[4,26,41,68,98],resourc:[13,24,35,69,76,81,120],resp:[18,25],respecitv:25,respect:[25,26,43,81,82,87,123],respons:[10,37,64,89],rest:[20,60,68,71,88,107,117,118,121,123],restart:[10,22,34,60,81,110,112,114],restart_fil:[105,110,112,114],restor:5,restrict:[88,113,121],restructur:[8,41],result:[1,3,4,6,9,13,22,25,26,27,28,34,36,37,42,43,45,46,48,51,52,57,58,59,60,63,67,75,81,87,88,91,95,98,99,100,102,110,111,112,113,114,119,123,125],retain:[44,62],retak:[110,112,114],retreiv:98,retriev:[10,36,60,65,90,98,123,125],return_topo:123,return_xarrai:123,reus:88,reutil:65,reveal:[34,94],review:[13,74,76],revis:[5,68],reword:68,rewritten:25,rgb:58,rho:[48,94,112],rhou:48,rhov:48,richardson:[20,29,111,112],rid:24,riemann:[4,7,18,20,21,22,24,35,42,51,55,62,64,80,88,90,91,92,94,110,112,114,117,118,129],riemann_solv:90,right:[26,44,46,51,52,62,68,69,71,79,84,86,87,88,92,94,98,106,129],rigid:25,rigin:25,rigoutsi:5,rigoutso:13,rise:[25,107],rise_fract:25,rise_shap:25,rise_tim:25,rise_time_start:25,rjl:[5,13,96],rjlevequ:[4,24],rjlkei:10,robust:[35,123],rock:52,roe:[74,88],roman:42,root:[82,83,89],rossbi:75,rossmanith:13,rotat:38,rough:46,roughli:98,roundoff:79,routin:[4,5,12,18,22,23,25,26,28,29,34,35,45,48,49,53,54,55,57,60,62,65,67,82,85,86,88,90,92,93,96,99,102,103,106,110,112,114,123,124,126,127,129],row:[25,74,99,121,123],rp1:[106,129],rp_:87,rp_sourc:86,rpn2_vc_advect:104,rprint:[111,112],rsphere:[36,65],rst:[22,41,78],rsync_clawpack:41,rule:[10,39,43,65,70,88],run1:45,run:[1,5,6,9,10,12,14,18,20,22,24,26,29,30,34,40,41,43,45,46,48,49,51,54,55,57,58,60,63,65,67,69,76,78,79,80,81,83,86,91,93,94,95,98,99,100,102,103,105,106,112,113,114,119,123,126],run_app_from_main:95,run_data:67,run_exampl:123,run_seri:95,runclaw:[40,103,106],rundata:[20,26,29,34,43,98,99,102,105,110,111,112,113,114],rundir:67,rung:[81,90],runmak:67,runnabl:95,runtest:84,runtim:[51,95],runup:46,ruptur:25,rupture_tim:25,rupture_typ:25,safe:[53,72],safer:45,safeti:74,sage:[22,88],sagemath:[42,66],sagemathcloud:66,sai:[10,12,24,43,68,71,93,99,105],same:[3,5,10,12,20,24,26,34,35,36,37,39,43,46,49,55,57,58,59,60,64,68,70,74,79,81,83,86,87,88,90,95,96,98,102,103,105,106,110,111,112,113,117,121,123,126],sampl:[13,22,31,35,100,105,110,111,123,126],san:42,sanromd:42,satisfact:72,satisfi:[73,90,99,129],save:[10,22,40,42,43,54,67,68,69,90,98,105,123],savecod:67,savefig:43,scalabl:[13,81,88],scalar:[23,25,83,92,110,129],scale:[4,25,38,48,55,81,98,102,113],scari:71,scatter:[3,20,48],scenario:[37,107],scheme:[74,87],schlieren:[3,48],sci:13,scienc:[13,62],scientif:[4,13,81,84,96],scipi:[10,65,96,123],scm:69,scp:10,scratch:[36,94,98],scratch_dir:98,screen:[10,24,43,67,83,84,88,112,114],screenshot:10,script:[8,17,18,25,30,34,41,42,45,48,55,57,62,65,75,80,81,84,88,90,95,96,98,100,109,113,114,123],scroll:[10,98],sea:[25,35,37,52,97,98,107,113,121,123,125],sea_level:[26,37,43,113,121,123],seab:46,seafloor:[25,37,52,125],sealevel:[22,35,113],search:[1,10,22,81,88,95],sec:25,second:[3,12,25,26,29,36,42,43,48,64,71,90,98,99,102,105,110,123,126,129],section:[5,10,12,28,31,35,37,48,57,60,68,69,71,88,98,105,110,113,123],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,41,42,44,45,46,48,49,50,52,53,54,56,57,58,59,60,61,62,65,67,68,69,72,73,75,79,81,82,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,121,123,124,125,126,127,128,129],seek_gzip_factori:68,seem:[92,109,121],seen:[9,20,26,28,37,53,86,110,115],segement:123,segmentedplanefault:25,seism:[13,25],seismic:25,select:[10,12,24,26,68,90,98,102,110,113,125],self:[25,88,90,123],semi:90,send:[10,51,72,86],sens:[23,129],sensibl:[68,71],sensit:[37,46],sent:[83,92],separ:[1,43,68,72,81,88,90,123],seper:95,sequenc:[18,20,73,84,88,91,94,95,98,102,106,126],seri:[39,70],serial:[22,84,89,95],server:[10,41],servic:[22,42,44,62,68],session:[1,28,81,85,91],set:[0,1,2,3,5,7,10,11,12,14,20,22,23,25,26,28,29,30,31,34,36,37,38,40,41,43,45,50,51,52,53,54,55,56,57,64,65,67,68,69,71,73,75,79,80,81,83,84,88,89,90,91,92,93,94,95,97,99,100,102,103,105,106,108,109,110,111,112,113,114,115,121,123,124,125,126,129],set_all_st:89,set_aspect:38,set_aux_from_auxbc:92,set_corn:25,set_count:95,set_cparam:[64,92],set_dynamic_slip:25,set_num_ghost:92,set_printopt:79,set_q_from_qbc:92,set_subfault:25,set_xyz:123,setaux:[18,20,22,65,88,102,103,106,110,112,114],setaux_default:41,setdtopo:98,setenv:84,setgaug:[34,98],setlevel:83,setplot1:48,setplot2:48,setplot3:48,setplot:[0,1,2,3,6,14,17,18,20,22,34,49,56,85,86,95,124,127],setprob:[112,114,126],setregion:98,setrun:[5,6,12,14,17,18,22,26,28,29,30,35,37,43,45,46,54,55,58,97,99,102,105,106,107,121,124,126],setrun_setgeo:113,settopo:98,setup:[24,42,64,65,75,81,84,86,88,90,91,92],setup_gauge_fil:79,sever:[0,1,2,12,18,20,21,25,28,30,32,34,35,37,42,48,57,72,73,88,91,98,99,101,102,103,109,113,119,121,123,126],sftp:10,shaheen:83,shall:[44,62],shallow:[11,12,13,26,35,37,51,55,65,75,81,88,97,98,103,104,106,108,113,117,118,121,126],shallow_spher:[65,73],shallowest:52,shape:[25,36,43,65,79,84,92,123],shapshot:10,share:[22,53,55,79,84],sharp:43,sharpclaw:[4,21,55,62,75,77,80,81,86,102,120],sharpclawnd:90,sharpclawsolv:90,sharpclawsolver1d:90,sharpclawsolver2d:90,sharpen:74,sharper:43,shear:[13,25],sheet:[39,70],shell:[42,53,58,60,66,84,91,94,96],shg:48,shift:[25,37],ship:26,shock:[5,13,37,75,90,99],shock_bubble_interact:[28,75,81,91],shockbubbl:86,shoot:22,shore:[26,35,98,113],shorelin:123,shoreline_xi:123,shorten:69,shorter:[3,99,123],shortli:100,shot:10,should:[0,1,2,3,4,5,9,10,12,16,17,18,20,22,23,24,25,26,28,29,30,31,34,35,37,41,42,43,46,48,49,50,51,53,57,58,60,65,66,68,69,71,72,73,78,82,84,86,88,89,90,91,92,93,94,95,97,98,99,102,103,105,106,107,109,110,111,112,113,114,121,123,124,126,128,129],shouldn:75,show:[0,2,3,25,28,34,41,43,45,48,60,68,71,72,73,79,94,98,100,123,124,126],showcolor:58,showgridlin:48,showitem:1,shown:[3,10,43,46,48,55,83,103,104,123,126],showpatchbord:48,shrink:123,shu:90,siam:[13,81],side:[5,12,26,46,52,88,98,100,106,129],sift:25,sift_slip:25,siftfault:25,sigma:64,sign:[10,58],signal:[68,72],signatur:[3,65,74,80,82,87,88],signific:[15,46,107,123],signitur:89,silenc:83,silo:127,similar:[10,12,26,34,42,64,65,72,73,86,88,90,94,98,121],similarli:[30,75,84,86],simpl:[26,28,65,72,73,81,86,90,95,98,123],simplest:[50,69,72,94],simpli:[10,24,26,28,34,45,64,67,73,75,83,84,88,91,98,115,121,123,126,127],simplifi:[57,58,73,98,105,126],simul:[28,35,37,48,67,79,81,84,86,91,94,98,113],sin:[36,58],sinc:[0,3,4,5,12,15,18,20,26,31,36,37,41,43,45,52,53,54,57,58,64,65,68,72,73,83,96,98,99,100,102,106,107,110,111,113,121,124,125],singl:[0,1,2,3,5,12,17,20,21,23,24,25,34,35,43,45,48,53,54,64,73,79,83,88,89,95,98,110,111,112,113,121,123,125,126],sisc:[13,81],sit:10,site:[24,42,51],situat:[48,68],size:[18,22,25,43,53,54,79,84,90,98,112,114,121,123],sketchi:69,skinni:0,skip:25,skiprow:25,slice:[3,48],slide:96,slider:43,slightli:12,slip:[22,25,35,98,121,125],slip_along_strik:25,slip_at_dynamic_t:25,slip_color:25,slip_distribut:25,slip_down_dip:25,slip_funct:25,slip_tim:25,slope:[25,90],slow:[10,83,93],slowli:[43,121],small:[12,46,73,98,99,100,102,105,110,112,113,121,123,125],smaller:[10,46,55,79,102,110,112,113,114,123],smallest:99,smear:43,smooth:[25,90,99,126],smooth_data:123,snapshot:24,snippet:[39,70],soc:[13,25],softwar:[5,10,22,37,42,44,49,62,73,81,88,96,115,121],sol:64,solid:[3,12,52,86,109,110,112,114],solitari:[13,51],sollut:52,solut:[1,3,4,12,20,22,23,34,36,42,48,51,52,54,60,65,67,73,79,81,82,83,86,88,90,92,93,94,98,99,105,106,109,110,111,112,114,119,126,129],solv:[4,7,12,18,28,37,63,65,67,77,79,81,86,87,88,91,98,106,110,121,126,129],solver:[4,5,18,20,21,22,24,35,42,62,63,67,77,80,83,88,92,104,110,112,114,117,118,129],solver_typ:[75,90],some:[3,4,5,6,9,12,13,14,17,18,19,20,21,22,23,24,25,26,28,31,34,35,37,38,39,41,42,51,52,53,54,57,59,60,62,65,66,69,70,71,72,73,74,76,83,85,86,89,91,92,93,94,96,98,99,102,103,104,106,107,109,110,111,112,113,114,115,119,121,123,126],someon:[24,68,71],someth:[10,22,23,45,50,68,69,72,73,83,88,89,90,121,124,126],sometim:[26,45,58,64,68,83,107,125],somewhat:[53,57,99,100,110],somewher:[49,72,98],sonel:125,soon:90,sophist:[68,88],sorin:4,sort:[10,109],sound:[64,68,94],sourc:[21,22,25,35,41,43,44,46,51,57,62,65,72,73,75,80,88,90,91,93,94,95,96,107,110,112,113,114,116,117,118,121],source_list:95,source_split:[90,110,112,114,126],sourceforg:42,southernmost:98,space:[5,6,12,13,25,26,29,34,52,79,86,88,98,99,105,110,111,112,113,114,121,123,126],spacial:113,span:[36,43],spatial:[5,13,22,25,29,46,86,98,99,102,106,112,114,129],spawn:73,specfi:123,special:[4,12,22,35,44,55,62,88,96,99,123],specif:[3,20,22,24,25,34,36,44,46,62,63,65,67,72,82,89,95,98,109,110,111,112,113,114],specifi:[0,1,2,3,4,5,6,11,12,14,18,20,22,23,25,26,27,29,30,31,34,35,36,37,40,43,45,46,48,52,53,54,55,56,57,59,64,67,73,79,86,88,89,90,93,95,97,102,105,106,107,108,112,114,115,117,118,121,123,124,125,127,129],speed:[26,64,74,87,88,94,106,110,113,123,126,129],spell:58,sphere:[22,36,65,103,113],spheric:13,sphinx:[8,21,22,78],split:[5,53,90,110,112,114,126,129],spot:58,sprint:[111,112],spuriou:[12,73],sqrt:[3,26,46,64,86,94,112],squash:68,src1:[118,126,129],src1d:[22,118],src2:[65,118,126],src3:[118,126],src:[5,8,11,12,17,18,22,25,26,30,31,36,40,43,45,48,52,53,59,73,85,86,95,97,99,100,103,106,108,110,112,114,117,123,124,129],src_split:[110,112,114],srcn:[110,126],ssh:[10,68,72],ssp104:90,ssp33:90,ssplmm32:90,ssplmm43:90,ssplmm:90,ssprk22:90,stabil:[90,110],stack:53,stage:[68,90,107,121,123],stand:[4,88],standard:[5,12,25,48,54,65,74,88,90,96,100,106,112,113,114,115,121,126,129],start:[1,2,4,5,6,10,23,25,26,28,30,35,36,42,43,45,50,58,60,64,68,72,73,84,89,90,96,105,113,120,121,126],start_fram:89,start_max:26,stat:69,state:[10,13,24,52,58,64,65,67,68,73,81,83,84,86,87,88,89,90,93,94,106,110,121,129],statement:[28,48,54,88,96,98,112],station:[36,107,125],stationari:121,statu:[10,39,40,67,68,69,70,72,94],steadi:[52,121],steep:129,stegoton:[51,75],stencil:92,stencil_width:92,step1:88,step2:65,step2qcor:65,step:[5,12,17,22,24,26,28,34,41,42,48,57,60,62,63,64,65,67,72,83,86,90,92,94,98,99,102,105,106,110,111,112,113,114,121,129],step_hyperbol:90,step_index:90,step_interv:112,step_sourc:[86,90],steps_max:[110,112,114],sternli:68,stiff:110,still:[1,6,7,10,12,20,26,34,35,42,48,54,57,62,68,88,90,99,100,105,113],stnd:36,stop:[22,53,58,68,102,112,114,123],store:[0,1,10,24,26,30,48,54,86,92,93,94,98,100,102,109,111,113,119,121,123],storm:13,str:[0,1,3,25,43,110,111,123],straightforward:68,strang:[68,90,110,112,114,126],strategi:5,stream:58,stress:[64,83,88],stretch:123,strict:[44,62],stride:[20,123],strike:[25,52,98],strike_direct:[25,98],string:[0,1,3,6,25,36,43,58,65,67,74,79,82,88,89,95,96,110,113,123],strip:[43,123],strip_archive_extens:43,strong:90,strongli:48,structur:[6,20,26,55,89,90,98,109,123],structured_array_extens:68,stuck:68,student:4,studi:[37,46,98],stuff:[68,71],style:[5,20,25,38,54,58,62,67,73],sub:[25,73,123],subclass:[25,88],subdirectori:[18,20,21,28,41,42,45,50,60,75,100,109,113,115,119,123],subdivid:25,subdividedplanefault:25,subdivis:25,subduct:[37,52],subfault:[25,52,98,125],subject:[99,111,113],submit:[51,98],subpackag:88,subplot:[0,25,60],subrepositori:24,subroutin:[4,5,12,20,26,29,88,99,106,110,111,126,129],subsequ:[3,48],subset:[25,123],substanti:[62,68,73,76],substitut:[44,62],subsurfac:[98,121],subvers:70,subversion_:39,succeed:90,succesfulli:65,success:[48,89,123,126],successfulli:[42,45,68,89],succinctli:68,sudo:69,suffici:[10,12,18,53,88,98,102,113],suffix:123,suggest:[4,36,60,72,88,113],suit:73,suitabl:[7,12,18,35,37,89,98,106,107,123],sum:[83,92],sum_:129,sum_p:129,summar:[3,29,69,88,99,101,126],summari:[69,76,88,110,111,112,113],summit:69,superbe:[74,110,112,114],superbee_limit:74,superclass:90,supercomput:[81,83,84],superpack:96,superposit:52,superpow:74,superpower_limit:74,supplement:115,supplementari:73,suppli:[29,99,126,129],support:[4,10,20,22,37,42,62,64,65,73,82,83,85,90,98,110,121,127],suppos:[12,29,48,58,68,98,99],suppress:[0,2,3,43,73,110,111],sure:[1,18,24,30,41,48,55,64,68,69,73,84,86,89,93,95,98,107,123,124,125],surfac:[13,20,22,25,26,35,37,52,59,65,81,94,97,98,113,121],surface_or_depth:59,surg:13,surround:[99,123],surviv:62,svn:[39,70],swap:123,swaphead:[98,123],sweep:7,symbol:[3,42,48],symlink:42,symmetr:[3,36,126],symmetri:12,syntax:[8,88],sys:[67,112,114],system:[4,12,13,21,42,43,53,54,62,73,81,83,84,86,87,91,94,96,106,110,112,114,126,129],systemat:20,t0000:48,t0001:[48,49],t0002:48,t_end:90,t_n:106,tab:[10,88],tabl:[43,46,57,69],tackl:73,tag:[111,112],tailor:68,take:[5,20,23,24,25,36,41,46,48,51,58,64,68,72,73,86,90,94,95,98,99,110,111,112,113,123,126,129],take_one_step:90,taken:[5,26,52,90,98,99,110,126],tall:0,tan:58,tangl:68,tank:[12,37],tar:[10,21,42,43],tarfil:42,target:[58,65,86],task:[57,68],tchknnnnn:105,tcp:10,tcsh:84,teach:[35,37,98],team:[4,81,88],tear:68,technic:[39,70,88],techniqu:13,technolog:62,tell:[49,54,58,64,69,72,98],templat:65,temporari:92,temporarili:48,ten:[4,55],tend:90,tend_max:26,tensil:13,tensor:25,tensorproductfault:25,terhorst:69,term:[4,22,35,37,44,65,80,88,90,99,110,112,113,114,117,118],termin:[42,66,110,111],terrain:46,terrel:4,test:[20,22,25,28,31,40,46,57,62,63,65,68,69,72,76,80,95,98,99,103,114,123],test_acoust:73,test_app:[73,95],test_bugfix:69,test_dtopotool:25,test_my_bug:72,test_shallow_spher:73,test_topotool:[103,123],tex:1,text:[8,41,43,54,67,68,69,71,88,90,96],tfinal:[64,67,94,98,105,110,112,114],tfluct:[88,90],tfluct_solv:90,than:[3,5,10,12,18,20,22,24,25,26,34,43,45,46,50,54,57,60,64,65,67,71,72,73,79,83,84,86,87,88,90,95,96,98,99,102,105,106,107,109,110,111,113,121,123,126,129],thank:[4,69,72,81],thei:[3,5,10,12,23,25,26,29,37,43,48,54,57,68,73,79,86,88,90,95,99,100,105,109,113,121,123,126],them:[10,16,20,24,25,26,29,41,48,49,51,55,62,64,68,72,73,75,82,83,84,86,95,98,99,103,116,123,126],theori:[44,62,88,129],therefor:[65,84],thereof:10,thesi:90,theta:74,theta_limit:74,thi:[0,1,2,3,5,7,8,9,10,12,13,17,18,20,22,23,24,25,26,27,28,29,30,31,34,35,36,37,40,42,43,44,45,46,48,49,52,53,54,57,58,60,62,64,65,67,68,69,71,72,73,74,75,79,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,102,103,105,106,107,109,110,111,112,113,114,115,116,121,122,123,124,125,126,127,128,129],thing:[0,10,12,20,24,37,39,43,60,70,72,73,75,76,96],think:[46,68,72,88],third:[12,26,74,123],thn:110,thoroughli:[82,88],those:[4,5,9,20,37,39,42,55,64,65,67,68,70,71,72,83,86,92,98,100,102,105,115,119,123,126],though:[3,55,88,121],thought:[68,107],thousand:[4,55],thread:[31,53],three:[3,10,13,20,25,26,37,48,68,73,77,84,89,95,98,110,113,121,123,126],threshold:46,through:[4,10,22,24,28,29,34,37,48,55,57,65,72,86,92,94,95,98,99],thu:[5,36,86,88],thumb:[39,70],tick:98,ticklabel_format:38,tidal:[83,107],tide:[22,34,36,98,107,123],tidesandcurr:36,tier:10,tild:129,time:[0,1,5,6,12,14,18,20,22,23,25,26,27,28,29,30,34,35,36,37,42,43,48,49,53,54,55,58,62,64,67,68,72,74,81,83,88,90,92,94,98,99,100,102,105,106,109,112,114,121,124,125,129],time_files_scanf:127,time_integr:90,time_zon:36,timespan:43,timestep:[67,83,110,112,114],timezon:43,tip:[22,24,35,39,70,76,80,86,96],tipe:94,titl:[0,1,4,13,22,34,43,68,81,123],title_with_t:[0,58],tmp8prh_j6r:39,tmp:68,tmpl2npyxs5:[],toctre:[33,75,81],todo:[12,26,99,105,106,123,129],togeth:[12,24,25,52,99],toggl:112,tohoku:98,toler:[26,73,95,99,111,112,113],too:[5,36,98,112,114],tool:[6,7,13,20,21,24,25,28,35,36,37,39,42,43,48,52,56,57,58,59,70,81,88,98,103,104,115,120,121,123,127],toolkit:[84,127],top:[0,1,3,8,21,25,42,50,51,52,58,68,71,73,86,87,88,98,100,105],topgraphi:123,topic:48,topo1writ:123,topo2kml:43,topo2kmz:43,topo2writ:123,topo3writ:123,topo:[22,37,43,59,102,104,107,113,121,123],topo_data:[98,113],topo_fil:123,topo_file_nam:43,topo_fnam:123,topo_func:123,topo_path:98,topo_typ:[43,98,123],topo_upd:102,topofil:[43,98,113,123],topographi:[12,13,22,26,37,43,46,52,59,102,103,104,107,117,118,122],topograpi:121,topotool:[36,43,98,103,104,121,122],topotyp:[98,113,121],topotype1:123,topotypein:121,topotypeout:121,torrilhon:74,tort:[44,62],torvald:[39,70],tos:[39,70],total:[5,25,83,90,110,111,112,114],total_step:[110,112,114],tout:114,toward:[4,25],tprint:[111,112],trace:83,traceback:58,track:[22,24,42,53,64,69,71,73,95,100,102,113],tracker:73,tradeoff:99,tradit:[55,67,82],traffic:[106,126],trail:43,tran:13,tranpsort:110,transect:[26,113],transfer:22,translat:[52,98,107,125],transliter:88,transmiss:90,transmit:110,transpar:43,transport:[110,112,114],transvers:[7,106,110,126,129],transverse_wav:[110,112,114],trap:31,travel:111,travi:20,tree:[42,72,86],triangular:25,trigger:113,tripl:88,troubl:[22,28],troubleshoot:[22,81],truli:89,truncat:12,trunk:[72,76],tscale:43,tstart:90,tstart_max:26,tsunami:[12,13,22,26,35,46,52,83,102,107,113,121],tt1:98,tt3:[98,123],tupl:[3,25,36,43,58,79,83,123],turbul:[37,90],turn:[35,37,43,58,68,83,100],tutori:[10,22,60,63,67,76,81,91],tvd:[64,90,129],twice:110,two:[0,3,4,6,7,11,13,20,24,25,26,29,34,36,42,43,48,54,58,64,72,73,79,82,86,88,90,93,95,98,99,100,102,105,106,108,112,113,121,123,126,129],two_d_classic_sourc:65,txt:[40,42,62],type:[3,4,6,10,18,25,28,30,34,45,48,58,59,60,64,65,66,68,72,74,79,84,85,88,90,91,94,95,96,98,111,112,113,121,123,129],typic:[3,18,48,52,54,55,60,65,73,84,86,90,92,98,99,111,112,125,126,129],typo:68,u_t:94,u_x:94,ubuntu:[10,69,96],ucar:49,ucsb3:98,ucsb:[25,98,125],ucsbfault:25,ufunc:69,ulimit:53,ultrabe:74,unavail:23,uncertainti:[37,46],unchang:[27,48],uncommit:[24,40],undefin:93,under:[4,6,20,35,42,44,57,62,77,79,88,100],underflow:102,underli:3,underlin:73,underscor:88,understand:[22,28,37,39,57,81,88,94,106],understood:37,underwat:[35,98],undivid:99,unexpect:[36,43],unidata:49,uniform:[25,52,55,65,121],uniformli:121,unind:43,union:121,uniqu:[1,54,71],unit:[25,35,36,69,79],univers:[4,13,41,44,62,89],unix:[30,50,96,98],unknown:[25,92],unkown:92,unless:[5,24,30,31,34,43,98,107,110,123],unlik:54,unlimit:53,unmap:79,unmodifi:72,unnecessarili:103,unpack:98,unpredict:48,unrecogn:95,unsplit:[110,112,114],unstructur:123,unsuccess:89,unsur:110,untar:42,unterweg:62,until:[10,98],untrack:68,unus:2,unwant:68,unzip:98,upbnd:[111,112],updat:[5,10,20,22,24,26,38,60,69,73,76,90,92,93,102,106,111,112,114,116,126],update_saved_valu:90,updip:25,upon:92,upper:[20,26,74,79,86,98,110,112,114,121,123],upper_bound_limit:74,upper_glob:79,uprint:[111,112],upstream:[39,68,69,70,71,72],upstrik:25,upward:37,upwind:110,url:[4,13,68,72,81,123],usabl:88,usag:[0,1,2,3,10,42,82,88,123],usc0001xgp:98,use:[3,4,9,10,18,19,20,22,24,25,26,28,30,31,35,36,37,39,42,44,45,46,48,49,53,54,56,57,58,60,62,64,65,67,68,69,70,72,73,74,75,79,81,82,83,84,86,88,90,91,92,93,94,95,96,98,103,106,107,110,111,112,113,114,121,123,124,125,126,127,129],use_fwav:[106,110,112,114],use_petsc:[75,84],used:[0,1,2,3,4,5,6,7,8,10,12,14,18,20,21,24,25,26,28,30,31,34,35,36,37,39,40,41,43,44,45,46,48,49,50,51,52,53,54,55,57,58,60,62,64,65,67,69,70,72,74,75,79,81,84,86,87,88,89,90,92,94,95,97,98,99,100,103,105,106,107,109,110,111,112,113,114,117,121,123,124,126,127,129],useful:[0,3,17,23,24,26,28,31,34,35,38,40,42,43,53,54,59,62,65,68,69,73,83,88,96,98,99,100,106,110,111,113,121,123,129],useoffset:38,user:[0,2,3,4,5,9,10,17,18,20,21,22,23,24,26,29,31,37,39,43,46,48,58,65,66,68,69,70,72,73,75,84,88,93,95,96,99,110,112,113,114,116,123,129],user_bc_low:86,usernam:24,uservari:48,uservariablefil:48,uses:[25,26,28,48,55,65,67,69,73,79,84,95,100,106,123,129],usg:[4,25,98,125],usgs100227:98,usgs_subfault:98,using:[0,1,3,4,5,6,8,9,10,12,13,17,20,21,22,25,26,28,31,34,35,36,38,42,43,45,46,49,50,51,52,53,54,55,57,58,59,60,64,65,66,67,68,72,73,74,79,81,84,85,86,88,90,92,93,94,96,98,99,106,110,112,113,118,121,123,125,127,129],usr:49,usual:[0,2,3,5,25,34,35,43,45,49,52,54,68,75,79,84,86,87,90,95,99,110,111,112,113,114,124,126],utc:43,util:[21,24,54,57,60,73,81,109,122,123],uwamath:10,valid:[3,37,52,67,83,89,92,113,123],valout:[49,54],valout_geo:49,valout_nc:49,valout_nc_geo:49,valu:[3,5,6,12,18,20,22,23,25,27,28,31,34,36,38,40,43,45,46,48,53,54,58,65,73,79,81,83,86,87,88,89,90,92,94,95,98,99,100,102,103,105,106,107,110,111,112,113,114,119,121,123,124,126,129],valueerror:[25,123],valuemax:26,van:[74,90,110,112,114],van_leer_klein_sharpening_limit:74,vanleer:[64,90,110,112,114],vari:[3,11,13,22,25,35,46,86,89,98,106,107,108,121,129],variabl:[0,3,10,20,22,23,24,25,26,28,30,34,35,40,48,50,53,55,58,64,65,84,88,89,90,92,93,95,98,106,110,111,112,114,123,124,126],variable_dt_refinement_ratio:[111,113],variant:[18,73,95],varieti:[67,96],variou:[18,20,25,37,48,58,60,69,79,94,96,98,99,109,113],vastli:107,vector:[20,64,74,83,88,92,106],veloc:[12,26,36,48,60,86,94,107,110,111,112,114,126],verbatim:41,verbos:[25,36,43,67,73,83,90,110,112,114,123],verbosity_regrid:[111,112],veri:[3,12,20,22,37,43,51,52,58,62,65,69,72,73,83,84,85,86,90,98,100,103,110,119],verifi:[36,73,95,125],verifyerror:95,version:[0,1,4,5,6,8,10,11,12,15,18,20,21,22,24,26,27,31,35,37,43,46,48,53,57,58,60,65,68,73,74,81,84,90,91,93,96,99,100,102,103,108,110,111,112,113,114,117,118,121,123,126,129],versu:123,vertic:[25,37,43,107,113,123,125],via:[10,14,20,21,24,25,28,31,34,35,37,42,45,48,53,55,58,64,68,79,85,89,91,93,99,100,115,117,118,119,121,123,126],video:[39,70],view:[3,4,20,22,28,34,35,41,43,51,54,57,59,60,64,72,84,91,115,116],viewabl:67,viewable_attribut:67,vim:[69,73],violat:[90,123],virtual:[4,10,22,23,42,92,96],vis:67,visclaw:[1,6,10,20,21,24,34,35,38,42,45,48,55,58,59,60,81,85,91,109,115,120],visibl:[10,115],visit:[20,22,57],visual:[21,24,28,34,48,54,55,57,68,81,85,86,120,127],volcano:4,volum:[4,13,14,26,32,43,48,81,111,121,126],wai:[5,10,12,22,24,28,34,39,43,44,58,60,62,64,67,68,69,70,71,72,75,79,84,86,88,89,91,94,96,98,102,109,110,116,121,126,129],wait:10,wakari:42,wall:[12,31,86,94,110,112,114],wang:25,want:[0,3,10,17,18,24,26,28,30,31,34,36,40,41,42,43,45,46,50,53,58,60,64,65,66,67,69,72,73,76,83,84,98,106,109,112,113,116,121,123,124],warm:74,warmli:72,warn:[73,82,83,90,110,124],warranti:[44,62],washington:[4,41,44,96,123],water:[12,13,22,35,36,37,43,51,55,65,81,88,98,103,104,106,107,113,121,123,125,126],water_level:36,wave:[4,5,12,13,26,37,51,74,81,86,87,88,90,98,99,107,110,111,112,113,114,126],wave_toler:113,wavelength:37,wdiff:69,web:[21,22,28,41,42,73,96,115,123],webpag:[14,20,22,28,35,45,96,107],webserv:10,websit:[12,98,115,123],webster:69,week:69,welcom:62,well:[5,24,35,42,43,52,53,54,55,57,60,68,69,88,89,90,105,110,111,117,118,121,126,129],wendroff:[90,110,112,114,129],weno:[22,55,77,81,90],weno_ord:90,went:68,were:[4,5,18,42,48,49,65,99,102],west:[98,121],western:[98,123],wet:35,what:[5,10,20,22,24,25,34,37,40,41,42,43,45,48,49,54,64,67,68,73,88,89,92,94,96,98,99,107,109,110,112,113,114,115,121,123,125,126],whatev:[49,64,89],when:[11,12,18,24,25,26,30,34,38,40,41,42,46,48,52,53,54,55,57,58,60,64,68,69,72,73,76,83,84,85,90,93,100,102,103,106,107,108,109,110,111,112,113,114,115,121,123,124,125,126,127,129],whenc:83,whenev:[24,126],where:[1,3,5,10,12,20,23,25,26,28,29,30,34,35,37,39,42,43,45,46,48,49,51,54,55,60,67,68,70,72,79,82,84,87,98,99,102,103,105,107,109,110,112,113,114,121,123,126,129],wherea:[34,57,84],whereev:98,wherev:[88,124],whether:[3,5,10,12,20,29,36,44,48,62,82,83,88,89,90,99,110,111,113,123],which:[0,1,3,4,5,6,8,10,12,18,20,22,24,25,26,28,29,34,35,37,41,42,43,45,46,48,52,53,54,58,60,64,65,67,68,69,72,73,74,75,79,82,83,84,85,86,87,88,89,90,91,93,94,95,96,98,99,100,102,103,105,107,110,111,112,113,121,123,125,126,129],white:43,whith:65,who:[17,20,26,31,37,42,69,71,72],whole:[73,83,84,88],whose:[3,58,65,86,87,88,110,111,123],why:[68,72,88],wide:96,wider:58,width:[25,43,52,54,79,86,88,92,98,99,112,114],wiki:91,wikipedia:88,wind:123,window:[10,25,42,48,60,69,96],wisdom:43,wise:[73,90],wish:[4,10,11,20,24,28,34,37,42,48,56,57,73,81,86,90,91,93,98,105,108,115,117,118],within:[5,12,29,55,58,66,85,88,95,99,106,109,115,123],without:[12,20,22,24,30,34,37,43,44,45,48,58,60,62,68,73,74,82,83,95,96,112,114,124,126],won:[10,65,88,123],word:[68,69,83,88,98],work:[3,7,10,12,17,18,20,22,24,26,28,29,30,35,37,39,41,42,43,48,50,52,53,58,62,63,64,67,68,70,72,73,74,81,82,83,84,87,90,91,96,98,99,100,104,106,109,110,111,113,115,121,128],workflow:[72,76,81],workspac:[48,92],world:[37,46,81,84],worri:68,worst:107,worth:92,worthwhil:86,would:[2,3,10,12,23,24,26,45,54,58,62,64,67,68,73,79,83,88,95,98,107,109,110,121,126],wpalg:13,wrap:[43,62,65,90,95],wrapper:123,write:[25,40,46,54,55,57,64,67,68,69,71,72,76,79,80,83,84,89,98,112,114,123],write_:82,write_aux:[82,89],write_aux_alwai:[64,67],write_aux_init:[64,67],write_input_data:26,write_p:89,written:[5,8,25,30,43,44,54,55,58,62,68,82,83,86,96,110,111,112,113,114,123,126],wrong:[48,68,83],www:[4,10,13,25,41,44,49,62,65,66,81,84,98,123],x_cell:43,x_edg:43,x_i:[106,126,129],x_inch:43,x_mask:123,xarr:79,xarrai:123,xarray_d:123,xclaw:[28,67],xclawcmd:67,xclawerr:67,xclawout:67,xcode:42,xdir:67,xiaom:25,xleft:[111,112],xlf:91,xlimit:[0,34],xllcenter:98,xllcorner:121,xlow:54,xlower:[0,3,12,20,23,65,98,112,114,121,123,126],xlowerg:65,xmax:0,xmin:0,xpoint:113,xrang:86,xtick:38,xupper:[0,20,98,112,114,123],xxdiff:100,xxxx:48,xylim:25,xzvf:42,y_cell:43,y_edg:43,y_inch:43,year:[4,13,20,43,81,101],yellow:[43,58,69],yellow_red_blu:58,yes:48,yet:[1,10,18,37,43,57,90,110,112,128],yianni:62,yield:3,yleft:[111,112],ylimit:[0,34,109],yllcenter:98,yllcorner:121,ylow:54,ylower:[3,20,23,65,98,112,121,123],ylowerg:65,ymax:0,ymin:0,yml:100,yong:13,you:[0,3,4,10,11,12,14,16,17,18,20,21,23,24,26,28,30,31,34,36,39,40,41,42,43,45,48,49,50,51,52,53,54,55,56,57,58,60,62,64,65,66,67,69,70,71,72,73,75,76,78,81,82,83,84,85,86,90,91,92,93,94,96,98,102,105,107,108,109,112,113,114,115,116,117,118,121,124,125,126,128],your:[5,11,12,17,18,22,28,31,34,39,41,49,50,53,57,58,60,62,63,64,65,66,69,70,71,73,75,76,80,81,83,88,93,94,96,97,98,99,102,108,117,118,121,124,126],yourdomain:[69,72],yourself:[31,34,51,68,72],ypoint:113,yum:69,yupper:[20,98,112,123],yuri:69,z_format:123,zaytsev:69,zero:[3,12,25,31,43,48,64,86,92,94,107],zip:[9,98],zlim:43,zlower:20,zone:[37,43,111,112],zoom:98,zsh:84,zupper:20,zvar:123},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Examples from the book FVMHP","Recent changes \u2014 release notes","Changes to master since v5.2.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Full Table of Contents","current_data","Developers\u2019 Guide","dtopotools module for moving topography","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","FVMHP book","Galleries of all Clawpack applications","Gauges","GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","git resources","Keeping track of git versions","Guide for updating this documentation","Installation instructions","kmltools module of utility functions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Development workflow","Installing and configuring git","git resources","Maintainer workflow","Contributing to PyClaw code development","General information for developers","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Information for developers","Future work","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Condensed Table of Contents","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":88,"catch":73,"class":[64,67],"default":[11,97,108,117,118],"function":[36,43,47,60,83,90,129],"long":71,"new":[35,50,68,73,75,88],"switch":48,"true":58,Adding:[75,86],For:22,Going:80,One:[106,129],The:[47,48,68,94,98],Use:93,Using:[10,49,53,83,86,90,109,126],about:[4,62],access:60,account:72,acoust:[87,94],adapt:[5,12,22,29],add:[58,88],added:88,addit:[111,113],advanc:[39,70],advect:87,after:105,afterfram:48,algorithm:[5,13,55,129],all:[3,33,42],altern:42,amazon:10,ami:10,amr:[3,5,20,53,99,111,113],amrclaw:[6,7,16,22,101,102,103,104,111,112,126],anoth:58,applic:[8,9,13,22,33,45,50,84],arrai:[54,93],arriv:113,ascii:[54,82],ask:68,attribut:[0,1,2,3,23,58],author:4,auto:[25,36,43,123],aux:[54,64],auxiliari:86,avail:14,axes:38,b4step:[11,126],background:58,basic:[63,85],bathymetri:[98,125],befor:126,between:58,bibliographi:[13,22],binari:54,book:[14,32],boundari:[5,12,86,126,129],branch:68,bug:73,build:78,built:[41,75],buoi:125,burger:87,capac:129,cautionari:37,cell:[5,29],cfl:74,chang:[15,16,20,58,68,71,90,101,102,103,104],chardiff:100,check:[71,73,88],checkpoint:105,choic:26,choos:5,cite:[4,81],clamshel:12,classic:[16,90,101,102,103,104,110,114],clawcode2html:8,clawpack:[9,10,13,15,17,18,19,20,21,33,42,45,55,61,65,90,91,114,128],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,58],clawutil:[16,102,103,104],clone:[24,72],cloud:66,code:[8,22,24,35,72,88,100,119,126],color:58,colormap:58,command:[48,60,75],comment:88,commit:[68,71],commun:73,comparison:100,compil:[31,42,45,49,93,116],compon:[21,58],comput:[55,105],condens:120,condit:[5,12,86,94,126,129],configur:[69,72],consid:68,content:[22,58,64,83,90,96,120],continu:100,contourf:58,contribut:[72,73],contributor:62,control:[64,67,94],convent:88,convers:18,convert:[8,17,18],coordin:38,copi:[50,72],correctli:84,coverag:73,creat:[10,26,48,50,64,72],creation:64,criteria:99,current_data:[23,60],curv:58,custom:90,dart:125,data:[54,109,113,121,123,124,125,126],debug:[58,111],defin:12,delet:68,depend:[73,74,91],depth:38,deriv:[64,83],describ:13,desir:109,detail:[68,69],develop:[22,24,42,68,72,73,76],differ:[55,58],dimens:[79,129],dimension:106,directli:10,directori:[45,50,58],displac:121,docstr:[25,36,43,88,123],doctest:73,document:[8,25,36,41,43,81,88,116,123],domain:[79,94],done:126,download:121,dtopo:[98,122],dtopotool:25,each:126,earthquak:[52,98,125],ec2:10,edit:68,elev:38,environ:[31,42],equat:[87,94],error:[73,93],euler:87,exampl:[9,14,22,28,34,35,48,50,51,56,75,84],exe:124,exist:50,explor:68,extra:41,extrapol:99,faq:58,fault:52,featur:68,few:71,fflag:31,fgmax:26,figur:58,file:[10,26,41,48,58,60,100,105,113,121,126],find:[10,58],finer:5,fix:[26,27,53,72,113],flag2refin:99,flag:[5,29,45,99,111],flow:[22,64],fly:57,fork:[24,72],format:[26,54],formul:129,fort:[54,58],fortran:[20,22,30,31,88,93,100,119,126],found:48,friction:46,from:[10,14,17,18,20,24,25,36,43,60,65,68,72,75,85,98,123],full:22,fund:[4,62],further:80,futur:77,fvmhp:[14,32],galleri:[33,48,78],gaug:[34,83,98,125],gener:[20,25,36,43,73,113,123],geo:113,geoclaw:[11,12,16,20,22,35,36,37,38,53,59,97,99,101,102,103,104,108,113,117,118],geometri:79,geophys:22,get:[22,48,72,98],gfortran:[31,91],ghost:5,git:[24,39,40,69,70],github:[24,68,72],godunov:129,grid:[5,12,26,27,53,79,113],guid:[24,41,98],guidelin:73,hazard:37,hdf5:82,help:48,high:[22,129],hint:[37,58,96],histori:[68,71],how:[58,60],html:[8,60],imagediff:100,includ:9,independ:74,indic:81,inform:[73,76],initi:[5,86,94,126],input:[20,26,82,110,111],instal:[24,42,49,55,69,84,91,93,96,119,124],instanc:10,instruct:[24,42,88],integr:[71,100],intel:31,interact:[60,75],interfac:55,interpol:26,iplotclaw:60,ipython:[51,75],item:58,keep:40,kmltool:43,latest:42,latex:60,latitud:38,launch:10,layout:88,level:24,licens:[4,44,62],limit:74,line:[60,75,100],link:19,list:75,local:[72,78,116],locat:34,log:[10,83],longitud:38,machin:128,main:72,maintain:71,make:[58,68,72,84,115,124],makefil:[30,45,86,105],man:46,manual:[39,70],mapc2p:47,master:[16,68],math:66,matlab:48,matplotlib:91,maxfram:48,maximum:113,merg:68,mesh:[5,22],mess:68,method:[0,1,2,3,22,129],might:68,mirror:68,model:[37,52,98,125],modifi:[24,105],modul:[25,36,43,81,95,96,112,114,123],monitor:[26,113],more:[30,68],most:24,motion:98,move:25,name:88,netcdf:[49,54,82],next:91,nose:91,note:15,notebook:[51,96],numpi:91,object:[79,109],obtain:91,okada:52,onli:42,onlin:[39,70],openmp:53,option:[57,60,84,86],order:[22,88,93],other:[13,21,42,58,68,98],out:24,outdir:58,output:[26,27,45,48,49,53,54,64,82,83,100,105,110,111,113,124],overview:[22,35,68,69,109],own:[10,72,86],packag:[20,42,82,87],page:[39,70],paper:13,parallel:[42,55,79,84,85,92],paramet:[20,34,58,60,94,98,110,111,113],pass:84,patch:[72,79],path:48,pcolor:58,peopl:68,petclaw:[79,92],petsc:84,piec:88,pixel:100,plot:[3,10,20,22,26,34,35,38,45,48,49,56,57,58,59,60,75,84,85,100,109,115,124,127],plot_typ:3,plotclaw:48,point:[24,72],port:65,post:57,prerequisit:42,previou:61,print:111,printfram:60,problem:[7,65,86,94,126],procedur:26,process:[26,57],produc:60,propag:129,provid:58,pull:24,push:71,pyclaw:[16,20,22,42,62,63,64,65,66,67,72,74,75,78,79,81,82,83,85,88,89,90,91,92,94,95,100,101,102,103,104,119],pyflak:73,pylint:73,python:[18,22,60,91,96,122],q0002:54,qinit:[97,113,121],quantiti:[64,83],quick:[72,98],raw:54,readm:8,rebas:68,recent:[15,24],recov:68,refer:[13,81,96],refin:[5,12,22,29,99,113],region:[29,99,113],regress:[88,100],releas:[15,101,102,103,104],remot:24,repositori:[9,21,68,72],request:24,requir:[96,126],resolut:129,resourc:[22,39,70],restart:[64,105],result:[10,35,49,85,115],review:68,rewrit:68,richardson:99,riemann:[16,81,86,87,101,102,103,104,106,126],routin:[11,20,59,97,108,117,118],rst:8,run:[28,35,42,64,66,73,75,84,85,110,111,124],sage:[66,96],sampl:[112,114],save:115,script:86,seafloor:98,sealevel:107,search:48,seri:71,serial:[42,73,79,92],servic:10,set:[24,35,42,48,58,60,72,86,98,107],setaux:[108,126],setplot:[48,58,60,109],setrun:[20,34,98,110,111,112,113,114],sever:68,shallow:87,share:[68,115],sharpclaw:[22,90],shoot:48,should:55,signatur:90,simul:64,simultan:73,sinc:16,singl:68,size:58,slip:52,softwar:[4,13],solut:[58,64,89],solv:94,solver:[55,64,81,86,87,90,94,106,126],some:[58,68,88,125],someth:58,sourc:[52,86,98,125,126,129],space:129,spatial:126,special:[3,111],specif:[26,73,94,126],specifi:[58,60,98,99,109,110,111,113,126],sphere:12,sphinx:[41,116],src1d:[117,126],src:[118,126],start:[22,98],state:92,step:[91,126],stop:10,substanti:72,summari:[39,68,70],surfac:38,t0002:54,tabl:[22,81,120],term:[46,86,126,129],test:[24,42,73,84,88,91,100,119],than:58,thi:[4,41],thing:68,tide:125,time:[110,111,113,126],tip:[30,38,84,88],titl:58,tool:[18,22,26,34,38,100,122],top:24,topo:[98,122],topographi:[25,35,98,113,121,123,125],topotool:123,track:40,transfer:10,travi:100,troubl:[48,124],troubleshoot:[93,124],trunk:[68,71],tsunami:[37,98,125],tutori:[39,70,94,96],tvd:74,understand:64,updat:[41,68],ups:68,use:55,user:[12,55,126],using:[37,48,126],util:[36,43,95],valu:[26,64],vari:126,variabl:[31,42,45,86],version:[30,40,42,61],view:10,virtual:128,visclaw:[16,22,57,101,102,103,104],visit:127,visual:22,wai:42,wakari:66,want:68,water:[38,87],wave:[106,129],web:10,webpag:[10,41,115],what:[58,60],when:88,which:55,without:42,work:[4,75,77,122,123,126],workflow:[24,39,68,70,71],write:[73,86,88],you:[68,88],your:[10,24,42,68,72,84,86,91,115,119]}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","book","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","contents","current_data","developers","dtopotools_module","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_util_module","geohints","geoplot","git_resources","git_versions","howto_doc","installing","kmltools_module","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/devel/gitwash/development_workflow","pyclaw/devel/gitwash/git_installation","pyclaw/devel/gitwash/git_resources","pyclaw/devel/gitwash/maintainer_workflow","pyclaw/devel/gitwash/patching_forking","pyclaw/develop","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/for_developers","pyclaw/future","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","toc_condensed","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","book.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","contents.rst","current_data.rst","developers.rst","dtopotools_module.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_resources.rst","git_versions.rst","howto_doc.rst","installing.rst","kmltools_module.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/devel/gitwash/development_workflow.rst","pyclaw/devel/gitwash/git_installation.rst","pyclaw/devel/gitwash/git_resources.rst","pyclaw/devel/gitwash/maintainer_workflow.rst","pyclaw/devel/gitwash/patching_forking.rst","pyclaw/develop.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/for_developers.rst","pyclaw/future.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","toc_condensed.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[25,1,0,"-"],kmltools:[43,1,0,"-"],topotools:[123,1,0,"-"],util:[36,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[25,0,1,""],DTopography:[25,0,1,""],Fault:[25,0,1,""],Mw:[25,3,1,""],SiftFault:[25,0,1,""],SubFault:[25,0,1,""],SubdividedPlaneFault:[25,0,1,""],TensorProductFault:[25,0,1,""],UCSBFault:[25,0,1,""],plot_dZ_colors:[25,3,1,""],plot_dZ_contours:[25,3,1,""],rise_fraction:[25,3,1,""],strike_direction:[25,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[25,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[25,2,1,""],dZ_max:[25,2,1,""],plot_dZ_colors:[25,2,1,""],plot_dZ_contours:[25,2,1,""],read:[25,2,1,""],write:[25,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[25,2,1,""],Mw:[25,2,1,""],containing_rect:[25,2,1,""],create_dtopo_xy:[25,2,1,""],create_dtopography:[25,2,1,""],plot_subfaults:[25,2,1,""],plot_subfaults_depth:[25,2,1,""],read:[25,2,1,""],set_dynamic_slip:[25,2,1,""],write:[25,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[25,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[25,2,1,""],calculate_geometry:[25,2,1,""],calculate_geometry_triangles:[25,2,1,""],centers:[25,2,1,""],convert_to_standard_units:[25,2,1,""],coordinate_specification:[25,4,1,""],corners:[25,2,1,""],depth:[25,4,1,""],dip:[25,4,1,""],dynamic_slip:[25,2,1,""],gauss_pts:[25,2,1,""],latitude:[25,4,1,""],length:[25,4,1,""],longitude:[25,4,1,""],mu:[25,4,1,""],okada:[25,2,1,""],rake:[25,4,1,""],rise_shape:[25,4,1,""],rise_time:[25,4,1,""],rise_time_starting:[25,4,1,""],rupture_time:[25,4,1,""],rupture_type:[25,4,1,""],set_corners:[25,2,1,""],slip:[25,4,1,""],strike:[25,4,1,""],width:[25,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[25,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[25,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[43,3,1,""],deg2dms:[43,3,1,""],dtopo2kml:[43,3,1,""],f2s:[43,3,1,""],fgmax2kml:[43,3,1,""],fgout2kml:[43,3,1,""],gauges2kml:[43,3,1,""],kml_build_colorbar:[43,3,1,""],kml_cb:[43,3,1,""],kml_png:[43,3,1,""],kml_timespan:[43,3,1,""],line2kml:[43,3,1,""],make_input_data_kmls:[43,3,1,""],pcolorcells_for_kml:[43,3,1,""],png2kml:[43,3,1,""],poly2kml:[43,3,1,""],quad2kml:[43,3,1,""],regions2kml:[43,3,1,""],topo2kml:[43,3,1,""],topo2kmz:[43,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[123,0,1,""],create_topo_func:[123,3,1,""],determine_topo_type:[123,3,1,""],fetch_topo_url:[123,3,1,""],get_topo:[123,3,1,""],read_netcdf:[123,3,1,""],swapheader:[123,3,1,""],topo1writer:[123,3,1,""],topo2writer:[123,3,1,""],topo3writer:[123,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[123,2,1,""],Y:[123,2,1,""],Z:[123,2,1,""],crop:[123,2,1,""],delta:[123,2,1,""],extent:[123,2,1,""],generate_2d_coordinates:[123,2,1,""],generate_2d_topo:[123,2,1,""],in_poly:[123,2,1,""],interp_unstructured:[123,2,1,""],make_shoreline_xy:[123,2,1,""],plot:[123,2,1,""],read:[123,2,1,""],read_header:[123,2,1,""],replace_no_data_values:[123,2,1,""],replace_values:[123,2,1,""],set_xyZ:[123,2,1,""],smooth_data:[123,2,1,""],write:[123,2,1,""],x:[123,2,1,""],y:[123,2,1,""],z:[123,2,1,""]},"clawpack.geoclaw.util":{bearing:[36,3,1,""],dist_latlong2meters:[36,3,1,""],dist_meters2latlong:[36,3,1,""],dms2decimal:[36,3,1,""],fetch_noaa_tide_data:[36,3,1,""],haversine:[36,3,1,""],inv_haversine:[36,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[90,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[90,4,1,""],kernel_language:[90,4,1,""],mthlim:[90,4,1,""],order:[90,4,1,""],setup:[90,2,1,""],source_split:[90,4,1,""],step:[90,2,1,""],step_hyperbolic:[90,2,1,""],step_source:[90,4,1,""],verbosity:[90,4,1,""]},"clawpack.riemann":{acoustics_1D_py:[87,1,0,"-"],advection_1D_py:[87,1,0,"-"],burgers_1D_py:[87,1,0,"-"],euler_1D_py:[87,1,0,"-"],shallow_1D_py:[87,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[87,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[87,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[87,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[87,3,1,""],euler_hll_1D:[87,3,1,""],euler_hllc_1D:[87,3,1,""],euler_roe_1D:[87,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[87,3,1,""],shallow_fwave_1d:[87,3,1,""],shallow_hll_1D:[87,3,1,""],shallow_roe_1D:[87,3,1,""]},"petclaw.geometry":{Domain:[79,0,1,""],Patch:[79,0,1,""]},"petclaw.geometry.Domain":{dimensional_split:[79,4,1,""],fwave:[79,4,1,""],kernel_language:[79,4,1,""],mthlim:[79,4,1,""],order:[79,4,1,""],source_split:[79,4,1,""],step_source:[79,4,1,""],transverse_waves:[79,4,1,""],verbosity:[79,4,1,""]},"petclaw.state":{State:[92,0,1,""]},"petclaw.state.State":{F:[92,2,1,""],aux:[92,2,1,""],fset:[92,2,1,""],gauge_data:[92,4,1,""],get_aux_global:[92,2,1,""],get_auxbc_from_aux:[92,2,1,""],get_q_global:[92,2,1,""],get_qbc_from_q:[92,2,1,""],keep_gauges:[92,4,1,""],mF:[92,2,1,""],mp:[92,2,1,""],num_aux:[92,2,1,""],num_eqn:[92,2,1,""],p:[92,2,1,""],problem_data:[92,4,1,""],q:[92,2,1,""],set_num_ghost:[92,2,1,""],t:[92,4,1,""]},"pyclaw.controller":{Controller:[67,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[67,4,1,""],F_path:[67,2,1,""],check_validity:[67,2,1,""],compute_F:[67,4,1,""],compute_p:[67,4,1,""],file_prefix_p:[67,4,1,""],frames:[67,4,1,""],keep_copy:[67,4,1,""],nstepout:[67,4,1,""],num_output_times:[67,4,1,""],out_times:[67,4,1,""],outdir:[67,4,1,""],outdir_p:[67,2,1,""],output_file_prefix:[67,4,1,""],output_format:[67,4,1,""],output_options:[67,4,1,""],output_style:[67,4,1,""],overwrite:[67,4,1,""],plot:[67,2,1,""],plotdata:[67,4,1,""],run:[67,2,1,""],rundir:[67,4,1,""],runmake:[67,4,1,""],savecode:[67,4,1,""],solver:[67,4,1,""],tfinal:[67,4,1,""],verbosity:[67,2,1,""],viewable_attributes:[67,4,1,""],write_aux_always:[67,4,1,""],write_aux_init:[67,4,1,""],xclawcmd:[67,4,1,""],xclawerr:[67,4,1,""],xclawout:[67,4,1,""],xdir:[67,4,1,""]},"pyclaw.geometry":{Dimension:[79,0,1,""],Domain:[79,0,1,""],Grid:[79,0,1,""],Patch:[79,0,1,""]},"pyclaw.geometry.Dimension":{centers:[79,2,1,""],centers_with_ghost:[79,2,1,""],delta:[79,2,1,""],nodes:[79,2,1,""],nodes_with_ghost:[79,2,1,""]},"pyclaw.geometry.Domain":{grid:[79,2,1,""],num_dim:[79,2,1,""],patch:[79,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[79,2,1,""],add_gauges:[79,2,1,""],c_center:[79,2,1,""],c_centers:[79,2,1,""],c_centers_with_ghost:[79,2,1,""],c_nodes:[79,2,1,""],c_nodes_with_ghost:[79,2,1,""],dimensions:[79,2,1,""],gauge_dir_name:[79,4,1,""],gauge_file_names:[79,4,1,""],gauge_files:[79,4,1,""],gauges:[79,4,1,""],get_dim_attribute:[79,2,1,""],num_dim:[79,2,1,""],p_center:[79,2,1,""],p_centers:[79,2,1,""],p_nodes:[79,2,1,""],plot:[79,2,1,""],setup_gauge_files:[79,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[79,2,1,""],delta:[79,2,1,""],dimensions:[79,2,1,""],get_dim_attribute:[79,2,1,""],level:[79,4,1,""],lower_global:[79,2,1,""],name:[79,2,1,""],num_cells_global:[79,2,1,""],num_dim:[79,2,1,""],patch_index:[79,4,1,""],upper_global:[79,2,1,""]},"pyclaw.limiters":{tvd:[74,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[74,3,1,""],beta_limiter:[74,3,1,""],cada_torrilhon_limiter:[74,3,1,""],cada_torrilhon_limiter_nonlinear:[74,3,1,""],cfl_superbee:[74,3,1,""],cfl_superbee_theta:[74,3,1,""],hyperbee_limiter:[74,3,1,""],limit:[74,3,1,""],mc_limiter:[74,3,1,""],minmod_limiter:[74,3,1,""],superbee_limiter:[74,3,1,""],superpower_limiter:[74,3,1,""],theta_limiter:[74,3,1,""],upper_bound_limiter:[74,3,1,""],van_leer_klein_sharpening_limiter:[74,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[90,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[90,2,1,""],aux_time_dep:[90,4,1,""],call_before_step_each_stage:[90,4,1,""],cfl_desired:[90,4,1,""],cfl_max:[90,4,1,""],char_decomp:[90,4,1,""],check_3rd_ord_cond:[90,2,1,""],dq:[90,2,1,""],dq_src:[90,4,1,""],dqdt:[90,2,1,""],fwave:[90,4,1,""],get_dt_new:[90,2,1,""],kernel_language:[90,4,1,""],lim_type:[90,4,1,""],num_ghost:[90,4,1,""],setup:[90,2,1,""],step:[90,2,1,""],tfluct:[90,4,1,""],tfluct_solver:[90,4,1,""],time_integrator:[90,4,1,""],update_saved_values:[90,2,1,""],weno_order:[90,4,1,""]},"pyclaw.solution":{Solution:[89,0,1,""]},"pyclaw.solution.Solution":{is_valid:[89,2,1,""],patch:[89,2,1,""],plot:[89,2,1,""],read:[89,2,1,""],set_all_states:[89,2,1,""],start_frame:[89,2,1,""],state:[89,2,1,""],write:[89,2,1,""]},"pyclaw.state":{State:[92,0,1,""]},"pyclaw.state.State":{F:[92,4,1,""],gauge_data:[92,4,1,""],get_aux_global:[92,2,1,""],get_auxbc_from_aux:[92,2,1,""],get_q_global:[92,2,1,""],get_qbc_from_q:[92,2,1,""],is_valid:[92,2,1,""],keep_gauges:[92,4,1,""],mF:[92,2,1,""],mp:[92,2,1,""],num_aux:[92,2,1,""],num_eqn:[92,2,1,""],p:[92,4,1,""],problem_data:[92,4,1,""],set_aux_from_auxbc:[92,2,1,""],set_cparam:[92,2,1,""],set_num_ghost:[92,2,1,""],set_q_from_qbc:[92,2,1,""],t:[92,4,1,""]},"pyclaw.util":{FrameCounter:[95,0,1,""],VerifyError:[95,5,1,""],add_parent_doc:[95,3,1,""],check_diff:[95,3,1,""],compile_library:[95,3,1,""],construct_function_handle:[95,3,1,""],convert_fort_double_to_float:[95,3,1,""],gen_variants:[95,3,1,""],read_data_line:[95,3,1,""],run_app_from_main:[95,3,1,""],run_serialized:[95,3,1,""],test_app:[95,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[95,2,1,""],increment:[95,2,1,""],reset_counter:[95,2,1,""],set_counter:[95,2,1,""]},pyclaw:{util:[95,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":54,"000000e":112,"00000e":112,"0000ff":[3,43],"001000e":112,"00er2592":4,"00ff00":43,"00ffff":43,"01er25474":4,"020204mag_polici":25,"0311_v3":98,"04d":127,"0d0":95,"0f22701":68,"115e":98,"11ee694744f2552d":68,"13d7934":68,"150w":98,"153w":98,"15e":123,"15n":98,"161w":98,"16m":53,"17th":90,"18n":98,"1d_plot":[34,58,60,109],"1drad":126,"1st":[74,90,110,112,114,126],"2013it":13,"210e":98,"23n":98,"25000000e":54,"26aa21a":68,"278dd2a":68,"27t06":43,"27t07":43,"29001ed":68,"2_installing_git":69,"2d_grid":20,"2d_patch":[3,20],"2d_pcolor":34,"2d_schlieren":3,"2dec1ac":68,"2e991e8":69,"2nd":[81,86,90,110,112,114,126],"376adbd":69,"3rd":[86,90],"40000000e":54,"4aff2a8":69,"4th":90,"50n":98,"5d0":126,"5e3":113,"5fcd911597685d99d94bee49a3dcea97a4bab85a":39,"5r01ar53652":4,"610000000000000e":98,"65af65":69,"68f6752":69,"6ad92e5":68,"6d8e1e":69,"721fc64":68,"7beda5a":69,"8888ff":43,"88er25053":4,"92er25139":4,"93er25181":4,"956fbab":69,"96er25292":4,"990000000000000e":98,"99999000e":26,"\u010dert\u00edk":4,"boolean":[3,82,87,110,111],"break":[24,25,37,43,73,88,113,123],"case":[5,7,10,12,17,20,25,26,31,37,43,48,58,64,68,71,72,73,76,79,84,86,89,95,99,103,107,113,121,123,126,129],"catch":[30,76],"class":[0,1,2,3,22,25,26,43,58,60,65,79,81,86,88,89,90,92,94,95,96,98,105,109,110,111,112,114,123],"default":[0,1,2,3,10,20,25,26,29,31,34,36,38,40,43,48,53,58,60,64,67,68,72,75,79,83,84,85,88,89,90,92,93,95,99,102,107,111,112,113,121,123,126],"export":[31,42,48,53,84,88,93,98],"final":[25,41,48,64,67,68,72,78,94,102,105,110,112,114,123],"float":[3,25,26,34,36,43,67,79,87,92,95,110,111,113,114,123],"function":[0,1,2,3,6,11,13,20,21,22,23,24,25,26,34,40,45,46,49,52,58,59,64,65,67,73,74,75,79,80,85,86,87,88,89,92,95,98,99,102,103,106,108,109,110,111,112,113,114,121,122,123,124,126],"import":[0,3,20,24,34,37,42,43,46,55,58,60,64,65,66,67,73,75,79,81,83,84,85,86,88,89,90,91,92,94,96,98,107,110,111,112,113,114,121,123,125,127],"int":[1,2,3,25,43,67,74,79,82,83,88,89,92,110,111,113,123],"long":[25,36,37,50,73,88,98,123],"new":[1,2,4,5,10,18,20,22,24,25,30,31,34,36,41,42,43,45,46,48,52,53,58,60,63,64,65,66,67,71,72,76,82,84,86,90,92,98,99,100,102,105,110,111,113,121,122,123,126],"ond\u0159ej":4,"public":[4,10,19,68,88],"return":[0,1,2,3,25,36,42,43,48,58,60,67,72,73,74,79,83,86,87,88,89,90,92,95,106,110,112,114,123,126,129],"short":[37,72,74,86],"static":25,"super":[21,24,123],"switch":[68,72,86,98,107,125],"throw":[24,69],"true":[0,1,2,3,5,11,12,22,23,25,29,34,36,40,43,64,67,69,79,83,84,89,90,92,99,105,106,108,110,111,112,113,114,123],"try":[1,24,28,34,42,43,58,66,72,73,75,82,89,91,93,94,95,96,100,110,121,123,124],"var":[0,3,10,11,23,39,97,108,117,118],"while":[10,12,48,58,60,65,68,72,79,83,84,90,95,106,113,125],AND:[44,62],ARE:[44,62],AWS:[10,42],Added:[69,74,102,104],Adding:[63,80],And:[5,18,41,88],Are:101,Axes:[69,109],BCs:[112,114],BUT:[44,62],Being:71,But:[10,58,68,93,98,103],CMS:4,DAs:92,DMS:4,DNS:10,EBS:10,FOR:[44,62],For:[0,1,2,3,5,6,10,11,12,15,16,17,20,23,24,25,26,28,29,31,34,36,37,38,41,42,45,48,49,52,53,57,58,60,64,65,68,69,71,72,75,79,81,82,83,84,86,88,90,91,95,96,97,98,99,101,102,103,104,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,123,125,126,129],GIS:121,Going:[10,22,81],Into:96,NOT:[43,44,58,62,88],Not:[25,79],OPS:36,One:[21,25,48,65,88,95,99,123],Res:13,SUCH:[44,62],Such:[48,88],Sys:13,THAT:68,THE:[44,62],That:[28,66,88,94],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,20,21,22,23,24,25,26,28,29,30,31,34,35,36,37,38,39,40,41,42,43,45,46,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,76,77,79,81,83,84,86,87,88,89,90,91,92,93,95,99,100,102,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,123,124,126,127,128,129],Their:62,Then:[10,12,24,25,34,41,42,53,60,64,66,67,68,72,78,84,91,92,93,105,123],There:[3,5,10,20,26,30,39,42,45,54,60,68,69,70,83,88,91,98,109,110,126,128],These:[1,4,9,12,14,16,21,24,25,26,29,37,41,43,48,58,60,64,73,75,83,85,88,92,94,97,99,102,105,106,111,115,121,125,129],USE:[44,62],Use:[25,39,68,69,81,87,88,90,98,110,112,114,123],Useful:[1,3,110],Uses:[25,123],Using:[0,1,2,3,6,14,20,22,28,31,56,58,60,79,80,81,110,117,118,123,124,129],WILL:68,Will:89,With:[5,20,24,34,38,55,96,99,110],__________________o:123,__doc__:88,__init__:[86,88],__main__:[112,114],__name__:[112,114],_build:41,_compute_c_cent:79,_compute_c_nod:79,_compute_p_cent:79,_compute_p_nod:79,_output2:[58,60],_output:[10,28,34,40,48,58,60,75,85,89,105,124],_output_from_previous_run:34,_output_new:100,_output_old:100,_plot:[10,28,34,48,60,109,115],_plotindex:[1,34],_plots_new:100,_plots_old:100,_pyclaw_io:67,a351:[13,81],a377:[13,81],a7ff2e5:69,a815645:68,aabbggrr:43,abbrev:69,abbrevi:88,abdullah:62,abil:[68,123],abl:[10,42,66,69,71],abort:[45,68],about:[3,6,10,12,20,22,28,30,36,37,42,43,45,46,48,54,59,64,68,72,73,81,84,88,90,98,106,109,112,113,124,126,129],aboutu:25,abov:[3,10,12,18,24,26,28,29,30,34,37,41,42,44,52,54,58,62,65,68,69,71,83,85,91,94,95,96,98,99,106,109,110,112,113,114,121,123,126],abs:[25,86,95,123],absolut:[73,83,111,112],abstol:95,academ:[93,96],acc:88,acceler:87,accept:[64,83,90,110],accept_reject_step:90,access:[0,13,23,71,72,75,79,81,90,92,95],accident:[24,58,72],accompani:19,accomplish:45,accord:5,accordingli:121,account:[10,24,66,68,84],accur:[37,52,81,90,98,110,126,129],accuraci:[34,46,55,112,114],achiev:[18,65,68,117,118],acou:58,acount:98,acoust:[12,28,37,63,64,67,75,81,90,91,106,112,126],acoustics_1d:[64,87,94],acoustics_1d_example1:[28,50],acoustics_1d_heterogen:126,acoustics_1d_homogen:[73,75],acoustics_1d_pi:87,acoustics_2d:90,acoustics_2d_radi:[112,126],acoustics_3d_vari:73,acquaint:94,acquir:58,across:[98,121,123],acsza1:25,acszb1:25,act:[74,123],acta:13,actanum2011:13,action:[10,65,72],activ:[26,27,39,70,90,113],actual:[5,23,25,43,48,51,52,58,68,69,74,95,98,107,113],adapt:[4,6,13,25,48,55,64,77,88,106,109,110,120,126],add:[0,8,10,12,13,22,23,24,25,26,34,36,39,41,48,49,64,68,69,70,71,72,73,75,76,79,83,84,86,95,98,103,114,123,127],add_colorbar:[25,98,123],add_dimens:79,add_gaug:[79,83],add_label:34,add_param:[112,114],add_parent_doc:95,add_titl:58,add_true_solut:58,added:[3,12,18,20,24,25,26,27,36,43,46,48,52,58,68,69,72,76,79,83,99,102,103,110,111,122,123,127],addgaug:34,adding:[20,23,24,31,34,43,52,84,97],addit:[10,12,21,22,24,26,35,43,52,54,55,58,59,65,72,74,79,81,83,88,90,91,92,98,99,110,114,121,126,127],addition:[72,84],address:[41,69],adequ:37,adjac:[5,12,26,35,99,110],adjust:[10,18,43,51,79,83,98,107,110,126],admin:68,adopt:[25,73,88,90],adq:88,adv:[13,75],advanc:[5,13,53,76,94,110,126],advantag:[24,57,73],advect:[13,58,81,84,106,114,126],advection_1d:87,advection_1d_pi:87,advection_2d_swirl:126,advis:[42,44,62,68],affect:[20,45,68,110,124],afosr:4,after:[0,1,3,5,10,17,22,23,26,28,34,37,43,45,48,49,54,58,65,66,67,68,72,75,88,90,92,98,100,102,110,111,112,114,126],afterax:[0,23,34,58],afterfram:[1,22,23],aftergrid:48,afteritem:[3,23],afterpatch:[3,23],again:[20,24,30,45,58,60,64,65,68,69,83,87,93,121,124],against:[73,95,119],agenc:4,ago:69,agre:[9,24,106,119,123,126],agreement:37,ahead:68,ahmadia:[4,13,62,81,88],aht:107,aid:65,aim:73,albada:74,alg:112,alghamdi:[4,13,62,81,88],algorithm:[4,6,22,26,29,64,77,79,81,88,90,94,99,106,110,112,114,123],alia:[68,69],alias:69,align:[26,43,113],all:[0,1,4,5,8,9,10,12,18,20,21,22,23,24,25,26,28,29,30,31,34,35,37,40,41,43,44,45,48,50,51,53,54,55,56,57,58,60,62,64,67,68,69,72,73,74,75,78,79,83,84,86,87,88,89,90,92,95,96,98,99,100,102,103,105,109,110,112,113,114,115,119,121,123,125,126],alloc:[18,88,90],allot:43,allow:[4,5,10,20,23,26,35,36,40,46,48,53,55,57,58,67,72,73,82,88,90,92,95,96,98,102,103,106,110,112,113,114,115,121,123],almost:[73,96,98],alon:[12,88],along:[5,12,22,23,25,26,29,34,49,52,98,99,105,113,125],alpha:90,alphabet:[62,88],alreadi:[0,1,5,10,24,31,42,43,60,68,71,72,84,88,89,91,94,96,103,123],also:[3,4,5,6,7,8,12,14,18,20,21,22,24,25,26,28,29,31,33,34,35,36,37,41,42,43,45,48,49,51,52,53,54,55,57,58,60,64,67,68,69,72,73,79,81,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,105,106,107,110,112,113,114,115,117,118,119,121,123,124,125,126,129],altern:[22,25,26,28,36,45,48,57,84,96],although:[25,48,85,86,89,123],alwai:[12,20,23,24,26,31,48,64,73,88,98,99,102,103,112,113,114,121,126],am583s2013:96,amal:[4,13,62,81,88],amazon:[22,42],amazonaw:10,amdq:[87,88,106],amend:68,ami:[22,42],amount:[37,41],amr:[4,6,12,18,21,22,23,24,26,27,34,43,48,54,55,57,62,79,98,109,110,112,114,121,126],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_level:54,amr_level_max:112,amr_levels_max:[26,29,99,111,112],amr_modul:53,amrclaw:[4,5,9,11,12,17,18,20,21,24,29,31,34,35,42,48,49,51,53,54,55,91,97,99,100,105,108,110,113,117,118,119,120],amrdata:[20,99,111,112,113],amrnez:99,an11:41,anaconda:[91,96],anal:13,analog:[110,111],andi:4,angl:[12,25,36,52],ani:[3,4,5,7,10,12,17,18,20,23,24,26,28,29,35,37,40,41,42,44,45,46,48,50,53,54,55,58,62,68,69,71,72,73,74,75,79,81,84,86,88,89,91,95,98,99,100,105,107,109,110,111,113,126,129],anim:[12,51,115],anisotrop:[5,20],anl:84,annot:[23,43],anoth:[3,20,22,42,43,54,57,69,73,75,90,93,105,126],anyon:68,anyth:[3,5,24,42,68,72,100],apach:10,apdq:[87,88,106],api:[36,69],app:[9,10,14,21,24,26,51],appar:[25,53],appear:[0,1,3,7,10,16,21,26,34,35,41,43,45,47,58,71,83,88,89,92,98,113,115,121],append:[18,29,34,58,67,89,98,99,112],appl:13,appli:[3,4,5,10,12,25,29,37,46,52,58,60,74,79,90,98,99,105,110,113,126],applic:[4,5,11,12,14,17,18,20,21,24,26,28,31,35,49,53,56,60,73,75,79,80,83,88,90,95,97,99,100,102,106,108,110,113,115,117,118,119,120,121,123,126,127],appreci:62,approach:[10,24,50,57,65,84,86,95,99,106,109,113,126,129],appropri:[5,10,12,24,34,35,37,38,43,46,48,49,50,53,64,67,74,75,82,84,85,86,87,89,98,106,107,110,126,129],approv:37,approxim:[5,12,37,52,88],apt:[10,69,96],arbitrari:[26,43,72,90,102,113],arc:[98,107],arcgi:123,architectur:84,archiv:[9,19,42,100,115,119,123,125],area:[11,20,90,98,108],aren:[88,98],arg:[79,89],argument:[0,1,2,3,23,25,36,40,58,64,65,73,75,79,82,86,88,89,90,92,95,106,109,110,111,123,126],argv:[112,114],aris:[44,51,62],arithmet:46,aron:[4,13,62,81,88],arora:74,arora_ro:74,around:[5,25,26,43,73,111,112,123,126],arrai:[0,3,5,11,18,20,22,23,25,26,34,36,38,43,58,64,65,67,69,74,79,81,82,86,87,88,89,90,92,94,95,96,102,103,104,106,108,110,111,112,113,114,123,126],arrang:123,arriv:[20,22,26,27,107],arrival_tol:26,articl:[13,81,88,115],artifici:12,asc:[98,123],ascii:[22,48,64,67,88,89,98,105,110,112,114,121,127],ascii_output_format:49,ask:76,ask_us:123,aspect:[37,38,48,98,123],assembl:42,assert:[69,112,114],assess:[37,107],assign:[25,64,67,89,98],assist:[20,26],associ:[0,1,2,5,20,53,73,79,82,83],assum:[3,18,20,25,36,37,41,42,43,48,52,57,71,85,86,87,94,95,98,99,107,110,113,121,123,125,129],astronom:107,aterrel:4,atmospher:4,attach:92,attempt:[7,8,18,28,45,89,95,98,100,102,123,124],attent:68,attirbut:20,attr:[79,89],attribut:[6,20,22,25,34,59,60,64,67,79,84,86,88,89,90,99,102,105,109,110,111,113,123],attributeerror:58,audienc:88,aug:13,aug_glob:87,augment:106,austin:4,author:[13,22,35,37,74,81,87,88,98],auto:[0,34,65],autom:[65,88,100],automat:[0,2,3,7,8,12,25,28,31,45,57,58,60,64,71,73,75,82,84,88,91,92,93,95,102,110,111,113,121],aux1:26,aux1d:126,aux:[5,11,18,20,22,23,26,65,81,83,86,88,89,90,92,93,102,103,106,108,110,111,112,114,126],aux_bc_low:86,aux_bc_upp:86,aux_l:87,aux_r:87,aux_time_dep:90,aux_typ:[111,112],auxbc:[86,90,92],auxiliari:[20,65,67,82,87,90,92,106,110,112,114,126],auxillari:89,auxl:[88,106],auxr:[88,106],auxtyp:112,avail:[0,4,12,20,21,34,35,37,45,48,57,59,60,64,67,69,81,82,85,87,88,90,93,94,95,96,98,105,107,110,112,113,115,121],averag:[4,5,11,13,35,37,38,48,87,92,103,106,108,121,123,126],avoid:[26,42,43,48,68,73,79,88,102,103,105,110,113,129],awai:[24,107],awar:[37,84],awr11:13,axes1:[2,60],axes:[0,1,2,22,23,25,34,48,58,60,98,109,123],axescmd:[0,60],axesnam:[1,60],axessubplot:25,axi:[0,25,38,48,58,69,79,98],axisindex:69,b0002:54,b4step1:[11,126],b4step2:[11,126],b4step3:11,b4step:22,b4stepn:126,b605216:69,back:[10,23,41,68,72,88,98],background:[2,22,88,109],backup:68,backward:[25,36,42,43,73,96,103,104,123],bad:100,bai:[107,125],balanc:[5,13,55,117,118],bale:13,balelevmitross02:[4,13,110,129],ball:123,band1:123,band:123,bar:[10,41],barrier:95,base:[5,10,18,19,20,24,25,29,35,36,43,46,48,55,65,67,68,74,79,81,87,88,89,90,92,94,95,96,99,100,101,107,110,111,112,113,114,123,126,129],base_subfault:25,bash:[31,42,48,53,84],bash_profil:[42,93],bashrc:[10,31,42,93],basi:48,basic:[5,9,22,25,28,48,64,71,79,81,87,88,90,100,129],bathymetri:[11,22,26,35,37,43,87,107,108,113,121,123],bc1:95,bc2amr:12,bc_arrai:90,bc_lower:[12,64,86,94,110,112,114],bc_upper:[12,64,86,94,110,112,114],bcn:[5,12,114,126],bcnamr:[5,12,110,112,126],beam:74,bear:[25,36],bearing_unit:36,becaus:[20,23,26,68,71,83,84,88,102,106,107,110],becom:[37,88,93,129],been:[0,1,4,10,12,14,16,18,19,20,22,23,24,26,27,28,29,32,35,37,41,45,46,48,55,58,60,62,65,67,68,71,73,87,88,89,92,93,94,95,98,99,101,102,103,105,110,111,113,121,123,126],befor:[1,3,4,5,22,24,25,26,28,30,31,41,43,45,48,53,60,64,67,68,73,84,88,90,92,98,99,102,103,105,106,107,110,111,113,121,123,124],before_step:90,beforefram:[1,23],begin:[36,43,79,83,87,94],begin_d:36,behav:34,behavior:[41,73,88,98,99],behaviour:64,behind:[39,70],being:[1,3,4,7,10,37,60,67,87,89,90,95,99,106,110,121,124,126],believ:37,belong:[58,79,84,88,89,92],below:[3,5,10,11,12,20,25,26,43,46,48,51,52,60,62,64,66,83,87,88,94,96,97,98,99,100,103,104,106,108,109,110,111,112,113,114,117,118,121,123,126],benchmark:37,benefit:[69,73,88],beowulf:42,berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,44,62],best:[3,12,20,31,50,53,57,58,72,73,86,98,99,100,106,113,116,121,126],beta:[36,74,90,114],beta_limit:74,better:[0,5,20,26,34,48,53,54,57,68,72,88,90,113,121],between:[3,4,5,10,12,21,22,24,25,36,43,48,52,53,55,67,79,90,92,93,95,99,106,107,110,111,112,113,114,115,121,123,125,126],bewar:123,beyond:[5,25,29,88],bgr:43,bibliographi:[4,120],bibtex:4,big:88,big_earthquak:[25,98],biggest:81,bilinear:[5,26,34,102,103,121],bin:84,binari:[22,44,49,62,85,105,110,112,123,127],bind:[57,65,84],bisect:[111,112],bit:[12,20,25,84,93],bitbucket:84,black:[3,34],blank:[3,43,88],blast:75,bleed:42,block:[6,25,43,52,54,55,64,88,92,95,100,126],blossei:4,blue:[3,8,34,43,58,69,123],boe:4,bold:69,bomb:[45,53],book:[4,9,13,22,39,69,70,88,89,96],bool:[0,1,2,3,36,43,67,82,87,89,90,92,95,113,123],border:[48,126],bore:37,botch:68,both:[3,12,24,25,28,29,37,48,54,65,73,82,83,84,90,91,98,99,106,110,112,114,117,121,126],bottom:[9,10,11,25,28,35,37,46,64,86,87,98,108,117,118,121],bound:[65,74,84,110,123],boundari:[18,22,43,53,65,79,87,88,90,94,103,110,112,114],boussinesq:37,box2kml:43,box:[25,43,98,123],branch:[16,24,31,39,40,69,70,71,72,76],branchnam:68,brett:69,brief:[4,69,98,113],briefli:[69,129],bring:[10,41,48,68],broad:123,broken:[17,18,24,49,100],brought:24,brown:[62,123],brows:[8,14,48,115,126],browser:[10,28,41,73,115],bsd:[4,44,62],buffer:[25,99,111,112,123],buffer_length:123,buffer_s:25,bug:[4,7,20,24,26,31,46,53,58,62,68,69,72,76],bugfix:68,build:[22,41,48,65,81,84,95],buildsystem:84,built:[46,55,63,73,81,84,86,89,99,117,118],bulk:[17,64,87,94,106,112,126],bull:[13,25],buoi:[22,98],burg:75,burger:[81,106,126],burgers_1d:87,burgers_1d_pi:87,busi:[44,62],butcher:90,button:[9,10,24,43,68,72],buxfix:68,c210:[13,81],c231:[13,81],c_center:79,c_centers_with_ghost:79,c_l:87,c_node:79,c_nodes_with_ghost:79,c_r:87,cach:[20,36,60,62],cache_dir:36,cada:74,cada_torrilhon_limit:74,cada_torrilhon_limiter_nonlinear:74,cal:[106,126,129],calcul:[3,5,23,25,35,36,48,58,79,87,90,103,123],calculate_geometri:25,calculate_geometry_triangl:25,calhellev08:13,calhoun:[4,13],calhounhelzellevequ:12,call:[1,5,18,20,23,25,34,40,42,48,54,58,60,64,65,67,68,69,73,74,78,82,83,86,88,89,90,92,94,95,98,102,106,110,112,113,114,123,126],call_before_step_each_stag:90,call_setplot:58,callabl:95,calucl:87,cambridg:13,can:[0,2,3,4,5,6,7,8,9,10,12,14,17,18,20,23,24,25,26,28,30,31,34,35,36,37,39,41,42,43,45,46,48,49,50,51,53,54,55,56,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,78,79,82,83,84,85,86,88,89,90,91,92,93,94,95,96,98,99,100,102,103,105,106,107,109,110,111,112,113,114,115,119,121,123,124,125,126,127,129],canopi:91,capa:89,capa_index:[110,112,114],capab:123,capabl:[6,9,20,26,27,37,55,65,102,123,125],capac:[11,87,108,110,111,112,114],capit:88,captur:[37,121],care:[26,34,35,84,98],carefulli:[18,20,46],cartesian:[26,35,43,65,113],cascad:4,cast:[39,70,123],cat:105,caten:105,caus:[20,37,41,44,60,62,73,93,98,109,111,123],caut:74,caution:[37,121],cautionari:[22,35,113],cautiou:37,caxi:48,cb_file:43,cb_filenam:43,cb_kwarg:123,cb_name:43,cb_xfrac:43,cb_yfrac:43,cbar:[87,123],cdot:[46,86],cell:[3,4,7,11,12,18,20,22,23,26,34,35,43,48,53,54,55,64,79,84,87,88,90,92,94,98,99,102,103,106,107,108,110,111,112,113,114,121,126,129],celledg:3,celledges_show:[3,20],cellgridintegr:102,cellgridintegrate2:102,cellsiz:[98,121],center:[4,23,25,26,29,34,43,52,64,79,86,87,94,98,99,111,112,126],centerlin:25,centers_with_ghost:79,central:110,centroid:[25,52],certain:[26,29,35,99,110],certainli:[84,96],certik:[4,62],cf2py:65,cfl:[5,79,83,90,94,102,110,112,113,114],cfl_desir:[90,110,112,114],cfl_max:[90,110,112,114],cfl_superbe:74,cfl_superbee_theta:74,cgreen:69,chanc:62,chang:[1,5,10,11,12,17,18,22,24,25,26,30,31,34,40,41,43,45,46,48,49,53,54,55,60,64,65,69,72,73,76,80,83,92,95,98,99,100,108,110,111,112,113,114,117,118,124,126],changelog:[15,16,20,101,102,103,104],chapter:[12,106,110,126],char_decomp:90,charact:[36,88],characterist:90,charg:10,cheaper:10,cheat:[39,70],check:[5,12,18,24,26,28,30,31,40,41,45,48,58,64,65,67,68,72,76,84,89,90,92,94,95,98,100,103,111,112,119,123,124,125,126],check_3rd_ord_cond:90,check_diff:[73,95],check_lmm_cond:90,check_valid:67,check_valu:[73,95],checkout:[24,39,41,68,69,70,71,72],checkpoint:[22,110,112,114],checkpt_interv:[110,112],checkpt_styl:[105,110,112],checkpt_tim:[110,112],chen:[25,125],chile2010:[98,102,121],chile2010_fgmax:26,chile:[43,98],chilie2010:98,chk00006:[112,114],chknnnnn:[105,110,112,114],choic:[12,22,57,69,90,110,112,113,114,126],choos:[0,22,43,68,86,88,98,110,113],chose:46,chosen:[3,29,94,98,99,107,111],circl:[3,36,58],circular:13,cise:13,citat:4,cite:[22,88],clamshel:[22,103],clarifi:[20,88],clash:48,classic4:114,classic:[4,5,9,11,12,14,17,18,20,21,22,24,28,29,31,34,35,42,50,53,54,55,62,64,67,75,79,80,81,86,97,98,100,105,106,108,111,113,118,124,126],claw1:95,claw:[5,8,9,10,11,12,17,18,20,24,25,26,28,30,31,34,35,36,38,40,41,42,43,45,48,50,52,53,59,64,67,73,75,81,83,84,91,93,97,98,99,100,102,103,106,108,112,113,114,116,117,118,119,121,123,124,126,127],claw_1dnoncon:129,claw_git_diff:40,claw_git_statu:40,claw_lib:49,claw_outdir:[45,58],claw_packag:90,claw_pkg:[110,111,112,113,114],claw_topo_download:123,clawcode2html:22,clawdata2pyclaw:65,clawdata:[98,102,105,110,111,112,113,114],clawdev2013:41,clawgraph:48,clawpac:41,clawpack:[1,4,5,6,8,12,14,22,24,25,26,27,28,31,32,34,35,36,37,40,41,43,44,48,50,51,52,53,56,57,58,59,60,62,63,64,66,67,71,72,73,74,75,78,79,80,81,82,84,85,86,87,88,89,92,93,94,96,98,100,101,102,103,104,105,106,110,111,112,115,116,119,121,122,123,124,126,127,129],clawplotax:[1,2,3,23,58,109],clawplotdata:[2,3,23,34,58,60,67,109],clawplotfigur:[0,1,58,109],clawplotitem:[0,1,6,20,22,23,59,109],clawrundata:[34,43,105,110,111,112,114],clawsolut:1,clawsolv:90,clawsolver1d:[64,67,79,90,94],clawsolver2d:[79,90],clawutil:[8,17,18,21,24,30,31,40,42,45,100,110,111,112,114,123,124],clean:[20,39,70,95],cleaner:24,clear:[1,2,5,48,60],clearfigur:1,clearfram:[1,60],cleargaug:34,clearli:[34,37],clf:2,clf_each_fram:2,click:[4,9,10,24,51,68,72,96,98,100],clint:13,clockwis:[26,36,52,123],clone:[9,14,16,21,39,42,61,68,70,71,78,84,91],close:[10,43,48,68,71,88,99,111],close_fig:43,closer:[52,112],cloud:[10,42],cluster:[5,13,29,42,99,111,112],clustering_cutoff:[99,111,112],cmap:[43,58,123],cmap_slip:25,cmax:43,cmax_dz:25,cmax_slip:25,cmin:43,cmin_slip:25,cname:41,coars:[3,26,98,99,110,121,126],coarsen:[99,111,123],coarser:[3,12,110,111,126],coarsest:[5,54,102,105,110],coast:[98,123],coastal:[37,98,107,113],coastlin:[26,113,125],code:[4,5,6,7,12,14,17,18,19,20,21,23,26,28,30,31,34,37,40,41,42,44,45,46,49,50,51,53,54,55,56,58,60,62,64,65,68,69,73,76,79,81,83,84,86,90,91,94,98,101,102,103,105,110,112,113,114,115,120,121,124],coeffici:[46,86,87,90,92,93,94,113],colella:[5,13],collabor:[68,115],collaps:68,collect:[9,24,25,26,52,57,64,68,90,96,98,115],collis:88,colon:68,color:[3,22,25,43,48,69,109,123],colorbar:[3,43,123],colorbar_labels:25,colorbar_shrink:25,colorbar_ticks:25,colormap:[3,22,25,35,48,59,123],column:[25,26,37,87,123],column_list:25,column_map:25,com:[9,10,21,24,41,42,61,68,69,71,72,73,78,84,86,91],combin:[18,41,43,68,98,125],combinatori:73,come:[3,24,39,51,58,60,68,70,72,75,84,90,121,126],comfort:86,comm_world:95,command:[0,1,2,3,8,10,22,30,39,40,42,45,50,58,64,65,67,68,69,70,72,73,84,85,88,90,94,95,96,98,100,109,110,111,123,124],commenc:105,comment:[8,38,76,105],commit:[24,25,39,40,41,69,70,72,73,88,100],common:[3,21,24,28,30,31,39,45,55,57,64,69,70,87,90,92,93,124,126],commonli:[3,48,58,60],commun:[39,62,70,76,88,92,95],compact:[71,121],compar:[20,34,37,42,58,71,73,83,99,100,107,111,113,119,125,129],comparison:88,compat:[25,36,42,43,57,73,84,93,96,103,104,123],compens:123,compil:[10,22,28,30,35,53,55,60,65,81,86,91,95,102,124],compile_librari:95,complet:[18,20,36,45,60,64,65,71,73,84,88,95,96,100],complex:[9,79,88],complex_zero:88,compliant:31,complic:[12,58,65,68,109],compon:[3,12,18,20,22,24,26,34,42,48,54,86,89,91,92,99,110,111,112,121,126],compos:[25,64],comprehens:[68,73],compress:[25,98,123],compris:[20,81,123],comput:[3,4,5,10,12,13,22,23,25,26,34,36,42,43,45,49,57,58,60,65,67,69,79,81,83,84,90,94,96,98,99,102,103,106,110,112,113,114,121,126,129],computation:[65,90],compute_f:[67,83],compute_gauge_valu:83,compute_p:[64,67],concept:[39,70],concern:[20,35],conclus:4,condens:22,condit:[18,22,44,55,62,63,64,65,67,88,90,97,102,103,107,110,112,113,114],config:[39,69,70,72,84],configur:[58,64,68,76,81,84,123],confin:88,confirm:37,conflict:[5,48,68,93],conform:[20,73,89],confus:[3,68,106],conjunct:99,connect:[26,43,72],consequenti:[44,62],conserv:[4,5,13,83,90,92,126,129],consid:[5,37,42,65,71,72,76,123],consider:[37,64],consist:[5,26,36,43,84,88,98,106,113,121,126],consol:[10,83],constant:[25,26,37,43,46,84,87,98,113,123,126],constrain:[29,99],constraint:[111,129],construc:43,construct:[20,25,64,79,95,121],construct_function_handl:95,constructor:[88,92],consult:93,contact:[75,81,91],contain:[1,3,9,10,14,18,21,25,26,28,30,33,34,35,36,38,40,41,43,45,48,49,54,55,58,60,64,65,67,69,73,74,75,79,81,82,84,86,87,89,90,92,94,95,96,98,100,102,103,105,106,109,110,113,115,119,121,123,126],containing_rect:25,containt:105,contamin:110,content:[41,65,69,126,127],context:[23,126],contigu:[54,92],contingu:20,continu:[10,20,24,25,38,42,62,106,110,129],contour:[3,25,34,48,96,109,123],contour_color:3,contour_kwarg:[3,123],contour_level:[3,123],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:22,contract:[44,62],contribut:[4,62,65,68,76,81,86,90],contributor:[4,44,81],control:[5,6,21,34,48,60,63,68,74,79,81,82,83,84,86,88,99,113],conveni:[1,23,28,34,39,60,67,70,75,81,85,94,126,129],convens:121,convent:[3,20,25,35,76,81,87],converg:57,convers:[17,65,99,125],convert43to46:17,convert46to50:18,convert:[3,14,20,22,25,32,36,43,52,65,69,78,86,95,98,110,111,121,125],convert_fort_double_to_float:95,convert_readm:8,convert_to_standard_unit:25,converttopotyp:121,convex:26,coodin:25,cool:[68,71],coord:36,coordiat:98,coordin:[21,22,25,26,36,54,64,79,83,84,94,98,99,113,123],coordinate_specif:[25,98],coordinate_system:[11,108,113],coorind:123,copi:[5,11,12,24,28,34,41,48,64,67,68,69,78,86,92,97,98,99,103,105,108,115,117,118,121,126],copul:68,copyright:[44,62],core:[4,55,69,73],corioli:[37,113,117,118],coriolis_forc:[37,113],corner:[3,25,26,54,79,98,110,112,114,121,123],corr:69,corran:69,correct:[18,24,31,46,48,58,64,79,84,89,95,102,103,110,112,114],correctli:[26,65,68,73,80,113],correspond:[3,5,21,23,25,36,37,43,48,58,64,73,74,79,83,86,89,92,98,99,100,106,107,110,111,112,114,121,125,126],cos:[36,38,64,86],cosin:64,cost:[10,88,90],could:[10,23,26,28,34,53,58,60,64,79,83,88,92,93,96,98,105,111,112,113,114,121,123,126],council:4,count:64,count_from_zero:64,counter:[95,123],counterclockwis:52,coupl:129,courant:[4,5,99,110,111,112,114],cours:[10,26,34,35,39,52,69,70,84,85,94,113,121],cover:[5,23,25,26,29,43,73,98,99,103,112,113,121],coverag:[76,100],covert:8,cparam:[64,92],cpu:10,crash:[39,70,110],creat:[0,1,2,3,5,6,14,17,22,24,25,28,30,34,35,40,41,42,43,45,54,58,60,65,66,69,73,75,79,81,82,85,88,89,92,93,94,95,98,100,102,105,109,110,111,112,115,116,123,125,126,127],create_dtopo_xi:25,create_dtopographi:[25,98],create_topo_func:123,creation:[58,81,102],cred:69,creset:69,criteria:[5,6,20,22,29,92],criterion:[26,99,112],critic:[83,106],crop:123,cross:24,crucial:121,csh:84,csv:25,csvfault:25,ctrl:58,cube:48,current:[3,10,18,20,23,24,25,29,34,35,37,43,48,49,54,58,60,68,69,71,72,73,77,79,83,84,90,92,95,98,99,105,107,109,110,112,113,114,121,123,125],current_data:[0,3,22,34,58],curv:[3,22,34],custom:[0,10,12,18,20,48,55,57,65,80,86],custom_bc:86,cut:111,cutoff:[5,112],cxx:84,cyber:13,cygwin:[42,67],cython:84,d304a73:69,dai:[5,10],dalcin:[62,88],dam:75,damag:[5,44,62],damian:42,damiansra:86,danger:24,darryl:13,dart:[22,98],dash:[3,84],daspect:48,dat:25,data:[0,1,3,14,22,23,25,26,28,30,34,35,36,41,43,44,45,48,57,58,59,60,62,64,67,69,79,83,85,87,89,90,92,95,97,98,99,102,104,106,107,112,114,122,127],data_break:123,data_typ:95,databas:[10,25,68,95,98,121],dataset:[123,125],date:[24,30,36,41,45,58,69,124],date_tim:36,datetim:36,datum:[36,37,87,107,113,125],dave:25,david:[4,13,62,81,88,90],dawson:13,daylight:43,dcp:43,deal:[25,37,57,83,84,92,123],dealloc:88,dealt:26,debian:[69,96],debug:[22,31,45,54,83,92,110,112],debugg:58,decid:[64,90],decim:[36,43],declar:[18,20,92,126],decompos:[54,106,129],decomposit:110,decor:95,deduc:121,deem:73,deep:113,deeper:113,deepli:94,def:[0,1,3,34,58,64,79,83,86,88,90,112,114],default_tfluct:90,defenc:4,defin:[0,1,3,5,20,22,23,25,26,29,43,45,48,52,58,60,64,67,79,85,86,88,89,90,92,94,95,99,102,106,112,114,123,124,126,129],definit:[25,48,64,88,99],deform:[13,25,52,125],deg2dm:43,degre:[25,36,43,52,98],delet:[18,24,34,76,98,105],deliber:72,delimit:[25,88],delin:113,delta:[74,79,86,88,90,106,123,126,129],delta_h:87,delta_hu:87,delta_i:123,delta_limit:123,delta_x:123,dem:[43,123],demo:[51,84],demonstr:[9,51,75,84],denot:[5,20,34,106,123],densiti:[67,83,87,92,94,111,112,126],depart:4,depdend:74,depend:[3,10,12,24,25,26,28,29,30,31,35,37,45,46,48,58,63,76,87,89,90,95,98,99,113,123,124,126,129],deprec:[25,113,123],depth:[4,12,13,20,22,25,26,35,37,39,46,52,59,70,98,107,113,121],deriv:[44,52,62,67,80,81,92,100],describ:[3,4,5,6,10,12,17,21,24,25,26,27,28,29,35,36,37,41,42,43,45,48,52,54,55,57,58,59,73,79,89,95,98,99,100,106,107,109,110,111,113,121,122,123,125,126,129],descript:[3,4,20,29,39,43,48,57,68,88,95,98,99,106,113,121,129],design:[4,23,62,64,73,94,98,107,125],desir:[0,1,2,3,5,6,12,14,20,22,25,26,34,42,43,56,57,58,60,64,65,67,83,89,90,97,110,112,114,121,123,124],desktop:84,detach:[24,68],detail:[4,5,12,20,25,26,28,29,31,35,37,39,44,48,58,62,67,70,72,73,74,75,79,82,83,84,85,86,87,88,90,98,100,103,106,109,110,113,115,124,126,129],detect:[45,71,82,91,95],deterimin:123,determin:[3,5,25,26,29,34,37,40,41,43,58,74,79,87,92,98,99,103,105,107,109,110,111,113,119,123,126],determine_topo_typ:123,dev:[24,73,84],develop:[4,5,6,10,16,20,21,35,37,39,41,48,57,61,62,65,70,71,77,81,86,88,90,91,100,107,112,120,121],dict:[25,67,82,87,89,92,123],dictionari:[0,1,2,3,25,58,64,67,82,87,89,92,94,123],dicuss:25,did:68,didn:75,died:102,diff:[16,39,40,68,69,70,71,102,103,104],differ:[1,3,5,6,9,12,20,22,24,25,26,28,34,35,37,40,43,46,48,52,53,60,64,65,67,75,79,87,88,90,95,96,98,99,100,106,107,110,111,112,113,121,123,125,126,129],differenti:[13,25],difficult:34,difficulti:[91,93],diffus:86,digit:[43,58,123],dim:[86,87,90],dimens:[5,6,12,18,20,34,36,43,48,64,65,67,84,86,87,89,92,94,99,106,110,111,112,114,123,126],dimension:[3,6,7,13,20,25,26,28,34,37,48,77,79,86,98,112,113,114,123,126],dimensional_split:[79,110,112,114],dip:[25,52,98],dir:[84,127],direct:[5,7,12,20,25,26,28,36,39,43,44,45,48,52,53,58,62,67,86,94,98,110,111,113,123],directli:[17,21,22,24,37,48,58,60,64,65,68,69,71,72,74,92,95,96,123,127],directori:[1,3,5,8,9,10,11,12,14,17,18,20,21,22,24,26,28,30,34,35,36,39,40,41,42,43,48,49,53,56,60,67,68,69,72,73,75,79,83,86,88,94,97,98,99,100,102,105,106,108,109,110,111,115,117,118,119,121,124,126,127],disabl:[38,68,91],disable_petsc:95,disallow:88,discard:[68,90],disclaim:[44,62],discontinu:[4,77,90,129],discov:[46,72],discoveri:73,discret:90,discrib:4,discuss:[25,37,69,73,88,94,96,98,99,106,113,129],disk:[10,64,73],disloc:98,dispers:[37,51],displac:[22,25,37,52,98,113,125],displai:[1,10,28,30,43,58,83,88,100],dist_latlong2met:36,dist_meters2latlong:36,distanc:[25,36,52,98,121,123],distribut:[4,10,25,44,52,55,62,90,96],distutil:65,dive:96,divid:[99,110],divis:4,dlgeorg:4,dms2decim:36,doc:[21,24,25,41,74,78,95,116],docstr:[65,73,75,76,100],doctest:79,document:[0,1,2,3,15,19,20,21,22,24,26,33,35,37,39,44,52,57,58,59,60,62,74,75,76,78,79,82,84,85,90,92,95,98,103,109,112,127,128],doe:[4,8,12,18,23,24,26,30,37,42,48,55,58,73,79,88,89,92,95,103,106,121,123,124,126],doesn:[68,73,92,98],doing:[5,8,17,24,26,34,37,39,40,41,42,58,60,68,69,70,71,72,73,79,88,98,105],domain:[5,12,13,29,37,41,43,54,63,64,65,67,84,86,89,92,98,99,111,112,114,121],don:[10,23,24,58,68,72,73,83,84,88,91,112],done:[1,5,6,7,8,10,12,17,18,22,24,28,34,35,42,43,45,48,52,57,58,60,64,68,72,74,75,95,98,99,103,105,106,109,111,113,123,125],donna:4,donnabois:4,donor:[110,112,114],dot:[30,34,43,45,124],doubl:[48,65,79,95,106,111],down:[10,25,68,72,83,98,121,123],download:[9,10,21,22,24,25,42,49,51,69,75,84,91,96,98,123],downward:52,dpc:43,dpi:43,dpng:48,dprint:[111,112],dq_src:[86,90],dqdt:90,draw:3,drawcontourlin:48,drawn:[25,109],driver:18,drop:[10,110],dropdown:68,dry:[12,13,35,87],dry_toler:87,dst:43,dt_check:26,dt_initi:[102,110,112,113,114],dt_max:[110,112,114],dt_max_dtopo:[102,113],dt_variabl:[110,112,114],dtdx1d:104,dtdx:74,dtdy1d:104,dtfe:90,dtopo2kml:43,dtopo:[22,25,37,43,52,102,104,113,121,125],dtopo_data:[102,113],dtopo_file_nam:43,dtopo_fnam:98,dtopo_modul:102,dtopo_typ:[25,43,98],dtopo_usgs100227:98,dtopofil:[43,52,98,113],dtopographi:25,dtopotool:[52,98,104,122],dtopotools_exampl:25,dtopotyp:[113,121],due:[13,25,36,73],dummi:[65,90,126],dump:[54,110],dumpgaug:34,duplic:[58,105],durat:[25,107],dure:[20,26,34,43,55,68,69,102,107,112,113,114,121],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,39,97,108,117,118],dxc:65,dyc:65,dynam:[5,18,25,37,51,55,98],dynamic_slip:25,dz_at_t:25,dz_interv:25,dz_max:25,e10:98,e_l:87,e_r:87,each:[1,2,3,5,6,12,16,20,22,24,25,26,27,29,34,36,43,48,51,52,53,54,56,57,58,60,64,65,68,74,79,82,83,84,86,87,88,89,90,92,94,98,99,100,102,103,106,109,110,111,112,113,114,121,123,125,129],each_fram:34,each_gaug:34,eadc391:68,earli:[5,18],earlier:[18,20,26,64,86,98,102,123],earth:[43,52,98,113],earth_radiu:113,earthquak:[22,25,35,37,113,121],eas:43,easi:[4,5,8,24,39,48,65,70,83,84,85,88,115,126],easier:[57,68,126],easiest:[17,24,29,31,55,58,60,72,96,98,99,126],easili:[3,10,24,26,48,58,65,73,79,88,91,95,96,98,115],east:[10,98,121],eastern:98,easy_instal:84,ec2:[22,42],edebug:[111,112],edg:[3,5,11,12,23,25,26,42,43,52,79,87,88,98,106,108,111,112,114,126],edit:[24,39,60,69,70,72,76],editor:[54,68,69],edu:[25,49,96,98],effect:[24,46,48,73,79,83,88,96,99,107,113,123],effici:[22,37,62,81,83,88,92,99],effort:88,efix:87,eigenvector:[106,129],either:[9,12,18,25,29,35,42,48,52,58,60,64,66,71,73,79,83,88,90,95,99,106,123,126,129],elabor:88,elast:[10,52,98],element:[0,3,20,43,87,90,92,110,111,112,113],elev:[20,22,26,35,37,43,97,113,121,123,125],elif:[112,114],elimin:[20,65],ell:106,els:[23,24,68,72,92,114],elsewher:98,email:[69,72],embarass:68,emdash:39,emmett:[13,62,81],empir:[37,46],empti:[34,89,92,95,98,110,123],empyclaw:86,enabl:[73,79,83,88,91,95],encapsul:37,encount:[30,58,91,93],encourag:[48,88],end:[10,25,26,36,43,67,68,71,83,87,88,94,96,98,99,112,114],end_dat:36,enddo:126,endors:[44,62],energi:[83,87],enforc:[69,113],engin:13,english:88,enh:68,enhanc:[46,62,88],enough:121,ensur:[28,48,68,105],enter:[48,68,84,91],enthought:[91,93,96],entir:[5,37,43,53,64,83,88,89,103,105,123],entireti:67,entri:[64,95],entropi:87,enumer:[79,90],environ:[22,24,28,30,40,48,50,53,55,85,88,93,95,98,123,124],envis:12,epd:93,eprint:[111,112],epsilon:74,eqinthenew:98,eqn:129,eqnarrai:94,equal:[12,25,26,69,84,86,98,99,105,110,112,114,121,123],equat:[4,12,13,28,35,37,46,51,58,63,64,65,67,81,83,86,88,90,91,92,98,103,106,110,112,113,114,121,126,129],equiv:129,equival:[5,43],err:112,errno:39,error:[12,18,28,29,30,42,48,53,58,67,76,81,83,88,95,99,111,112,124],escap:[99,112],escienc:10,especi:[65,73,86],essenti:[48,90,98,113],est:112,establish:4,estim:[46,99,111,113],estimat:112,eta:[25,26],eta_tild:26,etc:[0,2,12,17,18,23,24,26,37,41,43,54,57,65,88,106,109,110,113,126],etopo10min120w60w60s0:98,etopo1:[98,107,123,125],etopo:[98,125],etopo_sample_2min:123,euler:[81,90,104,106,126],euler_1d_pi:87,euler_2d:[28,86],euler_exact_1d:87,euler_hll_1d:87,euler_hllc_1d:87,euler_roe_1d:87,evalu:[23,25,46,64,79,90,98,123,126],even:[37,44,52,62,68,72,88,95,98,99,111,112,121,126],event:[37,43,44,62,98,107,110],event_tim:43,eventu:[10,35],ever:[88,109,113],everi:[5,26,29,34,42,64,67,73,75,83,92,98,99,100,106,110,112,114,123,126],everyth:[24,42,53,68,84,94,95,100],everywher:[36,46,92],evolv:[20,64,67,90],evolve_to_tim:[64,90],exact:87,exactli:[40,73,92,110],exam:58,examin:[12,28,34,98],exampl:[0,1,2,3,4,5,10,12,18,20,23,24,25,26,29,30,31,32,33,36,41,42,43,45,46,49,52,53,54,57,58,60,62,63,64,65,66,67,68,69,71,72,73,78,79,80,81,82,86,87,88,89,90,91,94,95,96,98,99,100,102,104,105,106,107,109,110,111,112,113,114,115,119,120,121,123,124,125,126],exce:[26,99,111],exceed:99,excel:[39,70,72],except:[20,23,25,69,87,88,95,110,113,121],excerpt:84,exclud:71,exe:[28,67],exec:[0,1,3,58],execut:[0,1,3,12,17,23,28,34,42,43,48,58,60,67,73,75,84,100,124],exemplari:[44,62],exercis:[35,73],exist:[1,19,25,28,48,58,73,79,86,89,92,95,96,103,123],exit:[58,84,91],exp:[64,83,94],expand:[39,43,70,88],expect:[73,87,88,94,95,112,113,114],expens:[90,99,103],experi:[37,90],experiment:62,expert:37,explain:[10,29,37,39,42,68,70,72,88,99,110],explan:[68,73,74],explicit:[95,111],explicitli:[48,110,129],explor:[4,43,58,60,88],expon:46,expos:10,express:[4,25,44,62,91],extend:[12,20,39,43,48,70,79,88,98,113,121,123,129],extens:[4,13,20,25,37,48,65,73,81,82,95,98,110,119,123,129],extent:[37,42,43,46,48,64,79,92,98,102,113,123],extra:3,extra_fil:41,extract:[88,123],extrap:[12,86,94,110,112],extrapol:[12,20,26,29,86,94,110,111,112,114],extrem:93,extropl:12,f2py:[42,65,86,95],f2py_flag:95,f2s:43,f49620:4,f77:31,f90:[11,18,26,42,53,86,97,99,102,108,117,118,121,126],f95:95,f_file_nam:67,f_path:67,facecolor:[2,58,109],facilit:115,fact:92,factor:[5,98,111,113,123],faculti:[25,96,98],fade:58,fail:[11,24,84,95,97,100,108,117,118],failur:73,fairli:[12,37,88,98],faith:[68,72],fall:107,fals:[0,1,2,3,25,29,37,38,40,43,67,68,79,87,89,90,92,95,98,99,105,110,111,112,113,114,123],famili:[73,79,90,112,114],familiar:42,fanci:[68,69],faq:[10,22,96],far:[12,14,57],fast:71,faster:123,fastest:91,fault:[13,22,25,35,98,121,125],fault_plan:25,favor:123,favorit:57,fbound:31,fc02:4,fdefault:95,feasibl:88,featur:[20,24,26,27,48,58,65,69,71,72,73,76,77,88,99,113,121],fedora:69,feet:[107,125],fernando:[39,70],fetch:[10,24,36,68,71,72],fetch_noaa_tide_data:36,fetch_topo_url:123,few:[5,9,10,20,37,41,42,48,65,68,90,94,99,100,107,119,126],fewer:[98,99,123],ff0000:[3,43],ff9999:109,ffff00:58,fflag:[22,30,45,49,53,65,95],ffpe:31,fg02:4,fg03:4,fg06:4,fg1:26,fg2:26,fg_num_val:26,fgmax2kml:43,fgmax:[20,22,27,43,53,103,113],fgmax_data:[26,113],fgmax_fil:[26,113],fgmax_grid:43,fgmax_interpol:26,fgmax_interpolate0:26,fgmax_modul:26,fgmax_tool:26,fgmax_tools_modul:26,fgmax_valu:26,fgmaxgrid:26,fgout2kml:43,fgout:43,fgout_grid:43,field:[43,86,89,92],fig:43,fig_kwarg:[25,123],fignam:[1,60],figno:[1,2,34,58,60,109],figsiz:[2,58,98,109],figur:[0,1,2,4,10,14,22,25,28,34,43,48,60,89,98,106,109,123],file1info:113,file2info:113,file:[1,5,7,8,11,14,17,18,20,21,22,23,24,25,28,30,31,34,35,37,39,40,42,43,45,49,52,54,55,57,59,62,65,67,68,69,72,73,75,78,79,82,83,84,85,86,88,89,92,93,95,97,98,102,103,107,108,109,110,111,112,114,116,117,118,122,123,124,125,127],file_format:89,file_prefix:[82,89],file_prefix_p:67,filenam:123,fill:[0,3,4,5,12,79,81,92,110,123,126],fill_between:3,fill_topo:123,fill_valu:123,fill_var2:3,fill_wher:3,filter:123,filter_region:123,find:[1,3,4,5,22,23,25,36,45,49,51,52,55,57,62,68,72,73,75,86,92,93,95,96,124],fine:[3,26,55,86,99,110,113,121,126],finer:[3,22,98,99,102,103,110,111],finest:[3,34,123],finish:[10,58,64,68,72,88],finit:[4,13,14,26,32,43,48,52,90,98,121,126],finite_fault:98,finlin:95,first:[1,3,10,17,18,20,24,25,26,28,29,41,42,43,45,48,58,60,64,65,68,71,73,78,79,84,86,88,90,91,92,94,95,98,99,102,105,106,110,112,113,121,123,129],fit:[44,62,88],five:26,fix:[5,17,18,20,22,24,43,62,68,69,76,87,102,103,104,110,112,114,121,123],fixedgrid:113,fixup:68,flag2refin:[20,29,111,112],flag2refine_tol:[99,111,112],flag:[10,20,22,30,31,49,53,65,68,72,93,95,112,113],flag_richardson:[99,111,112],flag_richardson_tol:[99,111,112],flat:[52,98,121],flavor:[9,19],flexibl:[20,25,43,65,106],floor:[25,35,52],flow:[4,12,13,21,26,35,37,81,88,98,106,110,113,120,121,126],fluctuat:[87,90,129],fluid:[37,51,107],flux2:65,flux:[13,26,79,87,88,90,106,110,129],fly:[22,68],fmt:3,fname:[43,98,112,113,114],focu:[4,35],fold:12,folder:[11,39,97,108,117,118],follow:[0,2,3,4,5,10,12,16,17,21,24,25,26,28,29,34,35,42,44,48,49,52,54,58,59,62,64,65,66,68,69,72,73,75,77,78,79,82,84,86,87,88,89,91,92,94,95,98,99,105,106,109,110,111,113,121,124,126,128],fontsiz:58,foo:68,foot:52,fopenmp:[53,95],forbidden:29,forc:[20,29,30,45,71,95,98,123,124],force_dri:43,forgot:68,fork:[41,68,71,76],form:[0,2,3,4,5,14,17,18,20,25,26,28,29,32,34,36,44,46,52,54,62,65,71,83,87,88,90,94,95,98,99,103,105,106,110,111,112,113,117,121,123,126,129],formal:88,format:[1,3,10,22,25,28,35,37,38,43,48,49,57,58,64,67,69,72,82,85,86,89,95,98,110,113,121,123,127],format_str:34,former:[58,126],formul:[4,37,46,106,110],formula:46,fort:[1,7,22,23,26,34,48,49,89,103,105,110,111,112,114,127],fortfil:28,fortran90:88,fortran:[5,8,10,18,21,23,24,25,26,28,35,42,45,46,51,53,54,55,57,60,62,64,65,67,73,76,79,81,84,86,87,90,91,92,95,112,114,120,124],fortran_modul:92,fortran_src_wrapp:65,forward:[71,90,126],found:[1,4,5,8,9,10,11,12,14,20,23,26,28,30,34,36,37,40,43,45,51,56,58,59,60,61,64,74,84,89,93,95,97,98,100,105,107,108,109,117,118,123,124],foundat:[39,70],founder:4,four:[73,79,99],fourth:26,fpe0:31,frac:[46,87,94,129],fraction:[5,10,25,99,110,126,129],fragil:92,fragment:3,frame0000:48,frame:[1,2,3,23,34,48,49,54,57,58,60,64,67,82,84,89,91,95,98,105,109,112,114,115],framecount:95,framenam:48,frameno:[1,3,23],framesoln_dict:1,frametool:[1,23,60],framework:[4,62,65],free:[10,42,52,62,66,86,91,93,96],frequenc:90,frequent:[18,23,93],friction:[22,35,37,113,117,118],friction_depth:[46,113],friction_forc:113,friedemann:74,from:[0,1,3,4,5,6,9,12,13,15,16,21,22,23,26,27,28,29,32,34,37,39,41,42,44,45,48,50,52,54,58,61,62,63,64,67,69,70,71,73,76,79,80,81,83,84,86,87,88,89,90,91,92,93,94,95,96,99,100,102,103,105,106,107,110,111,112,113,114,119,121,125,126,127],frommm:74,front:[48,89,95],fset:92,fstr:48,ftrapuv:31,full:[5,42,43,58,67,83,88,90,94,96,120,121,126],fulli:[5,37],fun:95,func:95,function_nam:95,fund:[22,81],funni:72,funrol:95,further:[5,12,22,27,37,43,45,48,73,81,98,99],furthermor:94,futur:[10,20,22,28,32,37,43,46,64,81,90,98,121],fvmbook:[9,14],fvmhp:[4,9,12,13,22,55,106,110,126,129],fwave:[79,87,90,106],g77:93,galerkin:[77,90],galleri:[9,22,28,56,75,81,96,100,115,119,126],gallery_al:[33,81],gallery_classic_amrclaw:[28,33],gallery_fvmbook:[13,14,32,33],gallery_geoclaw:[33,35],gamma1:87,gamma:[46,87],gap:123,gas:[5,87],gaug:[22,43,79,80,92,102,105,107,112],gauge1:105,gauge2:105,gauge_coord:79,gauge_data:92,gauge_dir_nam:79,gauge_fil:79,gauge_file_nam:79,gaugedata:[34,112],gaugeno:[34,98,112],gauges2kml:43,gaugetool:34,gauss_pt:25,gaussian:[64,94,114],gca:38,gcc:[84,91],gear:10,gen_vari:[73,95],gener:[0,1,2,3,4,5,6,8,10,12,13,17,18,22,24,26,30,31,37,42,45,46,52,53,54,57,58,59,60,62,65,68,69,72,74,76,78,79,81,84,85,86,88,89,90,91,94,95,96,98,99,102,105,107,110,111,115,121,126,127],generate_2d_coordin:123,generate_2d_topo:123,geo:[22,46],geo_data:113,geoclaw:[4,9,13,21,24,25,26,27,29,31,34,42,43,46,49,52,55,91,98,100,105,107,110,111,120,121,122,123,125,126],geoda:[98,107,125],geodaa:98,geodas_npacif:98,geodata:98,geohazard:37,geol:[25,98],geolib:[26,49,102],geom:[79,92],geometr:126,geometri:[25,81,86,89,92],geophys:[4,12,13,21,35,37,55,110,120],geoplot:[38,59],georg:[4,13,25],geoscientist:37,get:[0,10,24,30,39,42,45,64,65,68,69,70,73,76,79,83,84,88,91,93,94,95,96,105,120,123,124],get_aux_glob:92,get_auxbc_from_aux:92,get_cmap:58,get_count:95,get_dim_attribut:79,get_dt:90,get_dt_new:90,get_q_glob:92,get_qbc_from_q:92,get_remote_fil:123,get_topo:123,getax:1,getcwd:58,getfigur:1,getfram:[1,3,60],getgaug:34,gethandl:[0,2,3],getitem:1,getlogg:83,gfortran:[10,22,42,53,63,93,124],gfortranbinari:91,ghamdi:4,ghost:[12,22,53,54,79,90,92,110,112,114,126,129],gica2937:25,gist:42,git:[9,10,21,22,41,68,71,72,76,78,81,91,100],git_link:39,git_statu:40,gitconfig:69,githhub:68,github:[9,20,21,39,41,42,61,69,70,71,73,78,86,91,100],gitk:[39,68],give:[3,5,10,12,24,25,28,34,39,43,53,54,58,60,68,69,70,72,84,85,88,90,98,100,103,110,113,121,123,125],given:[25,36,43,46,48,52,74,84,89,90,92,95,98,99,107,113,121,123,126],glob:75,global:[5,69,72,79,88,92,95,98,107,125,126],gloss:125,glu:12,gmt:36,gnu:91,goal:5,godaddi:41,godunov:[4,79,90,110,112,114,126],goe:[25,35,88],going:[12,20,64,67,68,72,75,87,88,96,98,101,115,121,129],gone:83,good:[12,37,39,44,53,62,68,69,70,71,94,98,100],googl:[43,73,75,84,93,98],googlecod:84,googleearth:43,got:[68,71],gov:[25,36,84,98],govern:113,gprint:[111,112],gpu:77,gradi:[4,62],gradient:129,gradylemoin:4,grant:[4,62],graph:[68,69,71],graphic:[21,24,48,57,68],grav:87,gravit:[46,87,113,126],graviti:113,great:[36,75,98],greater:[26,43,46,91,96,99,105,110,111],greatest:99,greatli:[62,107],green:[43,52,58,98,100,123],grid1d:79,grid1info:113,grid2info:113,grid:[4,6,13,17,18,20,21,22,23,24,29,34,35,37,43,48,54,55,57,62,64,73,81,83,84,86,87,88,89,90,92,94,98,99,102,103,106,107,110,111,112,114,121,123,125,126,129],grid_files_scanf:127,grid_numb:54,grid_registr:123,griddata:123,grideges_show:20,gridlin:48,gridlines_show:20,ground:26,group:[3,10,25,37,73,75,84,93,98],guarante:[35,37,90,98],gui:[20,127],guid:[10,16,21,22,35,39,61,68,70,96,116],guidelin:76,gzip:68,h_l:87,h_r:87,hack:[68,72,92],had:68,hadjimichael:62,half:[0,12,13,52,90,98,110,126],halfspac:52,hand:[3,17,18,46,64,73,98],handi:45,handl:[0,2,3,5,26,31,35,42,43,53,55,57,68,79,86,89,90,92,93,94,95,98,102,103,113,123],hang:52,happen:[45,64,89,92,124],happi:68,harbor:26,hard:[38,53,58,68,123],hardcopi:[1,58,60,109],hardcor:72,harder:110,hardest:[49,96],hardwir:53,harmon:68,has:[0,4,5,10,12,15,18,19,20,21,22,23,24,26,27,28,29,39,40,43,45,46,48,52,54,55,58,62,65,67,68,70,71,73,79,83,86,87,88,89,92,93,95,96,97,98,99,101,102,103,106,107,110,111,113,121,123,126,127,129],hash:[40,41,100],have:[0,1,2,3,4,5,7,8,10,12,14,16,18,20,23,24,25,26,28,31,32,34,35,37,39,41,42,45,46,48,49,51,53,54,57,58,60,62,64,65,68,69,70,71,72,73,74,75,79,81,83,84,85,86,87,88,89,90,91,92,93,94,95,98,99,100,102,103,105,106,107,110,111,113,115,119,121,123,126],haven:94,haversin:36,hawaii:98,hazard:[22,26,46,107],head:[24,25,68,69,71,98],header:[8,25,54,89,98,121,123],header_styl:123,heat:87,heavili:65,height:[87,98,123],held:37,hello:84,help:[6,21,22,30,38,39,42,45,60,68,69,70,72,73,81,84,88,91,95,115],helzel:13,hemispher:98,henc:[41,90,99],here:[10,12,26,37,39,43,51,55,58,60,61,64,67,68,69,70,72,74,81,84,86,87,88,93,94,98,123,129],heterogen:126,hex:[43,58],hhuuggoo:69,hidden:[3,45,58],hide:48,hierarchi:79,high:[4,13,37,55,65,81,90,106,107,113,120,125,126],higher:[3,5,79,90,91,107],highlight:[8,10],hilo:[107,125],hint:[12,22,35,42,60,113,124],histor:[37,52,125],histori:[24,39,60,70,96,105],hit:[12,48,60,83,110],hll:87,hllc:87,hmin:26,hoc:65,hold:[3,60,94,98,99],holder:[44,62],home:[10,25,42,69,72],homepag:[19,69],homogen:[52,90,126,129],honshu:98,honshu_ucsb3:98,hood:57,hope:100,horizont:[98,123],host:[68,73],hour:[10,43,98],how:[1,5,6,9,12,20,22,25,26,28,29,31,34,35,39,43,51,52,53,54,67,70,71,72,73,75,82,86,88,90,94,95,98,99,103,105,106,109,110,113,115,123,127],howev:[5,10,12,20,24,28,31,35,37,44,52,53,54,62,65,68,72,73,99,107,109,113],hpc:42,html:[1,10,13,21,22,25,28,30,34,41,51,57,58,69,73,75,78,84,85,96,98,100],html_plot:85,htmlplot:75,http:[4,9,10,13,24,25,36,41,42,44,49,61,62,65,66,68,69,72,73,81,84,86,96,98,123],hugo:69,hydrodynam:13,hyperbe:74,hyperbee_limit:74,hyperbol:[4,5,13,14,32,55,65,81,86,87,94,106,110,113,126,129],hyperol:110,hyphen:88,ibm:91,idea:[25,48,55,64,88,94,98,100,103,123,129],ideal:[87,98,107],ident:[79,84,100,123],identifi:[28,65,88,99],idl:10,ieee:13,ifort:31,ignor:[12,43,107,123],iii:98,iinstal:84,illustr:[25,28,48,51,52,106,115,122,123],imag:[10,28,43,88,100],imaginari:88,immedi:[24,37,48,64,67,68,83],impati:86,imped:[64,87,94],implement:[1,4,6,12,25,29,43,50,62,68,73,86,87,88,90,94,95,99,106,110,123,126,129],impli:[44,62,71],implicit:[62,88,90],impliment:69,importantli:84,impos:[12,65,99,113,117,118,129],imposs:[37,110],improv:[4,10,20,26,27,35,88,102,103,110],imshow:123,in_poli:123,inaccur:37,inaccuraci:37,inadequaci:46,inadvertantli:58,inbound:10,inc:[39,48],incept:4,inch:[2,43,58,109],incident:[44,62],includ:[4,5,10,11,19,20,21,22,23,24,25,28,30,34,37,39,42,43,44,46,48,49,53,55,57,58,60,62,64,65,68,71,73,75,79,81,83,84,85,86,87,88,89,90,91,92,94,96,97,98,102,106,108,110,112,113,115,116,117,118,121,123,126],incom:12,incompat:73,incomplet:26,incompress:13,incorpor:[20,37,41,62,71,90,96,102,123],incorrect:88,increas:[43,53,88,113],increment:[26,79,95,98,110,112,114],ind:79,inde:[65,84],indent:[36,43,88],independ:[21,25],index:[1,5,10,20,23,26,34,41,58,79,81,84,86,87,88,95,110,112,114],index_bi:69,indic:[6,12,18,20,22,25,31,48,56,60,79,83,84,87,88,90,94,98,99,100,106,110,112,113,114,121,123,126],indirect:[44,62],individu:[4,20,21,43,48,79,88,99,100],inf:123,infer:123,infinit:110,inflat:12,info:[25,43,48,67,79,83,90,111,112],info_sz:25,inform:[10,20,22,28,35,36,37,38,40,42,54,58,59,60,61,62,64,65,68,69,72,79,81,83,84,85,87,88,89,95,98,105,106,110,111,113,121,124,125,126,127],inhabit:64,inherit:[58,79,90],initi:[4,10,20,22,25,26,29,34,36,37,48,52,55,60,62,63,64,65,67,69,74,79,80,87,88,89,90,92,93,95,97,98,99,107,110,112,113,114,121,123],initialize_sourc:65,inlin:96,input:[6,12,18,21,22,23,25,29,30,43,48,64,67,74,79,81,87,88,89,90,95,106,112,113,114,121,123,126],input_filenam:65,input_unit:25,inputerror:39,inputfil:[95,121,123],inrati:98,inratt:98,inratx:98,ins:20,insert:[8,12,52,68,98],insid:[79,84,88,89,123],inspect:[17,18,98],instal:[9,10,16,21,22,28,60,62,63,66,68,72,73,76,80,81,82,94,98,101,102,103,104,128],install_output:42,instanc:[3,22,55,60,64,65,67,68,79,83,86,88],instantan:[90,121],instanti:[67,84,86,90,92,112,114],instati:123,instead:[3,10,24,26,28,49,71,72,91,92,95,98,106,121,123],institut:4,instruct:[10,16,22,28,49,64,66,68,69,71,72,73,76,84,91,94,101,102,103,104,105,128],insur:[40,45,60,98,99,100,102,111,113,121],intact:50,integ:[3,26,34,43,46,58,65,89,99,106,110,113,123],integr:[20,22,62,76,81,83,90,102,103,112,114,121,126],intel:22,intend:[37,65,88],intens:65,intent:[65,106],inter:24,interac:83,interact:[1,10,20,22,28,30,34,35,45,51,55,58,65,68,84,85,91,94],interactive_plot:[85,94],interdepend:92,interest:[9,12,21,23,26,38,48,65,72,73,92,98,110],interfac:[4,17,20,22,48,62,65,74,81,87,88,90,95,96,106,126,127,129],interface_funct:95,interior:[5,12,54,92],interleav:[62,87],intermedi:[17,26,39,70,126],intern:[5,25,34,43,121,123,129],interp_unstructur:123,interpol:[5,12,22,25,27,34,43,48,58,107,113,123],interpret:[26,96],interrupt:[44,62],intersect:26,interv:[34,36,64,88,94,98,99,110,113],introduc:[12,17,26,58,72,73,88,129],introduct:[39,51,70,73],introductori:96,introspect:88,intuit:81,inund:[26,35,46,98,107,125],inundataion:[107,125],inv_haversin:36,invalid:[31,89],invert:[36,88],invest:37,investig:100,invis:30,invok:[8,53,88,124],involv:[86,90],ioerror:89,ioexcept:95,iout:114,ioutarrivaltim:113,ioutsurfacemax:113,ipdb:58,iplot:[28,75,84],iplotclaw:[1,10,20,22,28,34,35,58,85],iplotclaw_:58,iplotclaw_figno:1,ipynb:25,ipython:[10,22,25,33,52,55,58,60,65,66,68,81,83,91,94,96,122,123],ipython_displai:102,iqinit:[113,121],irregular:98,is_valid:[89,92],island:98,isn:[45,53,54,124],isosurfac:48,isotrop:52,issu:[20,24,41,42,48,64,68,73,79,81,90,91,93,100,102,113],item1:[0,60],item:[0,1,3,22,48,60,95,109],itemnam:[1,60],iter:[25,87],ith:87,its:[4,5,10,20,37,44,54,62,67,74,75,79,81,86,88,89,90,92,95,96,99,112,123,129],itself:[42,57,78,113,123],ixi:88,jacobian:[106,129],jan:4,januari:[15,101],japan:43,javascript:115,jed:62,jet:[25,48],job:10,join:[58,98],jonathan:69,joshu:69,journal:[13,81,115],jpg:48,jsanim:102,jsanimation_frametool:104,juli:[15,103,104],jump:[4,42,48,60,79,90,110,129],junction:[26,113],just:[0,5,24,30,42,64,65,67,68,71,72,73,83,84,85,86,88,92,95,96,98,103,110,126],justifi:52,kappa:[94,129],kappa_i:129,karg:89,kaust:4,keep:[22,24,28,53,64,67,68,72,88,92,95,98,100,103,113],keep_copi:[64,67],keep_gaug:92,kei:[0,1,2,10,25,72,90,94,95,123],kemm:74,kemm_2009:74,kernel:95,kernel_languag:[73,79,90,95],ketch:4,ketcheson:[4,13,62,81,88,90],ketchesonmandliet:[4,13],ketparlev13:[4,13,55,81],keyboard:48,keypair:10,keyword:[2,3,58,64,73,75,79,88,89,95,109,123],kind:[67,75],kinemat:25,king:62,klein:74,kml:43,kml_build_colorbar:43,kml_cb:43,kml_dpi:43,kml_footer:43,kml_gaug:43,kml_header:43,kml_png:43,kml_region:43,kml_timespan:43,kmltool:122,kmz:43,kneplei:[13,62,81,88],know:[37,42,45,62,68,107,123,124,125],knowledg:37,known:[31,48,52,53,58,73,91,93,110],kpp:75,kristof:62,kutta:[81,90],kwarg:[2,25,43,58,73,95,109],kyle:[4,13,62,74,81,87,88],label:[25,38,43,69,72,123],lack:3,lake:[35,121],lambda:[79,123],lambda_roe_1:87,lambda_roe_2:87,land:[12,35,43,59,123],landslid:37,langseth:[4,13],langsethleveque00:[4,13],langtangen:96,languag:[8,57,95,96],lapack:102,laptop:81,larg:[5,18,27,28,37,41,48,53,57,73,83,84,98,99,105,110,123],larger:[10,18,26,43,53,54,58,79,102,113,121],largest:[99,107],last:[3,16,23,26,58,64,65,68,86,94,98,110],lat:[25,36,98,123],later:[10,40,60,88,90,98,105],latest:[21,22,72,84,91,103],latex:[1,22,57,85],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:88,latitud:[11,22,25,26,35,36,52,98,108,113,123],latitudin:36,latitutd:25,latlong:25,latter:[11,41,86,108,110,126],launch:[22,75,81,84,85,91],law:[4,13,43,129],lax:[79,90,110,112,114,129],layer:[13,43,79,102,104],layout:76,lbla:93,lead:[5,10,20,37,46,48,52,111],leak:68,learn:[37,39,69,70,75,96],least:[4,5,10,29,43,48,73,93,98,99,110,112,121,123],leav:[10,12,72,111,123],led:18,leer:[74,90,110,112,114],left:[3,10,12,23,26,54,60,68,79,86,87,88,94,98,105,106,107,111,121,123,125,129],legaci:21,lemoin:[4,62],len:[25,79,112,114,123],lenght:110,length:[11,25,37,43,52,86,88,92,98,108,110,111,112,113,126],less:[37,46,53,88,90,99,110],let:[12,35,42,62,68,71,98],letter:88,level:[3,5,6,12,21,23,26,29,34,35,36,37,42,48,50,53,54,65,67,73,79,83,88,90,97,98,99,100,102,103,105,107,110,111,112,113,114,121,123,125,126],levequ:[4,12,13,25,44,55,74,79,81,90,96,106,110,126,129],leveque09:13,leveque1996:13,leveque1997:81,leveque96:13,leveque97:[4,13],leveque_book_2002:87,levequegeorgeberg:[4,13],levyon03:13,lgomp:95,liabil:[35,37,44,62,98],liabl:[44,62],lib:68,librari:[5,10,11,12,18,20,23,26,28,34,43,49,53,54,55,62,74,82,84,88,90,95,97,99,108,111,117,118,124,126],library_path:95,licens:[22,35,37,81,98],lie:[5,26],lies:[5,12,26,29,99,113],life:88,lifetim:88,light:[48,99],like:[10,41,43,48,49,60,65,67,68,69,71,72,73,79,83,84,87,88,89,90,92,96,109,121,124],lim_typ:[88,90],limit:[0,4,5,25,37,43,44,48,53,57,62,64,65,79,81,88,90,98,99,104,110,112,113,114,121,123,129],limiter_typ:88,limitertyp:88,linalgexcept:88,line2kml:43,line:[1,3,4,12,22,25,26,31,34,35,36,40,43,45,48,49,54,58,68,69,71,72,73,84,88,90,94,95,98,102,103,109,110,112,121,123],linear:[4,25,26,52,58,64,68,74,90,106],liner:[0,25,88],linestyl:123,linewidth:58,link:[4,8,10,13,14,16,17,18,24,35,39,41,42,43,49,51,68,70,88,96,107,114,121,125],linspac:[48,67,94,98],linu:[39,70],linux:[10,39,42,50,68,70,93,96,100],lisandro:[62,88],list:[1,3,4,6,7,8,10,20,25,26,28,29,30,34,42,43,44,46,48,53,58,60,62,63,64,67,68,72,73,74,79,83,85,86,87,88,89,90,92,93,95,98,99,105,110,111,112,113,114,123],liter:88,literalinclud:41,literatur:37,littl:[37,39,68,70,107],live:92,llapack:93,llcenter:123,llcorner:123,lmm:90,lnetcdf:49,lnetcdff:49,load:[10,43,73,85,89,95,96,123,127],load_sift_unit_sourc:25,loc:123,local:[10,13,18,22,24,43,48,68,71,74,79,81,86,92,123,126],local_fnam:123,local_path:95,locat:[5,10,22,25,35,36,48,54,79,83,85,87,89,95,98,105,107,123],log:[22,24,39,68,69,70,71,72,79,80,89,90],logger:[83,92],logic:[5,12,13,26,88],long_lat:123,longer:[18,22,24,43,71],longest:98,longitud:[22,25,26,35,36,52,98,113,123],longitude_shift:25,longitudin:36,look:[10,20,25,43,48,49,58,60,65,68,69,71,73,79,84,88,89,90,94,95,96,98,100,103,110,111,113,123,124],loop:[29,34,48,57,95,99,109,110,126],loss:[44,62],lost:68,lot:[42,73],love:75,low:[65,123,125],lower:[3,20,25,26,54,79,84,88,98,110,112,114,121,123,125],lower_glob:79,lowerg:84,luckili:68,luna:[13,62,81],lying:5,m_w:129,mac:[42,53,93,96,100],machin:[10,22,39,42,53,55,70,72,73,96],made:[4,16,20,24,25,68,69,71,72,89,92,98,102,103,113,123,126],magic:[39,43,70],magnitud:[25,98],mai:[0,1,2,3,4,5,10,17,18,20,21,23,24,25,26,28,30,35,36,37,38,41,42,44,45,46,48,49,52,53,57,58,60,62,65,66,68,69,72,73,75,79,81,83,86,88,89,90,93,95,96,98,99,100,104,105,107,109,110,111,112,113,121,123,124,126],mail:[68,72,86,93],main:[8,17,24,48,55,65,67,68,71,73,82,86,88,94,95],mainli:84,maintain:[68,73,76,81,88,111,121,126],mainten:[62,88],major:[4,20,62,65,101,102,103,104],make:[1,8,10,17,18,20,22,23,24,28,30,31,34,35,37,39,40,41,42,43,45,46,48,53,55,60,64,65,67,69,70,71,73,76,78,79,80,81,86,88,89,95,98,100,102,110,119,121,123,125,126],make_colormap:58,make_input_data_kml:43,make_lib:10,make_plot:78,make_shoreline_xi:123,makefil:[5,8,11,12,17,18,21,22,24,26,28,31,49,53,55,58,60,65,80,99,102,108,110,112,113,114,115,117,118,124,126],maketopo:[98,121],man:[13,22,35,37,68,113,117,118],manag:[10,39,70,83,98],mandli13a:13,mandli13b:13,mandli:[4,13,62,74,81,87,88],mani:[1,3,4,5,9,10,14,18,19,20,24,26,28,29,31,35,39,43,45,52,53,54,58,60,62,64,70,73,75,81,86,88,89,94,95,96,98,99,101,102,106,109,110,111,113,119,121,126],manifold:48,manipul:[34,123],manner:[34,57,110,117,118],manning_break:113,manning_coeffici:113,manual:[24,42,65,68,71,73,76,91,93],manuel:[13,62,81],map2d_to_1d:23,map:[3,12,25,43,48,58,62,65,79,81,86,99,123,129],map_2d_to_1d:3,mapc2p:[3,22,23,48,65,79],mappedgrid:[3,48],march:[15,98,102,103],margin:[26,35],mark:[12,100],mark_cent:79,mark_nod:79,marker:43,markup:8,marsha:[4,5],mask:[38,68,123],mask_outside_zlim:43,maskedarrai:123,maskedconst:68,mass:[5,83],massiv:81,master:[10,15,24,41,69,71,72,76,86],match:[25,43,75,82,89,100,123],materi:[4,44,52,62],math:[13,94],mathemat:[4,96],mathwork:48,matlab:[6,20,22,28,56,57,58,85,96],matlabpath:48,matplotlib:[0,2,3,10,25,38,42,57,58,63,96,98,109,123,124],matric:[106,129],matrix:[87,88],matteo:[4,13,62,81],matthew:[13,62,69,81,88],maux:[20,106,126],max1d:53,max:[0,25,48,87,98,99,103,112,114,123,129],max_inch:43,max_level_deep:113,max_step:90,max_vertices_in_descript:43,maxima:[26,53,113],maximum:[3,20,22,25,26,27,29,48,90,94,99,102,103,110,111,112,114],maxlevel:[29,48,98,99,111,112,113],maxm:106,maxmi:[18,65],maxmx:[18,65,88,106],maxmz:18,maxwell_1d_homogen:86,mayb:[68,123],mbc:[106,126],mc_limit:74,mcs:84,mean:[3,10,20,34,37,48,68,72,73,83,84,98,99,106,107,110,112,114,125],mean_latitud:38,meant:[79,90],meantim:68,measur:[25,34,36,52],mechan:92,media:[13,51],medial:88,medium:[112,126],meld:68,member:[86,89,94],memori:[18,20,53,54,55,64,67,88,92,111,112],mention:[110,111],menu:[10,43,68,107,125],meqn:[34,54,106,126],merchant:[44,62],mercuri:84,merg:[5,10,24,39,69,70,71,72,76],mesh:[4,6,13,48,55,57,64,77,99,109,110,120,126],meshgrid:[64,86,123],messag:[30,36,41,48,53,67,68,72,73,79,83,85,88,89,90,92,93,110,112,114,124],messi:68,met:[26,44,62],metadata:[54,88,98,123],meter:[25,36,107,113,123,125],method:[4,13,14,32,34,58,60,64,67,69,72,73,74,79,84,88,89,90,95,99,106,109,110,111,112,114,120,121,123,126],method_data:88,metric:36,mhhw:107,mhw:[37,107,125],micro:10,mid:58,middl:87,midpoint:79,might:[10,12,20,24,28,29,36,41,42,48,50,53,58,64,69,76,83,87,96,98,99,102,106,110,111,121,123,125,126],migrat:17,millimet:123,min:[0,87,123,129],min_level_check:26,mind:88,minim:[5,88,111,123],minimum:[3,26,52,94,113,123],minlevel:[29,98,99,111,112,113],minmod:[74,79,90,110,112,114],minmod_limit:74,minor:[8,83,102,103,104],minut:[36,41,43,69,98,107,123,125],mirror:76,mis:58,misc:[4,81],miscellan:87,miss:[20,88,121,123,124],mistak:68,mitig:37,mitran:[4,13],mix:25,mjb:[5,13],mjberger:4,mllw:125,mode:[1,10,24,95],model:[12,13,22,25,26,31,35,46,72,83,107,113,121,122],modern:91,modif:[30,44,48,58,62,73,74,113],modifi:[5,11,12,18,20,22,23,26,28,34,35,45,48,50,58,65,68,74,79,86,97,98,99,108,110,112,113,114,117,118,121,123,126],modul:[0,22,24,38,42,52,53,57,58,59,60,64,65,73,74,75,82,86,87,88,89,92,98,103,104,105,110,111,113,122],module_nam:95,modulu:[25,87,94,112,126],molsolv:90,moment:[23,25],momentum:[12,26,37,46,113,121],monitor:[20,22,27],monoton:[110,113],month:[13,81],more:[1,2,3,4,5,6,9,10,12,13,18,20,22,24,25,26,28,29,34,35,37,39,42,43,44,45,48,51,52,57,58,59,60,62,65,67,72,73,74,79,83,84,85,86,87,88,90,91,92,94,95,98,99,100,102,103,106,107,109,110,111,112,113,115,119,121,123,124,126,129],most:[3,18,20,23,26,28,29,30,37,40,41,42,43,45,48,53,55,57,58,60,62,68,69,73,79,84,88,90,93,94,98,99,100,107,109,110,111,113,116,126],mostli:[3,57],motion:121,movabl:25,move:[12,28,41,42,52,86,98,99,102,104,113,121,122],movement:25,movetopo:102,mparsani:4,mpi:[55,84],mpich:84,mpiexec:84,mpirun:[73,84,91],msl:[107,125],msysgit:69,mthlim:[79,90],much:[10,26,31,42,54,55,57,68,73,96,98,102,110,113,123],muct:90,multi:[13,64,88,102,104,126],multicor:53,multidimension:[65,81],multilay:103,multipl:[5,10,21,24,57,64,73,79,83,88,95,102],multistep:90,must:[5,10,12,18,20,25,26,35,42,44,45,48,52,53,54,62,65,82,83,86,88,89,90,92,93,94,95,98,102,105,106,107,110,112,113,114,123,124,125,126,129],mwave:106,mx1d:126,mxnest:[20,98],mxnext:98,my_acoustics_rp:64,my_custom_bc:90,my_initial_solut:67,my_new_fil:68,my_rp_modul:64,my_setplot_fil:60,my_solv:67,myclaw:50,n00014:4,n12:26,n23:26,name:[0,1,2,3,6,8,10,18,20,24,25,26,28,30,34,43,44,45,48,49,58,60,62,65,67,68,69,71,72,75,76,79,82,83,87,89,94,95,98,105,106,109,110,111,112,113,114,119,123,126,127],namespac:65,nan:[36,123],nation:[4,37],natur:[26,41,129],naux:54,navig:[9,115],nbviewer:51,nc_param:123,ncar:4,ncol:98,nctr:25,ndarrai:[36,74,79,87,92,123],ndarrari:79,ndim:[20,54,60,110,111],ndip:25,nearbi:107,nearest:[34,123],nearli:[79,121],nearshor:37,necessari:[5,10,28,35,37,43,48,52,54,55,60,64,65,79,88,105,109,110,121,126],necessarili:[4,73],necessit:73,need:[0,4,5,10,11,12,16,17,18,20,23,24,26,28,30,34,37,38,41,42,43,45,48,49,52,53,54,55,60,64,65,67,68,69,71,72,73,74,78,81,82,83,84,86,88,90,94,96,98,99,103,105,106,108,110,111,112,113,114,117,118,121,123,125,126,129],neg:[20,98,121,123],negat:[36,121],neglig:[44,53,62,113],neighbor:[4,99,111,112,123],neither:[43,44,62],nep:68,nest:[102,111,112],net:42,netcdf3:82,netcdf4:[82,123],netcdf:[10,22,110,112,114,121,123],network:68,never:[24,26,86,92,97,99,110,112,114,124],new_featur:24,new_file_nam:68,new_frame_num:95,new_plotax:[0,2,34,58,109],new_plotfgur:58,new_plotfigur:[1,2,34,58,109],new_plotitem:[0,3,34,58,109],new_userdata:[112,114],newdir:50,newer:[24,53,74],newli:105,newton:87,next:[2,3,5,10,16,26,28,29,34,41,42,48,54,58,60,63,64,78,84,88,90,94,98,99,100,110,111,113],nfr:4,ngdc:[98,107,125],nghost:54,ngrid:54,nhtmp:37,nice:[39,43,51,65,69,70,72,73,86,103],nicer:[60,96],nih:4,nnnnn:[105,110],no_data_valu:123,no_tran:79,noaa:[25,36,107,125],nodata_valu:[98,121,123],nodatav:121,nodatavalu:121,node:79,nodes_with_ghost:79,nohup:103,non:[12,51,55,65,69,86,88,94,110,112,114,129],nonconserv:129,none:[0,1,2,3,12,23,25,36,43,67,73,79,88,89,90,92,95,102,110,112,114,121,123],nonexist:[33,75,81],nonlinear:[4,13,37,74,88,110,129],nonoverlap:5,nonphys:34,nonuniform:48,nor:[44,62],norm:[43,99,123],normal:[12,58,86,88,106,110,111,112,114],north:[36,52,98],northernmost:[98,121],norwegian:4,nose:[63,73,84,88],nosetest:[24,42,73,84,91,100,119],notat:[25,36,43,106],note:[1,3,4,10,12,18,20,22,24,25,29,30,31,34,35,36,41,42,43,45,52,53,58,60,65,68,69,71,72,74,75,79,81,82,84,86,87,88,91,92,95,96,98,99,105,106,107,109,110,111,112,113,114,121,123,125,126],notebook:[22,25,33,52,66,83,122,123],noth:[11,92,108,117,118,123,126],notic:[44,62,68,73,94],nout:[98,114],nov:[13,81],now:[5,6,10,16,18,20,24,25,26,31,40,41,42,46,54,58,64,65,66,68,69,71,72,79,81,83,84,85,86,89,90,91,94,98,100,102,103,106,109,113,115,121,128],npacif:98,nprint:[111,112],npt:26,npy:123,nrm:43,nrow:98,nsf:4,nstepout:67,nstrike:25,nthmp:37,ntime:112,ntot:114,num_aux:[65,84,86,87,92,106,110,111,112,114,126],num_cel:[7,20,79,106,110,111,112,114],num_cells_glob:79,num_digit:43,num_dim:[20,79,86,110,111,112,114],num_entri:95,num_eqn:[54,64,65,74,84,86,87,88,89,92,94,106,110,112,114,126],num_fgmax_v:[26,113],num_ghost:[65,79,86,87,88,90,92,110,112,114],num_output_tim:[64,67,105,110,112,114],num_wav:[74,87,88,106,110,112,114],number:[1,2,3,4,5,7,12,13,17,20,23,25,26,28,34,42,43,45,48,53,54,55,60,64,65,67,73,74,75,79,81,82,83,84,86,88,89,90,92,94,95,98,99,102,103,105,106,110,111,112,113,114,119,123,126],numer:[4,13,88,96],numerica:13,numpi:[3,10,25,36,42,63,64,65,66,67,73,79,86,88,92,93,94,96,98,112,123,124],nxpoint:123,nypoint:123,nyu:4,obj:68,object:[0,1,2,3,20,22,23,25,26,34,43,58,60,64,65,67,68,69,82,83,84,86,88,89,92,93,94,95,96,102,105,110,111,112,114,123],obliqu:12,obscur:20,observ:[26,37,102,107,110,113,121,125],observatori:4,obtain:[5,9,21,26,34,35,37,42,43,82,84,88,98,99,106,113,115,121,129],obviou:88,occasion:73,occur:[52,88,121],ocean:[12,13,37,98,113,117,118,121,125],octob:[15,16,104],off:[10,26,37,43,48,60,67,71,83,98,111,123],offer:[30,73],offici:42,offset:[38,43,123],offshor:[43,46],oft:87,often:[5,8,10,12,18,23,26,28,30,31,34,35,37,38,40,43,46,52,54,68,96,98,100,105,106,107,109,110,113,121,125,126,129],okada85:[13,25,52],okada:[13,22,25,35,98,121,122,125],okadamap:25,okai:73,olav:4,old:[1,18,20,60,67,84,85,86,90,100],older:[20,42,90,113],olig:[5,13],omega:64,omit:113,omp_num_thread:[31,53],omp_stacks:53,on_lower_boundari:79,on_upper_boundari:79,onc:[1,10,20,24,28,48,60,64,72,83,84,85,86,92,95],ondrej:62,one:[0,1,2,3,4,5,7,10,11,12,18,20,23,24,25,26,28,34,35,43,46,48,49,50,52,54,55,57,58,64,68,72,73,79,83,84,86,88,89,90,91,94,95,98,99,100,105,108,109,110,111,112,113,114,117,118,121,123,126,127],onelin:[68,71],ones:[64,65,92,98,110,111],onli:[1,3,5,7,10,12,17,20,22,23,24,25,26,37,43,46,48,52,53,54,55,58,64,67,68,71,72,73,79,83,84,86,88,89,90,91,92,94,95,98,99,102,105,106,107,109,110,111,112,113,114,121,123,124,126,129],onlin:[76,96,116],onr:4,onshor:[26,43,46],onto:[24,25,68,123],open:[10,25,42,43,57,62,66,68,73,79,88,95,96,127],opendiff:100,openli:21,openmp:[20,22,31,55,95],opensourc:[44,62],oper:[38,42,73],opinion:4,oppos:[24,88],opposit:[5,12],optim:[31,62,95],option:[1,2,6,10,12,18,20,22,25,26,28,30,35,36,40,42,45,48,49,58,59,64,65,67,68,71,72,73,75,79,80,82,83,85,88,89,90,91,94,95,96,97,99,103,109,110,112,114,115,123],order:[4,5,10,12,13,25,26,37,42,48,54,55,58,60,62,64,67,74,76,79,81,82,83,85,86,90,94,95,106,109,110,111,112,114,120,121,123,126,129],ordinari:106,ordinarili:93,org:[4,13,41,44,62,65,66,79,81,84,123],organ:[20,21,28,67,68,88],orient:[52,65,96,98],origin:[3,5,10,12,18,24,25,41,53,54,65,68,69,72,88,90,95,102,105,111,112,114,123],oscil:[34,129],oscillatori:123,osher:90,osx:[42,69,96],other:[3,4,5,10,12,18,20,22,23,25,26,28,32,34,35,37,39,41,44,45,46,48,49,52,53,54,60,62,64,65,67,70,71,73,76,79,81,83,85,86,87,88,91,94,99,102,103,107,109,110,113,115,121,122,123,125,126,127],otherwis:[25,44,62,83,87,89,90,91,92,95,110,123],ought:90,ouput:67,our:[64,68,71,72,98],out:[3,12,25,28,40,41,43,44,45,48,58,62,64,65,67,72,82,83,84,85,89,94,96,106,112,114,123],out_tim:67,outaux:23,outdat:73,outdir:[1,3,22,28,34,40,45,60,67,75,79,112,114,124],outdir_p:67,outer:69,outfil:123,outflow:[12,110,112,114],outgo:12,outlin:[43,48,60,98,109],outn:23,output:[1,7,10,12,22,23,25,28,30,31,34,35,36,38,40,42,57,58,60,65,67,68,69,73,74,75,79,80,81,84,85,87,88,89,90,91,92,94,95,98,102,106,109,112,114,123,126,127],output_aux_compon:[110,112,114],output_aux_onlyonc:[110,112,114],output_file_prefix:67,output_filenam:65,output_format:[67,110,112,114],output_opt:67,output_q_compon:[110,112,114],output_step_interv:[110,112,114],output_styl:[54,64,67,105,110,112,114],output_t0:[105,110,112,114],output_tim:[105,110,112],output_unit:25,outputdir:48,outputfil:[121,123],outsid:[5,12,43,121,123],outsiz:43,outstyl:98,over:[1,3,5,10,12,13,20,24,25,26,29,34,35,37,43,48,52,57,83,90,98,99,102,103,109,112,113,121,126,129],overal:64,overflow:31,overhead:[5,53,99],overlai:43,overlaid:43,overlap:[29,99,102,103,121],overli:88,overrid:[31,64,65,95],overridden:[48,90,92],overrul:3,overview:[101,104,120],overwrit:[1,67,89],overwritten:[105,126],own:[12,18,22,24,34,39,50,64,65,68,70,71,73,80,81,88,91,92,96,115],p_center:[79,94],p_function:83,p_l:87,p_node:79,p_r:87,p_t:94,p_x:94,pacif:98,packag:[4,21,22,24,28,55,57,62,64,73,79,81,85,86,88,89,91,94,96,127],page:[1,8,9,10,13,20,24,37,41,51,68,69,71,72,75,76,81,84,85,88,93,96,98,100,107,109,115,125,126],pair:[10,100,123],paper:[4,5,12,25,35,41,74,81,88],parabl:[39,70],paragraph:26,parallel:[4,20,21,22,53,63,73,75,80,81,83,86,88,89,91,95],paramet:[1,5,6,12,14,18,22,23,25,26,28,29,30,35,37,45,46,48,51,52,53,54,63,64,67,74,83,85,87,88,89,92,95,97,99,102,105,106,107,112,114,121,123,124,126],paramt:26,parent:[3,23,79,92,95],pars:[34,95],parsani:[4,13,62,81],part:[4,20,24,25,35,37,43,49,62,65,73,84,88,91,92,94,96,98,113,126],partial:[13,55],particular:[5,9,18,20,25,26,34,35,37,44,48,58,59,62,64,68,73,87,89,90,92,94,96,98,103,109,113,129],particularli:[12,23,40,52,54,103],partit:84,pascal:25,pass:[12,17,18,25,43,53,58,64,67,73,75,80,86,88,90,92,93,95,112,123,126],past:[15,19,89,107],patch:[3,5,6,12,20,23,26,48,52,53,54,57,58,71,76,84,89,92,109,111,113,126],patch_index:79,patchedges_show:[3,20],patchno:[3,23],path:[1,10,22,24,25,36,39,42,45,50,58,67,82,84,89,95,98,123,124],pathtool:48,pattern:[18,35,75,107],paus:72,pcolor:[3,22,34,96,123],pcolor_cmap:3,pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:43,pcolormesh:43,pdb:58,pde:[13,55,81,94,110,126],pdf:[1,25],pdflatex:1,peanoclaw:62,pedant:31,pem:10,pend:3,peopl:[4,10,62,71,96],pep8:73,pep:88,per:[10,25,43,48,53,88,111],perez:[39,70],perfect:12,perfectli:12,perfom:100,perform:[5,20,23,37,42,53,55,57,58,67,73,79,86,90,95,100,113,119],perhap:[5,26,34,58,68,88,92,95,98],perimet:26,period:[5,12,26,51,64,86,88,99,110,112,114],perman:48,permiss:[44,62],permit:[44,62],permut:18,person:69,perturb:[97,113,121],petclaw:[22,62,73,84,85,86,88,89,95],peter:4,petsc4pi:[73,84,91,92],petsc:[20,21,22,55,62,64,80,91,92,93,95],petsc_arch:84,petsc_dir:84,petsc_hello_world:84,phase:[84,88],philim:65,phoni:58,php:[25,44,62,98],phrase:[88,96],phy:13,physic:[12,34,65,79,81,94,99,129],pick:[64,68,90],pictur:88,piec:[12,37,76,79],piecewis:[25,26,103,106,121],pink:[43,58,109],pinkfig:58,pip:[24,42,66,81,84,91,93],pixel:43,pkg:114,place:[12,18,28,41,50,73,84,86,91,102,126],placehold:69,plai:51,plain:38,plan:[24,37,42,46,73,90],planar:52,plane:[25,52,98,125],platform:[10,51,67,69,84,96,100],pleas:[4,15,42,51,62,64,67,72,73,75,81,82,84,86,89,90,91,93],plot:[0,1,2,4,6,7,9,14,23,25,28,30,31,42,43,51,54,63,64,67,79,80,81,83,88,89,91,93,94,96,98,119,120,123],plot_box:[25,98,123],plot_centerlin:25,plot_dz_color:25,plot_dz_contour:25,plot_gauge_loc:34,plot_rak:25,plot_subfault:25,plot_subfaults_depth:25,plot_topo_fil:59,plot_typ:[0,20,34,58,60,109],plot_var2:3,plot_var:[3,23,34,58,59],plotax:[3,34,58,109],plotclaw1:48,plotclaw2:48,plotclaw3:48,plotclaw:[22,34,58,60,109],plotdata:[23,34,49,58,60,67,109],plotdir:[1,60,109],plotexampl:58,plotfigur:[34,58,109],plotfram:1,plotgaug:34,plotitem:[3,23,34,58,109],plotloop:[58,60],plotstyl:[3,34,58,109],plotter:[1,3,23,34,60],plotting_makeplot:28,plottyp:48,plt:[43,98],plu:[58,102,112,114,123],pmel:25,png2kml:43,png:[1,10,28,30,43,48],png_extent:43,png_file:43,png_filenam:43,png_name:43,point:[3,5,10,11,12,13,18,25,26,28,29,31,34,35,36,37,41,42,43,48,49,52,64,68,71,83,84,89,95,98,99,105,107,108,110,111,112,113,117,118,121,123,124,126],point_styl:26,pointer:[4,12,52,57,60,72,90,95,98],pointwis:92,poisson:52,poli:43,polici:88,poly2kml:43,polygon:[3,43,123],poor:73,popup:10,port:[10,80,81,86,111],portion:[5,65],posit:[52,55,95,98,121,123],possibl:[5,10,20,25,26,29,34,36,37,39,44,52,58,62,64,68,70,73,79,84,85,90,95,98,99,107,110,111,121,126],post:[22,39,69,70,73,84,115],poster:68,posteriori:90,postprocess:[54,83],potenti:[24,48,88,107],power:[57,96],pprint:[111,112],practic:[69,73,98],pre:[3,10,68,96],preced:[24,58],preceed:[26,54,126],precis:[31,43,65,79,106,123],predefin:58,predict:36,prefer:[42,43,68,84,86,96],prefix:[67,82,89],preliminari:[36,68,98,125],prepar:[73,88],prepend:[24,67],prerequisit:22,prescrib:88,present:[5,43,79,87,89,90,95,126,129],preserv:[34,55,90,105],press:[13,84,91],pressur:[34,48,60,83,87,94],presum:107,pretti:[10,69],prevent:69,previou:[1,22,24,26,34,42,48,60,64,68,90,102,110,112,114,123],previous:[5,20,60,88],price:10,primari:[20,35,73],prime:73,principl:[123,126],print:[1,3,22,43,48,58,79,83,84,85,88,92,94,98,102,103,110,112,114,124],print_figno:1,print_format:1,print_frameno:1,print_git_statu:40,printenv:124,printfig:1,printfram:[1,22],prior:[44,62,112,114,126],pro:[39,70],probabl:[10,24,46,72,98],probdata:[112,114],problem:[4,6,12,13,14,18,22,23,24,26,28,32,35,39,48,52,55,58,63,64,68,73,75,80,81,84,87,88,90,93,98,100,102,103,106,110,112,113,114,121],problem_data:[64,87,89,92,94],problemat:83,proce:[5,24],procedur:[5,12,22,88,126],proceed:41,process:[22,28,64,73,75,79,84,91,92,95,98],processor:92,procur:[44,62],produc:[1,3,20,22,23,25,28,30,34,42,43,48,51,53,56,57,100,109,113,123],product:[25,44,62,95],profession:88,professorship:4,profil:123,profit:[44,62],program:[4,35,37,55,88,96],programm:88,programmat:62,progress:[68,72,73,90,121,123],prohibit:20,proj:112,project:[25,37,39,62,66,68,70,72,88,111,121,123],projection_zon:25,promot:[44,62,88],prompt:[48,58,60,75,94,96,98,123],propag:[4,5,13,25,37,79,81,88,90,98,106],proper:[5,11,34,43,46,48,82,95,102,108,111,112,117,118,126],properli:[18,26,28,30,37,41,42,43,50,67,88,96,100,102,110,113,123,124,126],properti:[25,48,64,67,79,89,92,123],propos:[24,69,88,129],protocol:68,provid:[0,2,4,6,12,18,22,23,25,35,36,37,41,43,44,52,54,57,62,65,67,69,73,74,83,84,86,88,89,90,94,95,96,98,100,106,110,118,121,123,126],proximity_radiu:123,pseudo:48,psi:[86,126,129],psystem:75,pth:24,pts:[111,112],pub:25,publicli:115,publish:[13,41,81],pull:[39,41,51,68,69,70,71,72,73,86,100],pure:[22,42,60,73,79,81,84,90,96],purpos:[26,35,37,44,48,54,62,68,79,96,98,100],push:[24,39,41,68,70,72],put:[1,8,12,24,42,43,48,50,64,75,86,88,98],pwd:98,pyclaw:[1,3,4,9,13,15,21,23,24,28,33,34,51,54,55,60,68,71,73,76,77,80,84,86,93,96,120],pyflak:76,pylab:[0,58],pylint:76,pyplot:[43,98,123],python:[3,4,6,7,8,10,13,14,17,20,21,23,24,25,26,28,30,34,35,36,40,42,43,52,54,55,57,58,59,62,63,65,73,75,78,79,81,84,85,86,87,88,90,93,94,95,98,100,103,104,120,121,123,124,127],python_io:54,pythonpath:[24,42],pyweno:[22,62,90],q0000:[48,110],q0001:[48,49],q000n:[1,7],q0_vs_radiu:3,q1d:126,q_hat:87,q_hat_l:87,q_hat_r:87,q_i:[106,129],q_l:87,q_r:[87,106],q_t:[86,87,90,94,126,129],q_x:[87,94,129],qbc:[86,90,92],qcor:65,qinit:[18,20,22,65,88,107,126],qinitdata:113,qinitfil:113,qquad:129,qtrue:58,quad2kml:43,quad:43,quadrat:25,quadrilater:[26,43],quantiti:[11,26,43,48,67,80,81,87,92,108,113],queri:[65,79,95],question:[24,89],quezada:[13,62,81],quick:[10,22,35,42,51,76,88,96,100,119],quicker:[10,68],quickest:72,quickli:[43,66,88,119,123],quit:[48,58,60,68,98],quot:[43,88,98],radial:[3,36,126],radian:36,radio:43,radio_styl:43,radiu:[3,113,123],rai:123,rais:[25,42,88,89,91,95,123],rake:[25,52,98],randal:[4,13,44,81],randi:[25,74,79],rang:[3,10,25,34,36,102],rare:[52,88],raster:98,rate:10,rather:[5,18,20,24,26,46,50,71,72,79,84,86,88,90,97,98,106,109,110,111,123,126,129],ratio:[5,11,20,38,48,52,74,87,90,98,108,110,111,112],raw:[22,110],reach:[71,98],reachabl:89,reaction:86,read:[1,4,11,24,25,26,28,34,37,38,39,43,48,54,57,65,67,68,70,71,72,83,88,89,95,97,108,112,113,114,117,118,121,123,126,127],read_:[82,89],read_aux:89,read_data_lin:95,read_head:123,read_netcdf:123,read_output:26,readabl:[68,88],reader:127,readi:[39,64,65,67,68,70,91],readm:[22,42,68,126],real:[37,46,68,88,95,98,125],realiti:37,realli:[5,73,88,126],reason:[37,43,52,53,55,68,84,86,88,98,99,110],rebas:[24,71],recal:[1,9,98],recalcul:103,receiv:73,recent:[10,20,22,23,25,40,41,42,45,46,53,58,60,69,73,121],recogn:[35,121],recommend:[4,25,26,28,53,57,79,84,85,88,90,91,93,94,110,112,113,114,127],recompil:[24,30,31,45,53,95,126],recomput:[60,64,103],reconstruct:[22,81,90],record:[26,34,92,98,125],recov:24,recoveri:68,recreat:[24,30,45],rect:25,rectangl:[5,25,99,123],rectangular:[5,6,12,13,25,26,35,43,52,79,98,99,111,113,121],recurs:[41,50,102],red:[2,3,32,34,43,58,73,100,109],redhat:96,redirect:[41,42],redistribut:[44,62],redraw:[48,60],reduc:[5,12,68,88,129],ref:[68,88],refactor:[68,88,102,103,104],refer:[18,22,25,28,33,35,48,64,68,72,74,75,79,87,88,90,92,98,105,121,123,125,126],referenc:107,refin:[3,4,6,7,13,20,37,48,54,55,64,77,98,109,110,111,112,120,121,126],refinement_data:113,refinement_ratios_i:[7,111,112],refinement_ratios_t:[111,112,113],refinement_ratios_x:[111,112],reflect:[4,12,24,110,112,114],reflog:68,refresh:[10,34,72],regard:4,regardless:[10,99,110,113],regener:45,region00:43,region:[3,5,10,12,20,22,26,37,38,43,46,55,98,107,111,112,121,123],regiondata:[29,99,112],regions2kml:43,regist:42,registr:123,regress:[20,22,24,40,76,84,119],regrid:[29,99,102,103,111,112],regrid_buffer_width:[99,111,112],regrid_interv:[99,111,112],regular:[26,123],reiter:88,reject:[83,90,110],rejoin:71,rel:[10,18,25,30,35,37,52,53,58,68,69,73,95,103,104,107,111,113,115,121,125],relat:[3,20,55,68,71,87,107],releas:[16,20,22,42,61,90,91],relev:[20,23,31,35],reli:[55,65,85],relief:[98,107,125],reload:123,reltol:95,remain:[26,68,86,95,102,117,118],rememb:[11,23,24,53,58,68,71,84,108,117,118],remind:[68,71,98],remot:[10,39,68,69,70,71,72,123],remote_directori:123,remote_topo_url:123,remov:[1,3,18,30,43,45,49,60,68,84,102,123,124],renam:[18,20,28,72,86,90],render:[20,43,127],reorder:[18,20],reorgan:[20,65,101],repeat:[60,72,105],repeatedli:[3,84,91],replac:[5,10,26,34,37,57,65,69,73,75,84,85,86,87,88,92,95,102,123],replace_no_data_valu:123,replace_valu:123,replai:68,replot:60,repo:[68,71,72],report:[25,26,40,42,88,100,110,112,119],repositori:[14,16,20,22,24,26,35,40,41,45,51,71,73,76,78,90,100,116,119],repres:[25,29,64,68,79,86,87,90,92,99,123,129],represent:[68,71,79,89,95,123],reprint:62,reproduc:[13,44,62],request:[25,41,51,54,64,68,69,71,72,73,79,83,86,89,98,100,123],requir:[3,4,12,18,20,22,23,28,30,36,37,42,48,52,55,57,60,64,65,72,73,79,82,85,86,90,91,92,94,95,98,99,102,103,109,110,111,112,113,114,121,124,127,129],rerun:[31,34],rescal:25,research:[4,13,35,37,62,90,98],reserv:[44,62],reset:[31,68,95],reset_count:95,resetplot:[58,60],resid:[42,45,79],resolut:[4,5,13,25,34,79,90,94,95,98,102,106,107,113,121,123,125,126],resolution_limit:123,resolv:[4,26,41,68,98],resourc:[13,24,35,69,76,81,120],resp:[18,25],respecitv:25,respect:[25,26,43,81,82,87,123],respons:[10,37,64,89],rest:[20,60,68,71,88,107,117,118,121,123],restart:[10,22,34,60,81,110,112,114],restart_fil:[105,110,112,114],restor:5,restrict:[88,113,121],restructur:[8,41],result:[1,3,4,6,9,13,22,25,26,27,28,34,36,37,42,43,45,46,48,51,52,57,58,59,60,63,67,75,81,87,88,91,95,98,99,100,102,110,111,112,113,114,119,123,125],retain:[44,62],retak:[110,112,114],retreiv:98,retriev:[10,36,60,65,90,98,123,125],return_topo:123,return_xarrai:123,reus:88,reutil:65,reveal:[34,94],review:[13,74,76],revis:[5,68],reword:68,rewritten:25,rgb:58,rho:[48,87,94,112],rho_l:87,rho_r:87,rhou:48,rhov:48,richardson:[20,29,111,112],rid:24,riemann:[4,7,18,20,21,22,24,35,42,51,55,62,64,79,80,88,90,91,92,94,110,112,114,117,118,129],riemann_solv:90,right:[26,44,46,51,52,62,68,69,71,79,84,86,87,88,92,94,98,106,129],rigid:25,rigin:25,rigoutsi:5,rigoutso:13,rise:[25,107],rise_fract:25,rise_shap:25,rise_tim:25,rise_time_start:25,rjl:[5,13,96],rjlevequ:[4,24],rjlkei:10,robust:[35,123],rock:52,roe:[74,87,88],roman:42,root:[82,83,89],rossbi:75,rossmanith:13,rotat:38,rough:46,roughli:98,roundoff:79,routin:[4,5,12,18,22,23,25,26,28,29,34,35,45,48,49,53,54,55,57,60,62,65,67,79,82,85,86,88,90,92,93,96,99,102,103,106,110,112,114,123,124,126,127,129],row:[25,74,99,121,123],rp1:[106,129],rp_:87,rp_sourc:86,rpn2_vc_advect:104,rprint:[111,112],rsphere:[36,65],rst:[22,41,78],rsync_clawpack:41,rule:[10,39,43,65,70,88],run1:45,run:[1,5,6,9,10,12,14,18,20,22,24,26,29,30,34,40,41,43,45,46,48,49,51,54,55,57,58,60,63,65,67,69,76,78,79,80,81,83,86,91,93,94,95,98,99,100,102,103,105,106,112,113,114,119,123,126],run_app_from_main:95,run_data:67,run_exampl:123,run_seri:95,runclaw:[40,103,106],rundata:[20,26,29,34,43,98,99,102,105,110,111,112,113,114],rundir:67,rung:[81,90],runmak:67,runnabl:95,runtest:84,runtim:[51,95],runup:46,ruptur:25,rupture_tim:25,rupture_typ:25,s_1:87,s_2:87,s_3:87,s_l:87,s_m:87,s_r:87,safe:[53,72],safer:45,safeti:74,sage:[22,88],sagemath:[42,66],sagemathcloud:66,sai:[10,12,24,43,68,71,93,99,105],same:[3,5,10,12,20,24,26,34,35,36,37,39,43,46,49,55,57,58,59,60,64,68,70,74,79,81,83,86,87,88,90,95,96,98,102,103,105,106,110,111,112,113,117,121,123,126],sampl:[13,22,31,35,100,105,110,111,123,126],san:42,sanromd:42,satisfact:72,satisfi:[73,90,99,129],save:[10,22,40,42,43,54,67,68,69,90,98,105,123],savecod:67,savefig:43,scalabl:[13,81,88],scalar:[23,25,83,92,110,129],scale:[4,25,38,48,55,81,98,102,113],scari:71,scatter:[3,20,48],scenario:[37,107],scheme:[74,87],schlieren:[3,48],sci:13,scienc:[13,62],scientif:[4,13,81,84,96],scipi:[10,65,96,123],scm:69,scp:10,scratch:[36,94,98],scratch_dir:98,screen:[10,24,43,67,83,84,88,112,114],screenshot:10,script:[8,17,18,25,30,34,41,42,45,48,55,57,62,65,75,80,81,84,88,90,95,96,98,100,109,113,114,123],scroll:[10,98],sea:[25,35,37,52,97,98,107,113,121,123,125],sea_level:[26,37,43,87,113,121,123],seab:46,seafloor:[25,37,52,125],sealevel:[22,35,113],search:[1,10,22,81,88,95],sec:25,second:[3,12,25,26,29,36,42,43,48,64,71,79,90,98,99,102,105,110,123,126,129],section:[5,10,12,28,31,35,37,48,57,60,68,69,71,88,98,105,110,113,123],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,41,42,44,45,46,48,49,50,52,53,54,56,57,58,59,60,61,62,65,67,68,69,72,73,75,79,81,82,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,121,123,124,125,126,127,128,129],seek_gzip_factori:68,seem:[92,109,121],seen:[9,20,26,28,37,53,86,110,115],segement:123,segmentedplanefault:25,seism:[13,25],seismic:25,select:[10,12,24,26,68,90,98,102,110,113,125],self:[25,88,90,123],semi:90,send:[10,51,72,86],sens:[23,129],sensibl:[68,71],sensit:[37,46],sent:[83,92],separ:[1,43,68,72,81,88,90,123],seper:95,sequenc:[18,20,73,84,88,91,94,95,98,102,106,126],seri:[39,70],serial:[22,84,89,95],server:[10,41],servic:[22,42,44,62,68],session:[1,28,81,85,91],set:[0,1,2,3,5,7,10,11,12,14,20,22,23,25,26,28,29,30,31,34,36,37,38,40,41,43,45,50,51,52,53,54,55,56,57,64,65,67,68,69,71,73,75,79,80,81,83,84,87,88,89,90,91,92,93,94,95,97,99,100,102,103,105,106,108,109,110,111,112,113,114,115,121,123,124,125,126,129],set_all_st:89,set_aspect:38,set_aux_from_auxbc:92,set_corn:25,set_count:95,set_cparam:[64,92],set_dynamic_slip:25,set_num_ghost:92,set_printopt:79,set_q_from_qbc:92,set_subfault:25,set_xyz:123,setaux:[18,20,22,65,88,102,103,106,110,112,114],setaux_default:41,setdtopo:98,setenv:84,setgaug:[34,98],setlevel:83,setplot1:48,setplot2:48,setplot3:48,setplot:[0,1,2,3,6,14,17,18,20,22,34,49,56,85,86,95,124,127],setprob:[112,114,126],setregion:98,setrun:[5,6,12,14,17,18,22,26,28,29,30,35,37,43,45,46,54,55,58,97,99,102,105,106,107,121,124,126],setrun_setgeo:113,settopo:98,setup:[24,42,64,65,75,81,84,86,88,90,91,92],setup_gauge_fil:79,sever:[0,1,2,12,18,20,21,25,28,30,32,34,35,37,42,48,57,72,73,88,91,98,99,101,102,103,109,113,119,121,123,126],sftp:10,shaheen:83,shall:[44,62],shallow:[11,12,13,26,35,37,51,55,65,75,81,88,97,98,103,104,106,108,113,117,118,121,126],shallow_1d_pi:87,shallow_exact_1d:87,shallow_fwave_1d:87,shallow_hll_1d:87,shallow_roe_1d:87,shallow_spher:[65,73],shallowest:52,shape:[25,36,43,65,79,84,92,123],shapshot:10,share:[22,53,55,79,84],sharp:43,sharpclaw:[4,21,55,62,75,77,80,81,86,102,120],sharpclawnd:90,sharpclawsolv:90,sharpclawsolver1d:90,sharpclawsolver2d:90,sharpen:74,sharper:43,shear:[13,25],sheet:[39,70],shell:[42,53,58,60,66,84,91,94,96],shg:48,shift:[25,37],ship:26,shock:[5,13,37,75,90,99],shock_bubble_interact:[28,75,81,91],shockbubbl:86,shoot:22,shore:[26,35,98,113],shorelin:123,shoreline_xi:123,shorten:69,shorter:[3,99,123],shortli:100,shot:10,should:[0,1,2,3,4,5,9,10,12,16,17,18,20,22,23,24,25,26,28,29,30,31,34,35,37,41,42,43,46,48,49,50,51,53,57,58,60,65,66,68,69,71,72,73,78,79,82,84,86,87,88,89,90,91,92,93,94,95,97,98,99,102,103,105,106,107,109,110,111,112,113,114,121,123,124,126,128,129],shouldn:75,show:[0,2,3,25,28,34,41,43,45,48,60,68,71,72,73,79,94,98,100,123,124,126],showcolor:58,showgridlin:48,showitem:1,shown:[3,10,43,46,48,55,83,103,104,123,126],showpatchbord:48,shrink:123,shu:90,siam:[13,81],side:[5,12,26,46,52,88,98,100,106,129],sift:25,sift_slip:25,siftfault:25,sigma:64,sign:[10,58],signal:[68,72],signatur:[3,65,74,79,80,82,87,88],signific:[15,46,107,123],signitur:89,silenc:83,silo:127,similar:[10,12,26,34,42,64,65,72,73,86,88,90,94,98,121],similarli:[30,75,84,86],simpl:[26,28,65,72,73,81,86,87,90,95,98,123],simplest:[50,69,72,94],simpli:[10,24,26,28,34,45,64,67,73,75,83,84,88,91,98,115,121,123,126,127],simplifi:[57,58,73,98,105,126],simul:[28,35,37,48,67,79,81,84,86,91,94,98,113],sin:[36,58],sinc:[0,3,4,5,12,15,18,20,26,31,36,37,41,43,45,52,53,54,57,58,64,65,68,72,73,83,96,98,99,100,102,106,107,110,111,113,121,124,125],singl:[0,1,2,3,5,12,17,20,21,23,24,25,34,35,43,45,48,53,54,64,73,79,83,88,89,95,98,110,111,112,113,121,123,125,126],sisc:[13,81],sit:10,site:[24,42,51],situat:[48,68],size:[18,22,25,43,53,54,79,84,90,98,112,114,121,123],sketchi:69,skinni:0,skip:25,skiprow:25,slice:[3,48],slide:96,slider:43,slightli:12,slip:[22,25,35,98,121,125],slip_along_strik:25,slip_at_dynamic_t:25,slip_color:25,slip_distribut:25,slip_down_dip:25,slip_funct:25,slip_tim:25,slope:[25,90],slow:[10,83,93],slowli:[43,121],small:[12,46,73,98,99,100,102,105,110,112,113,121,123,125],smaller:[10,46,55,79,102,110,112,113,114,123],smallest:99,smear:43,smooth:[25,90,99,126],smooth_data:123,snapshot:24,snippet:[39,70],soc:[13,25],softwar:[5,10,22,37,42,44,49,62,73,81,88,96,115,121],sol:64,solid:[3,12,52,86,109,110,112,114],solitari:[13,51],sollut:52,solut:[1,3,4,12,20,22,23,34,36,42,48,51,52,54,60,65,67,73,79,81,82,83,86,87,88,90,92,93,94,98,99,105,106,109,110,111,112,114,119,126,129],solv:[4,7,12,18,28,37,63,65,67,77,79,81,86,87,88,91,98,106,110,121,126,129],solver:[4,5,18,20,21,22,24,35,42,62,63,67,77,79,80,83,88,92,104,110,112,114,117,118,129],solver_typ:[75,90],some:[3,4,5,6,9,12,13,14,17,18,19,20,21,22,23,24,25,26,28,31,34,35,37,38,39,41,42,51,52,53,54,57,59,60,62,65,66,69,70,71,72,73,74,76,83,85,86,89,91,92,93,94,96,98,99,102,103,104,106,107,109,110,111,112,113,114,115,119,121,123,126],someon:[24,68,71],someth:[10,22,23,45,50,68,69,72,73,83,88,89,90,121,124,126],sometim:[26,45,58,64,68,83,107,125],somewhat:[53,57,99,100,110],somewher:[49,72,98],sonel:125,soon:90,sophist:[68,88],sorin:4,sort:[10,109],sound:[64,68,87,94],sourc:[21,22,25,35,41,43,44,46,51,57,62,65,72,73,75,79,80,88,90,91,93,94,95,96,107,110,112,113,114,116,117,118,121],source_list:95,source_split:[79,90,110,112,114,126],sourceforg:42,southernmost:98,space:[5,6,12,13,25,26,29,34,52,79,86,88,98,99,105,110,111,112,113,114,121,123,126],spacial:113,span:[36,43],spatial:[5,13,22,25,29,46,86,98,99,102,106,112,114,129],spawn:73,specfi:123,special:[4,12,22,35,44,55,62,88,96,99,123],specif:[3,20,22,24,25,34,36,44,46,62,63,65,67,72,82,87,89,95,98,109,110,111,112,113,114],specifi:[0,1,2,3,4,5,6,11,12,14,18,20,22,23,25,26,27,29,30,31,34,35,36,37,40,43,45,46,48,52,53,54,55,56,57,59,64,67,73,79,86,88,89,90,93,95,97,102,105,106,107,108,112,114,115,117,118,121,123,124,125,127,129],speed:[26,64,74,87,88,94,106,110,113,123,126,129],spell:58,sphere:[22,36,65,103,113],spheric:13,sphinx:[8,21,22,78],split:[5,53,79,90,110,112,114,126,129],spot:58,sprint:[111,112],spuriou:[12,73],sqrt:[3,26,46,64,86,87,94,112],squash:68,src1:[118,126,129],src1d:[22,118],src2:[65,118,126],src3:[118,126],src:[5,8,11,12,17,18,22,25,26,30,31,36,40,43,45,48,52,53,59,73,85,86,95,97,99,100,103,106,108,110,112,114,117,123,124,129],src_split:[110,112,114],srcn:[110,126],ssh:[10,68,72],ssp104:90,ssp33:90,ssplmm32:90,ssplmm43:90,ssplmm:90,ssprk22:90,stabil:[90,110],stabl:79,stack:53,stage:[68,90,107,121,123],stand:[4,88],standard:[5,12,25,48,54,65,74,88,90,96,100,106,112,113,114,115,121,126,129],start:[1,2,4,5,6,10,23,25,26,28,30,35,36,42,43,45,50,58,60,64,68,72,73,84,89,90,96,105,113,120,121,126],start_fram:89,start_max:26,stat:69,state:[10,13,24,52,58,64,65,67,68,73,79,81,83,84,86,87,88,89,90,93,94,106,110,121,129],statement:[28,48,54,88,96,98,112],station:[36,107,125],stationari:121,statu:[10,39,40,67,68,69,70,72,94],steadi:[52,121],steep:129,stegoton:[51,75],stencil:92,stencil_width:92,step1:88,step2:65,step2qcor:65,step:[5,12,17,22,24,26,28,34,41,42,48,57,60,62,63,64,65,67,72,83,86,90,92,94,98,99,102,105,106,110,111,112,113,114,121,129],step_hyperbol:90,step_index:90,step_interv:112,step_sourc:[79,86,90],steps_max:[110,112,114],sternli:68,stiff:110,still:[1,6,7,10,12,20,26,34,35,42,48,54,57,62,68,88,90,99,100,105,113],stnd:36,stop:[22,53,58,68,102,112,114,123],store:[0,1,10,24,26,30,48,54,86,92,93,94,98,100,102,109,111,113,119,121,123],storm:13,str:[0,1,3,25,43,110,111,123],straightforward:68,strang:[68,79,90,110,112,114,126],strategi:5,stream:58,stress:[64,83,88],stretch:123,strict:[44,62],stride:[20,123],strike:[25,52,98],strike_direct:[25,98],string:[0,1,3,6,25,36,43,58,65,67,74,79,82,88,89,95,96,110,113,123],strip:[43,123],strip_archive_extens:43,strong:90,strongli:48,structur:[6,20,26,55,89,90,98,109,123],structured_array_extens:68,stuck:68,student:4,studi:[37,46,98],stuff:[68,71],style:[5,20,25,38,54,58,62,67,73],sub:[25,73,123],subclass:[25,88],subdirectori:[18,20,21,28,41,42,45,50,60,75,100,109,113,115,119,123],subdivid:25,subdividedplanefault:25,subdivis:25,subduct:[37,52],subfault:[25,52,98,125],subject:[99,111,113],submit:[51,98],subpackag:88,subplot:[0,25,60],subrepositori:24,subroutin:[4,5,12,20,26,29,88,99,106,110,111,126,129],subsequ:[3,48],subset:[25,123],substanti:[62,68,73,76],substitut:[44,62],subsurfac:[98,121],subvers:70,subversion_:39,succeed:90,succesfulli:65,success:[48,89,123,126],successfulli:[42,45,68,89],succinctli:68,sudo:69,suffici:[10,12,18,53,88,98,102,113],suffix:123,suggest:[4,36,60,72,88,113],suit:73,suitabl:[7,12,18,35,37,89,98,106,107,123],sum:[83,92],sum_:129,sum_p:129,summar:[3,29,69,88,99,101,126],summari:[69,76,88,110,111,112,113],summit:69,superbe:[74,110,112,114],superbee_limit:74,superclass:90,supercomput:[81,83,84],superpack:96,superposit:52,superpow:74,superpower_limit:74,supplement:115,supplementari:73,suppli:[29,99,126,129],support:[4,10,20,22,37,42,62,64,65,73,79,82,83,85,87,90,98,110,121,127],suppos:[12,29,48,58,68,98,99],suppress:[0,2,3,43,73,110,111],sure:[1,18,24,30,41,48,55,64,68,69,73,84,86,89,93,95,98,107,123,124,125],surfac:[13,20,22,25,26,35,37,52,59,65,81,94,97,98,113,121],surface_or_depth:59,surg:13,surround:[99,123],surviv:62,svn:[39,70],swap:123,swaphead:[98,123],sweep:7,symbol:[3,42,48],symlink:42,symmetr:[3,36,126],symmetri:12,syntax:[8,88],sys:[67,112,114],system:[4,12,13,21,42,43,53,54,62,73,81,83,84,86,87,91,94,96,106,110,112,114,126,129],systemat:20,t0000:48,t0001:[48,49],t0002:48,t_end:90,t_n:106,tab:[10,88],tabl:[43,46,57,69],tackl:73,tag:[111,112],tailor:68,take:[5,20,23,24,25,36,41,46,48,51,58,64,68,72,73,79,86,90,94,95,98,99,110,111,112,113,123,126,129],take_one_step:90,taken:[5,26,52,90,98,99,110,126],tall:0,tan:58,tangl:68,tank:[12,37],tar:[10,21,42,43],tarfil:42,target:[58,65,86],task:[57,68],tchknnnnn:105,tcp:10,tcsh:84,teach:[35,37,98],team:[4,81,88],tear:68,technic:[39,70,88],techniqu:13,technolog:62,tell:[49,54,58,64,69,72,98],templat:65,temporari:92,temporarili:48,ten:[4,55],tend:90,tend_max:26,tensil:13,tensor:25,tensorproductfault:25,terhorst:69,term:[4,22,35,37,44,65,79,80,88,90,99,110,112,113,114,117,118],termin:[42,66,110,111],terrain:46,terrel:4,test:[20,22,25,28,31,40,46,57,62,63,65,68,69,72,76,80,87,95,98,99,103,114,123],test_acoust:73,test_app:[73,95],test_bugfix:69,test_dtopotool:25,test_my_bug:72,test_shallow_spher:73,test_topotool:[103,123],tex:1,text:[8,41,43,54,67,68,69,71,88,90,96],tfinal:[64,67,94,98,105,110,112,114],tfluct:[88,90],tfluct_solv:90,than:[3,5,10,12,18,20,22,24,25,26,34,43,45,46,50,54,57,60,64,65,67,71,72,73,79,83,84,86,87,88,90,95,96,98,99,102,105,106,107,109,110,111,113,121,123,126,129],thank:[4,69,72,81],thei:[3,5,10,12,23,25,26,29,37,43,48,54,57,68,73,79,86,88,90,95,99,100,105,109,113,121,123,126],them:[10,16,20,24,25,26,29,41,48,49,51,55,62,64,68,72,73,75,82,83,84,86,95,98,99,103,116,123,126],theori:[44,62,88,129],therefor:[65,84],thereof:10,thesi:90,theta:74,theta_limit:74,thi:[0,1,2,3,5,7,8,9,10,12,13,17,18,20,22,23,24,25,26,27,28,29,30,31,34,35,36,37,40,42,43,44,45,46,48,49,52,53,54,57,58,60,62,64,65,67,68,69,71,72,73,74,75,79,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,102,103,105,106,107,109,110,111,112,113,114,115,116,121,122,123,124,125,126,127,128,129],thing:[0,10,12,20,24,37,39,43,60,70,72,73,75,76,96],think:[46,68,72,87,88],third:[12,26,74,123],thn:110,thoroughli:[82,88],those:[4,5,9,20,37,39,42,55,64,65,67,68,70,71,72,83,86,92,98,100,102,105,115,119,123,126],though:[3,55,88,121],thought:[68,107],thousand:[4,55],thread:[31,53],three:[3,10,13,20,25,26,37,48,68,73,77,84,89,95,98,110,113,121,123,126],threshold:46,through:[4,10,22,24,28,29,34,37,48,55,57,65,72,86,92,94,95,98,99],thu:[5,36,86,88],thumb:[39,70],tick:98,ticklabel_format:38,tidal:[83,107],tide:[22,34,36,98,107,123],tidesandcurr:36,tier:10,tild:129,time:[0,1,5,6,12,14,18,20,22,23,25,26,27,28,29,30,34,35,36,37,42,43,48,49,53,54,55,58,62,64,67,68,72,74,81,83,88,90,92,94,98,99,100,102,105,106,109,112,114,121,124,125,129],time_files_scanf:127,time_integr:90,time_zon:36,timespan:43,timestep:[67,83,110,112,114],timezon:43,tip:[22,24,35,39,70,76,80,86,96],tipe:94,titl:[0,1,4,13,22,34,43,68,81,123],title_with_t:[0,58],tmp:68,tmpp0jqt8z_:39,toctre:[33,75,81],todo:[12,26,99,105,106,123,129],togeth:[12,24,25,52,99],toggl:112,tohoku:98,toler:[26,73,87,95,99,111,112,113],too:[5,36,98,112,114],tool:[6,7,13,20,21,24,25,28,35,36,37,39,42,43,48,52,56,57,58,59,70,81,88,98,103,104,115,120,121,123,127],toolkit:[84,127],top:[0,1,3,8,21,25,42,50,51,52,58,68,71,73,86,87,88,98,100,105],topgraphi:123,topic:48,topo1writ:123,topo2kml:43,topo2kmz:43,topo2writ:123,topo3writ:123,topo:[22,37,43,59,102,104,107,113,121,123],topo_data:[98,113],topo_fil:123,topo_file_nam:43,topo_fnam:123,topo_func:123,topo_path:98,topo_typ:[43,98,123],topo_upd:102,topofil:[43,98,113,123],topographi:[12,13,22,26,37,43,46,52,59,102,103,104,107,117,118,122],topograpi:121,topotool:[36,43,98,103,104,121,122],topotyp:[98,113,121],topotype1:123,topotypein:121,topotypeout:121,torrilhon:74,tort:[44,62],torvald:[39,70],tos:[39,70],total:[5,25,83,90,110,111,112,114],total_step:[110,112,114],tout:114,toward:[4,25],tprint:[111,112],trace:83,traceback:58,track:[22,24,42,53,64,69,71,73,95,100,102,113],tracker:73,tradeoff:99,tradit:[55,67,82],traffic:[106,126],trail:43,tran:13,tranpsort:110,trans_cor:79,trans_inc:79,transect:[26,113],transfer:22,translat:[52,98,107,125],transliter:88,transmiss:90,transmit:110,transpar:43,transport:[110,112,114],transvers:[7,79,106,110,126,129],transverse_wav:[79,110,112,114],trap:31,travel:111,travi:20,tree:[42,72,86],triangular:25,trigger:113,tripl:88,troubl:[22,28],troubleshoot:[22,81],truli:89,truncat:12,trunk:[72,76],tscale:43,tstart:90,tstart_max:26,tsunami:[12,13,22,26,35,46,52,83,102,107,113,121],tt1:98,tt3:[98,123],tupl:[3,25,36,43,58,79,83,123],turbul:[37,90],turn:[35,37,43,58,68,83,100],tutori:[10,22,60,63,67,76,81,91],tvd:[64,79,90,129],twice:110,two:[0,3,4,6,7,11,13,20,24,25,26,29,34,36,42,43,48,54,58,64,72,73,79,82,86,88,90,93,95,98,99,100,102,105,106,108,112,113,121,123,126,129],two_d_classic_sourc:65,txt:[40,42,62],type:[3,4,6,10,18,25,28,30,34,45,48,58,59,60,64,65,66,68,72,74,79,84,85,88,90,91,94,95,96,98,111,112,113,121,123,129],typic:[3,18,48,52,54,55,60,65,73,84,86,90,92,98,99,111,112,125,126,129],typo:68,u_l:87,u_r:87,u_t:[87,94],u_x:94,ubar:87,ubuntu:[10,69,96],ucar:49,ucsb3:98,ucsb:[25,98,125],ucsbfault:25,ufunc:69,ulimit:53,ultrabe:74,unavail:23,uncertainti:[37,46],unchang:[27,48],uncommit:[24,40],undefin:93,under:[4,6,20,35,42,44,57,62,77,79,88,100],underflow:102,underli:3,underlin:73,underscor:88,understand:[22,28,37,39,57,81,88,94,106],understood:37,underwat:[35,98],undivid:99,unexpect:[36,43],unidata:49,uniform:[25,52,55,65,121],uniformli:121,unind:43,union:121,uniqu:[1,54,71],unit:[25,35,36,69,79],univers:[4,13,41,44,62,89],unix:[30,50,96,98],unknown:[25,92],unkown:92,unless:[5,24,30,31,34,43,87,98,107,110,123],unlik:54,unlimit:53,unmap:79,unmodifi:72,unnecessarili:103,unpack:98,unpredict:48,unrecogn:95,unsplit:[79,110,112,114],unstructur:123,unsuccess:89,unsur:110,untar:42,unterweg:62,until:[10,98],untrack:68,unus:2,unwant:68,unzip:98,upbnd:[111,112],updat:[5,10,20,22,24,26,38,60,69,73,76,90,92,93,102,106,111,112,114,116,126],update_saved_valu:90,updip:25,upon:92,upper:[20,26,74,79,86,98,110,112,114,121,123],upper_bound_limit:74,upper_glob:79,uprint:[111,112],upstream:[39,68,69,70,71,72],upstrik:25,upward:37,upwind:110,url:[4,13,68,72,81,123],usabl:88,usag:[0,1,2,3,10,42,82,88,123],usc0001xgp:98,use:[3,4,9,10,18,19,20,22,24,25,26,28,30,31,35,36,37,39,42,44,45,46,48,49,53,54,56,57,58,60,62,64,65,67,68,69,70,72,73,74,75,79,81,82,83,84,86,87,88,90,91,92,93,94,95,96,98,103,106,107,110,111,112,113,114,121,123,124,125,126,127,129],use_fwav:[106,110,112,114],use_petsc:[75,84],used:[0,1,2,3,4,5,6,7,8,10,12,14,18,20,21,24,25,26,28,30,31,34,35,36,37,39,40,41,43,44,45,46,48,49,50,51,52,53,54,55,57,58,60,62,64,65,67,69,70,72,74,75,79,81,84,86,87,88,89,90,92,94,95,97,98,99,100,103,105,106,107,109,110,111,112,113,114,117,121,123,124,126,127,129],useful:[0,3,17,23,24,26,28,31,34,35,38,40,42,43,53,54,59,62,65,68,69,73,83,88,96,98,99,100,106,110,111,113,121,123,129],useoffset:38,user:[0,2,3,4,5,9,10,17,18,20,21,22,23,24,26,29,31,37,39,43,46,48,58,65,66,68,69,70,72,73,75,84,88,93,95,96,99,110,112,113,114,116,123,129],user_bc_low:86,usernam:24,uservari:48,uservariablefil:48,uses:[25,26,28,48,55,65,67,69,73,79,84,95,100,106,123,129],usg:[4,25,98,125],usgs100227:98,usgs_subfault:98,using:[0,1,3,4,5,6,8,9,10,12,13,17,20,21,22,25,26,28,31,34,35,36,38,42,43,45,46,49,50,51,52,53,54,55,57,58,59,60,64,65,66,67,68,72,73,74,79,81,84,85,86,87,88,90,92,93,94,96,98,99,106,110,112,113,118,121,123,125,127,129],usr:49,usual:[0,2,3,5,25,34,35,43,45,49,52,54,68,75,79,84,86,87,90,95,99,110,111,112,113,114,124,126],utc:43,util:[21,24,54,57,60,73,81,109,122,123],uwamath:10,valid:[3,37,52,67,83,89,92,113,123],valout:[49,54],valout_geo:49,valout_nc:49,valout_nc_geo:49,valu:[3,5,6,12,18,20,22,23,25,27,28,31,34,36,38,40,43,45,46,48,53,54,58,65,73,79,81,83,86,87,88,89,90,92,94,95,98,99,100,102,103,105,106,107,110,111,112,113,114,119,121,123,124,126,129],valueerror:[25,123],valuemax:26,van:[74,90,110,112,114],van_leer_klein_sharpening_limit:74,vanleer:[64,90,110,112,114],vari:[3,11,13,22,25,35,46,86,89,98,106,107,108,121,129],variabl:[0,3,10,20,22,23,24,25,26,28,30,34,35,40,48,50,53,55,58,64,65,84,88,89,90,92,93,95,98,106,110,111,112,114,123,124,126],variable_dt_refinement_ratio:[111,113],variant:[18,73,95],varieti:[67,96],variou:[18,20,25,37,48,58,60,69,79,94,96,98,99,109,113],vastli:107,vector:[20,64,74,83,88,92,106],veloc:[12,26,36,48,60,86,87,94,107,110,111,112,114,126],verbatim:41,verbos:[25,36,43,67,73,79,83,90,110,112,114,123],verbosity_regrid:[111,112],veri:[3,12,20,22,37,43,51,52,58,62,65,69,72,73,83,84,85,86,90,98,100,103,110,119],verifi:[36,73,95,125],verifyerror:95,version:[0,1,4,5,6,8,10,11,12,15,18,20,21,22,24,26,27,31,35,37,43,46,48,53,57,58,60,65,68,73,74,81,84,87,90,91,93,96,99,100,102,103,108,110,111,112,113,114,117,118,121,123,126,129],versu:123,vertic:[25,37,43,107,113,123,125],via:[10,14,20,21,24,25,28,31,34,35,37,42,45,48,53,55,58,64,68,79,85,89,91,93,99,100,115,117,118,119,121,123,126],video:[39,70],view:[3,4,20,22,28,34,35,41,43,51,54,57,59,60,64,72,84,91,115,116],viewabl:67,viewable_attribut:67,vim:[69,73],violat:[90,123],virtual:[4,10,22,23,42,92,96],vis:67,visclaw:[1,6,10,20,21,24,34,35,38,42,45,48,55,58,59,60,81,85,91,109,115,120],visibl:[10,115],visit:[20,22,57],visual:[21,24,28,34,48,54,55,57,68,81,85,86,120,127],volcano:4,volum:[4,13,14,26,32,43,48,81,111,121,126],w_1:87,w_2:87,w_3:87,wai:[5,10,12,22,24,28,34,39,43,44,58,60,62,64,67,68,69,70,71,72,75,79,84,86,88,89,91,94,96,98,102,109,110,116,121,126,129],wait:10,wakari:42,wall:[12,31,86,94,110,112,114],wang:25,want:[0,3,10,17,18,24,26,28,30,31,34,36,40,41,42,43,45,46,50,53,58,60,64,65,66,67,69,72,73,76,83,84,98,106,109,112,113,116,121,123,124],wari:87,warm:74,warmli:72,warn:[73,82,83,90,110,124],warranti:[44,62],washington:[4,41,44,96,123],water:[12,13,22,35,36,37,43,51,55,65,81,88,98,103,104,106,107,113,121,123,125,126],water_level:36,wave:[4,5,12,13,26,37,51,74,79,81,86,87,88,90,98,99,107,110,111,112,113,114,126],wave_toler:113,wavelength:37,wdiff:69,web:[21,22,28,41,42,73,96,115,123],webpag:[14,20,22,28,35,45,96,107],webserv:10,websit:[12,98,115,123],webster:69,week:69,welcom:62,well:[5,24,35,42,43,52,53,54,55,57,60,68,69,88,89,90,105,110,111,117,118,121,126,129],wendroff:[79,90,110,112,114,129],weno:[22,55,77,81,90],weno_ord:90,went:68,were:[4,5,18,42,48,49,65,99,102],west:[98,121],western:[98,123],wet:35,what:[5,10,20,22,24,25,34,37,40,41,42,43,45,48,49,54,64,67,68,73,88,89,92,94,96,98,99,107,109,110,112,113,114,115,121,123,125,126],whatev:[49,64,89],when:[11,12,18,24,25,26,30,34,38,40,41,42,46,48,52,53,54,55,57,58,60,64,68,69,72,73,76,83,84,85,90,93,100,102,103,106,107,108,109,110,111,112,113,114,115,121,123,124,125,126,127,129],whenc:83,whenev:[24,126],where:[1,3,5,10,12,20,23,25,26,28,29,30,34,35,37,39,42,43,45,46,48,49,51,54,55,60,67,68,70,72,79,82,84,87,98,99,102,103,105,107,109,110,112,113,114,121,123,126,129],wherea:[34,57,84],whereev:98,wherev:[88,124],whether:[3,5,10,12,20,29,36,44,48,62,79,82,83,87,88,89,90,99,110,111,113,123],which:[0,1,3,4,5,6,8,10,12,18,20,22,24,25,26,28,29,34,35,37,41,42,43,45,46,48,52,53,54,58,60,64,65,67,68,69,72,73,74,75,79,82,83,84,85,86,87,88,89,90,91,93,94,95,96,98,99,100,102,103,105,107,110,111,112,113,121,123,125,126,129],white:43,whith:65,who:[17,20,26,31,37,42,69,71,72],whole:[73,83,84,88],whose:[3,58,65,86,87,88,110,111,123],why:[68,72,88],wide:96,wider:58,width:[25,43,52,54,79,86,88,92,98,99,112,114],wiki:91,wikipedia:88,wind:123,window:[10,25,42,48,60,69,96],wisdom:43,wise:[73,90],wish:[4,10,11,20,24,28,34,37,42,48,56,57,73,81,86,90,91,93,98,105,108,115,117,118],within:[5,12,29,55,58,66,85,88,95,99,106,109,115,123],without:[12,20,22,24,30,34,37,43,44,45,48,58,60,62,68,73,74,82,83,95,96,112,114,124,126],won:[10,65,88,123],word:[68,69,83,88,98],work:[3,7,10,12,17,18,20,22,24,26,28,29,30,35,37,39,41,42,43,48,50,52,53,58,62,63,64,67,68,70,72,73,74,81,82,83,84,87,90,91,96,98,99,100,104,106,109,110,111,113,115,121,128],workflow:[72,76,81],workspac:[48,92],world:[37,46,81,84],worri:68,worst:107,worth:92,worthwhil:86,would:[2,3,10,12,23,24,26,45,54,58,62,64,67,68,73,79,83,88,95,98,107,109,110,121,126],wpalg:13,wrap:[43,62,65,79,90,95],wrapper:123,write:[25,40,46,54,55,57,64,67,68,69,71,72,76,79,80,83,84,89,98,112,114,123],write_:82,write_aux:[82,89],write_aux_alwai:[64,67],write_aux_init:[64,67],write_input_data:26,write_p:89,written:[5,8,25,30,43,44,54,55,58,62,68,82,83,86,96,110,111,112,113,114,123,126],wrong:[48,68,83],www:[4,10,13,25,41,44,49,62,65,66,79,81,84,98,123],x_cell:43,x_edg:43,x_i:[106,126,129],x_inch:43,x_mask:123,xarr:79,xarrai:123,xarray_d:123,xclaw:[28,67],xclawcmd:67,xclawerr:67,xclawout:67,xcode:42,xdir:67,xiaom:25,xleft:[111,112],xlf:91,xlimit:[0,34],xllcenter:98,xllcorner:121,xlow:54,xlower:[0,3,12,20,23,65,98,112,114,121,123,126],xlowerg:65,xmax:0,xmin:0,xpoint:113,xrang:86,xtick:38,xupper:[0,20,98,112,114,123],xxdiff:100,xxxx:48,xylim:25,xzvf:42,y_cell:43,y_edg:43,y_inch:43,year:[4,13,20,43,81,101],yellow:[43,58,69],yellow_red_blu:58,yes:48,yet:[1,10,18,37,43,57,90,110,112,128],yianni:62,yield:3,yleft:[111,112],ylimit:[0,34,109],yllcenter:98,yllcorner:121,ylow:54,ylower:[3,20,23,65,98,112,121,123],ylowerg:65,ymax:0,ymin:0,yml:100,yong:13,you:[0,3,4,10,11,12,14,16,17,18,20,21,23,24,26,28,30,31,34,36,39,40,41,42,43,45,48,49,50,51,52,53,54,55,56,57,58,60,62,64,65,66,67,69,70,71,72,73,75,76,78,81,82,83,84,85,86,87,90,91,92,93,94,96,98,102,105,107,108,109,112,113,114,115,116,117,118,121,124,125,126,128],your:[5,11,12,17,18,22,28,31,34,39,41,49,50,53,57,58,60,62,63,64,65,66,69,70,71,73,75,76,80,81,83,88,93,94,96,97,98,99,102,108,117,118,121,124,126],yourdomain:[69,72],yourself:[31,34,51,68,72],ypoint:113,yum:69,yupper:[20,98,112,123],yuri:69,z_format:123,zaytsev:69,zero:[3,12,25,31,43,48,64,86,87,92,94,107],zip:[9,98],zlim:43,zlower:20,zone:[37,43,111,112],zoom:98,zsh:84,zupper:20,zvar:123},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Examples from the book FVMHP","Recent changes \u2014 release notes","Changes to master since v5.2.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Full Table of Contents","current_data","Developers\u2019 Guide","dtopotools module for moving topography","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","FVMHP book","Galleries of all Clawpack applications","Gauges","GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","git resources","Keeping track of git versions","Guide for updating this documentation","Installation instructions","kmltools module of utility functions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Development workflow","Installing and configuring git","git resources","Maintainer workflow","Contributing to PyClaw code development","General information for developers","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Information for developers","Future work","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Condensed Table of Contents","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":88,"catch":73,"class":[64,67],"default":[11,97,108,117,118],"function":[36,43,47,60,83,90,129],"long":71,"new":[35,50,68,73,75,88],"switch":48,"true":58,Adding:[75,86],For:22,Going:80,One:[106,129],The:[47,48,68,94,98],Use:93,Using:[10,49,53,83,86,90,109,126],about:[4,62],access:60,account:72,acoust:[87,94],adapt:[5,12,22,29],add:[58,88],added:88,addit:[111,113],advanc:[39,70],advect:87,after:105,afterfram:48,algorithm:[5,13,55,129],all:[3,33,42],altern:42,amazon:10,ami:10,amr:[3,5,20,53,99,111,113],amrclaw:[6,7,16,22,101,102,103,104,111,112,126],anoth:58,applic:[8,9,13,22,33,45,50,84],arrai:[54,93],arriv:113,ascii:[54,82],ask:68,attribut:[0,1,2,3,23,58],author:4,auto:[25,36,43,123],aux:[54,64],auxiliari:86,avail:14,axes:38,b4step:[11,126],background:58,basic:[63,85],bathymetri:[98,125],befor:126,between:58,bibliographi:[13,22],binari:54,book:[14,32],boundari:[5,12,86,126,129],branch:68,bug:73,build:78,built:[41,75],buoi:125,burger:87,capac:129,cautionari:37,cell:[5,29],cfl:74,chang:[15,16,20,58,68,71,90,101,102,103,104],chardiff:100,check:[71,73,88],checkpoint:105,choic:26,choos:5,cite:[4,81],clamshel:12,classic:[16,90,101,102,103,104,110,114],clawcode2html:8,clawpack:[9,10,13,15,17,18,19,20,21,33,42,45,55,61,65,90,91,114,128],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,58],clawutil:[16,102,103,104],clone:[24,72],cloud:66,code:[8,22,24,35,72,88,100,119,126],color:58,colormap:58,command:[48,60,75],comment:88,commit:[68,71],commun:73,comparison:100,compil:[31,42,45,49,93,116],compon:[21,58],comput:[55,105],condens:120,condit:[5,12,86,94,126,129],configur:[69,72],consid:68,content:[22,58,64,83,90,96,120],continu:100,contourf:58,contribut:[72,73],contributor:62,control:[64,67,94],convent:88,convers:18,convert:[8,17,18],coordin:38,copi:[50,72],correctli:84,coverag:73,creat:[10,26,48,50,64,72],creation:64,criteria:99,current_data:[23,60],curv:58,custom:90,dart:125,data:[54,109,113,121,123,124,125,126],debug:[58,111],defin:12,delet:68,depend:[73,74,91],depth:38,deriv:[64,83],describ:13,desir:109,detail:[68,69],develop:[22,24,42,68,72,73,76],differ:[55,58],dimens:[79,129],dimension:106,directli:10,directori:[45,50,58],displac:121,docstr:[25,36,43,88,123],doctest:73,document:[8,25,36,41,43,81,88,116,123],domain:[79,94],done:126,download:121,dtopo:[98,122],dtopotool:25,each:126,earthquak:[52,98,125],ec2:10,edit:68,elev:38,environ:[31,42],equat:[87,94],error:[73,93],euler:87,exampl:[9,14,22,28,34,35,48,50,51,56,75,84],exe:124,exist:50,explor:68,extra:41,extrapol:99,faq:58,fault:52,featur:68,few:71,fflag:31,fgmax:26,figur:58,file:[10,26,41,48,58,60,100,105,113,121,126],find:[10,58],finer:5,fix:[26,27,53,72,113],flag2refin:99,flag:[5,29,45,99,111],flow:[22,64],fly:57,fork:[24,72],format:[26,54],formul:129,fort:[54,58],fortran:[20,22,30,31,88,93,100,119,126],found:48,friction:46,from:[10,14,17,18,20,24,25,36,43,60,65,68,72,75,85,98,123],full:22,fund:[4,62],further:80,futur:77,fvmhp:[14,32],galleri:[33,48,78],gaug:[34,83,98,125],gener:[20,25,36,43,73,113,123],geo:113,geoclaw:[11,12,16,20,22,35,36,37,38,53,59,97,99,101,102,103,104,108,113,117,118],geometri:79,geophys:22,get:[22,48,72,98],gfortran:[31,91],ghost:5,git:[24,39,40,69,70],github:[24,68,72],godunov:129,grid:[5,12,26,27,53,79,113],guid:[24,41,98],guidelin:73,hazard:37,hdf5:82,help:48,high:[22,129],hint:[37,58,96],histori:[68,71],how:[58,60],html:[8,60],imagediff:100,includ:9,independ:74,indic:81,inform:[73,76],initi:[5,86,94,126],input:[20,26,82,110,111],instal:[24,42,49,55,69,84,91,93,96,119,124],instanc:10,instruct:[24,42,88],integr:[71,100],intel:31,interact:[60,75],interfac:55,interpol:26,iplotclaw:60,ipython:[51,75],item:58,keep:40,kmltool:43,latest:42,latex:60,latitud:38,launch:10,layout:88,level:24,licens:[4,44,62],limit:74,line:[60,75,100],link:19,list:75,local:[72,78,116],locat:34,log:[10,83],longitud:38,machin:128,main:72,maintain:71,make:[58,68,72,84,115,124],makefil:[30,45,86,105],man:46,manual:[39,70],mapc2p:47,master:[16,68],math:66,matlab:48,matplotlib:91,maxfram:48,maximum:113,merg:68,mesh:[5,22],mess:68,method:[0,1,2,3,22,129],might:68,mirror:68,model:[37,52,98,125],modifi:[24,105],modul:[25,36,43,81,95,96,112,114,123],monitor:[26,113],more:[30,68],most:24,motion:98,move:25,name:88,netcdf:[49,54,82],next:91,nose:91,note:15,notebook:[51,96],numpi:91,object:[79,109],obtain:91,okada:52,onli:42,onlin:[39,70],openmp:53,option:[57,60,84,86],order:[22,88,93],other:[13,21,42,58,68,98],out:24,outdir:58,output:[26,27,45,48,49,53,54,64,82,83,100,105,110,111,113,124],overview:[22,35,68,69,109],own:[10,72,86],packag:[20,42,82,87],page:[39,70],paper:13,parallel:[42,55,79,84,85,92],paramet:[20,34,58,60,94,98,110,111,113],pass:84,patch:[72,79],path:48,pcolor:58,peopl:68,petclaw:[79,92],petsc:84,piec:88,pixel:100,plot:[3,10,20,22,26,34,35,38,45,48,49,56,57,58,59,60,75,84,85,100,109,115,124,127],plot_typ:3,plotclaw:48,point:[24,72],port:65,post:57,prerequisit:42,previou:61,print:111,printfram:60,problem:[7,65,86,94,126],procedur:26,process:[26,57],produc:60,propag:129,provid:58,pull:24,push:71,pyclaw:[16,20,22,42,62,63,64,65,66,67,72,74,75,78,79,81,82,83,85,88,89,90,91,92,94,95,100,101,102,103,104,119],pyflak:73,pylint:73,python:[18,22,60,91,96,122],q0002:54,qinit:[97,113,121],quantiti:[64,83],quick:[72,98],raw:54,readm:8,rebas:68,recent:[15,24],recov:68,refer:[13,81,96],refin:[5,12,22,29,99,113],region:[29,99,113],regress:[88,100],releas:[15,101,102,103,104],remot:24,repositori:[9,21,68,72],request:24,requir:[96,126],resolut:129,resourc:[22,39,70],restart:[64,105],result:[10,35,49,85,115],review:68,rewrit:68,richardson:99,riemann:[16,81,86,87,101,102,103,104,106,126],routin:[11,20,59,97,108,117,118],rst:8,run:[28,35,42,64,66,73,75,84,85,110,111,124],sage:[66,96],sampl:[112,114],save:115,script:86,seafloor:98,sealevel:107,search:48,seri:71,serial:[42,73,79,92],servic:10,set:[24,35,42,48,58,60,72,86,98,107],setaux:[108,126],setplot:[48,58,60,109],setrun:[20,34,98,110,111,112,113,114],sever:68,shallow:87,share:[68,115],sharpclaw:[22,90],shoot:48,should:55,signatur:90,simul:64,simultan:73,sinc:16,singl:68,size:58,slip:52,softwar:[4,13],solut:[58,64,89],solv:94,solver:[55,64,81,86,87,90,94,106,126],some:[58,68,88,125],someth:58,sourc:[52,86,98,125,126,129],space:129,spatial:126,special:[3,111],specif:[26,73,94,126],specifi:[58,60,98,99,109,110,111,113,126],sphere:12,sphinx:[41,116],src1d:[117,126],src:[118,126],start:[22,98],state:92,step:[91,126],stop:10,substanti:72,summari:[39,68,70],surfac:38,t0002:54,tabl:[22,81,120],term:[46,86,126,129],test:[24,42,73,84,88,91,100,119],than:58,thi:[4,41],thing:68,tide:125,time:[110,111,113,126],tip:[30,38,84,88],titl:58,tool:[18,22,26,34,38,100,122],top:24,topo:[98,122],topographi:[25,35,98,113,121,123,125],topotool:123,track:40,transfer:10,travi:100,troubl:[48,124],troubleshoot:[93,124],trunk:[68,71],tsunami:[37,98,125],tutori:[39,70,94,96],tvd:74,understand:64,updat:[41,68],ups:68,use:55,user:[12,55,126],using:[37,48,126],util:[36,43,95],valu:[26,64],vari:126,variabl:[31,42,45,86],version:[30,40,42,61],view:10,virtual:128,visclaw:[16,22,57,101,102,103,104],visit:127,visual:22,wai:42,wakari:66,want:68,water:[38,87],wave:[106,129],web:10,webpag:[10,41,115],what:[58,60],when:88,which:55,without:42,work:[4,75,77,122,123,126],workflow:[24,39,68,70,71],write:[73,86,88],you:[68,88],your:[10,24,42,68,72,84,86,91,115,119]}}) \ No newline at end of file diff --git a/v5.2.x/setaux_defaults.html b/v5.2.x/setaux_defaults.html index e0e7ebcb7..97d8abeda 100644 --- a/v5.2.x/setaux_defaults.html +++ b/v5.2.x/setaux_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/2d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/3d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 48)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/setaux_defaults.rst, line 48)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

        diff --git a/v5.2.x/src1d_defaults.html b/v5.2.x/src1d_defaults.html index e4a90d6f5..cd14ae6e1 100644 --- a/v5.2.x/src1d_defaults.html +++ b/v5.2.x/src1d_defaults.html @@ -84,12 +84,12 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/amrclaw/src/2d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 21)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 21)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

        $CLAW/amrclaw/src/3d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 28)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 28)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

        @@ -100,7 +100,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 46)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src1d_defaults.rst, line 46)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

        diff --git a/v5.2.x/src_defaults.html b/v5.2.x/src_defaults.html index 4336dbaf8..69aea9872 100644 --- a/v5.2.x/src_defaults.html +++ b/v5.2.x/src_defaults.html @@ -85,17 +85,17 @@

        Navigation

        see Using src1d for source terms with AMRClaw.

        $CLAW/classic/src/1d/src1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 23)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 23)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 29)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 29)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/src3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 35)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 35)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

        @@ -106,7 +106,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 52)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/5fcd911597685d99d94bee49a3dcea97a4bab85a/src_defaults.rst, line 52)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

        diff --git a/v5.3.x/.buildinfo b/v5.3.x/.buildinfo index d6533fb8d..374c2b161 100644 --- a/v5.3.x/.buildinfo +++ b/v5.3.x/.buildinfo @@ -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: cd50e53d631bef1f5bda4c37c78d37ba +config: fabc1c410a46e50c91c97042014c63b6 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.3.x/.doctrees/ClawPlotAxes.doctree b/v5.3.x/.doctrees/ClawPlotAxes.doctree index 9a6e4af77..d4b361ff3 100644 Binary files a/v5.3.x/.doctrees/ClawPlotAxes.doctree and b/v5.3.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.3.x/.doctrees/ClawPlotData.doctree b/v5.3.x/.doctrees/ClawPlotData.doctree index 64a1b08a1..5c9b3c09b 100644 Binary files a/v5.3.x/.doctrees/ClawPlotData.doctree and b/v5.3.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.3.x/.doctrees/ClawPlotFigure.doctree b/v5.3.x/.doctrees/ClawPlotFigure.doctree index ab7d09298..19a7a1f60 100644 Binary files a/v5.3.x/.doctrees/ClawPlotFigure.doctree and b/v5.3.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.3.x/.doctrees/ClawPlotItem.doctree b/v5.3.x/.doctrees/ClawPlotItem.doctree index c73cea941..f091d0beb 100644 Binary files a/v5.3.x/.doctrees/ClawPlotItem.doctree and b/v5.3.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.3.x/.doctrees/about.doctree b/v5.3.x/.doctrees/about.doctree index 4edc79ffb..bb56cfeb5 100644 Binary files a/v5.3.x/.doctrees/about.doctree and b/v5.3.x/.doctrees/about.doctree differ diff --git a/v5.3.x/.doctrees/amr_algorithm.doctree b/v5.3.x/.doctrees/amr_algorithm.doctree index 2d71fb52a..21f11d2c7 100644 Binary files a/v5.3.x/.doctrees/amr_algorithm.doctree and b/v5.3.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.3.x/.doctrees/amrclaw.doctree b/v5.3.x/.doctrees/amrclaw.doctree index c67c425d7..061f2d9bd 100644 Binary files a/v5.3.x/.doctrees/amrclaw.doctree and b/v5.3.x/.doctrees/amrclaw.doctree differ diff --git a/v5.3.x/.doctrees/amrclaw1d.doctree b/v5.3.x/.doctrees/amrclaw1d.doctree index de37d309c..48ba066cb 100644 Binary files a/v5.3.x/.doctrees/amrclaw1d.doctree and b/v5.3.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.3.x/.doctrees/application_documentation.doctree b/v5.3.x/.doctrees/application_documentation.doctree index 68254960d..34fd9fba8 100644 Binary files a/v5.3.x/.doctrees/application_documentation.doctree and b/v5.3.x/.doctrees/application_documentation.doctree differ diff --git a/v5.3.x/.doctrees/apps.doctree b/v5.3.x/.doctrees/apps.doctree index f3f21df99..d2fd26161 100644 Binary files a/v5.3.x/.doctrees/apps.doctree and b/v5.3.x/.doctrees/apps.doctree differ diff --git a/v5.3.x/.doctrees/aws.doctree b/v5.3.x/.doctrees/aws.doctree index 2bee4f868..78d2efeaf 100644 Binary files a/v5.3.x/.doctrees/aws.doctree and b/v5.3.x/.doctrees/aws.doctree differ diff --git a/v5.3.x/.doctrees/b4step_defaults.doctree b/v5.3.x/.doctrees/b4step_defaults.doctree index be2610bd8..f1826e12a 100644 Binary files a/v5.3.x/.doctrees/b4step_defaults.doctree and b/v5.3.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.3.x/.doctrees/bc.doctree b/v5.3.x/.doctrees/bc.doctree index c3656f906..5ab20242e 100644 Binary files a/v5.3.x/.doctrees/bc.doctree and b/v5.3.x/.doctrees/bc.doctree differ diff --git a/v5.3.x/.doctrees/biblio.doctree b/v5.3.x/.doctrees/biblio.doctree index 19869b530..a328053c8 100644 Binary files a/v5.3.x/.doctrees/biblio.doctree and b/v5.3.x/.doctrees/biblio.doctree differ diff --git a/v5.3.x/.doctrees/changes.doctree b/v5.3.x/.doctrees/changes.doctree index 879ac0cb2..6139c887c 100644 Binary files a/v5.3.x/.doctrees/changes.doctree and b/v5.3.x/.doctrees/changes.doctree differ diff --git a/v5.3.x/.doctrees/changes_to_master.doctree b/v5.3.x/.doctrees/changes_to_master.doctree index 5532199de..5893dc102 100644 Binary files a/v5.3.x/.doctrees/changes_to_master.doctree and b/v5.3.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.3.x/.doctrees/claw43to46.doctree b/v5.3.x/.doctrees/claw43to46.doctree index 150709584..f1f6a1dc6 100644 Binary files a/v5.3.x/.doctrees/claw43to46.doctree and b/v5.3.x/.doctrees/claw43to46.doctree differ diff --git a/v5.3.x/.doctrees/claw46to50.doctree b/v5.3.x/.doctrees/claw46to50.doctree index 302d7e889..a5a2661a5 100644 Binary files a/v5.3.x/.doctrees/claw46to50.doctree and b/v5.3.x/.doctrees/claw46to50.doctree differ diff --git a/v5.3.x/.doctrees/claw4x.doctree b/v5.3.x/.doctrees/claw4x.doctree index 06a5feaa2..046599541 100644 Binary files a/v5.3.x/.doctrees/claw4x.doctree and b/v5.3.x/.doctrees/claw4x.doctree differ diff --git a/v5.3.x/.doctrees/clawpack5.doctree b/v5.3.x/.doctrees/clawpack5.doctree index 70c7d6475..aa34fd80b 100644 Binary files a/v5.3.x/.doctrees/clawpack5.doctree and b/v5.3.x/.doctrees/clawpack5.doctree differ diff --git a/v5.3.x/.doctrees/clawpack_components.doctree b/v5.3.x/.doctrees/clawpack_components.doctree index 7cc978819..f3c7a5804 100644 Binary files a/v5.3.x/.doctrees/clawpack_components.doctree and b/v5.3.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.3.x/.doctrees/community.doctree b/v5.3.x/.doctrees/community.doctree index 11bc5c6f0..f853dc4c2 100644 Binary files a/v5.3.x/.doctrees/community.doctree and b/v5.3.x/.doctrees/community.doctree differ diff --git a/v5.3.x/.doctrees/contents.doctree b/v5.3.x/.doctrees/contents.doctree index 4bfa7a1e1..242010463 100644 Binary files a/v5.3.x/.doctrees/contents.doctree and b/v5.3.x/.doctrees/contents.doctree differ diff --git a/v5.3.x/.doctrees/contribute_apps.doctree b/v5.3.x/.doctrees/contribute_apps.doctree index 29fe1b099..8b8ef574f 100644 Binary files a/v5.3.x/.doctrees/contribute_apps.doctree and b/v5.3.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.3.x/.doctrees/current_data.doctree b/v5.3.x/.doctrees/current_data.doctree index 3e67cb3c2..aeb9f8e72 100644 Binary files a/v5.3.x/.doctrees/current_data.doctree and b/v5.3.x/.doctrees/current_data.doctree differ diff --git a/v5.3.x/.doctrees/developers.doctree b/v5.3.x/.doctrees/developers.doctree index 2222ce142..6815632a4 100644 Binary files a/v5.3.x/.doctrees/developers.doctree and b/v5.3.x/.doctrees/developers.doctree differ diff --git a/v5.3.x/.doctrees/dtopotools_module.doctree b/v5.3.x/.doctrees/dtopotools_module.doctree index 2583cd4dc..2ae2b4b59 100644 Binary files a/v5.3.x/.doctrees/dtopotools_module.doctree and b/v5.3.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.3.x/.doctrees/environment.pickle b/v5.3.x/.doctrees/environment.pickle index 2f2657900..1f5c0c555 100644 Binary files a/v5.3.x/.doctrees/environment.pickle and b/v5.3.x/.doctrees/environment.pickle differ diff --git a/v5.3.x/.doctrees/fgmax.doctree b/v5.3.x/.doctrees/fgmax.doctree index ae2291fe8..c68f0b336 100644 Binary files a/v5.3.x/.doctrees/fgmax.doctree and b/v5.3.x/.doctrees/fgmax.doctree differ diff --git a/v5.3.x/.doctrees/fgout.doctree b/v5.3.x/.doctrees/fgout.doctree index dcb33d4fd..df8d9872f 100644 Binary files a/v5.3.x/.doctrees/fgout.doctree and b/v5.3.x/.doctrees/fgout.doctree differ diff --git a/v5.3.x/.doctrees/first_run.doctree b/v5.3.x/.doctrees/first_run.doctree index fe2d427b7..ebcfc89cc 100644 Binary files a/v5.3.x/.doctrees/first_run.doctree and b/v5.3.x/.doctrees/first_run.doctree differ diff --git a/v5.3.x/.doctrees/flag.doctree b/v5.3.x/.doctrees/flag.doctree index 206a518b1..6b0b4442b 100644 Binary files a/v5.3.x/.doctrees/flag.doctree and b/v5.3.x/.doctrees/flag.doctree differ diff --git a/v5.3.x/.doctrees/fortran.doctree b/v5.3.x/.doctrees/fortran.doctree index e3ec67db0..0f412d4f8 100644 Binary files a/v5.3.x/.doctrees/fortran.doctree and b/v5.3.x/.doctrees/fortran.doctree differ diff --git a/v5.3.x/.doctrees/fortran_compilers.doctree b/v5.3.x/.doctrees/fortran_compilers.doctree index 01782dcbf..59dab9592 100644 Binary files a/v5.3.x/.doctrees/fortran_compilers.doctree and b/v5.3.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.3.x/.doctrees/fvmbook.doctree b/v5.3.x/.doctrees/fvmbook.doctree index 0518a5ee3..7bb33cd88 100644 Binary files a/v5.3.x/.doctrees/fvmbook.doctree and b/v5.3.x/.doctrees/fvmbook.doctree differ diff --git a/v5.3.x/.doctrees/galleries.doctree b/v5.3.x/.doctrees/galleries.doctree index 0046ba96a..2c161ff2e 100644 Binary files a/v5.3.x/.doctrees/galleries.doctree and b/v5.3.x/.doctrees/galleries.doctree differ diff --git a/v5.3.x/.doctrees/gauges.doctree b/v5.3.x/.doctrees/gauges.doctree index 65af6d89b..70c8e68b2 100644 Binary files a/v5.3.x/.doctrees/gauges.doctree and b/v5.3.x/.doctrees/gauges.doctree differ diff --git a/v5.3.x/.doctrees/geoclaw.doctree b/v5.3.x/.doctrees/geoclaw.doctree index cc91d0646..761d9148b 100644 Binary files a/v5.3.x/.doctrees/geoclaw.doctree and b/v5.3.x/.doctrees/geoclaw.doctree differ diff --git a/v5.3.x/.doctrees/geoclaw_util_module.doctree b/v5.3.x/.doctrees/geoclaw_util_module.doctree index b5d666851..dd1efeb98 100644 Binary files a/v5.3.x/.doctrees/geoclaw_util_module.doctree and b/v5.3.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.3.x/.doctrees/geohints.doctree b/v5.3.x/.doctrees/geohints.doctree index 8ca332823..ab6d01910 100644 Binary files a/v5.3.x/.doctrees/geohints.doctree and b/v5.3.x/.doctrees/geohints.doctree differ diff --git a/v5.3.x/.doctrees/geoplot.doctree b/v5.3.x/.doctrees/geoplot.doctree index 4b3e36e74..c4fe595f6 100644 Binary files a/v5.3.x/.doctrees/geoplot.doctree and b/v5.3.x/.doctrees/geoplot.doctree differ diff --git a/v5.3.x/.doctrees/git_versions.doctree b/v5.3.x/.doctrees/git_versions.doctree index fa4a94933..3dd4dbf8b 100644 Binary files a/v5.3.x/.doctrees/git_versions.doctree and b/v5.3.x/.doctrees/git_versions.doctree differ diff --git a/v5.3.x/.doctrees/googleearth_plotting.doctree b/v5.3.x/.doctrees/googleearth_plotting.doctree index a9d65a811..dc9214bc5 100644 Binary files a/v5.3.x/.doctrees/googleearth_plotting.doctree and b/v5.3.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.3.x/.doctrees/howto_doc.doctree b/v5.3.x/.doctrees/howto_doc.doctree index f43b65df3..bbed07de7 100644 Binary files a/v5.3.x/.doctrees/howto_doc.doctree and b/v5.3.x/.doctrees/howto_doc.doctree differ diff --git a/v5.3.x/.doctrees/installing.doctree b/v5.3.x/.doctrees/installing.doctree index d0b5b7580..105a3ad83 100644 Binary files a/v5.3.x/.doctrees/installing.doctree and b/v5.3.x/.doctrees/installing.doctree differ diff --git a/v5.3.x/.doctrees/kmltools_module.doctree b/v5.3.x/.doctrees/kmltools_module.doctree index c0f7cbc6e..3ad2e2c66 100644 Binary files a/v5.3.x/.doctrees/kmltools_module.doctree and b/v5.3.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.3.x/.doctrees/license.doctree b/v5.3.x/.doctrees/license.doctree index 5d6a715e9..504cb6145 100644 Binary files a/v5.3.x/.doctrees/license.doctree and b/v5.3.x/.doctrees/license.doctree differ diff --git a/v5.3.x/.doctrees/makefiles.doctree b/v5.3.x/.doctrees/makefiles.doctree index b76d4a0d9..40b11e483 100644 Binary files a/v5.3.x/.doctrees/makefiles.doctree and b/v5.3.x/.doctrees/makefiles.doctree differ diff --git a/v5.3.x/.doctrees/manning.doctree b/v5.3.x/.doctrees/manning.doctree index 924d4f8e6..dc43b18b8 100644 Binary files a/v5.3.x/.doctrees/manning.doctree and b/v5.3.x/.doctrees/manning.doctree differ diff --git a/v5.3.x/.doctrees/mapc2p.doctree b/v5.3.x/.doctrees/mapc2p.doctree index d43f116db..ef952009f 100644 Binary files a/v5.3.x/.doctrees/mapc2p.doctree and b/v5.3.x/.doctrees/mapc2p.doctree differ diff --git a/v5.3.x/.doctrees/matlab_plotting.doctree b/v5.3.x/.doctrees/matlab_plotting.doctree index f16d7e7fb..1790220a9 100644 Binary files a/v5.3.x/.doctrees/matlab_plotting.doctree and b/v5.3.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.3.x/.doctrees/netcdf.doctree b/v5.3.x/.doctrees/netcdf.doctree index bda325890..8f4bbdfa8 100644 Binary files a/v5.3.x/.doctrees/netcdf.doctree and b/v5.3.x/.doctrees/netcdf.doctree differ diff --git a/v5.3.x/.doctrees/newapp.doctree b/v5.3.x/.doctrees/newapp.doctree index 8254228d9..b87875a6c 100644 Binary files a/v5.3.x/.doctrees/newapp.doctree and b/v5.3.x/.doctrees/newapp.doctree differ diff --git a/v5.3.x/.doctrees/notebooks.doctree b/v5.3.x/.doctrees/notebooks.doctree index 109340895..5e60c76cb 100644 Binary files a/v5.3.x/.doctrees/notebooks.doctree and b/v5.3.x/.doctrees/notebooks.doctree differ diff --git a/v5.3.x/.doctrees/okada.doctree b/v5.3.x/.doctrees/okada.doctree index 8223ac2ec..63e6036c7 100644 Binary files a/v5.3.x/.doctrees/okada.doctree and b/v5.3.x/.doctrees/okada.doctree differ diff --git a/v5.3.x/.doctrees/openmp.doctree b/v5.3.x/.doctrees/openmp.doctree index 1d6ff6c9a..8045a1be7 100644 Binary files a/v5.3.x/.doctrees/openmp.doctree and b/v5.3.x/.doctrees/openmp.doctree differ diff --git a/v5.3.x/.doctrees/output_styles.doctree b/v5.3.x/.doctrees/output_styles.doctree index 89d51ac72..f9507a93b 100644 Binary files a/v5.3.x/.doctrees/output_styles.doctree and b/v5.3.x/.doctrees/output_styles.doctree differ diff --git a/v5.3.x/.doctrees/packages.doctree b/v5.3.x/.doctrees/packages.doctree index 061cd9d06..90d60c27f 100644 Binary files a/v5.3.x/.doctrees/packages.doctree and b/v5.3.x/.doctrees/packages.doctree differ diff --git a/v5.3.x/.doctrees/photos.doctree b/v5.3.x/.doctrees/photos.doctree index b80d7ffe6..369df3d98 100644 Binary files a/v5.3.x/.doctrees/photos.doctree and b/v5.3.x/.doctrees/photos.doctree differ diff --git a/v5.3.x/.doctrees/plotexamples.doctree b/v5.3.x/.doctrees/plotexamples.doctree index 17a75fe83..ea9ca53f6 100644 Binary files a/v5.3.x/.doctrees/plotexamples.doctree and b/v5.3.x/.doctrees/plotexamples.doctree differ diff --git a/v5.3.x/.doctrees/plotting.doctree b/v5.3.x/.doctrees/plotting.doctree index bc012047c..82f1498b2 100644 Binary files a/v5.3.x/.doctrees/plotting.doctree and b/v5.3.x/.doctrees/plotting.doctree differ diff --git a/v5.3.x/.doctrees/plotting_faq.doctree b/v5.3.x/.doctrees/plotting_faq.doctree index 33df8d1ed..172e27db3 100644 Binary files a/v5.3.x/.doctrees/plotting_faq.doctree and b/v5.3.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.3.x/.doctrees/plotting_geoclaw.doctree b/v5.3.x/.doctrees/plotting_geoclaw.doctree index 578fe2d8f..aeb721e32 100644 Binary files a/v5.3.x/.doctrees/plotting_geoclaw.doctree and b/v5.3.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.3.x/.doctrees/plotting_python.doctree b/v5.3.x/.doctrees/plotting_python.doctree index f87db1806..b77c6e797 100644 Binary files a/v5.3.x/.doctrees/plotting_python.doctree and b/v5.3.x/.doctrees/plotting_python.doctree differ diff --git a/v5.3.x/.doctrees/previous.doctree b/v5.3.x/.doctrees/previous.doctree index 69c6a5adb..be02449cc 100644 Binary files a/v5.3.x/.doctrees/previous.doctree and b/v5.3.x/.doctrees/previous.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/about.doctree b/v5.3.x/.doctrees/pyclaw/about.doctree index 358615c7f..0761edbe7 100644 Binary files a/v5.3.x/.doctrees/pyclaw/about.doctree and b/v5.3.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/basics.doctree b/v5.3.x/.doctrees/pyclaw/basics.doctree index f21722ee2..c3fe90de5 100644 Binary files a/v5.3.x/.doctrees/pyclaw/basics.doctree and b/v5.3.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/classes.doctree b/v5.3.x/.doctrees/pyclaw/classes.doctree index 8a2606fca..7e9a07c62 100644 Binary files a/v5.3.x/.doctrees/pyclaw/classes.doctree and b/v5.3.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.3.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 98cd1d9d0..1e1053343 100644 Binary files a/v5.3.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.3.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/cloud.doctree b/v5.3.x/.doctrees/pyclaw/cloud.doctree index 7856d9223..87dd2686a 100644 Binary files a/v5.3.x/.doctrees/pyclaw/cloud.doctree and b/v5.3.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/controller.doctree b/v5.3.x/.doctrees/pyclaw/controller.doctree index 6fb4ad46b..9d75a6a30 100644 Binary files a/v5.3.x/.doctrees/pyclaw/controller.doctree and b/v5.3.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.3.x/.doctrees/pyclaw/evolve/limiters.doctree index e9ca08e32..586e00dd0 100644 Binary files a/v5.3.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.3.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/examples.doctree b/v5.3.x/.doctrees/pyclaw/examples.doctree index fb8993799..3191de50d 100644 Binary files a/v5.3.x/.doctrees/pyclaw/examples.doctree and b/v5.3.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/gallery/how-to-build.doctree b/v5.3.x/.doctrees/pyclaw/gallery/how-to-build.doctree index 76c959cd5..da45326e9 100644 Binary files a/v5.3.x/.doctrees/pyclaw/gallery/how-to-build.doctree and b/v5.3.x/.doctrees/pyclaw/gallery/how-to-build.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/geometry.doctree b/v5.3.x/.doctrees/pyclaw/geometry.doctree index 8f9f7322a..d1d21b791 100644 Binary files a/v5.3.x/.doctrees/pyclaw/geometry.doctree and b/v5.3.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/going_further.doctree b/v5.3.x/.doctrees/pyclaw/going_further.doctree index 0c3defa58..946a8455f 100644 Binary files a/v5.3.x/.doctrees/pyclaw/going_further.doctree and b/v5.3.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/index.doctree b/v5.3.x/.doctrees/pyclaw/index.doctree index b2258a3cc..32fbe8d27 100644 Binary files a/v5.3.x/.doctrees/pyclaw/index.doctree and b/v5.3.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/io.doctree b/v5.3.x/.doctrees/pyclaw/io.doctree index 494d44899..e218a770b 100644 Binary files a/v5.3.x/.doctrees/pyclaw/io.doctree and b/v5.3.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/output.doctree b/v5.3.x/.doctrees/pyclaw/output.doctree index ea602130a..71cca9bf5 100644 Binary files a/v5.3.x/.doctrees/pyclaw/output.doctree and b/v5.3.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/parallel.doctree b/v5.3.x/.doctrees/pyclaw/parallel.doctree index b8be2f946..1eb0a9ff2 100644 Binary files a/v5.3.x/.doctrees/pyclaw/parallel.doctree and b/v5.3.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/plotting.doctree b/v5.3.x/.doctrees/pyclaw/plotting.doctree index 040e6204e..51c4dfcdb 100644 Binary files a/v5.3.x/.doctrees/pyclaw/plotting.doctree and b/v5.3.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/problem.doctree b/v5.3.x/.doctrees/pyclaw/problem.doctree index c5f889349..3d1e500c3 100644 Binary files a/v5.3.x/.doctrees/pyclaw/problem.doctree and b/v5.3.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/rp.doctree b/v5.3.x/.doctrees/pyclaw/rp.doctree index 27ef35aea..bfdadc500 100644 Binary files a/v5.3.x/.doctrees/pyclaw/rp.doctree and b/v5.3.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/rulesProposal.doctree b/v5.3.x/.doctrees/pyclaw/rulesProposal.doctree index a9c034af0..b6b757e02 100644 Binary files a/v5.3.x/.doctrees/pyclaw/rulesProposal.doctree and b/v5.3.x/.doctrees/pyclaw/rulesProposal.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/solution.doctree b/v5.3.x/.doctrees/pyclaw/solution.doctree index d948db6f8..9674c6347 100644 Binary files a/v5.3.x/.doctrees/pyclaw/solution.doctree and b/v5.3.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/solvers.doctree b/v5.3.x/.doctrees/pyclaw/solvers.doctree index 51c0f47ba..e23a5acef 100644 Binary files a/v5.3.x/.doctrees/pyclaw/solvers.doctree and b/v5.3.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/started.doctree b/v5.3.x/.doctrees/pyclaw/started.doctree index b3dd0b3f6..a6d33cb4b 100644 Binary files a/v5.3.x/.doctrees/pyclaw/started.doctree and b/v5.3.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/state.doctree b/v5.3.x/.doctrees/pyclaw/state.doctree index 9bbd750eb..88d0a5ab7 100644 Binary files a/v5.3.x/.doctrees/pyclaw/state.doctree and b/v5.3.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.3.x/.doctrees/pyclaw/troubleshooting.doctree index 39c14bd42..4406903a1 100644 Binary files a/v5.3.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.3.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/tutorial.doctree b/v5.3.x/.doctrees/pyclaw/tutorial.doctree index b38b73178..ed3e46094 100644 Binary files a/v5.3.x/.doctrees/pyclaw/tutorial.doctree and b/v5.3.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.3.x/.doctrees/pyclaw/util.doctree b/v5.3.x/.doctrees/pyclaw/util.doctree index a51a7fb12..eab64606c 100644 Binary files a/v5.3.x/.doctrees/pyclaw/util.doctree and b/v5.3.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.3.x/.doctrees/python.doctree b/v5.3.x/.doctrees/python.doctree index a56e8df45..a092ce62c 100644 Binary files a/v5.3.x/.doctrees/python.doctree and b/v5.3.x/.doctrees/python.doctree differ diff --git a/v5.3.x/.doctrees/qinit_defaults.doctree b/v5.3.x/.doctrees/qinit_defaults.doctree index 8d37934b3..bb3785b2a 100644 Binary files a/v5.3.x/.doctrees/qinit_defaults.doctree and b/v5.3.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.3.x/.doctrees/quick_tsunami.doctree b/v5.3.x/.doctrees/quick_tsunami.doctree index 870c19bf8..6b8ff736b 100644 Binary files a/v5.3.x/.doctrees/quick_tsunami.doctree and b/v5.3.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.3.x/.doctrees/refinement.doctree b/v5.3.x/.doctrees/refinement.doctree index cbad533af..9a00196f6 100644 Binary files a/v5.3.x/.doctrees/refinement.doctree and b/v5.3.x/.doctrees/refinement.doctree differ diff --git a/v5.3.x/.doctrees/regression.doctree b/v5.3.x/.doctrees/regression.doctree index 6ac9a85fe..4f0c4259b 100644 Binary files a/v5.3.x/.doctrees/regression.doctree and b/v5.3.x/.doctrees/regression.doctree differ diff --git a/v5.3.x/.doctrees/release_5_0_0.doctree b/v5.3.x/.doctrees/release_5_0_0.doctree index a73196549..a281cf7d4 100644 Binary files a/v5.3.x/.doctrees/release_5_0_0.doctree and b/v5.3.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.3.x/.doctrees/release_5_1_0.doctree b/v5.3.x/.doctrees/release_5_1_0.doctree index 9a36cce30..3d4e10f0e 100644 Binary files a/v5.3.x/.doctrees/release_5_1_0.doctree and b/v5.3.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.3.x/.doctrees/release_5_2_0.doctree b/v5.3.x/.doctrees/release_5_2_0.doctree index e22869350..5ca0ccb30 100644 Binary files a/v5.3.x/.doctrees/release_5_2_0.doctree and b/v5.3.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.3.x/.doctrees/release_5_2_1.doctree b/v5.3.x/.doctrees/release_5_2_1.doctree index 073713dda..086de40ad 100644 Binary files a/v5.3.x/.doctrees/release_5_2_1.doctree and b/v5.3.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.3.x/.doctrees/release_5_2_2.doctree b/v5.3.x/.doctrees/release_5_2_2.doctree index fc74d432c..1dceb42a1 100644 Binary files a/v5.3.x/.doctrees/release_5_2_2.doctree and b/v5.3.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.3.x/.doctrees/release_5_3_0.doctree b/v5.3.x/.doctrees/release_5_3_0.doctree index 930a9f077..3774ad146 100644 Binary files a/v5.3.x/.doctrees/release_5_3_0.doctree and b/v5.3.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.3.x/.doctrees/release_5_3_1.doctree b/v5.3.x/.doctrees/release_5_3_1.doctree index c85b7be65..d41762314 100644 Binary files a/v5.3.x/.doctrees/release_5_3_1.doctree and b/v5.3.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.3.x/.doctrees/restart.doctree b/v5.3.x/.doctrees/restart.doctree index b6f505796..eeaae9a4e 100644 Binary files a/v5.3.x/.doctrees/restart.doctree and b/v5.3.x/.doctrees/restart.doctree differ diff --git a/v5.3.x/.doctrees/riemann.doctree b/v5.3.x/.doctrees/riemann.doctree index aabf69fa4..8104e3b48 100644 Binary files a/v5.3.x/.doctrees/riemann.doctree and b/v5.3.x/.doctrees/riemann.doctree differ diff --git a/v5.3.x/.doctrees/sealevel.doctree b/v5.3.x/.doctrees/sealevel.doctree index 014f729ef..0c2a2ffd3 100644 Binary files a/v5.3.x/.doctrees/sealevel.doctree and b/v5.3.x/.doctrees/sealevel.doctree differ diff --git a/v5.3.x/.doctrees/setaux_defaults.doctree b/v5.3.x/.doctrees/setaux_defaults.doctree index 0ae7753d4..68a6e775b 100644 Binary files a/v5.3.x/.doctrees/setaux_defaults.doctree and b/v5.3.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.3.x/.doctrees/setplot.doctree b/v5.3.x/.doctrees/setplot.doctree index a433c3aff..f666b179e 100644 Binary files a/v5.3.x/.doctrees/setplot.doctree and b/v5.3.x/.doctrees/setplot.doctree differ diff --git a/v5.3.x/.doctrees/setrun.doctree b/v5.3.x/.doctrees/setrun.doctree index f680ffab8..4ac822831 100644 Binary files a/v5.3.x/.doctrees/setrun.doctree and b/v5.3.x/.doctrees/setrun.doctree differ diff --git a/v5.3.x/.doctrees/setrun_amrclaw.doctree b/v5.3.x/.doctrees/setrun_amrclaw.doctree index 3e44bb2f6..b6ed47c7a 100644 Binary files a/v5.3.x/.doctrees/setrun_amrclaw.doctree and b/v5.3.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.3.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.3.x/.doctrees/setrun_amrclaw_sample.doctree index a5c9cf6dc..efcccfc3c 100644 Binary files a/v5.3.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.3.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.3.x/.doctrees/setrun_geoclaw.doctree b/v5.3.x/.doctrees/setrun_geoclaw.doctree index 7c27023b1..22467f64d 100644 Binary files a/v5.3.x/.doctrees/setrun_geoclaw.doctree and b/v5.3.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.3.x/.doctrees/setrun_sample.doctree b/v5.3.x/.doctrees/setrun_sample.doctree index b8d33d8a6..43bcf40b4 100644 Binary files a/v5.3.x/.doctrees/setrun_sample.doctree and b/v5.3.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.3.x/.doctrees/sharing.doctree b/v5.3.x/.doctrees/sharing.doctree index 0f7b742fa..ab42c6c01 100644 Binary files a/v5.3.x/.doctrees/sharing.doctree and b/v5.3.x/.doctrees/sharing.doctree differ diff --git a/v5.3.x/.doctrees/sphinxdoc.doctree b/v5.3.x/.doctrees/sphinxdoc.doctree index aa1cc8ce9..caf537064 100644 Binary files a/v5.3.x/.doctrees/sphinxdoc.doctree and b/v5.3.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.3.x/.doctrees/src1d_defaults.doctree b/v5.3.x/.doctrees/src1d_defaults.doctree index c97a1a5c9..5598964b8 100644 Binary files a/v5.3.x/.doctrees/src1d_defaults.doctree and b/v5.3.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.3.x/.doctrees/src_defaults.doctree b/v5.3.x/.doctrees/src_defaults.doctree index 1f022560a..7afca15bf 100644 Binary files a/v5.3.x/.doctrees/src_defaults.doctree and b/v5.3.x/.doctrees/src_defaults.doctree differ diff --git a/v5.3.x/.doctrees/testing.doctree b/v5.3.x/.doctrees/testing.doctree index d1476834b..2d14c0d19 100644 Binary files a/v5.3.x/.doctrees/testing.doctree and b/v5.3.x/.doctrees/testing.doctree differ diff --git a/v5.3.x/.doctrees/timing.doctree b/v5.3.x/.doctrees/timing.doctree index 7f694608a..b72fc19b7 100644 Binary files a/v5.3.x/.doctrees/timing.doctree and b/v5.3.x/.doctrees/timing.doctree differ diff --git a/v5.3.x/.doctrees/topo.doctree b/v5.3.x/.doctrees/topo.doctree index 821acbe79..24e297f89 100644 Binary files a/v5.3.x/.doctrees/topo.doctree and b/v5.3.x/.doctrees/topo.doctree differ diff --git a/v5.3.x/.doctrees/topotools.doctree b/v5.3.x/.doctrees/topotools.doctree index ace7418e0..b57bce6d5 100644 Binary files a/v5.3.x/.doctrees/topotools.doctree and b/v5.3.x/.doctrees/topotools.doctree differ diff --git a/v5.3.x/.doctrees/topotools_module.doctree b/v5.3.x/.doctrees/topotools_module.doctree index b2a42339b..afb47af47 100644 Binary files a/v5.3.x/.doctrees/topotools_module.doctree and b/v5.3.x/.doctrees/topotools_module.doctree differ diff --git a/v5.3.x/.doctrees/trouble.doctree b/v5.3.x/.doctrees/trouble.doctree index 54584c8cb..f512ec8d2 100644 Binary files a/v5.3.x/.doctrees/trouble.doctree and b/v5.3.x/.doctrees/trouble.doctree differ diff --git a/v5.3.x/.doctrees/tsunamidata.doctree b/v5.3.x/.doctrees/tsunamidata.doctree index b375b004f..fb98418b9 100644 Binary files a/v5.3.x/.doctrees/tsunamidata.doctree and b/v5.3.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.3.x/.doctrees/user_routines.doctree b/v5.3.x/.doctrees/user_routines.doctree index 20c9be301..04894a396 100644 Binary files a/v5.3.x/.doctrees/user_routines.doctree and b/v5.3.x/.doctrees/user_routines.doctree differ diff --git a/v5.3.x/.doctrees/visit_plotting.doctree b/v5.3.x/.doctrees/visit_plotting.doctree index 93aaba529..241099cba 100644 Binary files a/v5.3.x/.doctrees/visit_plotting.doctree and b/v5.3.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.3.x/.doctrees/vm.doctree b/v5.3.x/.doctrees/vm.doctree index 7b532125a..7a5733067 100644 Binary files a/v5.3.x/.doctrees/vm.doctree and b/v5.3.x/.doctrees/vm.doctree differ diff --git a/v5.3.x/.doctrees/wp_algorithms.doctree b/v5.3.x/.doctrees/wp_algorithms.doctree index 01854e561..99c038df3 100644 Binary files a/v5.3.x/.doctrees/wp_algorithms.doctree and b/v5.3.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.3.x/b4step_defaults.html b/v5.3.x/b4step_defaults.html index 07abb11e6..dc5eca965 100644 --- a/v5.3.x/b4step_defaults.html +++ b/v5.3.x/b4step_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/b4step1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/b4step3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 48)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/b4step_defaults.rst, line 48)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

        diff --git a/v5.3.x/galleries.html b/v5.3.x/galleries.html index eb619cc70..4ad48571f 100644 --- a/v5.3.x/galleries.html +++ b/v5.3.x/galleries.html @@ -85,19 +85,19 @@

        Navigation

        Galleries of all Clawpack applications

        See also IPython notebook examples.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        toctree contains reference to nonexisting document ‘gallery/gallery_classic_amrclaw’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        toctree contains reference to nonexisting document ‘gallery/gallery_geoclaw’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/galleries.rst, line 10)

        toctree contains reference to nonexisting document ‘gallery/gallery_fvmbook’

      - +
      • verbosity() (pyclaw.controller.Controller property) diff --git a/v5.3.x/geoclaw_util_module.html b/v5.3.x/geoclaw_util_module.html index ce33e9335..6f445b508 100644 --- a/v5.3.x/geoclaw_util_module.html +++ b/v5.3.x/geoclaw_util_module.html @@ -102,7 +102,7 @@

        Navigation

        Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

        Unexpected indentation.

        diff --git a/v5.3.x/kmltools_module.html b/v5.3.x/kmltools_module.html index b5520cefd..0f0a6725a 100644 --- a/v5.3.x/kmltools_module.html +++ b/v5.3.x/kmltools_module.html @@ -100,6 +100,7 @@

        Navigation

      • topo2kml - create a kml outline for each topo grid specified in setrun

      • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

      • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

      • +
      • fgout2kml - create a kml outline for each fgout grid specified in setrun

      • make_input_data_kmls - make kml files for many things specified in setrun

      • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

      • png2kml - create kml file wrapping a png figure to be viewed on GE

      • @@ -179,6 +180,28 @@

        Navigation

        +
        +
        +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
        +

        Create a KML box for each fgout grid specified for a GeoClaw run.

        +
        +
        Inputs
        +
          +
        • rundata - an object of class ClawRunData or None

          +

          If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

          +
        • +
        • fname (str) - resulting kml file.

        • +
        • verbose (bool) - If True, print out info about each region found

        • +
        • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

        • +
        +
        +
        +
        +
        clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
        @@ -326,7 +349,7 @@

        Navigation

        Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

        Unexpected indentation.

        @@ -334,7 +357,7 @@

        Navigation

        dpi * y_inches = dcp * y_cells

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

        Block quote ends without a blank line; unexpected unindent.

        where x_cells, y_cells are the number of cells in each direction.

        @@ -344,14 +367,14 @@

        Navigation

        annotate the figure befor saving it as a png file, which should then be done with:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

        Unexpected indentation.

        plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

        Block quote ends without a blank line; unexpected unindent.

        The png_extent is needed in construcing a kml file to display the @@ -487,7 +510,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

        Field list ends without a blank line; unexpected unindent.

        If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.3.x/objects.inv b/v5.3.x/objects.inv index 0f747c528..96e0e380f 100644 Binary files a/v5.3.x/objects.inv and b/v5.3.x/objects.inv differ diff --git a/v5.3.x/py-modindex.html b/v5.3.x/py-modindex.html index 228a87168..e38b10c37 100644 --- a/v5.3.x/py-modindex.html +++ b/v5.3.x/py-modindex.html @@ -114,6 +114,31 @@

        Python Module Index

            clawpack.geoclaw.util + + +     + clawpack.riemann.acoustics_1D_py + + + +     + clawpack.riemann.advection_1D_py + + + +     + clawpack.riemann.burgers_1D_py + + + +     + clawpack.riemann.euler_1D_py + + + +     + clawpack.riemann.shallow_1D_py +   p diff --git a/v5.3.x/pyclaw/examples.html b/v5.3.x/pyclaw/examples.html index 249c3ae98..0e2df160f 100644 --- a/v5.3.x/pyclaw/examples.html +++ b/v5.3.x/pyclaw/examples.html @@ -136,47 +136,47 @@

        From the command lineList of built-in examples

        You can see results from many of the examples in the Galleries of all Clawpack applications.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*adv*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*acoust*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*burg*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*shallow*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*blast*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*shock*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*psystem*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*Rossby*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*dam*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/kpp’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/examples.rst, line 63)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/stegoton’

        diff --git a/v5.3.x/pyclaw/geometry.html b/v5.3.x/pyclaw/geometry.html index b576d2373..be61bc7fb 100644 --- a/v5.3.x/pyclaw/geometry.html +++ b/v5.3.x/pyclaw/geometry.html @@ -619,10 +619,120 @@

        Parallel Geometry Objects

        -

        petclaw.geometry.Domain

        +

        petclaw.geometry.Domain

        +
        +
        +class petclaw.geometry.Domain(geom)
        +

        Bases: clawpack.pyclaw.geometry.Domain

        +

        Parallel Domain Class

        +

        Parent Class Documentation:

        +

        2D Classic (Clawpack) solver.

        +

        Solve using the wave propagation algorithms of Randy LeVeque’s +Clawpack code (www.clawpack.org).

        +

        In addition to the attributes of ClawSolver1D, ClawSolver2D +also has the following options:

        +
        +
        +dimensional_split
        +

        If True, use dimensional splitting (Godunov splitting). +Dimensional splitting with Strang splitting is not supported +at present but could easily be enabled if necessary. +If False, use unsplit Clawpack algorithms, possibly including +transverse Riemann solves.

        +
        + +
        +
        +transverse_waves
        +

        If dimensional_split is True, this option has no effect. If +dimensional_split is False, then transverse_waves should be one of +the following values:

        +

        ClawSolver2D.no_trans: Transverse Riemann solver +not used. The stable CFL for this algorithm is 0.5. Not recommended.

        +

        ClawSolver2D.trans_inc: Transverse increment waves are computed +and propagated.

        +

        ClawSolver2D.trans_cor: Transverse increment waves and transverse +correction waves are computed and propagated.

        +
        + +

        Note that only the fortran routines are supported for now in 2D.

        +

        Parent Class Documentation:

        +

        Generic classic Clawpack solver

        +

        All Clawpack solvers inherit from this base class.

        +
        +
        +mthlim
        +

        Limiter(s) to be used. Specified either as one value or a list. +If one value, the specified limiter is used for all wave families. +If a list, the specified values indicate which limiter to apply to +each wave family. Take a look at pyclaw.limiters.tvd for an enumeration. +Default = limiters.tvd.minmod

        +
        + +
        +
        +order
        +

        Order of the solver, either 1 for first order (i.e., Godunov’s method) +or 2 for second order (Lax-Wendroff-LeVeque). +Default = 2

        +
        + +
        +
        +source_split
        +

        Which source splitting method to use: 1 for first +order Godunov splitting and 2 for second order Strang splitting. +Default = 1

        +
        + +
        +
        +fwave
        +

        Whether to split the flux jump (rather than the jump in Q) into waves; +requires that the Riemann solver performs the splitting. +Default = False

        +
        + +
        +
        +step_source
        +

        Handle for function that evaluates the source term. +The required signature for this function is:

        +

        def step_source(solver,state,dt)

        +
        + +
        +
        +kernel_language
        +

        Specifies whether to use wrapped Fortran routines (‘Fortran’) +or pure Python (‘Python’). Default = 'Fortran'.

        +
        + +
        +
        +verbosity
        +

        The level of detail of logged messages from the Fortran solver. +Default = 0.

        +
        + +
        +
        -

        petclaw.geometry.Patch

        +

        petclaw.geometry.Patch

        +
        +
        +class petclaw.geometry.Patch(dimensions)
        +

        Bases: clawpack.pyclaw.geometry.Patch

        +

        Parallel Patch class.

        +

        Parent Class Documentation:

        +
        +
        Global Patch information
        +

        Each patch has a value for level and patch_index.

        +
        +
        +
        +

        diff --git a/v5.3.x/pyclaw/index.html b/v5.3.x/pyclaw/index.html index 38cde2207..203f269e3 100644 --- a/v5.3.x/pyclaw/index.html +++ b/v5.3.x/pyclaw/index.html @@ -114,7 +114,7 @@

        Navigation

        PyClaw Documentation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/index.rst, line 39)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/pyclaw/index.rst, line 39)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

        diff --git a/v5.3.x/pyclaw/rp.html b/v5.3.x/pyclaw/rp.html index e345b59a9..ea56fa9dc 100644 --- a/v5.3.x/pyclaw/rp.html +++ b/v5.3.x/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/v5.3.x/pyclaw/solution.html b/v5.3.x/pyclaw/solution.html index a13a31571..6c83a936c 100644 --- a/v5.3.x/pyclaw/solution.html +++ b/v5.3.x/pyclaw/solution.html @@ -116,10 +116,10 @@

        Navigation

        petclaw.state.State

        pyclaw.geometry.Domain

        -

        petclaw.geometry.Domain

        +

        petclaw.geometry.Domain

        pyclaw.geometry.Patch

        -

        petclaw.geometry.Patch

        +

        petclaw.geometry.Patch

        pyclaw.geometry.Grid

        @@ -215,7 +215,7 @@

        Navigation

        -read(frame, path='./_output', file_format='ascii', file_prefix=None, read_aux=True, options={}, **kargs)
        +read(frame, path='./_output', file_format=None, file_prefix='fort', read_aux=True, options={}, **kargs)

        Reads in a Solution object from a file

        Reads in and initializes this Solution with the data specified. This function will raise an IOError if it was unsuccessful.

        @@ -234,7 +234,8 @@

        Navigation

      • path - (string) Base path to the files to be read. default = './_output'

      • file_format - (string) Format of the file, should match on of the -modules inside of the io package. default = 'ascii'

      • +modules inside of the io package. default = None +but now attempts to read from header file (as of v5.9.0).

      • file_prefix - (string) Name prefix in front of all the files, defaults to whatever the format defaults to, e.g. fort for ascii

      • options - (dict) Dictionary of optional arguments dependent on diff --git a/v5.3.x/pyclaw/state.html b/v5.3.x/pyclaw/state.html index a57327dd5..ffa5442fa 100644 --- a/v5.3.x/pyclaw/state.html +++ b/v5.3.x/pyclaw/state.html @@ -92,7 +92,7 @@

        Navigation

        object also handles some of the parallel communication required of the state on the given patch such that only the parts of the fields local to the process. If you are interested in the geometry of the local state you can find it through the -Patch object’s reference to its own +Patch object’s reference to its own Grid.

        Serial pyclaw.state.State

        diff --git a/v5.3.x/python.html b/v5.3.x/python.html index e810ef2e6..6eeb78977 100644 --- a/v5.3.x/python.html +++ b/v5.3.x/python.html @@ -163,7 +163,7 @@

        References and tutorialsMatplotlib gallery

      • `LeVeque’s class notes

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/python.rst, line 96); backlink

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/python.rst, line 96); backlink

        Inline interpreted text or phrase reference start-string without end-string.

      • diff --git a/v5.3.x/qinit_defaults.html b/v5.3.x/qinit_defaults.html index f67f7854a..fc08207ce 100644 --- a/v5.3.x/qinit_defaults.html +++ b/v5.3.x/qinit_defaults.html @@ -82,17 +82,17 @@

        Navigation

        the initial conditions as desired.

        $CLAW/classic/src/1d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/2d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/3d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

        @@ -103,7 +103,7 @@

        Navigation

        qinit data file parameters.

        $CLAW/geoclaw/src/2d/shallow/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/qinit_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

        diff --git a/v5.3.x/searchindex.js b/v5.3.x/searchindex.js index cd60c93e7..a68649ea7 100644 --- a/v5.3.x/searchindex.js +++ b/v5.3.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","dtopotools_module","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","howto_doc","installing","kmltools_module","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","dtopotools_module.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","howto_doc.rst","installing.rst","kmltools_module.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[26,1,0,"-"],kmltools:[44,1,0,"-"],topotools:[120,1,0,"-"],util:[37,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[26,0,1,""],DTopography:[26,0,1,""],Fault:[26,0,1,""],Mw:[26,3,1,""],SiftFault:[26,0,1,""],SubFault:[26,0,1,""],SubdividedPlaneFault:[26,0,1,""],TensorProductFault:[26,0,1,""],UCSBFault:[26,0,1,""],plot_dZ_colors:[26,3,1,""],plot_dZ_contours:[26,3,1,""],rise_fraction:[26,3,1,""],strike_direction:[26,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[26,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[26,2,1,""],dZ_max:[26,2,1,""],plot_dZ_colors:[26,2,1,""],plot_dZ_contours:[26,2,1,""],read:[26,2,1,""],write:[26,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[26,2,1,""],Mw:[26,2,1,""],containing_rect:[26,2,1,""],create_dtopo_xy:[26,2,1,""],create_dtopography:[26,2,1,""],plot_subfaults:[26,2,1,""],plot_subfaults_depth:[26,2,1,""],read:[26,2,1,""],set_dynamic_slip:[26,2,1,""],write:[26,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[26,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[26,2,1,""],calculate_geometry:[26,2,1,""],calculate_geometry_triangles:[26,2,1,""],centers:[26,2,1,""],convert_to_standard_units:[26,2,1,""],coordinate_specification:[26,4,1,""],corners:[26,2,1,""],depth:[26,4,1,""],dip:[26,4,1,""],dynamic_slip:[26,2,1,""],gauss_pts:[26,2,1,""],latitude:[26,4,1,""],length:[26,4,1,""],longitude:[26,4,1,""],mu:[26,4,1,""],okada:[26,2,1,""],rake:[26,4,1,""],rise_shape:[26,4,1,""],rise_time:[26,4,1,""],rise_time_starting:[26,4,1,""],rupture_time:[26,4,1,""],rupture_type:[26,4,1,""],set_corners:[26,2,1,""],slip:[26,4,1,""],strike:[26,4,1,""],width:[26,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[26,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[26,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[44,3,1,""],deg2dms:[44,3,1,""],dtopo2kml:[44,3,1,""],f2s:[44,3,1,""],fgmax2kml:[44,3,1,""],gauges2kml:[44,3,1,""],kml_build_colorbar:[44,3,1,""],kml_cb:[44,3,1,""],kml_png:[44,3,1,""],kml_timespan:[44,3,1,""],line2kml:[44,3,1,""],make_input_data_kmls:[44,3,1,""],pcolorcells_for_kml:[44,3,1,""],png2kml:[44,3,1,""],poly2kml:[44,3,1,""],quad2kml:[44,3,1,""],regions2kml:[44,3,1,""],topo2kml:[44,3,1,""],topo2kmz:[44,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[120,0,1,""],create_topo_func:[120,3,1,""],determine_topo_type:[120,3,1,""],fetch_topo_url:[120,3,1,""],get_topo:[120,3,1,""],read_netcdf:[120,3,1,""],swapheader:[120,3,1,""],topo1writer:[120,3,1,""],topo2writer:[120,3,1,""],topo3writer:[120,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[120,2,1,""],Y:[120,2,1,""],Z:[120,2,1,""],crop:[120,2,1,""],delta:[120,2,1,""],extent:[120,2,1,""],generate_2d_coordinates:[120,2,1,""],generate_2d_topo:[120,2,1,""],in_poly:[120,2,1,""],interp_unstructured:[120,2,1,""],make_shoreline_xy:[120,2,1,""],plot:[120,2,1,""],read:[120,2,1,""],read_header:[120,2,1,""],replace_no_data_values:[120,2,1,""],replace_values:[120,2,1,""],set_xyZ:[120,2,1,""],smooth_data:[120,2,1,""],write:[120,2,1,""],x:[120,2,1,""],y:[120,2,1,""],z:[120,2,1,""]},"clawpack.geoclaw.util":{bearing:[37,3,1,""],dist_latlong2meters:[37,3,1,""],dist_meters2latlong:[37,3,1,""],dms2decimal:[37,3,1,""],fetch_noaa_tide_data:[37,3,1,""],haversine:[37,3,1,""],inv_haversine:[37,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[84,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[84,4,1,""],kernel_language:[84,4,1,""],mthlim:[84,4,1,""],order:[84,4,1,""],setup:[84,2,1,""],source_split:[84,4,1,""],step:[84,2,1,""],step_hyperbolic:[84,2,1,""],step_source:[84,4,1,""],verbosity:[84,4,1,""]},"petclaw.state":{State:[86,0,1,""]},"petclaw.state.State":{F:[86,2,1,""],aux:[86,2,1,""],fset:[86,2,1,""],gauge_data:[86,4,1,""],get_aux_global:[86,2,1,""],get_auxbc_from_aux:[86,2,1,""],get_q_global:[86,2,1,""],get_qbc_from_q:[86,2,1,""],keep_gauges:[86,4,1,""],mF:[86,2,1,""],mp:[86,2,1,""],num_aux:[86,2,1,""],num_eqn:[86,2,1,""],p:[86,2,1,""],problem_data:[86,4,1,""],q:[86,2,1,""],set_num_ghost:[86,2,1,""],t:[86,4,1,""]},"pyclaw.controller":{Controller:[69,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[69,4,1,""],F_path:[69,2,1,""],check_validity:[69,2,1,""],compute_F:[69,4,1,""],compute_p:[69,4,1,""],file_prefix_p:[69,4,1,""],frames:[69,4,1,""],keep_copy:[69,4,1,""],nstepout:[69,4,1,""],num_output_times:[69,4,1,""],out_times:[69,4,1,""],outdir:[69,4,1,""],outdir_p:[69,2,1,""],output_file_prefix:[69,4,1,""],output_format:[69,4,1,""],output_options:[69,4,1,""],output_style:[69,4,1,""],overwrite:[69,4,1,""],plot:[69,2,1,""],plotdata:[69,4,1,""],run:[69,2,1,""],rundir:[69,4,1,""],runmake:[69,4,1,""],savecode:[69,4,1,""],solver:[69,4,1,""],tfinal:[69,4,1,""],verbosity:[69,2,1,""],viewable_attributes:[69,4,1,""],write_aux_always:[69,4,1,""],write_aux_init:[69,4,1,""],xclawcmd:[69,4,1,""],xclawerr:[69,4,1,""],xclawout:[69,4,1,""],xdir:[69,4,1,""]},"pyclaw.geometry":{Dimension:[73,0,1,""],Domain:[73,0,1,""],Grid:[73,0,1,""],Patch:[73,0,1,""]},"pyclaw.geometry.Dimension":{centers:[73,2,1,""],centers_with_ghost:[73,2,1,""],delta:[73,2,1,""],nodes:[73,2,1,""],nodes_with_ghost:[73,2,1,""]},"pyclaw.geometry.Domain":{grid:[73,2,1,""],num_dim:[73,2,1,""],patch:[73,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[73,2,1,""],add_gauges:[73,2,1,""],c_center:[73,2,1,""],c_centers:[73,2,1,""],c_centers_with_ghost:[73,2,1,""],c_nodes:[73,2,1,""],c_nodes_with_ghost:[73,2,1,""],dimensions:[73,2,1,""],gauge_dir_name:[73,4,1,""],gauge_file_names:[73,4,1,""],gauge_files:[73,4,1,""],gauges:[73,4,1,""],get_dim_attribute:[73,2,1,""],num_dim:[73,2,1,""],p_center:[73,2,1,""],p_centers:[73,2,1,""],p_nodes:[73,2,1,""],plot:[73,2,1,""],setup_gauge_files:[73,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[73,2,1,""],delta:[73,2,1,""],dimensions:[73,2,1,""],get_dim_attribute:[73,2,1,""],level:[73,4,1,""],lower_global:[73,2,1,""],name:[73,2,1,""],num_cells_global:[73,2,1,""],num_dim:[73,2,1,""],patch_index:[73,4,1,""],upper_global:[73,2,1,""]},"pyclaw.limiters":{tvd:[70,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[70,3,1,""],beta_limiter:[70,3,1,""],cada_torrilhon_limiter:[70,3,1,""],cada_torrilhon_limiter_nonlinear:[70,3,1,""],cfl_superbee:[70,3,1,""],cfl_superbee_theta:[70,3,1,""],hyperbee_limiter:[70,3,1,""],limit:[70,3,1,""],mc_limiter:[70,3,1,""],minmod_limiter:[70,3,1,""],superbee_limiter:[70,3,1,""],superpower_limiter:[70,3,1,""],theta_limiter:[70,3,1,""],upper_bound_limiter:[70,3,1,""],van_leer_klein_sharpening_limiter:[70,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[84,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[84,2,1,""],aux_time_dep:[84,4,1,""],call_before_step_each_stage:[84,4,1,""],cfl_desired:[84,4,1,""],cfl_max:[84,4,1,""],char_decomp:[84,4,1,""],check_3rd_ord_cond:[84,2,1,""],dq:[84,2,1,""],dq_src:[84,4,1,""],dqdt:[84,2,1,""],fwave:[84,4,1,""],get_dt_new:[84,2,1,""],kernel_language:[84,4,1,""],lim_type:[84,4,1,""],num_ghost:[84,4,1,""],setup:[84,2,1,""],step:[84,2,1,""],tfluct:[84,4,1,""],tfluct_solver:[84,4,1,""],time_integrator:[84,4,1,""],update_saved_values:[84,2,1,""],weno_order:[84,4,1,""]},"pyclaw.solution":{Solution:[83,0,1,""]},"pyclaw.solution.Solution":{is_valid:[83,2,1,""],patch:[83,2,1,""],plot:[83,2,1,""],read:[83,2,1,""],set_all_states:[83,2,1,""],start_frame:[83,2,1,""],state:[83,2,1,""],write:[83,2,1,""]},"pyclaw.state":{State:[86,0,1,""]},"pyclaw.state.State":{F:[86,4,1,""],gauge_data:[86,4,1,""],get_aux_global:[86,2,1,""],get_auxbc_from_aux:[86,2,1,""],get_q_global:[86,2,1,""],get_qbc_from_q:[86,2,1,""],is_valid:[86,2,1,""],keep_gauges:[86,4,1,""],mF:[86,2,1,""],mp:[86,2,1,""],num_aux:[86,2,1,""],num_eqn:[86,2,1,""],p:[86,4,1,""],problem_data:[86,4,1,""],set_aux_from_auxbc:[86,2,1,""],set_cparam:[86,2,1,""],set_num_ghost:[86,2,1,""],set_q_from_qbc:[86,2,1,""],t:[86,4,1,""]},"pyclaw.util":{FrameCounter:[89,0,1,""],VerifyError:[89,5,1,""],add_parent_doc:[89,3,1,""],check_diff:[89,3,1,""],compile_library:[89,3,1,""],construct_function_handle:[89,3,1,""],convert_fort_double_to_float:[89,3,1,""],gen_variants:[89,3,1,""],read_data_line:[89,3,1,""],run_app_from_main:[89,3,1,""],run_serialized:[89,3,1,""],test_app:[89,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[89,2,1,""],increment:[89,2,1,""],reset_counter:[89,2,1,""],set_counter:[89,2,1,""]},pyclaw:{util:[89,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":55,"000000e":109,"00000e":109,"0000ff":[3,44],"001000e":109,"00er2592":4,"00ff00":44,"00ffff":44,"01er25474":4,"020204mag_polici":26,"0311_v3":92,"04d":124,"0d0":89,"115e":92,"1200x1680":41,"1440l":41,"1440p":41,"150w":92,"153w":92,"15e":120,"15n":92,"161w":92,"16m":54,"17th":84,"18n":92,"1d_plot":[35,60,62,106],"1drad":123,"1st":[70,84,107,109,111,123],"2013it":13,"210e":92,"23n":92,"25000000e":55,"260e":117,"27t06":44,"27t07":44,"288e":117,"2d_grid":19,"2d_patch":[3,19],"2d_pcolor":[35,41],"2d_schlieren":3,"2nd":[75,80,84,107,109,111,123],"301e":117,"30x30":41,"360x360":41,"373e":117,"3rd":[80,84],"40000000e":55,"4th":84,"50n":92,"5d0":123,"5e3":110,"5r01ar53652":4,"610000000000000e":92,"8888ff":44,"88er25053":4,"8x6":41,"92er25139":4,"93er25181":4,"96er25292":4,"990000000000000e":92,"99999000e":27,"\u010dert\u00edk":4,"abstract":41,"boolean":[3,41,76,107,108],"break":[25,26,38,41,44,82,94,101,110,120],"case":[5,7,10,12,16,19,26,27,32,38,41,44,49,60,66,73,78,80,83,89,93,94,97,100,101,104,110,118,120,121,123,126],"catch":[31,75],"class":[0,1,2,3,22,26,27,41,44,60,62,67,73,75,80,82,83,84,86,88,89,90,92,102,106,107,108,109,111,120],"default":[0,1,2,3,10,19,25,26,27,30,32,35,37,39,40,41,44,49,54,60,62,66,69,71,73,77,78,79,82,83,84,86,87,89,93,96,104,108,109,110,118,120,123],"export":[32,41,43,49,54,78,82,87,92],"final":[26,32,42,49,66,69,72,88,96,102,107,109,111,120],"float":[3,26,27,35,37,44,69,73,86,89,107,108,110,111,120],"function":[0,1,2,3,6,11,13,19,20,22,24,25,26,27,35,40,41,46,47,50,53,60,61,66,67,69,70,71,74,79,80,81,82,83,86,89,92,93,94,96,97,100,101,103,105,106,107,108,109,110,111,118,119,120,121,123],"import":[0,3,19,25,35,38,41,43,44,47,56,60,62,66,67,68,69,71,73,75,77,78,79,80,82,83,84,85,86,88,90,92,94,104,107,108,109,110,111,118,120,122,124],"int":[1,2,3,26,44,69,70,73,76,77,82,83,86,107,108,110,120],"long":[25,26,37,38,51,82,92,101,120],"new":[1,2,4,5,10,17,19,21,22,25,26,27,31,32,35,37,41,42,43,44,46,47,49,54,60,62,65,66,67,68,69,76,78,80,84,86,92,93,96,99,100,101,102,107,108,110,118,119,120,123],"ond\u0159ej":4,"public":[4,10,18,82],"return":[0,1,2,3,26,37,41,43,44,49,60,62,69,70,73,77,80,81,82,83,84,86,89,94,103,107,109,111,120,123,126],"short":[38,70,80],"static":26,"super":[20,25,120],"switch":[41,80,92,94,104,122],"throw":25,"true":[0,1,2,3,5,11,12,22,24,26,30,35,37,40,41,44,66,69,73,77,78,83,84,86,93,102,103,105,107,108,109,110,111,120],"try":[1,25,29,35,41,43,44,60,68,71,76,83,85,87,88,89,90,94,107,118,120,121],"var":[0,3,10,11,24,91,105,114,115],"while":[10,12,41,49,60,62,67,73,77,78,84,89,103,110,122],AND:[45,64],ARE:[45,64],AWS:[10,43],Added:[70,96,98,100,101],Adding:[65,74],And:[5,17,42,82],Are:95,Axes:106,BCs:[109,111],BUT:[45,64],But:[10,41,60,87,92,97],CMS:4,DAs:86,DMS:4,DNS:10,EBS:10,FOR:[45,64],For:[0,1,2,3,5,6,10,11,12,14,15,16,19,23,24,25,26,27,29,30,32,35,37,38,39,41,42,43,46,49,50,53,54,59,60,62,66,67,71,73,75,76,77,78,80,82,84,85,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,120,122,123,126],GIS:[41,118],Going:[10,22,75],Into:90,NOT:[44,45,60,64,82],Not:[26,41],OPS:37,One:[20,23,26,41,49,67,82,89,93,100,120],Res:13,SUCH:[45,64],Such:[49,82],Sys:13,THE:[45,64],That:[29,68,82,88],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,42,43,44,45,46,47,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,69,70,73,75,77,78,80,81,82,83,84,85,86,87,89,93,94,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,120,121,123,124,125,126],Their:64,Then:[10,12,25,26,35,42,43,54,62,66,68,69,72,78,85,86,87,102,120,121],There:[3,5,10,19,27,31,41,43,46,55,62,77,82,85,92,106,107,123,125],These:[1,4,9,12,15,20,25,26,27,30,33,38,41,42,44,49,60,62,66,71,77,79,82,86,88,91,93,94,96,102,103,108,112,118,122,126],USE:[45,64],Use:[26,41,75,82,84,92,107,109,111,120],Useful:[1,3,107],Uses:[26,120],Using:[0,1,2,3,6,19,32,33,41,58,60,62,73,74,75,107,114,115,117,120,121,126],WCS:122,Will:83,With:[5,19,25,35,39,41,56,90,93,101,107],__________________o:120,__doc__:82,__init__:[80,82],__main__:[109,111],__name__:[109,111],_build:42,_compute_c_cent:73,_compute_c_nod:73,_compute_p_cent:73,_compute_p_nod:73,_googleearth:41,_output2:[60,62],_output:[10,29,35,40,49,60,62,71,79,83,101,102,121],_output_from_previous_run:35,_output_new:94,_output_old:94,_plot:[10,29,35,49,62,106,112],_plotindex:[1,35],_plots_new:94,_plots_old:94,_pyclaw_io:69,a351:[13,75],a377:[13,75],aabbggrr:44,abbrevi:82,abdullah:64,abil:[32,100,120],abl:[10,43,68],abort:46,about:[3,6,10,12,19,22,29,31,37,38,43,44,46,47,49,55,61,66,75,78,82,84,92,94,101,103,106,109,110,121,123,126],aboutu:26,abov:[3,10,12,17,25,27,29,30,31,32,35,38,41,42,43,45,53,55,60,64,67,77,79,85,88,89,90,92,93,103,106,107,109,110,111,117,118,120,123],abs:[26,80,89,120],absolut:[77,94,108,109],abstol:89,academ:[87,90],acc:82,accept:[66,77,84,107],accept_reject_step:84,access:[0,13,24,71,73,75,84,86,89],accident:[25,60],accompani:18,accomplish:46,accord:5,accordingli:[41,118],account:[10,21,25,68,78],accur:[38,53,75,84,92,107,123,126],accuraci:[35,47,56,109,111],achiev:[17,67,114,115],acou:60,acount:92,acoust:[12,29,38,52,65,66,69,71,75,84,85,100,103,109,123],acoustics_1d:[66,88],acoustics_1d_example1:[29,51],acoustics_1d_heterogen:123,acoustics_1d_homogen:[71,94],acoustics_2d:84,acoustics_2d_radi:[109,123],acoustics_3d_vari:94,acquaint:88,acquir:60,across:[92,118,120],acsza1:26,acszb1:26,act:[70,120],acta:13,actanum2011:13,action:[10,67],activ:[27,28,52,84,110],actual:[5,24,26,44,49,52,53,60,70,89,92,104,110],adapt:[4,6,13,26,49,56,66,82,103,106,107,123],add:[0,8,10,12,13,22,24,25,26,27,35,37,41,42,49,50,66,71,73,77,78,80,89,92,97,100,111,120,124],add_colorbar:[26,92,120],add_colormap:101,add_dimens:73,add_gaug:[73,77],add_label:35,add_param:[109,111],add_parent_doc:89,add_titl:60,add_true_solut:60,added:[3,12,17,19,25,26,27,28,37,44,47,49,60,73,77,93,96,97,99,100,101,107,108,117,119,120,124],addgaug:35,adding:[19,24,25,27,32,35,44,53,78,91,101],addit:[10,12,20,22,25,27,36,44,53,55,56,60,61,67,70,75,77,82,84,85,86,92,93,100,107,111,117,118,123,124],addition:78,address:[41,42,43],adequ:38,adjac:[5,12,27,36,93,107],adjust:[10,17,27,44,52,73,77,92,104,107,123],adopt:[26,82,84],adq:82,adv:[13,71],advanc:[5,13,54,88,101,107,123],advantag:[25,59,94],advect:[13,52,60,75,78,103,111,123],advection_2d_inflow:100,advection_2d_swirl:123,advection_3d_swirl:[100,117],advis:[28,43,45,64],affect:[19,46,107,121],afosr:4,after:[0,1,3,5,10,16,22,24,27,29,35,38,44,46,49,50,55,60,67,68,69,71,82,84,86,92,94,96,100,101,107,108,109,111,123],afterax:[0,24,35,41,60],afterfram:[1,22,24],aftergrid:49,afteritem:[3,24],afterpatch:[3,24],again:[19,25,31,46,60,62,66,67,77,81,87,118,121],against:[89,94,101,116],agenc:4,agre:[9,25,103,116,117,120,123],agreement:38,ahmadia:[4,13,64,75,82],aht:104,aid:67,aim:25,albada:70,alg:109,alghamdi:[4,13,64,75,82],algorithm:[4,6,22,27,30,52,66,75,82,84,88,93,103,107,109,111,120],align:[27,41,44,110],all:[0,1,4,5,8,9,10,12,17,19,20,22,24,25,26,27,29,30,31,32,35,36,38,40,41,42,44,45,46,49,51,54,55,56,58,59,60,62,64,66,69,70,71,72,73,77,78,80,81,82,83,84,86,89,90,92,93,94,96,97,99,100,101,102,106,107,109,110,111,112,116,117,118,120,122,123],alloc:[17,82,84,100],allocat:100,allot:44,allow:[4,5,10,19,24,27,36,37,40,41,47,49,54,56,59,60,69,76,82,84,86,89,90,92,94,96,97,100,101,103,107,109,110,111,112,118,120],almost:[90,92],alon:[12,41,82],along:[5,12,24,26,27,30,35,50,53,92,93,100,102,110,122],alpha:[41,84],alphabet:[64,82],alreadi:[0,1,5,10,25,32,43,44,62,78,82,83,85,88,90,97,120],also:[3,4,5,6,7,8,12,17,19,20,21,22,25,26,27,29,30,32,33,34,35,36,37,38,41,42,43,44,46,49,50,52,53,54,55,56,59,60,62,66,68,69,73,75,77,78,80,82,83,84,85,86,87,88,89,90,91,92,93,94,96,101,102,103,104,107,109,110,111,112,114,115,116,117,118,120,121,122,123,126],alter:41,altern:[26,27,29,37,41,43,46,49,59,78,90,100,101],although:[26,41,49,79,80,83,120],alwai:[12,19,23,24,25,27,32,49,66,82,92,93,96,97,109,110,111,118,123],am583s2013:90,amal:[4,13,64,75,82],amazon:[22,43],amazonaw:10,amdq:[81,82,103],ami:[22,43],amount:[38,42],amr:[4,6,12,17,20,22,24,25,27,28,35,44,49,55,56,59,64,73,92,101,106,107,109,111,117,118,123],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:101,amr_level:55,amr_level_max:109,amr_levels_max:[27,30,93,108,109],amr_modul:[54,100],amrclaw:[4,5,9,11,12,16,17,19,20,21,25,30,32,35,36,43,49,50,52,54,55,56,85,91,93,94,102,105,107,110,114,115,116,117],amrdata:[19,93,108,109,110],amrlib:100,amrnez:93,an11:42,anaconda:[41,85,90],anal:13,analog:[107,108],andi:4,angl:[12,26,37,53],ani:[3,4,5,7,10,12,16,17,19,24,25,27,29,30,36,38,40,41,42,43,45,46,47,49,51,54,55,56,60,64,70,71,73,75,78,80,82,83,85,89,92,93,94,100,102,104,106,107,108,110,123,126],anim:[12,41,52,100,112],anisotrop:[5,19],anl:78,annot:[24,44],anoth:[3,19,22,41,43,44,55,59,71,84,87,94,102,123],answer:21,anyth:[3,5,25,43,94],apach:10,apdq:[81,82,103],api:37,app:[9,10,20,23,25,27,33,52,99],appar:[26,54],appeal:41,appear:[0,1,3,7,10,15,20,27,35,36,41,42,44,46,48,60,77,82,83,86,92,110,112,118],append:[17,30,35,60,69,83,92,93,101,109],appl:13,appli:[3,4,5,10,12,26,30,38,41,47,53,60,62,70,84,92,93,102,107,110,123],applic:[4,5,11,12,16,17,19,20,21,25,27,29,32,33,36,50,54,58,62,71,73,74,77,82,84,89,91,93,94,96,99,100,103,105,107,110,112,114,115,116,118,120,123,124],appreci:64,approach:[10,25,51,59,67,78,80,89,93,100,103,106,110,123,126],appropri:[5,10,12,21,25,35,36,38,39,41,44,47,49,50,51,54,66,69,70,71,76,78,79,80,81,83,92,94,103,104,107,123,126],approv:38,approxim:[5,12,38,41,53,82],apt:[10,90],arbitrari:[27,44,84,96,110],arc:[92,104],arcgi:120,architectur:78,archiv:[9,18,41,43,94,112,116,120,122],area:[11,19,84,92,105],aren:[82,92],arg:[73,83],argument:[0,1,2,3,24,26,37,40,41,60,66,67,71,73,76,80,82,83,84,86,89,94,103,106,107,108,120,123],argv:[109,111],aris:[45,52,64],arithmet:47,aron:[4,13,64,75,82],arora:70,arora_ro:70,around:[5,26,27,44,94,108,109,120,123],arrai:[0,3,5,11,17,19,22,24,26,27,35,37,39,44,60,66,67,69,70,73,75,76,80,81,82,83,84,86,88,89,90,96,97,98,103,105,107,108,109,110,111,120,123],arrang:120,arriv:[19,22,27,28,104],arrival_tol:27,articl:[13,75,82,112],artifici:12,asc:[92,120],ascii:[22,49,66,69,82,83,92,102,107,109,111,118,124],ascii_output_format:50,ask:21,ask_us:120,aspect:[38,39,49,92,120],assembl:43,assert:[109,111],assess:[38,104],assign:[26,27,66,69,83,92],assist:[19,27],associ:[0,1,2,5,19,41,54,73,76,77,94],assum:[3,17,19,26,37,38,41,42,43,44,49,53,59,79,80,88,89,92,93,100,104,107,110,118,120,122,126],astronom:104,aterrel:4,atmospher:4,attach:86,attempt:[7,8,17,29,46,89,92,94,96,120,121],attirbut:19,attr:[73,83],attribut:[6,19,22,26,35,61,62,66,69,73,78,80,82,83,84,93,96,101,102,106,107,108,110,120],attributeerror:60,audienc:82,aug:13,augment:103,austin:4,author:[13,22,36,38,70,75,82,92],auto:[0,35,67],autom:[67,82,94],automat:[0,2,3,7,8,12,26,29,32,41,46,59,60,62,66,71,76,78,82,85,86,87,89,94,96,107,108,110,118],aux1:27,aux1d:123,aux:[5,11,17,19,22,24,27,67,75,77,80,82,83,84,86,87,96,97,103,105,107,108,109,111,123],aux_bc_low:80,aux_bc_upp:80,aux_l:81,aux_r:81,aux_time_dep:84,aux_typ:[108,109],auxbc:[80,84,86],auxiliari:[19,67,69,76,81,84,86,103,107,109,111,123],auxillari:83,auxl:[82,103],auxr:[82,103],auxtyp:109,avail:[0,4,12,19,20,21,35,36,38,41,46,49,59,61,62,66,69,75,76,79,81,82,84,87,88,89,90,92,102,104,107,109,110,112,118],averag:[4,5,11,13,36,38,39,49,86,97,103,105,118,120,123],avoid:[27,41,44,49,73,82,96,97,101,102,107,110,126],awai:[25,104],awar:[38,78],awr11:13,axes1:[2,62],axes:[0,1,2,22,24,26,35,41,49,60,62,92,106,120],axescmd:[0,62],axesnam:[1,62],axessubplot:26,axi:[0,26,39,41,49,60,73,92],b0002:55,b4step1:[11,123],b4step2:[11,123],b4step3:11,b4step:22,b4stepn:123,back:[10,24,42,82,92],backend:41,background:[2,22,82,106],backward:[25,26,37,43,44,90,97,98,120],bad:94,bai:[104,122],balanc:[5,13,56,114,115],bale:13,balelevmitross02:[4,13,107,126],ball:120,band1:120,band:[41,120],bar:[10,42],barrier:89,base:[5,10,17,18,19,25,26,30,36,37,41,44,47,49,56,67,69,70,73,75,81,82,83,84,86,88,89,90,93,95,100,104,107,108,109,110,111,120,123,126],base_subfault:26,baselin:41,bash:[32,41,43,49,54,78],bash_profil:[43,87],bashrc:[10,32,43,87],basi:49,basic:[5,9,22,26,29,49,66,73,75,82,84,94,126],bathymetri:[11,22,27,36,38,41,44,104,105,110,118,120],bc1:89,bc2amr:12,bc_arrai:84,bc_lower:[12,66,80,88,107,109,111],bc_upper:[12,66,80,88,107,109,111],bcn:[5,12,111,123],bcnamr:[5,12,107,109,123],beam:70,bear:[26,37],bearing_unit:37,becaus:[19,24,27,41,77,78,82,96,103,104,107],becom:[38,82,87,126],been:[0,1,4,10,12,15,17,18,19,21,24,25,27,28,29,30,33,36,38,41,42,46,47,49,56,60,62,64,67,69,82,83,86,87,88,89,92,93,95,96,97,99,102,107,108,110,118,120,123],befor:[1,3,4,5,22,25,26,27,29,31,32,42,44,46,49,54,62,66,69,78,82,84,86,92,93,94,96,97,102,103,104,107,108,110,118,120,121],before_step:84,beforefram:[1,24],begin:[37,44,73,77,88],begin_d:37,behav:35,behavior:[42,82,92,93,94,101],behaviour:66,being:[1,3,4,7,10,38,52,62,69,81,83,84,89,93,101,103,107,118,121,123],believ:38,belki:57,belong:[60,73,78,82,83,86],below:[3,5,10,11,12,19,21,26,27,41,44,47,49,52,53,62,64,66,68,77,82,88,90,91,92,93,94,97,98,99,100,101,103,105,106,107,108,109,110,111,114,115,118,120,123],benchmark:38,benefit:82,beowulf:43,berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,45,64],best:[3,12,19,23,25,32,41,51,54,59,60,80,92,93,94,103,110,113,118,123],beta:[37,70,84,111],beta_limit:70,better:[0,5,19,27,35,49,54,55,59,82,84,101,110,118],between:[3,4,5,10,12,20,22,25,26,37,44,49,53,54,56,69,73,84,86,87,89,93,101,103,104,107,108,109,110,111,112,117,118,120,122,123],bewar:120,beyond:[5,26,30,82],bgr:44,bibliographi:4,bibtex:4,big:82,big_earthquak:[26,92],biggest:75,bilinear:[5,27,35,96,97,118],bin:78,binari:[22,32,45,50,64,79,101,102,107,109,120,124],bind:[25,41,59,67,78],bisect:[108,109],bit:[12,19,26,78,87],bitbucket:78,black:[3,35],blank:[3,44,82],blast:71,bleed:43,blob:101,block:[6,26,44,53,55,56,66,82,86,89,94,123],blossei:4,blue:[3,8,35,44,60,120],boe:4,boisest:41,bomb:[46,54],book:[4,9,13,22,82,83,90],bool:[0,1,2,3,37,44,69,76,83,84,86,89,110,120],border:[49,123],bore:38,both:[3,12,25,26,29,30,38,49,55,67,76,77,78,84,85,92,93,94,100,101,103,107,109,111,114,118,123],bottom:[9,10,11,26,29,36,38,47,66,80,81,92,105,114,115,118],bound:[67,70,78,107,120],boundari:[17,22,41,44,54,67,73,81,82,84,88,97,100,107,109,111],boussinesq:38,bowl_radial_fgmax:27,box2kml:44,box:[26,41,44,92,120],branch:[15,25,32,40,94],brief:[4,92,110],briefli:126,bring:[10,41,42,49],broad:120,broken:[16,17,25,50,94],brought:25,brown:[64,120],brows:[8,21,33,41,49,112,123],browser:[10,25,29,41,42,112],bsd:[4,45,64],buffer:[26,93,101,108,109,120],buffer_length:120,buffer_s:26,bug:[4,7,19,21,27,32,47,54,60,64,99,100,101],build:[22,25,42,49,67,75,78,89],buildsystem:78,built:[25,47,56,65,75,78,80,83,93,94,114,115],bulk:[16,66,88,103,109,123],bull:[13,26],buoi:[22,92],burg:71,burger:[75,103,123],busi:[45,64],butcher:84,button:[9,10,25,41,44],c210:[13,75],c231:[13,75],c_center:73,c_centers_with_ghost:73,c_node:73,c_nodes_with_ghost:73,cach:[19,37,62,64],cache_dir:37,cada:70,cada_torrilhon_limit:70,cada_torrilhon_limiter_nonlinear:70,cake:57,cal:[103,123,126],calcul:[3,5,24,26,36,37,49,60,73,84,97,120],calculate_geometri:26,calculate_geometry_triangl:26,calhellev08:13,calhoun:[4,13,41],calhounhelzellevequ:12,call:[1,5,17,19,24,26,32,35,40,43,49,55,60,62,66,67,69,70,72,76,77,80,82,83,84,86,88,89,92,94,96,100,101,103,107,109,110,111,120,123],call_before_step_each_stag:84,call_setplot:60,callabl:89,cambridg:13,camera:41,can:[0,2,3,4,5,6,7,8,9,10,12,16,17,19,21,23,24,25,26,27,29,31,32,33,35,36,37,38,41,42,43,44,46,47,49,50,51,52,54,55,56,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,78,79,80,82,83,84,85,86,87,88,89,90,92,93,94,96,97,100,101,102,103,104,106,107,108,109,110,111,112,116,118,120,121,122,123,124,126],candid:101,canopi:85,capa:83,capa_index:[107,109,111],capab:120,capabl:[6,9,19,27,28,38,56,67,96,101,120,122],capac:[11,105,107,108,109,111],capit:82,captur:[38,118],care:[27,35,36,78,92],carefulli:[17,19,47],cartesian:[27,36,44,67,110],cascad:4,cast:120,cat:102,caten:102,caus:[19,38,41,42,45,62,64,87,92,94,101,106,108,120],caut:70,caution:[38,118],cautionari:[22,36,110],cautiou:38,caxi:49,cb_file:44,cb_filenam:44,cb_kwarg:120,cb_name:44,cb_xfrac:44,cb_yfrac:44,cbar:120,cdot:[47,80],cell:[3,4,7,11,12,17,19,22,24,27,35,36,41,44,49,54,55,56,66,73,78,81,82,84,86,88,92,93,96,97,101,103,104,105,107,108,109,110,111,117,118,123,126],celledg:3,celledges_show:[3,19],cellgridintegr:96,cellgridintegrate2:96,cellsiz:[92,100,118],center:[4,24,26,27,30,35,41,44,53,66,73,80,81,88,92,93,108,109,123],centerlin:26,centers_with_ghost:73,central:107,centroid:[26,53],certain:[27,30,36,93,101,107],certainli:[78,90],certik:[4,64],cf2py:67,cfl:[5,77,84,88,96,101,107,109,110,111],cfl_desir:[84,107,109,111],cfl_max:[84,107,109,111],cfl_superbe:70,cfl_superbee_theta:70,chanc:64,chang:[1,5,10,11,12,16,17,22,25,26,27,31,32,35,40,41,42,43,44,46,47,49,50,52,54,55,56,62,66,67,74,77,86,89,92,93,94,105,107,108,109,110,111,114,115,121,123],changelog:[14,15,19,95,96,97,98,99,100,101],chapter:[12,103,107,123],char_decomp:84,charact:[37,82],characterist:84,charg:10,cheaper:10,check:[5,12,17,27,29,31,32,40,41,42,43,46,49,60,66,67,69,75,78,83,84,86,88,89,92,97,108,109,116,120,121,122,123],check_3rd_ord_cond:84,check_diff:[89,94],check_lmm_cond:84,check_valid:69,check_valu:[89,94],checkout:[25,42],checkpoint:[22,101,107,109,111],checkpt_interv:[107,109],checkpt_styl:[101,102,107,109],checkpt_tim:[107,109],chen:[26,122],chile2010:[41,92,96,99,118],chile2010_fgmax:27,chile:[22,44,92],chile_2010:41,chilie2010:92,chk00006:[109,111],chk00100:101,chk:101,chkaaaaa:101,chkbbbbb:101,chknnnnn:[102,107,109,111],choic:[12,22,59,84,107,109,110,111,123],choos:[0,22,44,80,82,92,107,110],chose:47,chosen:[3,30,41,88,92,93,104,108],circl:[3,37,60],circular:13,cise:13,citat:4,cite:[22,82],clamshel:[22,97],clarifi:[19,82],clash:49,classic4:111,classic:[4,5,9,11,12,16,17,19,20,21,25,30,32,33,35,36,51,54,55,56,64,66,69,71,74,75,80,91,92,94,102,103,105,108,110,115,121,123],claw1:89,claw:[5,8,9,10,11,12,16,17,19,21,25,26,27,29,31,32,35,36,37,39,40,42,43,44,46,49,51,52,53,54,61,66,69,71,75,77,78,85,87,91,92,93,94,96,97,99,100,103,105,109,110,111,113,114,115,116,117,118,120,121,123,124],claw_1dnoncon:126,claw_git_diff:40,claw_git_statu:40,claw_lib:50,claw_outdir:[46,60],claw_packag:84,claw_pkg:[107,108,109,110,111],claw_topo_download:120,clawcode2html:22,clawdata2pyclaw:67,clawdata:[92,96,100,102,107,108,109,110,111],clawdev2013:42,clawgraph:49,clawpac:42,clawpack:[1,4,5,6,8,12,22,23,25,26,27,28,29,32,33,35,36,37,38,40,41,42,44,45,49,51,52,54,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,78,79,80,82,83,86,87,88,90,92,94,95,96,97,98,99,100,101,102,103,107,108,109,112,113,116,118,119,120,121,123,124,126],clawplotax:[1,2,3,24,60,106],clawplotdata:[2,3,24,35,41,60,62,69,106],clawplotfigur:[0,1,41,60,106],clawplotitem:[0,1,6,19,22,24,61,101,106],clawrundata:[35,44,102,107,108,109,111],clawsolut:1,clawsolv:84,clawsolver1d:[66,69,84,88],clawsolver2d:84,clawutil:[8,16,17,20,25,31,32,40,43,46,94,107,108,109,111,120,121],clean:[19,89,100],cleaner:25,clear:[1,2,5,49,62],clearfigur:1,clearfram:[1,62],cleargaug:35,clearli:[35,38,41],clf:2,clf_each_fram:2,click:[4,9,10,25,41,52,90,92,94],client:92,clint:13,clobber:101,clockwis:[27,37,53,120],clone:[9,15,20,21,33,43,63,72,78,85,121],close:[10,41,44,49,82,93,108],close_fig:44,closer:[53,109],cloud:[10,22],cluster:[5,13,30,43,93,108,109],clustering_cutoff:[93,108,109],cmap:[41,44,60,120],cmap_slip:26,cmax:[41,44],cmax_dz:26,cmax_slip:26,cmin:[41,44],cmin_slip:26,cname:42,coars:[3,27,41,92,93,107,118,123],coarsen:[93,108,120],coarser:[3,12,107,108,123],coarsest:[5,41,55,96,102,107],coast:[92,120],coastal:[38,92,104,110],coastlin:[27,41,110,122],code:[4,5,6,7,12,16,17,18,19,20,21,24,27,29,31,32,33,35,38,40,42,43,45,46,47,50,51,52,54,55,56,58,60,62,64,66,67,75,77,78,80,84,85,88,92,95,96,97,100,101,102,107,109,110,111,112,117,118,121],coeffici:[47,80,84,86,87,88,110],colella:[5,13],collabor:[41,112],collect:[9,23,25,26,27,53,59,66,84,90,92,112],collis:82,color:[3,22,26,41,44,49,106,120],colorbar:[3,44,120],colorbar_labels:26,colorbar_shrink:26,colorbar_ticks:26,colormap:[3,22,26,36,41,49,61,101,120],column:[26,27,38,100,120],column_list:26,column_map:26,com:[9,10,20,21,23,25,42,43,63,72,78,80,85,99,101],combin:[17,42,44,92,101,122],combinatori:94,come:[3,25,52,60,62,71,78,84,100,118,123],comfort:80,comm_world:89,command:[0,1,2,3,8,10,22,31,40,41,43,46,51,60,66,67,69,78,79,82,84,88,89,90,92,94,106,107,108,120,121],commenc:102,comment:[8,21,39,102],commit:[25,26,40,42,82,94],common:[3,20,25,29,31,32,46,56,59,66,81,84,86,87,121,123],commonli:[3,49,60,62],commun:[22,41,64,82,86,89],compact:118,compar:[19,35,38,41,43,60,77,93,94,104,108,110,116,122,126],compare_gaug:100,comparison:82,compat:[25,26,37,43,44,59,78,87,90,97,98,120],compens:120,compil:[10,22,29,31,36,54,56,62,67,75,80,85,89,96],compile_librari:89,complet:[17,19,25,37,46,62,66,67,78,82,89,90,94],complex:[9,73,82],complex_zero:82,compliant:32,complic:[12,60,67,106],compon:[3,12,17,19,22,25,27,35,43,49,55,80,83,85,86,93,100,107,108,109,118,123],compos:[26,66],comprehens:94,compress:[26,92,120],compris:[19,75,120],comput:[3,4,5,10,12,13,22,24,26,27,35,37,41,43,44,46,50,59,60,62,67,69,73,75,77,78,84,88,90,92,93,96,97,101,103,107,109,110,111,118,123,126],computation:[67,84],compute_f:[69,77],compute_gauge_valu:77,compute_p:[66,69],concern:[19,36],conclus:[4,41],conda:41,condit:[17,22,45,56,64,65,66,67,69,82,84,91,96,97,100,104,107,109,110,111],confer:21,config:78,config_fc:121,configur:[60,66,78,120],confin:82,confirm:38,conflict:[5,49,87],conform:[19,25,83],confus:[3,103],conjunct:93,connect:[27,44],consequenti:[45,64],conserv:[4,5,13,77,84,86,123,126],consid:[5,38,43,67,112,120],consider:[38,66],consist:[5,27,37,41,44,78,82,92,103,110,118,123],consol:[10,77],consolid:100,constant:[26,27,38,44,47,78,92,110,120,123],constant_storm_modul:100,constrain:[30,93],constraint:[108,126],construc:44,construct:[19,26,66,73,89,118],construct_function_handl:89,constructor:[82,86],consult:87,contact:[71,75,85],contain:[1,3,9,10,17,20,23,26,27,29,31,33,34,35,36,37,39,40,41,42,44,46,49,50,55,56,60,62,66,67,69,70,71,73,75,76,78,80,81,83,84,86,88,89,90,92,94,96,97,102,103,106,107,110,112,116,118,120,123],containing_rect:26,containt:102,contamin:107,content:[41,42,67,123,124],context:[24,41,123],contigu:[55,86],contingu:19,continu:[10,19,25,26,39,43,64,103,107,126],contour:[3,26,35,41,49,90,106,120],contour_color:3,contour_kwarg:[3,120],contour_level:[3,120],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[22,41],contract:[45,64],contribut:[4,21,22,64,67,75,80,84,94],contributor:[4,21,45,75],control:[5,6,20,22,32,35,49,62,65,70,73,75,76,77,78,80,82,93,110],conveni:[1,24,29,35,41,62,69,71,75,79,88,123,126],convens:118,convent:[3,19,26,36,81],converg:59,convers:[16,67,93,122],convert43to46:16,convert46to50:17,convert:[3,19,22,26,33,37,44,53,67,72,80,89,92,107,108,118,122],convert_fort_double_to_float:89,convert_readm:8,convert_to_standard_unit:26,converttopotyp:118,convex:27,coodin:26,coord:37,coordiat:92,coordin:[20,22,26,27,37,55,66,73,77,78,88,92,93,110,120],coordinate_specif:[26,92],coordinate_system:[11,105,110],coorind:120,copi:[5,11,12,29,35,42,49,66,69,72,80,86,91,92,93,97,101,102,105,112,114,115,118,123],copyright:[45,64],core:[4,56,94],corioli:[38,110,114,115],coriolis_forc:[38,110],corner:[3,26,27,55,73,92,107,109,111,118,120],correct:[17,25,32,47,49,60,66,78,83,89,96,97,101,107,109,111],correctli:[25,27,67,74,100,110],correspond:[3,5,20,24,26,37,38,44,49,60,66,70,73,77,80,83,86,92,93,94,103,104,107,108,109,111,118,122,123],cos:[37,39,66,80],cosin:66,cost:[10,82,84],could:[10,24,27,29,35,54,60,62,66,73,77,82,86,87,90,92,100,102,108,109,110,111,118,120,123],council:4,count:66,count_from_zero:66,counter:[89,120],counterclockwis:53,coupl:126,courant:[4,5,93,107,108,109,111],cours:[10,23,27,35,36,53,78,79,88,92,110,118],cover:[5,24,25,26,27,30,41,44,92,93,97,109,110,118],coverag:[75,94],covert:8,cparam:[66,86],cpu:[10,101,117],crash:[101,107],creat:[0,1,2,3,5,6,16,21,22,25,26,29,31,33,35,36,40,42,43,44,46,55,60,62,67,68,71,73,75,76,79,82,83,86,87,88,89,92,94,96,100,101,102,106,107,108,109,112,113,120,122,123,124],create_dtopo_xi:26,create_dtopographi:[26,92],create_topo_func:120,creation:[60,75,96],criteria:[5,6,19,22,30,86],criterion:[27,93,109],critic:[41,77,103],crop:120,cross:25,crucial:118,cse:21,csh:78,csv:26,csvfault:26,ctrl:60,cube:49,current:[3,10,17,19,24,25,26,27,30,32,35,36,38,44,49,50,52,55,60,62,73,77,78,84,86,89,92,93,94,101,102,104,106,107,109,110,111,118,120,122],current_data:[0,3,22,35,60],curv:[3,22,35],custom:[0,10,12,17,19,49,56,59,67,74,80],custom_bc:80,cut:108,cutoff:[5,109],cvs:41,cxx:78,cyber:13,cygwin:[43,69],cython:78,dai:[5,10,41],dalcin:[64,82],dam:71,damag:[5,45,64],damian:43,damiansra:80,danger:25,darker:41,darryl:13,dart:[22,92],dash:[3,78],daspect:49,dat:26,data:[0,1,3,22,24,26,27,29,31,33,35,36,37,41,42,44,45,46,49,59,60,61,62,64,66,69,73,77,79,81,83,84,86,89,91,92,93,96,98,99,101,103,104,109,111,117,119,124],data_break:120,data_typ:89,databas:[10,26,89,92,118],datadir:101,dataset:[120,122],date:[21,25,31,37,41,42,46,60,121],date_tim:37,datetim:37,datum:[37,38,104,110,122],dave:26,david:[4,13,64,75,82,84],dawson:13,daylight:44,dcp:44,deal:[26,38,59,77,78,86,120],dealloc:82,dealt:27,debian:90,debug:[22,32,46,55,77,86,94,107,109],debugg:60,decid:[66,84],decim:[37,44],decis:41,declar:[17,19,86,123],decompos:[55,103,126],decomposit:107,decor:89,deduc:118,deep:110,deeper:110,deepli:88,def:[0,1,3,35,41,60,66,77,80,82,84,109,111],default_tfluct:84,defenc:4,defin:[0,1,3,5,19,22,24,26,27,30,32,44,46,49,53,60,62,66,69,73,79,80,82,83,84,86,88,89,93,96,103,109,111,120,121,123,126],definit:[26,49,66,82,93,99],deform:[13,26,53,122],deg2dm:44,degre:[26,37,41,44,53,92],delet:[17,25,35,92,102],delimit:[26,82],delin:110,delta:[70,73,80,82,84,103,120,123,126],delta_i:120,delta_limit:120,delta_x:120,dem:[44,120],demo:[52,78],demonstr:[9,52,71,78],denot:[5,19,35,103,120],densiti:[69,77,86,88,108,109,123],depart:4,depdend:70,depend:[3,10,12,25,26,27,29,30,31,32,36,38,41,46,47,49,60,65,81,83,84,89,92,93,110,120,121,123,126],deprec:[26,28,100,110,120],depth:[4,12,13,19,22,26,27,36,38,47,53,61,92,104,110,118],deriv:[45,53,64,69,74,75,86,94],describ:[3,4,5,6,10,12,16,20,23,25,26,27,29,30,36,37,38,41,42,43,44,46,49,53,55,56,59,60,61,73,83,89,92,93,94,103,104,106,107,108,110,118,119,120,122,123,126],descript:[3,4,19,30,44,49,59,82,89,92,93,103,110,118,126],design:[4,24,25,41,64,66,88,92,104,122],desir:[0,1,2,3,5,6,12,19,22,23,26,27,33,35,43,44,58,59,60,62,66,67,69,77,83,84,91,107,109,111,118,120,121],desktop:78,destin:41,detach:25,detail:[4,5,12,19,23,25,26,27,29,30,32,36,38,41,45,49,60,64,69,70,71,76,77,78,79,80,81,82,84,92,94,97,103,106,107,110,112,121,123,126],detect:[41,46,76,85,89,121],deterimin:120,determin:[3,5,26,27,30,35,38,40,41,42,44,60,70,73,86,92,93,97,101,102,104,106,107,108,110,116,120,123],determine_topo_typ:120,dev:[21,25,78],develop:[4,5,6,10,15,19,20,21,38,42,45,49,52,59,63,64,67,75,80,82,84,85,94,104,109,118],dict:[26,69,76,81,83,86,120],dictionari:[0,1,2,3,26,60,66,69,76,81,83,86,88,120],dicuss:26,didn:[71,99],died:96,diff:[15,40,96,97,98,99,100,101],differ:[1,3,5,6,9,12,19,22,25,26,27,29,35,36,38,40,44,47,49,52,53,54,62,66,67,69,71,73,81,82,84,89,90,92,93,94,100,101,103,104,107,108,109,110,118,120,121,122,123,126],differenti:[13,26],difficult:35,difficulti:[85,87],diffus:80,digit:[44,60,120],dim:[80,81,84],dimens:[5,6,12,17,19,35,37,44,49,66,67,69,78,80,81,83,86,88,93,103,107,108,109,111,120,123],dimension:[3,6,7,13,19,26,27,29,35,38,49,73,80,92,100,101,109,110,111,120,123],dimensional_split:[100,107,109,111],dip:[26,53,92],dir:[78,124],direct:[5,7,12,19,26,27,29,37,41,44,45,46,49,53,54,60,64,69,80,88,92,107,108,110,120],directli:[16,20,22,25,38,49,60,62,66,67,70,86,89,90,120,124],directori:[1,3,5,8,9,10,11,12,16,17,19,20,22,25,27,29,31,33,35,36,37,40,41,42,43,44,49,50,54,58,62,69,71,73,77,80,82,88,91,92,93,94,96,101,102,103,105,106,107,108,112,114,115,116,117,118,121,123,124],disabl:[39,85],disable_petsc:89,disallow:82,disappear:[92,122],discard:84,disclaim:[45,64],discontinu:[4,84,126],discov:47,discoveri:94,discret:84,discrib:4,discuss:[21,25,26,38,82,88,90,92,93,103,110,126],disk:[10,66,94],disloc:92,dispers:[38,52],displac:[22,26,38,53,92,110,122],displai:[1,10,29,31,41,44,60,77,82,94],dist_latlong2met:37,dist_meters2latlong:37,distanc:[26,37,53,92,118,120],distribut:[4,10,26,45,53,56,64,84,90],disturb:41,distutil:67,dive:90,divid:[93,107],divis:[4,41],dlgeorg:4,dms2decim:37,dnetcdf:32,doc:[20,21,25,26,41,42,70,72,89,113],docstr:[67,71,94],doctest:73,document:[0,1,2,3,14,18,19,20,21,22,25,27,34,36,38,45,53,59,60,61,62,64,70,71,72,76,78,79,84,86,89,92,97,106,109,124,125],doe:[4,8,12,17,24,25,27,31,38,41,43,49,56,60,73,82,83,86,89,94,97,103,118,120,121,123],doesn:[25,86,92],doing:[5,8,16,25,27,35,38,40,42,43,60,62,73,82,92,94,101,102],domain:[5,12,13,30,38,41,42,44,55,65,66,67,69,78,80,83,86,92,93,108,109,111,118],don:[10,24,25,60,77,78,82,85,94,109],done:[1,5,6,7,8,10,12,16,17,22,25,29,35,36,41,43,44,46,49,53,59,60,62,66,70,71,89,92,93,97,101,102,103,106,108,110,117,120,122],donna:4,donnabois:4,donor:[107,109,111],dot:[31,35,41,44,46,121],doubl:[49,67,73,89,103,108],down:[10,26,77,92,101,118,120],download:[9,10,20,22,25,26,41,43,50,52,71,78,85,90,92,120,121],downward:53,dpc:44,dpi:[41,44],dpng:49,dprint:[108,109],dq_src:[80,84],dqdt:84,draw:3,drawcontourlin:49,drawn:[26,41,106],driver:17,drop:[10,107],dry:[12,13,36],dst:44,dt_check:27,dt_initi:[96,107,109,110,111],dt_max:[107,109,111],dt_max_dtopo:[96,110],dt_variabl:[107,109,111],dtdtopo:99,dtdx1d:98,dtdx:70,dtdy1d:98,dtfe:84,dtopo2kml:44,dtopo:[22,26,36,38,44,53,96,98,99,110,118,122],dtopo_data:[96,110],dtopo_file_nam:44,dtopo_fnam:92,dtopo_modul:96,dtopo_typ:[26,44,92],dtopo_usgs100227:92,dtopofil:[44,53,92,110],dtopographi:26,dtopotool:[52,53,92,98,99,101,119],dtopotools_exampl:26,dtopotyp:[110,118],due:[13,26,37,92,94],dummi:[67,84,123],dump:[55,107],dumpgaug:[35,100],duplic:[60,99,102],durat:[26,104],dure:[19,27,35,44,56,96,104,109,110,111,118],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,91,105,114,115],dxc:67,dyc:67,dynam:[5,17,26,38,52,56,92],dynamic_slip:26,dz_at_t:26,dz_interv:26,dz_max:26,e10:92,each:[1,2,3,5,6,12,15,19,22,25,26,27,28,30,35,37,41,44,49,52,53,54,55,58,59,60,62,66,67,70,73,76,77,78,80,81,82,83,84,86,88,92,93,94,96,97,101,103,106,107,108,109,110,111,117,118,120,122,126],each_fram:35,each_gaug:35,earli:[5,17],earlier:[17,19,27,66,80,92,96,120],earth:[22,44,53,92,100,110],earth_radiu:110,earthquak:[22,26,36,38,110,118],eas:44,easi:[4,5,8,25,49,67,77,78,79,82,112,123],easier:[59,123],easiest:[16,25,30,32,56,60,62,90,92,93,123],easili:[3,10,25,27,41,49,60,67,82,85,89,90,92,94,112],east:[10,92,118],eastern:92,easy_instal:78,ec2:[22,43],edebug:[108,109],edg:[3,5,11,12,24,26,27,43,44,53,73,81,82,92,103,105,108,109,111,123],edit:[25,41,62],editor:55,edu:[26,41,50,90,92],effect:[25,41,47,49,77,82,90,93,94,104,110,120],effici:[38,64,75,77,82,86,93],effort:82,eigenvector:[103,126],either:[9,12,17,26,30,36,41,43,49,53,60,62,66,68,77,82,84,89,93,94,100,101,103,118,120,123,126],elabor:82,elast:[10,52,53,92],element:[0,3,19,44,81,84,86,107,108,109,110],elev:[19,22,27,36,38,41,44,91,110,118,120,122],elif:[109,111],elimin:[19,67],ell:103,els:[24,25,86,111],elsewher:[21,92],emmett:[13,64,75],empir:[38,47],empti:[35,83,86,89,92,107,120],empyclaw:80,enabl:[77,82,85,89],encapsul:38,encount:[31,41,60,85,87],encourag:[49,82],end:[10,26,27,37,41,44,69,77,82,88,90,92,93,101,109,111,117],end_dat:37,enddo:123,endors:[45,64],energi:77,enforc:110,engin:[13,41],english:82,enhanc:[47,64,82],enough:[117,118],ensur:[29,49,102],enter:[49,78,85],enthought:[85,87,90],entir:[5,38,41,44,54,56,66,77,82,83,97,102,120],entireti:69,entri:[41,66,89],enumer:84,environ:[22,25,29,31,40,41,49,51,54,56,79,82,87,89,92,120,121],envis:12,epd:87,eprint:[108,109],epsg:41,epsilon:70,eqinthenew:92,eqn:126,eqnarrai:88,equal:[12,26,27,41,78,80,92,93,102,107,109,111,118,120],equat:[4,12,13,29,36,38,47,52,60,65,66,67,69,75,77,80,82,84,85,86,92,97,100,103,107,109,110,111,118,123,126],equiv:126,equival:[5,44],err:109,error:[12,17,29,30,31,41,43,49,54,60,69,75,77,82,89,93,94,108,109,121],escap:[93,109],escienc:10,especi:[25,41,67,80],esri:118,essenti:[49,84,92,110,118],est:109,establish:4,estim:[47,93,108,110],estimat:109,eta:[26,27,100],eta_tild:27,etc:[0,2,12,16,17,21,24,25,27,38,41,42,44,55,59,67,82,103,106,107,110,123],etopo10min120w60w60s0:92,etopo1:[92,104,120,122],etopo:[92,122],etopo_sample_2min:120,euler:[52,75,84,98,100,103,123],euler_2d:[29,80],evalu:[24,26,47,66,84,92,120,123],even:[38,41,45,53,64,82,89,92,93,108,109,118,121,123],evenli:41,event:[22,38,44,45,64,92,104,107],event_tim:44,eventu:[10,36],ever:[82,106,110],everi:[5,27,30,35,43,66,69,71,77,86,92,93,94,103,107,109,111,120,123],everyth:[25,27,43,54,78,88,89,94],everywher:[37,47,86],evolv:[19,66,69,84],evolve_to_tim:[66,84],exactli:[25,40,86,107],exam:60,examin:[12,29,35,92],exampl:[0,1,2,3,4,5,10,12,17,19,21,24,25,26,27,30,31,32,34,37,42,43,44,46,47,50,53,54,55,59,60,62,64,65,66,67,68,69,72,73,74,75,76,80,81,82,83,84,85,88,89,90,92,93,94,96,98,99,100,101,102,103,104,106,107,108,109,110,111,112,116,117,118,120,121,122,123],exce:[27,41,93,108],exceed:93,except:[19,24,26,81,82,89,107,110,118],excerpt:78,exe:[22,29,69],exec:[0,1,3,60],execut:[0,1,3,12,16,24,29,35,43,44,49,60,62,69,71,78,94,121],exemplari:[45,64],exercis:[36,94],exist:[1,18,26,28,29,49,60,73,80,83,86,89,90,97,120],exit:[60,78,85],exp:[66,77,88],expand:[23,41,44,82],expect:[82,88,89,94,109,110,111],expens:[84,93,97],experi:[21,38,84],experiment:64,expert:38,explain:[10,30,38,43,82,93,107,112],explan:[25,70],explicit:[89,108],explicitli:[49,107,126],explor:[4,44,60,62,82],expon:47,expos:10,express:[4,26,45,64,85],extend:[12,19,44,49,73,82,92,110,118,120,126],extens:[4,13,19,21,25,26,38,49,67,75,76,89,92,107,116,120,126],extent:[38,43,44,47,49,66,73,86,92,96,110,120],extra:3,extra_fil:42,extract:[41,82,120,122],extran:100,extrap:[12,80,88,107,109],extrapol:[12,19,27,30,80,88,107,108,109,111],extrem:[41,87],extropl:12,f2py:[43,67,80,89],f2py_flag:89,f2s:44,f49620:4,f77:[32,121],f90:[11,17,27,43,54,80,91,93,96,100,105,114,115,118,121,123],f95:89,f_file_nam:69,f_path:69,facecolor:[2,60,106],facilit:[94,100,112],fact:[41,86],factor:[5,41,92,108,110,117,120],faculti:[26,90,92],fade:60,fail:[11,25,78,89,91,94,100,105,114,115],failur:94,fairli:[12,38,82,92],fall:104,fals:[0,1,2,3,26,30,38,39,40,41,44,69,73,83,84,86,89,92,93,101,102,107,108,109,110,111,120],famili:[84,109,111],familiar:43,faq:[10,22,90],far:[12,33,59],faster:120,fastest:85,fault:[13,22,26,36,92,118,122],fault_plan:26,favor:[100,120],favorit:59,fbound:32,fc02:4,fcompil:121,fdefault:89,feasibl:82,featur:[19,25,27,41,49,60,67,75,82,93,94,99,101,110,118],feet:[104,122],fetch:[10,25,37],fetch_noaa_tide_data:37,fetch_topo_url:120,few:[5,9,10,19,23,38,42,43,49,67,84,88,93,94,104,116,123],fewer:[92,93,120],ff0000:[3,44],ff9999:106,ffff00:60,fflag:[22,25,31,46,50,54,67,89],ffpe:32,fg02:4,fg03:4,fg06:4,fg1:27,fg2:27,fg_maxnum_fgrid:27,fg_num_val:27,fgmax2kml:44,fgmax:[22,44,54,97,99,110],fgmax_data:[27,110],fgmax_fil:[27,110],fgmax_grid:44,fgmax_interpol:27,fgmax_interpolate0:27,fgmax_modul:27,fgmax_tool:[27,99],fgmax_tools_modul:27,fgmax_valu:27,fgmaxgrid:27,field:[44,80,83,86],fig:44,fig_kwarg:[26,120],fignam:[1,62],figno:[1,2,35,41,60,62,106],figsiz:[2,60,92,106],figur:[0,1,2,4,10,22,26,29,33,35,44,49,62,83,92,103,106,120],file1info:110,file2info:110,file:[1,5,7,8,11,16,17,19,20,22,24,25,26,29,31,32,33,35,36,38,40,43,44,46,50,53,55,56,59,61,64,67,69,71,72,73,76,77,78,79,80,82,83,86,87,89,91,92,96,97,99,100,101,104,105,106,107,108,109,111,113,114,115,117,119,120,121,122,124],file_format:83,file_prefix:[76,83],file_prefix_p:69,filenam:[41,100,120],fill:[0,3,4,5,12,41,73,75,86,107,117,120,123],fill_between:3,fill_topo:120,fill_valu:120,fill_var2:3,fill_wher:3,filter:120,filter_region:120,find:[1,3,4,5,21,22,24,25,26,37,41,46,50,52,53,56,59,64,71,80,86,87,89,90,121],fine:[3,27,56,80,93,107,110,118,123],finer:[3,22,41,92,93,96,97,107,108],finest:[3,35,117,120],finish:[10,60,66,82],finit:[4,13,27,33,44,49,53,84,92,117,118,123],finite_fault:92,finlin:89,first:[1,3,10,16,17,19,25,26,27,29,30,41,42,43,44,46,49,60,62,66,67,72,73,78,80,82,84,85,86,88,89,92,93,96,100,102,103,107,109,110,118,120,126],fit:[45,64,82],five:27,fix:[5,16,17,19,22,36,44,64,96,97,98,99,100,101,107,109,111,118,120],fixedgrid:110,flag2refin:[19,30,108,109],flag2refine_tol:[93,108,109],flag:[10,19,22,25,31,32,50,54,67,87,89,100,109,110],flag_richardson:[93,101,108,109],flag_richardson_tol:[93,108,109],flat:[53,92,118],flavor:[9,18],flexibl:[19,26,44,67,92,100,103],floor:[26,36,53],flow:[4,12,13,20,27,36,38,75,82,92,103,107,110,118,123],fluctuat:[81,84,126],fluid:[38,52,104],flush:101,flux2:67,flux2_dimsplit:100,flux3_dimsplit:100,flux:[13,27,82,84,103,107,126],fly:22,fmt:3,fname:[44,92,109,110,111],focu:[4,36],fold:12,folder:[11,41,91,105,114,115],follow:[0,2,3,4,5,10,12,15,16,20,21,25,26,27,29,30,35,36,41,43,45,49,50,53,55,60,61,64,66,67,68,71,72,73,76,78,80,81,82,83,85,86,88,89,92,93,94,102,103,106,107,108,110,117,118,121,123,125],fontsiz:60,foot:53,fopenmp:[32,54,89],forbidden:30,forc:[19,30,31,46,89,92,120,121],force_dri:44,forestclaw:100,fork:[21,42],form:[0,2,3,4,5,16,17,19,26,27,29,30,33,35,37,45,47,53,55,64,67,77,82,84,88,89,92,93,97,102,103,107,108,109,110,114,118,120,123,126],formal:82,format:[1,3,10,22,26,29,36,38,39,41,44,49,50,59,60,66,69,76,79,80,83,89,92,101,107,110,118,120,124],format_str:35,former:[60,123],formerli:100,formul:[4,38,47,103,107],formula:47,fort:[1,7,22,24,27,35,49,50,83,97,101,102,107,108,109,111,117,124],fortfil:29,fortran90:82,fortran:[5,8,10,17,20,24,25,26,27,29,36,43,46,47,52,54,55,56,59,62,64,66,67,69,75,78,80,81,84,85,86,89,100,101,109,111,117,118],fortran_modul:86,fortran_src_wrapp:67,forward:[84,123],found:[1,4,5,8,9,10,11,12,19,24,27,29,31,33,35,37,38,40,44,46,52,58,60,61,62,63,66,70,78,83,87,89,91,92,94,101,102,104,105,106,114,115,120,121],founder:4,four:[73,93,94],fourth:27,fpe0:32,frac:[47,88,126],fraction:[5,10,26,93,107,123,126],fragil:86,fragment:3,frame0000:49,frame0005fig1:41,frame0005fig1_tmp:41,frame:[1,2,3,24,35,41,49,50,55,59,60,62,66,69,76,78,83,85,89,92,102,106,109,111,112],framecount:89,framenam:49,frameno:[1,3,24],framesoln_dict:1,frametool:[1,24,62],framework:[4,64,67,101],free:[10,41,43,53,64,68,80,85,87,90],frequenc:84,frequent:[17,24,87,101],friction:[22,36,38,110,114,115],friction_depth:[47,110],friction_forc:110,friction_modul:100,friedemann:70,from:[0,1,3,4,5,6,9,12,13,14,15,20,22,23,24,27,28,29,30,35,38,41,42,43,45,46,49,51,53,55,60,63,64,65,66,68,69,73,74,75,77,78,80,81,82,83,84,85,86,87,88,89,90,93,94,96,97,100,101,102,103,104,107,108,109,110,111,116,118,121,122,123,124],frommm:70,front:[49,83,89],fset:86,fstr:49,ftrapuv:32,full:[5,43,44,60,69,77,82,84,88,90,118,123],fulli:[5,38,41],fun:89,func:89,function_nam:89,fund:[22,75],funrol:89,further:[5,12,22,32,38,44,46,49,75,92,93,94],furthermor:[41,88],futur:[10,19,23,29,38,44,47,52,66,84,92,101,118],fvmbook:[9,33],fvmhp:[4,9,12,13,22,56,103,107,123,126],fwave:[84,103],g77:87,galerkin:84,galleri:[9,22,29,58,71,75,90,94,99,112,116,123],gallery_al:[34,75],gallery_classic_amrclaw:[29,34],gallery_fvmbook:[13,33,34],gallery_geoclaw:[27,34,36],gamma:47,gap:120,gas:5,gaug:[22,44,73,74,86,96,100,101,102,104,109],gauge1:102,gauge2:102,gauge_coord:73,gauge_data:86,gauge_dir_nam:73,gauge_fil:73,gauge_file_nam:73,gaugedata:[35,109],gaugeno:[35,92,109],gauges2kml:44,gauges_modul:100,gaugetool:[35,100],gauss_pt:26,gaussian:[66,88,111],gca:39,gcc:[78,85],gcs:41,gdal_data:41,gdal_test:41,gear:10,gen_vari:[89,94],gener:[0,1,2,3,4,5,6,8,10,12,13,16,17,21,22,25,27,31,32,38,41,43,46,47,53,54,55,59,60,61,62,64,67,68,70,72,73,78,79,80,82,83,84,85,88,89,90,92,93,96,100,102,104,107,108,112,117,118,123,124],generate_2d_coordin:120,generate_2d_topo:120,geo:[22,47],geo_data:110,geoclaw:[4,9,13,20,21,25,26,27,28,30,32,35,43,44,47,50,52,53,56,85,92,94,102,104,107,108,117,118,119,120,122,123],geoclaw_modul:100,geoda:[92,104,122],geodaa:92,geodas_npacif:92,geodata:92,geohazard:38,geol:[26,92],geolib:[27,50,96,100],geom:86,geometr:123,geometri:[22,26,75,80,83,86,100],geophys:[4,12,13,20,36,38,56,107],geoplot:[39,41,61],georefer:41,georeferenc:41,georg:[4,13,26],geoscientist:38,geospati:41,get:[0,10,21,25,31,41,43,46,66,67,73,77,78,82,85,87,88,89,90,94,102,120,121],get_aux_glob:86,get_auxbc_from_aux:86,get_cmap:60,get_count:89,get_dim_attribut:73,get_dt:84,get_dt_new:84,get_q_glob:86,get_qbc_from_q:86,get_remote_fil:120,get_topo:120,getax:1,getcwd:60,getfigur:1,getfram:[1,3,62],getgaug:35,gethandl:[0,2,3],getitem:1,getlogg:77,gfortran:[10,22,43,54,65,87,121],gfortranbinari:85,ghamdi:4,ghost:[12,22,54,55,73,84,86,107,109,111,117,123,126],gica2937:26,gist:43,git:[9,10,20,21,22,23,42,72,85,94],git_statu:40,github:[9,19,20,21,23,42,43,63,71,72,80,85,94,99,101,121],gitter:21,give:[3,5,10,12,21,25,26,29,35,44,54,55,60,62,78,79,82,84,92,94,97,101,107,110,118,120,122],given:[26,37,41,44,47,49,53,70,78,83,84,86,89,92,93,104,110,118,120,123],glitch:99,glob:71,global:[5,73,82,86,89,92,104,122,123],gloss:122,glu:12,gmt:37,gnu:85,gnufcompil:121,goal:5,godaddi:42,godunov:[4,84,107,109,111,123],goe:[26,36,82],going:[12,19,66,69,71,81,82,90,92,95,112,118,126],gone:77,good:[12,38,41,45,54,64,88,92,94],googl:[21,22,25,44,71,78,87,92,100],googlecod:78,googleearth:[41,44],googleearth_darkblu:41,googleearth_lightblu:41,googleearth_transpar:41,gov:[26,37,78,92],govern:110,gprint:[108,109],gradi:[4,64],gradient:126,gradylemoin:4,grant:[4,64],graphic:[20,25,49,59],gravit:[47,110,123],graviti:110,great:[37,71,92],greater:[27,44,47,85,90,93,102,107,108],greatest:93,greatli:[23,64,104],green:[44,53,60,92,94,120],grid1d:73,grid1info:110,grid2info:110,grid:[4,6,13,16,17,19,20,22,24,25,30,35,36,38,41,44,49,55,56,59,64,66,75,77,78,80,81,82,83,84,86,88,92,93,94,96,97,99,100,103,104,107,108,109,111,117,118,120,122,123,126],grid_files_scanf:124,grid_numb:55,grid_registr:120,griddata:120,grideges_show:19,gridlin:49,gridlines_show:19,ground:27,groundoverlai:41,group:[3,10,21,25,26,38,71,78,87,92,101],guarante:[36,38,84,92],guard:101,gui:[19,124],guid:[10,15,20,21,22,36,63,75,90,113],guidelin:75,hack:86,hadjimichael:64,half:[0,12,13,53,84,92,107,123],halfspac:53,hand:[3,16,17,47,66,92,94],handi:46,handl:[0,2,3,5,27,32,36,43,44,54,56,59,73,80,83,84,86,87,88,89,92,96,97,99,100,110,120],hang:53,happen:[41,46,66,83,86,121],harbor:27,hard:[39,54,60,120],hardcopi:[1,60,62,106],harder:107,hardest:[50,90],hardwir:54,has:[0,4,5,10,12,14,17,18,19,20,24,25,27,28,29,30,40,41,44,46,47,49,53,55,56,60,64,67,69,73,77,80,81,82,83,86,87,89,90,91,92,93,94,95,96,97,103,104,107,108,110,117,118,120,122,123,124,126],hash:[40,42,94],have:[0,1,2,3,4,5,7,8,10,12,15,17,19,21,24,25,26,27,29,32,33,35,36,38,41,42,43,46,47,49,50,52,54,55,59,60,62,64,66,67,70,71,73,75,77,78,79,80,81,82,83,84,85,86,87,88,89,92,93,94,96,97,99,100,101,102,103,104,107,108,110,112,116,118,120,121,123],haven:88,haversin:37,hawaii:92,hazard:[22,27,47,104],head:[25,26,92],header:[8,26,55,92,100,118,120],header_styl:120,heavili:67,height:[41,92,120],held:38,hello:78,help:[6,20,21,22,25,31,39,43,46,62,75,78,82,85,89,94,101,112,121],helzel:13,hemispher:92,henc:[42,84,93],here:[10,12,27,38,44,52,56,60,62,63,66,69,70,75,78,80,81,82,87,88,92,100,120,126],heterogen:123,hex:[44,60],hidden:[3,46,60],hide:[41,49],hierarchi:[41,73],high:[4,13,38,41,56,67,75,84,103,104,110,122,123],higher:[3,5,41,73,84,85,104],highlight:[8,10],hilo:[104,122],hint:[12,22,36,43,62,110,121],histor:[38,53,122],histori:[25,62,90,102],hit:[12,49,62,77,107],hmin:27,hoc:67,hold:[3,62,88,92,93],holder:[45,64],holland_storm_modul:100,home:[10,26,43],homebrew:41,homepag:18,homogen:[53,84,123,126],honshu:92,honshu_ucsb3:92,hood:59,hope:[23,94],horizont:[41,92,120],host:41,hour:[10,41,44,92],how:[1,5,6,9,12,19,21,22,25,26,27,29,30,32,35,36,41,44,52,53,54,55,69,71,76,80,82,84,88,89,92,93,94,97,102,103,106,107,110,112,120,124],howev:[5,10,12,19,25,29,32,36,38,41,45,53,54,55,64,67,93,94,104,106,110,117],hpc:[21,43],html:[1,10,13,20,22,25,26,29,31,35,41,42,52,59,60,71,72,78,79,90,92,94],html_plot:79,htmlplot:71,http:[4,9,10,13,21,23,25,26,37,41,42,43,45,50,63,64,67,68,75,78,80,90,92,99,101,120],hydrodynam:13,hyperbe:70,hyperbee_limit:70,hyperbol:[4,5,13,33,56,67,75,80,81,88,103,107,110,123,126],hyperol:107,hyphen:82,ibm:85,idea:[21,26,49,56,66,82,88,92,97,120,126],ideal:[92,104],ident:[73,78,94,120],identifi:[29,41,67,82,93],idl:10,ieee:13,ifort:32,igetsp:100,ignor:[12,41,44,100,104,118,120],iii:92,iinstal:78,illustr:[26,29,41,49,52,53,99,100,103,112,119,120],imag:[10,29,44,82,94],imaginari:82,immedi:[25,38,49,66,68,69,77],impati:80,imped:[66,88],implement:[1,4,6,12,26,30,44,51,64,80,82,84,88,89,93,94,99,103,107,120,123,126],impli:[45,64],implicit:[64,82,84],importantli:78,impos:[12,67,93,110,114,115,126],imposs:[38,107],improv:[4,10,19,21,27,28,41,82,96,97,99,100,101,107],imshow:120,in_poli:120,inaccur:38,inaccuraci:38,inadequaci:47,inadvertantli:60,inbound:10,inc:49,incept:4,inch:[2,41,44,60,106],incident:[45,64],includ:[4,5,10,11,18,19,20,24,25,26,29,31,32,35,38,41,43,44,45,47,49,50,54,56,59,60,62,64,66,67,71,73,75,77,78,79,80,82,83,84,85,86,88,90,91,92,94,96,103,105,107,109,110,112,113,114,115,117,118,120,123],incom:12,incompat:25,incompress:13,inconsist:101,incorpor:[19,38,42,64,84,90,96,120],incorrect:82,incorrectli:101,increas:[41,44,54,82,110],increasingli:25,increment:[27,89,92,107,109,111],ind:73,inde:[67,78],indent:[37,44,82],independ:[20,26],index:[1,5,10,19,20,24,27,35,42,60,73,75,78,80,81,82,89,107,109,111],indic:[6,12,17,19,22,26,32,41,49,58,62,73,77,78,81,82,84,88,92,93,94,103,107,109,110,111,118,120,123],indirect:[45,64],individu:[4,19,20,41,44,49,73,82,93,94],inf:120,infer:120,infinit:107,inflat:12,info:[26,44,49,69,73,77,84,108,109],info_sz:26,inform:[10,19,29,36,37,38,39,40,43,55,60,61,62,63,66,67,73,77,78,79,81,82,83,89,92,101,102,103,107,108,110,117,118,121,122,123,124],inhabit:66,inherit:[60,84],initi:[4,10,19,22,26,27,30,35,37,38,41,49,53,56,62,64,65,66,67,69,70,73,74,82,83,84,86,87,89,91,92,93,101,104,107,109,110,111,118,120],initialize_sourc:67,inlin:90,input:[6,12,17,20,22,24,26,30,31,41,44,49,66,69,70,73,75,81,82,83,84,89,101,103,109,110,111,118,120,123],input_filenam:67,input_unit:26,inputfil:[89,118,120],inrati:92,inratt:92,inratx:92,ins:19,insert:[8,12,53,92],insid:[73,78,82,83,120],inspect:[16,17,41,92],instal:[9,10,15,20,22,29,41,62,64,65,68,74,75,76,88,92,94,95,96,97,98,99,100,101,125],install_output:43,instanc:[3,22,25,41,56,62,66,67,69,73,77,80,82],instantan:[84,118],instanti:[69,78,80,84,86,109,111],instati:120,instead:[3,10,25,27,29,50,85,86,89,92,101,103,118,120],institut:4,instruct:[10,15,21,22,29,41,50,66,68,75,78,85,88,95,96,97,98,99,100,101,102,125],insur:[40,46,62,92,93,96,100,108,110,118],intact:[51,101],integ:[3,27,35,41,44,47,60,67,83,93,103,107,110,120],integr:[19,64,75,77,84,96,97,101,109,111,117,118,123],intel:22,intend:[38,67,82],intens:67,intent:[67,103],inter:25,interac:77,interact:[1,10,19,22,29,31,35,36,46,52,56,60,67,78,79,85,88,101],interactive_plot:[79,88],interactive_test:101,interdepend:86,interest:[9,12,20,24,27,39,49,67,86,92,94,107],interfac:[4,16,19,22,49,64,67,70,75,81,82,84,89,90,103,123,124,126],interface_funct:89,interior:[5,12,55,86],interleav:64,intermedi:[16,27,123],intern:[5,26,35,44,118,120,126],interp_unstructur:120,interpol:[5,12,22,26,28,35,44,49,60,104,110,120],interpret:[27,90],interrupt:[45,64],intersect:27,interv:[35,37,66,82,88,92,93,107,110],introduc:[12,16,27,60,82,126],introduct:52,introductori:90,introspect:82,intuit:75,inund:[27,36,41,47,92,104,122],inundataion:[104,122],inv_haversin:37,invalid:[32,83],invert:[37,82],invest:38,investig:94,invis:[31,100],invok:[8,54,82,121],involv:[21,80,84],ioerror:83,ioexcept:89,iout:111,ioutarrivaltim:110,ioutsurfacemax:110,ipdb:60,iplot:[29,71,78],iplotclaw:[1,10,19,22,29,35,36,60,79],iplotclaw_:60,iplotclaw_figno:1,ipynb:[26,101],ipynotebook:101,ipython:[10,22,26,34,53,56,60,62,67,68,75,77,85,88,90,100,101,119,120],ipython_displai:96,iqinit:[110,118],irregular:92,is_valid:[83,86],island:92,isn:[46,54,55,121],isosurfac:49,isotrop:53,issu:[19,21,23,42,43,49,66,71,73,75,84,85,87,94,96,101,110],item1:[0,62],item:[0,1,3,22,49,62,89,106],itemnam:[1,62],iter:26,ith:81,its:[4,5,10,19,28,38,41,45,55,64,69,70,71,73,75,80,82,83,84,86,89,90,93,109,120,126],itself:[43,59,72,110,120],ixi:82,jacobian:[103,126],jan:4,januari:[14,95],japan:[41,44],javascript:112,jed:64,jet:[26,49],job:10,join:[21,60,92],journal:[13,75,112],jpg:49,jsanim:[96,100],jsanimation_frametool:98,juli:[14,97,98],jump:[4,43,49,62,84,107,126],junction:[27,110],jupyt:[100,101],just:[0,5,25,31,43,66,67,69,71,77,78,79,80,82,86,89,90,92,97,107,123],justifi:53,kappa:[88,126],kappa_i:126,karg:83,kaust:[4,21],keep:[22,25,29,54,66,69,82,86,89,92,94,97,110],keep_copi:[66,69],keep_gaug:86,kei:[0,1,2,10,26,84,88,89,120],kemm:70,kemm_2009:70,kernel:89,kernel_languag:[84,89,94],ketch:4,ketcheson:[4,13,57,64,75,82,84],ketchesonmandliet:[4,13],ketparlev13:[4,13,56,75],keyboard:49,keypair:10,keyword:[2,3,60,66,71,73,82,83,89,94,106,120],kind:[69,71],kinemat:26,king:64,klein:70,kml:[44,100],kml_build_colorbar:[41,44],kml_cb:44,kml_colorbar:41,kml_dpi:[41,44],kml_figsiz:41,kml_footer:44,kml_gaug:44,kml_header:44,kml_index_fnam:41,kml_name:41,kml_png:44,kml_publish:41,kml_region:44,kml_starttim:41,kml_tile_imag:41,kml_timespan:44,kml_timezon:41,kml_tz_offset:41,kml_use_for_initial_view:41,kml_xlimit:41,kml_ylimit:41,kmltool:119,kmz:44,kneplei:[13,64,75,82],know:[38,43,46,64,104,120,121,122],knowledg:38,known:[32,49,53,54,60,85,87,94,107],kpp:71,kristof:64,kutta:[75,84],kwarg:[2,26,44,60,89,94,106],kyle:[4,13,64,70,75,82],label:[26,39,41,44,100,118,120],lack:3,lake:[36,118],lambda:[73,120],land:[12,36,41,44,61,120],landslid:38,langseth:[4,13],langsethleveque00:[4,13],langtangen:90,languag:[8,59,89,90],lapack:96,laptop:75,larg:[5,17,29,38,41,42,49,54,59,77,78,92,93,94,101,102,107,120],larger:[10,17,27,41,44,54,55,60,73,96,110,118],largest:[93,104],last:[3,15,24,27,60,66,67,80,88,92,101,107],lat:[26,37,92,120],later:[10,40,62,82,84,92,102],latest:[20,22,68,78,85,97,101],latex:[1,22,41,59,79],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:82,latitud:[11,22,26,27,36,37,41,53,92,100,105,110,120],latitude_max:41,latitude_min:41,latitudin:37,latitutd:26,latlong:26,latter:[11,42,80,105,107,123],launch:[22,71,75,78,79,85],law:[4,13,44,126],lax:[84,107,109,111,126],layer:[13,44,73,96,98,101],lbla:87,lead:[5,10,19,38,41,47,49,53,108],learn:[38,71,90],least:[4,5,10,30,41,44,49,87,92,93,94,101,107,109,118,120],leav:[10,12,108,120],led:17,leer:[70,84,107,109,111],left:[3,10,12,24,27,55,62,73,80,81,82,88,92,102,103,104,108,118,120,122,126],legaci:20,lemoin:[4,64],len:[26,73,109,111,120],lenght:107,length:[11,26,38,44,53,80,82,86,92,105,107,108,109,110,123],less:[38,41,47,54,82,84,93,94,107],let:[12,36,43,64,92],letter:82,level:[3,5,6,12,20,24,27,30,35,36,37,38,41,43,49,51,54,55,67,69,73,77,82,84,91,92,93,94,96,97,101,102,104,107,108,109,110,111,117,118,120,122,123],levequ:[4,12,13,26,56,70,75,84,90,103,107,123,126],leveque09:13,leveque1996:13,leveque1997:75,leveque96:13,leveque97:[4,13],leveque_book_2002:81,levequegeorgeberg:[4,13],levyon03:13,lflag:22,lgomp:89,liabil:[36,38,45,64,92],liabl:[45,64],librari:[5,10,11,12,17,19,24,25,27,29,32,35,44,50,54,55,56,64,70,76,78,82,84,89,91,93,105,108,114,115,121,123],library_path:89,licens:[22,36,38,75,92],lie:[5,27],lies:[5,12,27,30,93,110],life:82,lifetim:82,light:[41,49,93],lighter:41,like:[10,25,32,41,42,44,49,50,62,67,69,73,77,78,81,82,83,84,86,90,94,101,106,117,118,121],lim_typ:[82,84],limit:[0,4,5,22,26,38,41,44,45,49,52,54,59,64,66,67,75,82,84,92,93,98,107,109,110,111,118,120,126],limiter_typ:82,limitertyp:82,linalgexcept:82,line2kml:44,line:[1,3,4,12,22,25,26,27,32,35,36,37,40,41,44,46,49,50,55,60,78,82,84,88,89,92,96,97,100,106,107,109,118,120],linear:[4,26,27,53,60,66,70,84,103],liner:[0,26,82],linestyl:120,linewidth:60,link:[4,8,10,13,15,16,17,21,25,32,33,36,41,42,43,44,50,52,82,90,104,111,118,122],linspac:[49,69,88,92],linux:[10,43,51,87,90,94],lisandro:[64,82],list:[1,3,4,6,7,8,10,19,25,26,27,29,30,31,35,41,43,44,45,47,49,54,60,62,64,65,66,69,70,73,77,79,80,81,82,83,84,86,87,89,92,93,100,102,107,108,109,110,111,117,120],liter:82,literalinclud:42,literatur:38,littl:[38,104],live:86,llapack:87,llcenter:120,llcorner:120,lmm:84,lnetcdf:[32,50],lnetcdff:50,load:[10,44,79,83,89,90,94,120,124],load_sift_unit_sourc:26,loc:120,local:[10,13,17,22,25,41,44,49,70,73,75,80,86,120,123],local_fnam:120,local_path:89,locat:[5,10,21,22,26,36,37,41,49,55,73,77,79,81,83,89,92,101,102,104,120],log:[22,25,74,83,84],logger:[77,86],logic:[5,12,13,27,82],long_lat:120,longer:[17,25,44],longest:92,longitud:[22,26,27,36,37,41,53,92,100,110,120],longitude_max:41,longitude_min:41,longitude_shift:26,longitudin:37,look:[10,19,25,26,41,44,49,50,60,62,67,73,78,82,83,84,88,89,90,92,94,97,107,108,110,117,120,121],loop:[30,35,49,59,89,93,106,107,123],lose:101,loss:[45,64],lot:[25,43],love:71,low:[41,67,120,122],lower:[3,19,26,27,55,73,78,82,92,107,109,111,118,120,122],lower_glob:73,lowerg:78,luna:[13,64,75],lxml:41,lying:5,m_w:126,mac:[43,54,87,90,94],machin:[10,22,43,54,56,90,94],macport:41,made:[4,15,19,25,26,83,86,92,96,97,110,120,123],magic:44,magnitud:[26,92],mai:[0,1,2,3,4,5,10,14,15,16,17,19,20,24,25,26,27,29,31,36,37,38,39,41,42,43,45,46,47,49,50,52,53,54,59,60,62,64,67,68,71,73,75,77,80,82,83,84,87,89,90,92,93,94,98,100,101,102,104,106,107,108,109,110,118,120,121,123],mail:[80,87],main:[8,16,25,49,56,67,69,76,80,82,88,89,94],mainli:78,maintain:[25,82,108,118,123],mainten:[64,82],major:[4,19,64,67,95,96,97,98],make:[1,8,10,16,17,19,21,22,24,25,27,29,31,32,35,36,38,40,41,42,43,44,46,47,49,54,56,62,66,67,69,72,73,74,75,80,82,83,89,92,94,96,100,101,107,116,118,120,122,123],make_colormap:60,make_input_data_kml:44,make_lib:10,make_plot:72,make_shoreline_xi:120,makefil:[5,8,11,12,16,17,20,22,25,27,29,32,50,54,56,60,62,67,74,93,96,100,105,107,109,110,111,112,114,115,121,123],makefile_kml:100,maketopo:[92,118],man:[13,22,36,38,110,114,115],manag:[10,41,77,92],mandli13a:13,mandli13b:13,mandli:[4,13,64,70,75,82],mani:[1,3,4,5,9,10,17,18,19,25,27,29,30,32,33,36,44,46,53,54,55,60,62,64,66,71,75,80,82,83,88,89,90,92,93,95,96,103,106,107,108,110,116,118,123],manifold:49,manipul:[35,120],manner:[35,41,59,107,114,115],manning_break:110,manning_coeffici:110,manual:[25,43,67,85,87,94],manuel:[13,64,75],maojr:101,map2d_to_1d:24,map:[3,12,26,44,49,60,64,67,73,75,80,92,93,100,120,126],map_2d_to_1d:3,mapc2p:[3,22,24,49,67,73],mappedgrid:[3,49],march:[14,92,96,97],margin:[27,36],mark:[12,41,94],mark_cent:73,mark_nod:73,marker:44,markup:8,marsha:[4,5],mask:[39,120],mask_outside_zlim:44,maskedarrai:120,mass:[5,77],massiv:75,master:[10,14,25,42,80,101],match:[26,41,44,71,76,83,94,120],materi:[4,45,53,64],math:[13,41,88],mathemat:[4,90],mathwork:49,matlab:[6,19,22,29,58,59,60,79,90],matlabpath:49,matplotlib:[0,2,3,10,26,39,41,43,59,60,65,68,90,92,106,120,121],matric:[103,126],matrix:82,matteo:[4,13,64,75],matter:100,matthew:[13,64,75,82],maux:[19,103,123],max1d:54,max:[0,26,49,92,93,97,109,111,120,126],max_inch:44,max_level_deep:110,max_step:84,max_vertices_in_descript:44,maxima:[27,54,110],maximum:[3,19,22,26,27,28,30,49,84,88,93,96,97,107,108,109,111],maxlevel:[30,49,92,93,108,109,110],maxm:103,maxmi:[17,67],maxmx:[17,67,82,103],maxmz:17,maxwell_1d_homogen:80,mayb:120,mbc:[103,123],mc_limit:70,mcs:78,mean:[3,10,19,35,38,49,77,78,92,93,103,104,107,109,111,122],mean_latitud:39,meant:[32,73,84],measur:[26,35,37,53],mechan:86,media:[13,52],medial:82,medium:[109,123],member:[80,83,88],memori:[17,19,54,55,56,66,69,82,86,108,109],mention:[107,108],menu:[10,44,104,122],meqn:[35,55,103,123],merchant:[45,64],mercuri:78,merg:[5,10,25,100],mesh:[4,6,13,49,56,59,66,93,106,107,123],meshgrid:[66,80,120],messag:[25,31,37,42,49,54,69,77,79,82,83,84,86,87,107,109,111,121],met:[27,45,64],metadata:[55,82,92,120],meter:[26,37,41,104,110,120,122],method:[4,13,33,35,52,60,62,66,69,70,73,78,82,83,84,89,93,94,100,103,106,107,108,109,111,117,118,120,123],method_data:82,metric:37,mhhw:104,mhw:[38,104,122],micro:10,mid:60,middl:101,midpoint:73,might:[10,12,19,25,29,30,37,41,42,43,49,51,54,60,66,77,90,92,93,96,103,107,108,118,120,122,123],migrat:16,millimet:120,min:[0,120,126],min_level_check:27,mind:82,minim:[5,82,108,120],minimum:[3,27,41,53,88,110,120],minisymposterium:21,minlevel:[30,92,93,108,109,110],minmod:[70,84,107,109,111],minmod_limit:70,minor:[8,41,77,96,97,98,99,100,101],minut:[37,41,42,44,92,104,120,122],mis:60,misc:[4,75],miscellan:81,miss:[19,82,118,120,121],mitig:38,mitran:[4,13],mix:[26,41],mjb:[5,13],mjberger:4,mllw:122,mode:[1,10,25,89,117],model:[12,13,22,26,27,32,36,47,52,77,101,104,110,118,119],modern:85,modif:[25,31,45,49,60,64,70,110],modifi:[5,11,12,17,19,22,24,27,29,35,36,46,49,51,60,67,70,73,75,80,91,92,93,99,101,105,107,109,110,111,114,115,118,120,123],modul:[0,22,25,27,32,39,41,43,53,54,59,60,61,62,66,67,70,71,76,80,81,82,83,86,92,94,97,98,100,102,107,108,110,119],module_nam:89,modulu:[26,88,109,123],molsolv:84,moment:[24,26],momentum:[12,27,38,47,110,118],monitor:[19,22,28,36,54,97,99],monoton:[107,110],month:[13,41,75],more:[1,2,3,4,5,6,9,10,12,13,17,19,22,23,25,26,27,29,30,35,36,38,41,43,44,45,46,49,52,53,59,60,61,62,64,67,69,70,73,77,78,79,80,81,82,84,85,86,88,89,92,93,94,96,97,100,103,104,106,107,108,109,110,112,116,117,118,120,121,123,126],most:[3,17,19,24,27,29,30,31,32,38,40,41,42,43,44,46,49,54,56,59,60,62,64,73,78,82,84,87,88,92,93,94,101,104,106,107,108,110,113,123],mostli:[3,59],motion:118,movabl:26,move:[12,29,42,43,53,80,92,93,96,98,110,118,119],movement:26,movetopo:96,mparsani:4,mpi:[56,78],mpich:78,mpiexec:78,mpirun:[78,85,94],msl:[104,122],mthlim:84,much:[10,25,27,32,41,43,55,56,59,90,92,96,100,107,110,117,120],muct:84,multi:[13,41,66,82,96,98,101,123],multicor:54,multidimension:[67,75],multilay:[97,100],multipl:[5,10,20,25,59,66,73,77,82,89,94,96],multistep:84,must:[5,10,12,17,19,25,26,27,36,43,45,46,49,53,54,55,64,67,76,77,80,82,83,84,86,87,88,89,92,96,100,102,103,104,107,109,110,111,120,121,122,123,126],mwave:103,mx1d:123,mxnest:[19,92],mxnext:92,my_acoustics_rp:66,my_custom_bc:84,my_initial_solut:69,my_rp_modul:66,my_setplot_fil:62,my_solv:69,myclaw:51,n00014:4,n12:27,n23:27,name:[0,1,2,3,6,8,10,17,19,25,26,27,29,31,35,41,44,45,46,49,50,60,62,64,67,69,71,73,76,77,81,83,88,89,92,101,102,103,106,107,108,109,110,111,116,120,123,124],namespac:67,nan:[37,120],nation:[4,38],natur:[27,42,126],naux:55,navig:[9,112],nbtool:100,nbviewer:[52,101],nc_param:120,ncar:4,ncol:[92,100],nctr:26,ndarrai:[37,70,73,81,86,120],ndarrari:73,ndim:[19,55,62,107,108],ndip:26,nearbi:104,nearest:[35,120],nearli:[73,118],nearshor:38,necessari:[5,10,29,36,38,41,44,49,53,55,56,62,66,67,82,100,102,106,107,118,123],necessarili:[4,94],necessit:25,need:[0,4,5,10,11,12,15,16,17,19,24,25,27,29,31,32,35,38,39,42,43,44,46,49,50,53,54,55,56,62,66,67,69,70,72,75,76,77,78,80,82,84,88,90,92,93,94,97,101,102,103,105,107,108,109,110,111,114,115,118,120,122,123,126],neg:[19,92,118,120],negat:[37,118],neglig:[45,54,64,110],neighbor:[4,93,108,109,120],neither:[41,44,45,64],nest:[96,108,109],net:43,netcdf3:76,netcdf4:[76,120],netcdf4_dir:32,netcdf:[10,22,32,101,107,109,111,118,120],never:[25,27,80,86,91,93,107,109,111,121],nevertheless:41,new_featur:25,new_frame_num:89,new_plotax:[0,2,35,41,60,106],new_plotfgur:60,new_plotfigur:[1,2,35,41,60,106],new_plotitem:[0,3,35,41,60,106],new_userdata:[109,111],newdir:51,newer:[25,54,70],newli:102,next:[2,3,5,10,15,27,29,30,35,42,43,49,55,60,62,65,66,72,78,82,84,88,92,93,94,107,108,110],nfr:4,ngdc:[92,104,122],nghost:55,ngrid:55,nhtmp:38,nice:[25,44,52,67,80,97],nicer:[62,90],nih:4,nnnnn:[102,107],no_data_valu:120,noaa:[26,37,92,104,122],nodata_valu:[92,118,120],nodatav:118,nodatavalu:118,node:73,nodes_with_ghost:73,nohup:97,non:[12,52,56,67,80,82,88,107,109,111,126],nonconserv:126,none:[0,1,2,3,12,24,26,37,41,44,69,73,82,83,84,86,89,94,96,107,109,111,118,120],nonexist:[34,71,75],nonlinear:[4,13,38,70,82,107,126],nonoverlap:5,nonphys:35,nonuniform:49,nor:[45,64],norm:[44,93,120],normal:[12,60,80,82,103,107,108,109,111],north:[37,53,92],northernmost:[92,118],norwegian:4,nose:[25,65,78,82,94],nosetest:[25,43,78,85,94,116],notat:[26,37,44,103],note:[1,3,4,10,12,17,19,21,22,25,26,30,31,32,35,37,41,42,43,44,46,53,54,60,62,67,70,71,73,75,76,78,80,82,85,86,89,90,92,93,100,102,103,104,106,107,108,109,110,111,117,118,120,122,123],notebook:[22,26,34,53,68,77,100,101,119,120],noth:[11,86,105,114,115,120,123],notic:[41,45,64,88,94],nout:[92,111],nov:[13,75],novemb:14,now:[5,6,10,15,17,19,23,25,26,27,32,40,42,43,47,55,60,66,67,68,75,77,78,79,80,84,85,88,92,94,96,97,100,101,103,106,110,112,118,125],npacif:92,nprint:[108,109],npt:27,npy:120,nrm:44,nrow:92,nsf:4,nstepout:69,nstrike:26,nthmp:38,ntime:109,ntot:111,num_aux:[67,78,80,81,86,103,107,108,109,111,123],num_cel:[7,19,73,103,107,108,109,111],num_cells_glob:73,num_digit:44,num_dim:[19,73,80,107,108,109,111],num_entri:89,num_eqn:[55,66,67,70,78,80,81,82,83,86,88,103,107,109,111,123],num_fgmax_v:[27,110],num_ghost:[67,73,80,81,82,84,86,107,109,111],num_output_tim:[66,69,102,107,109,111],num_wav:[70,81,82,103,107,109,111],number:[1,2,3,4,5,7,12,13,16,19,24,25,26,27,29,35,41,43,44,46,49,54,55,56,62,66,67,69,70,71,73,75,76,77,78,80,82,83,84,86,88,89,92,93,94,96,97,99,100,101,102,103,107,108,109,110,111,116,120,123],numer:[4,13,41,82,90],numerica:13,numpi:[3,10,26,37,43,65,66,67,68,69,73,80,82,86,87,88,90,92,94,109,120,121],nxpoint:120,nypoint:120,nyu:4,object:[0,1,2,3,19,22,24,26,27,35,44,60,62,66,67,69,76,77,78,80,82,83,86,87,88,89,90,96,102,107,108,109,111,120],obliqu:12,obscur:19,observ:[27,38,96,104,107,110,118,122],observatori:4,obtain:[5,9,20,27,35,36,38,43,44,76,78,82,92,93,103,110,112,118,126],obviou:[41,82],occasion:94,occupi:41,occur:[53,82,118],ocean:[12,13,38,41,92,110,114,115,118,122],octob:[14,98,99,100],off:[10,27,38,41,44,49,62,69,77,92,108,120],offer:[31,41,94],offici:43,offset:[39,41,44,120],offshor:[44,47],oft:81,often:[5,8,10,12,17,24,27,29,31,32,35,36,38,39,40,44,47,53,55,90,92,94,102,103,104,106,107,110,118,122,123,126],okada85:[13,26,53],okada:[13,22,26,36,52,92,118,119,122],okadamap:26,olav:4,old:[1,17,19,62,69,78,79,80,84,94,101],older:[19,84,110],olig:[5,13],omega:66,omit:[94,110],omp_num_thread:[32,54,117],omp_stacks:54,on_lower_boundari:73,on_upper_boundari:73,onc:[1,10,19,25,29,41,49,62,66,77,78,79,80,86,89],ondrej:64,one:[0,1,2,3,4,5,7,10,11,12,17,19,21,24,25,26,27,29,35,36,41,44,47,49,50,51,53,55,56,59,60,66,73,77,78,80,82,83,84,85,88,89,92,93,94,101,102,105,106,107,108,109,110,111,112,114,115,118,120,123,124],ones:[66,67,86,92,107,108],onli:[1,3,5,7,10,12,16,19,22,24,25,26,27,38,41,44,47,49,53,54,55,56,60,66,69,73,77,78,80,82,83,84,85,86,88,89,92,93,96,101,102,103,104,106,107,108,109,110,111,118,120,121,123,126],onlin:[90,113],onr:4,onshor:[27,44,47],onto:[25,26,41,120],open:[10,25,26,41,43,44,59,64,68,73,82,89,90,124],opendiff:94,openli:20,openmp:[19,22,32,56,89,101,117],opensourc:[45,64],oper:[39,43,94],opinion:4,oppos:[25,82],opposit:[5,12],optim:[32,64,89],option:[1,2,6,10,12,17,19,22,25,26,27,29,31,32,36,37,40,43,46,49,50,60,61,66,67,69,71,73,74,76,77,79,82,83,84,85,88,89,90,91,93,94,97,100,101,106,107,109,111,112,120],order:[4,5,10,12,13,26,27,38,43,49,55,56,60,62,64,66,69,70,73,75,76,77,79,80,84,88,89,100,103,106,107,108,109,111,118,120,121,123,126],ordinari:103,ordinarili:87,org:[4,13,36,42,45,64,67,68,75,78,101,120],organ:[19,20,29,69,82],orient:[53,67,90,92],origin:[3,5,10,12,17,25,26,28,42,54,55,67,82,84,89,96,102,108,109,111,120],oscil:[35,126],oscillatori:120,osher:84,osx:[41,43,90],other:[3,4,5,10,12,17,19,22,24,26,27,29,35,36,38,41,42,45,46,47,49,50,53,54,55,62,64,66,67,69,73,75,77,79,80,81,82,85,88,93,94,96,97,99,100,104,106,107,110,112,118,119,120,122,123,124],otherwis:[26,45,64,77,83,84,85,86,89,107,120],ought:84,ouput:69,our:[66,92],out:[3,12,23,25,26,29,40,42,44,45,46,49,60,64,66,67,69,76,77,78,79,83,88,90,94,103,109,111,120],out_tim:69,outaux:24,outdir:[1,3,22,29,35,40,46,62,69,71,73,101,109,111,121],outdir_p:69,outfil:120,outflow:[12,107,109,111],outgo:12,outlin:[44,49,62,92,106],outn:24,output:[1,7,10,12,22,24,25,26,29,31,32,35,36,37,39,40,41,43,59,60,62,67,69,70,71,73,74,75,78,79,81,82,83,84,85,86,88,89,92,96,100,101,103,106,109,111,117,120,123,124],output_aux_compon:[107,109,111],output_aux_onlyonc:[107,109,111],output_file_prefix:69,output_filenam:67,output_format:[69,107,109,111],output_opt:69,output_q_compon:[107,109,111],output_step_interv:[107,109,111],output_styl:[55,66,69,102,107,109,111],output_t0:[102,107,109,111],output_tim:[102,107,109],output_unit:26,outputdir:49,outputfil:[118,120],outsid:[5,12,44,118,120],outsiz:44,outstyl:92,over:[1,3,5,10,12,13,19,25,26,27,30,35,36,38,41,44,49,53,59,77,84,92,93,96,97,106,109,110,117,118,123,126],overal:66,overflow:32,overhead:[5,54,93,117],overlai:44,overlaid:[41,44],overlap:[30,93,96,97,118],overli:82,overrid:[25,32,41,66,67,89],overridden:[49,84,86],overrul:3,overview:[41,95,98],overwrit:[1,69,83],overwritten:[102,123],own:[12,17,21,22,25,35,51,66,67,74,75,82,85,86,90,112],p_center:[73,88],p_function:77,p_node:73,p_t:88,p_x:88,pacif:92,packag:[4,20,22,25,29,41,56,59,64,66,73,75,79,80,82,83,85,88,90,124],page:[1,8,9,10,13,19,21,25,38,42,52,71,75,78,79,82,87,90,92,94,104,106,112,122,123],pair:[10,94,120],panel:41,paper:[4,5,12,26,36,42,70,75,82],paragraph:27,parallel:[4,19,20,22,54,65,71,74,75,77,80,82,83,85,89,94],paramet:[1,5,6,12,17,22,24,26,27,28,29,30,31,33,36,38,41,46,47,49,52,53,54,55,65,66,69,70,77,79,82,83,86,89,91,93,96,102,103,104,109,111,118,120,121,123],paramt:27,parent:[3,24,86,89],pars:[35,89],parsani:[4,13,64,75],part:[4,19,25,26,36,38,44,50,64,67,78,82,85,86,88,90,92,94,110,123],partial:[13,56],particular:[5,9,17,19,26,27,32,35,36,38,41,45,49,60,61,64,66,81,83,84,86,88,90,92,94,97,100,101,106,110,126],particularli:[12,24,40,41,53,55,97,100],partit:78,pascal:26,pass:[12,16,17,25,26,41,44,54,60,66,69,71,74,80,82,84,86,87,89,94,109,120,123],past:[14,18,83,104],patch:[3,5,6,12,19,24,27,49,53,54,55,59,60,78,83,86,106,108,110,117,123],patch_index:73,patchedges_show:[3,19],patchno:[3,24],path:[1,10,22,25,26,32,37,41,43,46,51,60,69,76,78,83,89,92,120,121],pathtool:49,pattern:[17,36,41,71,104],pcolor:[3,22,35,90,120],pcolor_cmap:[3,41],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:44,pcolormesh:44,pdb:60,pde:[13,56,75,88,107,123],pdf:[1,26],pdflatex:1,peanoclaw:64,pedant:32,pem:10,pend:[3,101],peopl:[4,10,64,90],pep8:25,pep:82,per:[10,26,41,44,49,54,82,108],perfect:12,perfectli:12,perfom:94,perform:[5,19,24,38,41,43,54,56,59,60,69,80,84,89,94,110,116],perhap:[5,27,35,60,82,86,89,92],perimet:27,period:[5,12,27,52,66,80,82,93,107,109,111],perman:49,permiss:[45,64],permit:[45,64],permut:17,perturb:[91,110,118],petclaw:[64,78,79,80,82,83,89,94],peter:4,petsc4pi:[78,85,86,94],petsc:[19,20,56,64,66,74,85,86,87,89],petsc_arch:78,petsc_dir:78,petsc_hello_world:78,phase:[78,82,101],philim:67,phoni:60,photo:21,php:[26,45,64,92],phrase:[82,90],phy:13,physic:[12,35,67,73,75,88,93,126],pick:[66,84],pictur:82,piec:[12,38,73],piecewis:[26,27,97,103,118],pink:[44,60,106],pinkfig:60,pip:[25,41,43,68,75,78,85,87],pixel:[41,44],pkg:111,place:[12,17,25,29,41,42,51,78,80,85,96,123],placemark:41,plai:52,plaid:41,plain:39,plan:[21,25,38,43,47,84],planar:53,plane:[26,53,92,101,122],platform:[10,41,52,69,78,90,94],pleas:[4,14,21,25,43,52,64,66,69,71,75,76,78,80,83,84,85,87],plot:[0,1,2,4,6,7,9,24,26,29,31,32,33,43,44,52,55,65,66,68,69,73,74,75,77,82,83,85,87,88,90,92,99,100,101,116,120],plot_box:[26,92,120],plot_centerlin:26,plot_dz_color:26,plot_dz_contour:26,plot_gauge_loc:35,plot_rak:26,plot_subfault:26,plot_subfaults_depth:26,plot_topo_fil:[61,100],plot_typ:[0,19,35,41,60,62,106],plot_var2:3,plot_var:[3,24,35,41,60,61],plotax:[3,35,60,106],plotclaw1:49,plotclaw2:49,plotclaw3:49,plotclaw:[22,35,60,62,106],plotdata:[24,35,50,60,62,69,101,106],plotdir:[1,62,106],plotexampl:60,plotfigur:[35,60,106],plotfram:1,plotgaug:35,plotitem:[3,24,35,60,106],plotloop:[60,62],plotstyl:[3,35,60,106],plotter:[1,3,24,35,62],plotting_makeplot:29,plottyp:49,plt:[44,92],plu:[60,96,109,111,120],pmel:26,png2kml:44,png:[1,10,29,31,41,44,49],png_extent:44,png_file:44,png_filenam:44,png_name:44,point:[3,5,10,11,12,13,17,25,26,27,29,30,32,35,36,37,38,41,42,43,44,49,50,53,66,77,78,83,89,92,93,102,104,105,107,108,109,110,114,115,118,120,121,123],point_styl:[27,99],pointer:[4,12,53,59,62,84,89,92,100],pointwis:[86,100],poisson:53,poli:44,polici:82,poly2kml:44,polygon:[3,44,120],poor:25,popup:10,port:[10,74,75,80,108],portion:[5,41,67,117],posit:[41,53,56,89,92,118,120],possibl:[5,10,19,23,25,26,27,30,35,37,38,41,45,53,60,64,66,73,78,79,84,89,92,93,101,104,107,108,118,123],post:[21,22,23,25,41,52,78,112],posteriori:84,postprocess:[55,77],potenti:[25,49,82,104],power:[41,59,90],ppflag:22,pprint:[108,109],practic:[25,92],pre:[3,10,22,68,90],preced:[25,60],preceed:[27,55,123],precis:[32,44,67,73,103,120],predefin:60,predict:37,prefer:[43,44,78,80,90],prefix:[69,76,83],preliminari:[37,92,122],prepar:[25,82],prepend:[25,69],preprocess:100,prerequisit:22,prescrib:82,present:[5,44,83,84,89,112,123,126],preserv:[35,56,84,102],press:[13,78,85],pressur:[35,49,62,77,88],presum:104,pretti:10,prevent:41,previou:[1,22,25,27,35,43,49,62,66,84,96,101,107,109,111,120],previous:[5,19,62,82,100],price:10,primari:[19,36,94],prime:94,principl:[120,123],print:[1,3,22,41,44,49,60,73,77,78,79,82,86,88,92,96,97,100,107,109,111,121],print_figno:[1,41],print_format:[1,41],print_frameno:[1,41],print_git_statu:40,printenv:121,printfig:1,printfram:[1,22],prior:[45,64,109,111,123],probabl:[10,25,41,47,92],probdata:[109,111],problem:[4,6,12,13,17,21,22,24,25,27,29,33,36,43,49,52,53,56,60,65,66,71,74,75,78,81,82,84,87,92,94,96,97,99,100,103,107,109,110,111,112,117,118],problem_data:[66,81,83,86,88],problemat:77,proce:[5,25],procedur:[5,12,22,82,123],proceed:42,process:[22,29,41,66,71,73,78,85,86,89,92,94],processor:[22,86],procur:[45,64],produc:[1,3,19,22,24,26,29,31,35,41,43,44,49,52,54,58,59,94,106,110,120],product:[26,45,64,89],profession:82,professorship:4,profil:120,profit:[45,64],program:[4,36,38,56,82,90],programm:82,programmat:64,progress:[21,25,84,100,118,120],prohibit:19,proj:109,project:[21,26,38,41,64,68,82,108,118,120],projection_zon:26,promot:[45,64,82],prompt:[49,60,62,71,88,90,92,120],propag:[4,5,13,26,38,41,75,82,84,92,103],proper:[5,11,35,44,47,49,76,89,96,105,108,109,114,115,123],properli:[17,27,29,31,38,41,42,43,44,51,69,82,90,94,96,99,107,110,120,121,123],properti:[26,49,66,69,73,83,86,120],propos:[25,82,126],provid:[0,2,4,6,12,17,22,24,26,32,36,37,38,41,42,44,45,53,55,59,64,67,69,70,77,78,80,82,83,84,88,89,90,92,94,101,103,107,115,117,118,120,123],proximity_radiu:120,pseudo:[41,49],psi:[80,123,126],psystem:71,pth:25,pts:[108,109],pub:26,publicli:112,publish:[13,42,75],pull:[21,23,42,52,71,80,94,99],pure:[43,62,75,78,84,90,94],purpos:[27,36,38,45,49,55,64,73,90,92,94],push:[25,42],put:[1,8,12,25,32,43,44,49,51,66,71,80,82,92],pwd:92,pyclaw:[1,3,4,9,13,14,20,21,24,25,34,35,52,55,56,62,74,78,80,87,90],pyflak:75,pykml:41,pylab:[0,60],pylint:75,pyplot:[44,92,120],pyramid:41,python:[3,4,6,7,8,10,13,16,19,20,22,24,25,26,27,29,31,33,35,36,37,40,41,43,44,53,55,56,59,60,61,64,65,67,71,72,75,78,79,80,81,82,84,87,88,89,92,94,97,98,100,118,120,121,124],python_io:55,pythonpath:[25,43],pyweno:[64,84],q0000:[49,107],q0001:[49,50],q000n:[1,7],q0_vs_radiu:3,q1d:123,q_i:[103,126],q_l:81,q_r:[81,103],q_t:[80,84,88,123,126],q_x:[88,126],qbc:[80,84,86],qcor:67,qinit:[17,19,22,67,82,104,123],qinitdata:110,qinitfil:110,qquad:126,qtrue:60,quad2kml:44,quad:44,quadrat:26,quadrilater:[27,44],qualiti:41,quantiti:[11,27,44,49,69,74,75,81,86,105,110],queri:[67,73,89],question:[21,25,83],quezada:[13,64,75],quick:[10,22,36,43,52,82,90,94,116],quicker:10,quickli:[44,68,82,116,120],quit:[49,60,62,92],quot:[44,82,92],radial:[3,37,123],radian:37,radio:44,radio_styl:44,radiu:[3,110,120],rai:120,rais:[21,26,43,82,83,85,89,120],rake:[26,53,92],randal:[4,13,75],randi:[26,70],rang:[3,10,26,35,37,41,96,101],rare:[53,82],raster:[92,118],rate:10,rather:[5,17,19,25,27,47,51,78,80,82,84,91,92,100,101,103,106,107,108,118,120,123,126],ratio:[5,11,19,39,49,53,70,84,92,105,107,108,109],raw:[22,107],rcl:41,rea:52,reach:92,reachabl:83,reaction:80,read:[1,4,11,25,26,27,29,35,38,39,44,49,55,59,67,69,77,82,83,89,91,101,105,109,110,111,114,115,118,120,123,124],read_:[76,83],read_aux:83,read_data_lin:89,read_head:120,read_netcdf:120,read_output:27,readabl:82,reader:124,readi:[66,67,69,85],readm:[22,43,123],real:[38,47,82,89,92,122],realist:41,realiti:38,realli:[5,82,94,123],reason:[38,41,44,53,54,56,78,80,82,92,93,107],rebas:25,recal:[1,9,92],recalcul:97,receiv:94,recent:[10,19,22,24,26,40,42,43,46,47,54,60,62,101,118],recogn:[36,118],recomil:27,recommend:[4,26,27,29,54,59,68,78,79,82,84,85,87,88,107,109,110,111,124],recompil:[25,31,32,46,54,89,123],recomput:[62,66,97],reconstruct:[75,84],record:[27,35,86,92,122],recov:25,recreat:[25,31,46],rect:26,rectangl:[5,26,93,120],rectangular:[5,6,12,13,26,27,36,44,53,73,92,93,108,110,118],recurs:[42,51,96],red:[2,3,25,35,44,60,94,106],redhat:90,redirect:[42,43],redistribut:[45,64],redraw:[49,62],reduc:[5,12,41,82,101,126],ref:82,refactor:[82,96,97,98,100],refer:[17,22,26,29,34,36,41,49,66,70,71,73,81,82,84,86,92,102,118,120,122,123],referenc:[41,104],refin:[3,4,6,7,13,19,38,41,49,55,56,66,92,106,107,108,109,117,118,123],refinement_data:110,refinement_ratios_i:[7,108,109],refinement_ratios_t:[108,109,110],refinement_ratios_x:[108,109],refinementdata:99,reflect:[4,12,25,107,109,111],refresh:[10,35],regard:[4,101],regardless:[10,93,107,110],regener:46,region00:44,region:[3,5,10,12,19,22,27,38,39,41,44,47,56,92,104,108,109,118,120],regiondata:[30,93,109],regions2kml:44,regist:43,registr:120,regress:[19,22,25,40,78,116],regrid:[30,93,96,97,108,109,117],regrid_buffer_width:[93,108,109],regrid_interv:[93,108,109],regular:[27,120],reiter:82,reject:[77,84,107],rel:[10,17,26,31,36,38,41,53,54,60,89,94,97,98,99,100,101,104,108,110,112,118,122],relat:[3,19,56,81,104],releas:[15,19,22,43,63,68,84,85],relev:[19,24,32,36,41,94],reli:[56,67,79],relief:[92,104,122],reload:120,reltol:89,remain:[27,41,80,89,96,114,115],rememb:[11,24,25,54,60,78,105,114,115],remind:92,remot:[10,41,120],remote_directori:120,remote_topo_url:120,remov:[1,3,17,31,44,46,50,62,78,96,99,100,120,121],renam:[17,19,29,80,84],render:[19,41,44,124],reorder:[17,19],reorgan:[19,67,95],repeat:[62,102],repeatedli:[3,78,85],replac:[5,10,27,35,38,59,67,71,78,79,80,81,82,86,89,94,96,120,121,122],replace_no_data_valu:120,replace_valu:120,replot:62,report:[21,26,27,40,43,82,94,101,107,109,116],repositori:[15,19,21,22,23,25,27,33,36,40,42,46,52,72,84,94,99,113,116],repres:[26,30,66,73,80,81,84,86,93,120,126],represent:[73,83,89,120],reprint:64,reproduc:[13,45,64],request:[21,23,26,42,52,55,66,71,73,77,80,83,92,94,120],requir:[3,4,12,17,19,22,24,29,31,37,38,43,49,53,56,59,62,66,67,73,76,79,80,84,85,86,88,89,92,93,94,96,97,100,106,107,108,109,110,111,118,121,124,126],rerun:[32,35],rescal:26,research:[4,13,36,38,64,84,92],reserv:[45,64],reset:[32,89],reset_count:89,resetplot:[60,62],resid:[43,46,73],resolut:[4,5,13,26,35,73,84,88,89,92,96,100,103,104,110,118,120,122,123],resolution_limit:120,resolv:[4,27,41,42,92],resourc:[13,25,36],resp:[17,26],respecitv:26,respect:[26,27,41,44,75,76,81,120],respons:[10,38,66,83],rest:[19,62,82,104,114,115,118,120],restart:[10,22,35,62,75,101,107,109,111],restart_fil:[102,107,109,111],restor:5,restrict:[41,82,110,118],restructur:[8,42],result:[1,3,4,6,9,13,22,23,26,27,28,29,35,37,38,43,44,46,47,49,52,53,59,60,61,62,65,69,71,75,81,82,85,89,92,93,94,96,100,107,108,109,110,111,116,120,122],retain:[45,64],retak:[107,109,111],retreiv:92,retriev:[10,37,62,67,84,92,120,122],return_topo:120,return_xarrai:120,reus:82,reutil:67,reveal:[35,88],revert:41,review:[13,70],revis:5,rewritten:26,rgb:60,rho:[49,88,109],rhou:49,rhov:49,richardson:[19,30,108,109],rid:25,ridg:41,riemann:[4,7,17,19,20,22,25,36,43,52,56,64,66,74,82,84,85,86,88,107,109,111,114,115,126],riemann_interact:101,riemann_solv:84,riemann_tool:100,right:[27,45,47,52,53,64,73,78,80,81,82,86,88,92,103,126],rigid:26,rigin:26,rigoutsi:5,rigoutso:13,rise:[26,104],rise_fract:26,rise_shap:26,rise_tim:26,rise_time_start:26,rjl:[5,13,90],rjlevequ:[4,25],rjlkei:10,robust:[36,120],rock:53,roe:[70,82],roman:43,root:[76,77,83],rossbi:71,rossmanith:13,rotat:39,rough:47,roughli:[92,117],round:41,roundoff:73,routin:[4,5,12,17,22,24,26,27,29,30,35,36,41,46,49,50,54,55,56,59,62,64,67,69,76,79,80,82,84,86,87,90,93,96,97,100,103,107,109,111,120,121,123,124,126],row:[26,70,93,118,120],rp1:[103,126],rp_:81,rp_sourc:80,rpn2_vc_advect:98,rprint:[108,109],rsphere:[37,67],rst:[22,42,72],rsync_clawpack:42,rule:[10,44,67,82],run1:46,run:[1,5,6,9,10,12,17,19,21,22,25,27,30,31,33,35,40,41,42,44,46,47,49,50,52,55,56,59,60,62,65,67,69,72,73,74,75,77,80,85,87,88,89,92,93,96,97,101,102,103,109,110,111,116,117,120,123],run_app_from_main:89,run_data:69,run_exampl:120,run_seri:89,runclaw:[40,97,103],rundata:[19,27,30,35,44,92,93,96,102,107,108,109,110,111],rundir:69,rung:[75,84],runmak:69,runnabl:89,runtest:78,runtim:[52,89],runup:47,ruptur:26,rupture_tim:26,rupture_typ:26,safe:54,safer:46,safeti:70,sage:[22,82],sagemath:[43,68],sagemathcloud:68,sai:[10,12,25,44,87,93,102],same:[3,5,10,12,19,25,27,32,35,36,37,38,41,44,47,50,56,59,60,61,62,66,70,73,75,77,80,81,82,84,89,90,92,96,97,101,102,103,107,108,109,110,114,118,120,123],sampl:[13,22,27,32,36,41,94,102,107,108,120,123],san:43,sanromd:43,satisfi:[84,93,126],save:[10,22,23,40,43,44,55,69,84,92,101,102,120],savecod:69,savefig:44,scalabl:[13,75,82],scalar:[24,26,77,86,107,126],scale:[4,26,39,41,49,56,75,92,96,110],scan:32,scatter:[3,19,49],scenario:[38,104],scheme:[70,81],schlieren:[3,49],sci:13,scienc:[13,64],scientif:[4,13,75,78,90],scipi:[10,67,90,120],scp:10,scratch:[37,88,92],scratch_dir:92,screen:[10,25,41,44,69,77,78,82,101,109,111],screenshot:[10,41],script:[8,16,17,26,31,35,41,42,43,46,49,56,59,64,67,71,74,75,78,82,84,89,90,92,94,106,110,111,120],scroll:[10,92],sea:[26,36,38,41,53,91,92,100,104,110,118,120,122],sea_level:[27,38,44,110,118,120],seab:47,seafloor:[26,38,53,122],sealevel:[22,36,110],search:[1,10,22,75,82,89],sec:26,second:[3,12,26,27,30,37,41,43,44,49,66,84,92,93,96,102,107,117,120,123,126],section:[5,10,12,29,32,36,38,49,59,62,82,92,94,102,107,110,120],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,43,45,46,47,49,50,51,53,54,55,58,59,60,61,62,63,64,67,69,71,73,75,76,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,126],seem:[86,106,118],seen:[9,19,27,29,38,54,80,107,112],segement:120,segmentedplanefault:26,seism:[13,26],seismic:26,select:[10,12,25,27,84,92,96,107,110,122],self:[26,82,84,120],semi:84,send:[10,21,52,80],sens:[24,41,126],sensit:[38,47],sent:[77,86],separ:[1,41,44,75,82,84,120],seper:89,septemb:21,sequenc:[17,19,78,82,85,88,89,92,94,96,103,123],serial:[22,78,83,89,117],server:[10,41,42],servic:[22,43,45,64],session:[1,29,75,79,85],set:[0,1,2,3,5,7,10,11,12,19,22,24,25,26,27,29,30,31,32,33,35,37,38,39,40,41,42,44,46,51,52,53,54,55,56,58,59,66,67,69,71,73,74,75,77,78,82,83,84,85,86,87,88,89,91,93,94,96,97,100,101,102,103,105,106,107,108,109,110,111,112,118,120,122,123,126],set_all_st:83,set_aspect:39,set_aux_from_auxbc:86,set_corn:26,set_count:89,set_cparam:[66,86],set_dynamic_slip:26,set_num_ghost:86,set_printopt:73,set_q_from_qbc:86,set_subfault:26,set_xyz:120,setaux:[17,19,22,67,82,96,97,103,107,109,111],setaux_default:42,setdtopo:92,setenv:78,setgaug:[35,92,101],setlevel:77,setplot1:49,setplot2:49,setplot3:49,setplot:[0,1,2,3,6,16,17,19,22,33,35,50,58,79,80,89,121,124],setplot_fil:41,setplot_kml:41,setprob:[109,111,123],setregion:92,setrun:[5,6,12,16,17,22,27,29,30,31,33,36,38,44,46,47,55,56,60,91,93,96,100,101,102,103,104,118,121,123],setrun_setgeo:110,settopo:92,setup:[25,43,66,67,71,75,78,80,82,84,85,86,121],setup_gauge_fil:73,sever:[0,1,2,12,17,19,20,26,29,31,35,36,38,41,43,49,59,82,85,92,93,94,95,96,97,100,101,106,110,116,118,120,123],sftp:10,shaheen:77,shall:[45,64],shallow:[11,12,13,27,36,38,52,56,67,71,75,82,91,92,97,98,100,103,105,110,114,115,118,123],shallow_spher:[67,94],shallowest:53,shape:[26,37,44,67,73,78,86,120],shapshot:10,share:[22,23,41,54,56,73,78],sharp:44,sharpclaw:[4,20,22,56,64,71,74,75,80,96],sharpclawnd:84,sharpclawsolv:84,sharpclawsolver1d:84,sharpclawsolver2d:84,sharpen:70,sharper:[41,44],shear:[13,26],shell:[43,54,60,62,68,78,85,88,90],shg:49,shift:[26,38],ship:27,shock:[5,13,38,52,71,84,93],shock_bubble_interact:[29,71,75,85],shockbubbl:80,shoot:[22,75],shore:[27,36,92,110],shorelin:[41,120],shoreline_xi:120,shorter:[3,93,120],shortli:94,shot:10,should:[0,1,2,3,4,5,9,10,12,15,16,17,19,22,24,25,26,27,29,30,31,32,35,38,41,42,43,44,47,49,50,51,52,54,59,60,62,67,68,72,76,78,80,82,83,84,85,86,87,88,89,91,92,93,94,96,97,100,102,103,104,106,107,108,109,110,111,112,118,120,121,123,125,126],shouldn:71,show:[0,2,3,25,26,29,35,41,42,44,46,49,62,73,88,92,94,100,120,121,123],showcolor:60,showgridlin:49,showitem:1,shown:[3,10,44,47,49,56,77,97,98,99,100,101,120,123],showpatchbord:49,shrink:120,shu:84,siam:[13,21,75],side:[5,12,27,41,47,53,82,92,94,103,126],sidebar:41,sift:26,sift_slip:26,siftfault:26,sigma:66,sign:[10,21,60],signatur:[3,67,70,74,76,81,82],signific:[14,47,104,120],signitur:83,silenc:77,silo:124,similar:[10,12,25,27,35,41,43,66,67,80,82,84,88,92,118],similarli:[31,71,78,80,117],simpl:[27,29,67,75,80,84,89,92,94,120],simplest:[51,88],simpli:[10,25,27,29,35,41,46,66,68,69,71,77,78,82,85,92,94,112,118,120,123,124],simplifi:[59,60,92,94,102,123],simul:[29,36,38,41,49,69,73,75,78,80,85,88,92,110],simultan:41,sin:[37,60],sinc:[0,3,4,5,12,14,17,19,25,27,32,37,38,41,42,44,46,53,54,55,59,60,66,67,68,77,90,92,93,94,96,100,101,103,104,107,108,110,118,121,122],singl:[0,1,2,3,5,12,16,19,20,24,25,26,35,36,41,44,46,49,54,55,66,73,77,82,83,89,92,94,99,100,107,108,109,110,118,120,122,123],sisc:[13,75],sit:10,site:[25,41,43,52],situat:49,size:[17,22,26,41,44,54,55,73,78,84,92,109,111,118,120],size_x_inch:41,size_y_inch:41,skinni:0,skip:26,skiprow:26,slice:[3,49],slide:90,slider:[41,44],slightli:12,slip:[22,26,36,92,118,122],slip_along_strik:26,slip_at_dynamic_t:26,slip_color:26,slip_distribut:26,slip_down_dip:26,slip_funct:26,slip_tim:26,slope:[26,84],slow:[10,41,77,87],slowli:[44,118],small:[12,47,92,93,94,96,101,102,107,109,110,118,120,122],smaller:[10,41,47,56,73,96,107,109,110,111,120],smallest:93,smear:44,smooth:[26,84,93,123],smooth_data:120,snapshot:25,soc:[13,26],softwar:[5,10,22,36,38,45,50,64,75,82,90,112,118],sol:66,solid:[3,12,41,53,80,106,107,109,111],solitari:[13,52],sollut:53,solut:[1,3,4,12,19,22,24,35,37,43,49,52,53,55,62,67,69,73,75,76,77,80,82,84,86,87,88,92,93,94,100,101,102,103,106,107,108,109,111,116,123,126],solv:[4,7,12,17,23,29,38,65,67,69,73,75,80,81,82,85,92,103,107,118,123,126],solver:[4,5,17,19,20,22,25,36,43,52,64,65,69,74,77,82,86,98,100,107,109,111,114,115,126],solver_typ:[71,84],some:[3,4,5,6,9,12,13,16,17,18,19,20,21,22,24,25,26,27,29,32,33,35,36,38,39,41,42,43,52,53,54,55,59,61,62,64,67,68,70,77,79,80,83,85,86,87,88,90,92,93,94,96,97,98,99,100,101,103,104,106,107,108,109,110,111,112,116,117,118,120,123],someon:25,someth:[10,22,24,25,46,51,77,82,83,84,118,121,123],sometim:[27,46,60,66,77,104,122],somewhat:[54,59,93,94,107],somewher:[50,92,100],sonel:122,soon:84,sophist:82,sorin:4,sort:[10,106],sound:[66,88],sourc:[20,22,26,32,36,41,42,44,45,47,52,59,64,67,71,74,82,84,85,87,88,89,90,94,104,107,109,110,111,113,114,115,118],source_list:89,source_split:[84,107,109,111,123],sourceforg:43,southernmost:92,space:[5,6,12,13,26,27,30,35,41,53,73,80,82,92,93,100,102,107,108,109,110,111,118,120,123],spacial:110,span:[37,41,44],spatial:[5,13,22,26,30,47,80,92,93,96,100,103,109,111,126],spawn:94,specfi:120,special:[4,12,22,36,41,45,56,64,82,90,93,120],specif:[3,19,22,25,26,35,37,41,45,47,64,65,67,69,76,83,89,92,106,107,108,109,110,111],specifi:[0,1,2,3,4,5,6,11,12,17,19,22,24,26,27,28,30,31,32,33,35,36,37,38,40,44,46,47,49,53,54,55,56,58,59,61,66,69,73,80,82,83,84,87,89,91,94,96,99,100,101,102,103,104,105,109,111,112,114,115,117,118,120,121,122,124,126],speed:[27,66,70,81,82,88,103,107,110,120,123,126],spell:60,spend:101,spent:117,sphere:[22,37,67,97,110],spheric:13,sphinx:[8,20,22,72],split:[5,54,84,100,101,107,109,111,117,123,126],spot:60,sprint:[108,109],spuriou:[12,94],sqrt:[3,27,47,66,80,88,109],src1:[115,123,126],src1d:[22,115],src2:[67,115,123],src3:[115,123],src:[5,8,11,12,16,17,22,26,27,31,32,37,40,44,46,49,53,54,61,79,80,89,91,93,94,97,100,101,103,105,107,109,111,114,120,121,126],src_split:[107,109,111],srcn:[107,123],ssh:10,ssp104:84,ssp33:84,ssplmm32:84,ssplmm43:84,ssplmm:84,ssprk22:84,stabil:[84,107],stack:[54,100],stage:[84,104,118,120],stai:23,stand:[4,82],standard:[5,12,26,49,55,67,70,82,84,90,94,103,109,110,111,112,118,123,126],start:[1,2,4,5,6,10,21,24,25,26,27,29,31,36,37,41,43,44,46,51,60,62,66,78,83,84,90,94,101,102,110,118,123],start_fram:83,start_max:27,state:[10,13,22,25,53,60,66,67,69,75,77,78,80,81,82,83,84,87,88,94,103,107,118,126],statement:[29,49,55,82,90,92,109],station:[37,104,122],stationari:118,statist:[22,101],statu:[10,40,69,88],stdout:94,steadi:[53,118],steep:126,stegoton:[52,71],stencil:86,stencil_width:86,step1:82,step2:67,step2i:100,step2qcor:67,step2x:100,step3i:100,step3x:100,step3z:100,step:[5,12,16,22,25,27,29,35,41,42,43,49,59,62,64,65,66,67,69,77,80,84,86,88,92,93,96,101,102,103,107,108,109,110,111,118,126],step_hyperbol:84,step_index:84,step_interv:109,step_sourc:[80,84],stepgrid:117,stepgrid_dimsplit:100,steps_max:[107,109,111],stiff:107,still:[1,6,7,10,12,19,21,23,27,28,35,41,43,49,55,59,64,82,84,93,94,100,101,102,110],stnd:37,stommel_storm_modul:100,stop:[22,54,60,96,109,111,120],storag:101,store:[0,1,10,25,27,31,41,49,55,80,86,87,88,92,94,96,106,108,110,116,117,118,120],storm:[13,100],storm_modul:100,str:[0,1,3,26,44,107,108,120],strang:[84,107,109,111,123],strategi:5,stream:60,stress:[66,77,82],stretch:120,strict:[45,64],stride:[19,120],strike:[26,53,92],strike_direct:[26,92],string:[0,1,3,6,26,37,41,44,60,67,69,70,73,76,82,83,89,90,107,110,118,120],strip:[44,120],strip_archive_extens:44,stripe:41,strong:84,strongli:49,structur:[6,19,27,56,83,84,92,106,120],student:4,studi:[38,47,92],style:[5,19,25,26,39,41,55,60,64,69],sub:[26,94,120],subclass:[26,82],subdirectori:[17,19,20,29,42,43,46,51,62,71,94,106,110,112,116,120],subdivid:26,subdividedplanefault:26,subdivis:26,subduct:[38,53],subfault:[26,53,92,122],subject:[41,93,108,110],submit:[52,92],submodul:23,subpackag:82,subplot:[0,26,62],subrepositori:25,subroutin:[4,5,12,19,27,30,82,93,100,103,107,108,117,123,126],subsequ:[3,49],subset:[26,120],substanti:[25,64,100],substitut:[45,64],subsurfac:[92,118],succeed:84,succesfulli:67,success:[49,83,120,123],successfulli:[46,83],suffici:[10,12,17,54,82,92,96,110],suffix:120,suggest:[4,21,37,62,82,110],suit:[25,41,94],suitabl:[7,12,17,36,38,41,83,92,103,104,120],sum:[77,86,117],sum_:126,sum_p:126,summar:[3,30,82,93,95,123],summari:[21,82,107,108,109,110],superbe:[70,107,109,111],superbee_limit:70,superclass:84,supercomput:[75,77,78],superpack:90,superposit:53,superpow:70,superpower_limit:70,supplement:112,supplementari:94,suppli:[30,93,123,126],support:[4,10,19,32,38,41,43,52,64,66,67,76,77,79,84,92,100,107,118,121,124],suppos:[12,30,49,60,92,93],suppress:[0,2,3,25,41,44,101,107,108],sure:[1,17,25,31,42,49,56,66,78,80,83,87,89,92,104,120,121,122],surfac:[13,19,22,26,27,36,38,41,53,61,67,75,88,91,92,100,110,118],surface_or_depth:[41,61],surg:[13,100],surround:[93,120],surviv:64,swap:120,swaphead:[92,120],sweep:7,symbol:[3,43,49],symlink:43,symmetr:[3,37,123],symmetri:12,syntax:[8,82],sys:[69,109,111],system:[4,12,13,20,43,44,54,55,64,75,77,78,80,81,85,88,90,94,103,107,109,111,123,126],systemat:19,t0000:49,t0001:[49,50],t0002:49,t_end:84,t_n:103,tab:[10,82],tabl:[44,47,59],tackl:[21,25],tag:[41,108,109],take:[5,19,24,25,26,37,42,47,49,52,60,66,80,84,88,89,92,93,94,99,107,108,109,110,120,123,126],take_one_step:84,taken:[5,27,53,84,92,93,107,123],tall:0,tan:60,tank:[12,38],tar:[10,20,43,44],tarbal:121,tarfil:43,target:[60,67,80],task:59,tba:101,tbd:21,tchknnnnn:102,tck00100:101,tck:101,tckaaaaa:101,tckbbbbb:101,tcp:10,tcsh:78,teach:[36,38,92],team:[4,21,45,75,82],technic:82,techniqu:[13,23],technolog:64,tell:[50,55,60,66,92,94],templat:67,temporari:86,temporarili:49,ten:[4,56],tend:84,tend_max:27,tensil:13,tensor:26,tensorproductfault:26,term:[4,22,36,38,45,67,74,82,84,93,107,109,110,111,114,115],termin:[43,68,107,108],terrain:47,terrel:4,test:[19,22,26,29,32,40,41,47,52,59,64,65,67,74,75,89,92,93,97,101,111,117,120],test_acoust:94,test_app:[89,94],test_dtopotool:26,test_shallow_spher:94,test_topotool:[97,120],tex:1,text:[8,42,44,55,69,82,84,90,100],tfinal:[66,69,88,92,102,107,109,111],tfluct:[82,84],tfluct_solv:84,than:[3,5,10,12,17,19,22,25,26,27,35,41,44,46,47,51,55,59,62,66,67,69,73,77,78,80,81,82,84,89,90,92,93,94,96,99,100,101,102,103,104,106,107,108,110,117,118,120,123,126],thank:[4,75],thei:[3,5,10,12,24,25,26,27,30,38,41,44,49,55,59,73,80,82,84,89,93,94,102,106,110,118,120,123],them:[10,15,19,25,26,27,30,41,42,49,50,52,56,64,66,71,76,77,78,80,89,92,93,94,97,113,120,123],theori:[45,64,82,126],therefor:[67,78],thereof:10,thesi:84,theta:70,theta_limit:70,thi:[0,1,2,3,5,7,8,9,10,12,13,16,17,19,20,22,23,24,25,26,27,28,29,30,31,32,35,36,37,38,40,41,43,44,45,46,47,49,50,53,54,55,59,60,62,64,66,67,69,70,71,73,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,96,97,99,100,101,102,103,104,106,107,108,109,110,111,112,113,117,118,119,120,121,122,123,124,125,126],thing:[0,10,12,19,25,38,44,62,71,90,94],think:[47,82],third:[12,27,70,117,120],thn:107,thoroughli:[76,82],those:[4,5,9,19,21,38,41,43,56,66,67,69,77,80,86,92,94,96,102,112,116,120,123],though:[3,56,82,118],thought:104,thousand:[4,56],thread:[32,54,117],three:[3,10,13,19,26,27,38,41,49,78,83,89,92,94,107,110,118,120,123],threshold:47,through:[4,10,25,29,30,35,38,41,49,56,59,67,80,86,88,89,92,93],thu:[5,37,80,82],tick:[41,92],ticklabel:99,ticklabel_format:39,tidal:[77,104],tide:[22,35,37,92,104,120],tidesandcurr:37,tier:10,tild:126,time:[0,1,5,6,12,17,19,22,24,26,27,28,29,30,31,32,33,35,36,37,38,41,43,44,49,50,54,55,56,60,64,66,69,70,75,77,82,84,86,88,92,93,94,96,99,101,102,103,106,109,111,118,121,122,126],time_files_scanf:124,time_integr:84,time_zon:37,timespan:44,timestep:[69,77,101,107,109,111],timezon:44,tip:[21,22,36,74,75,80,90],tipe:88,titl:[0,1,4,13,22,35,41,44,75,120],title_with_t:[0,60],toctre:[34,71,75],todo:[12,27,93,102,103,120,126],togeth:[12,25,26,53,93],toggl:109,tohoku:92,toler:[27,89,93,94,108,109,110],too:[5,37,41,92,101,109,111],tool:[6,7,13,19,20,25,26,29,36,37,38,41,43,44,49,52,53,58,59,60,61,75,82,92,97,98,112,118,120,122,124],toolkit:[78,124],top:[0,1,3,8,20,26,41,43,51,52,53,60,80,81,82,92,94,102],topgraphi:120,topic:49,topo1writ:120,topo2kml:44,topo2kmz:44,topo2writ:120,topo3writ:120,topo:[22,36,38,44,61,96,98,104,110,118,120],topo_data:[92,110],topo_fil:120,topo_file_nam:44,topo_fnam:120,topo_func:120,topo_path:92,topo_typ:[44,92,100,101,120],topo_upd:96,topofil:[44,92,110,120],topographi:[12,13,22,27,38,41,44,47,53,61,96,97,98,100,101,104,114,115,119],topograpi:118,topoplotdata:100,topotool:[37,44,52,92,97,98,99,100,101,118,119],topotyp:[92,110,118],topotype1:120,topotypein:118,topotypeout:118,torrilhon:70,tort:[45,64],total:[5,26,41,77,84,107,108,109,111,117],total_step:[107,109,111],tout:111,toward:[4,26],tprint:[108,109],trace:77,traceback:60,track:[21,22,25,43,54,66,89,94,96,110],tracker:25,tradeoff:93,tradit:[69,76],traffic:[103,123],trail:44,tran:13,tranpsort:107,transect:[27,110],transfer:22,transform:32,translat:[53,92,104,122],transliter:82,transmiss:84,transmit:107,transpar:[41,44],transport:[107,109,111],transvers:[7,103,107,123,126],transverse_wav:[107,109,111],trap:32,travel:108,travi:19,tree:[43,80],triangular:26,trigger:110,tripl:82,troubl:[22,29,75],troubleshoot:[22,43,75],truli:83,truncat:12,tscale:44,tstart:84,tstart_max:27,tsunami:[12,13,22,27,36,47,53,77,96,99,104,110,118],tt1:92,tt3:[92,120],tube:52,tune:23,tupl:[3,26,37,44,60,73,77,120],turbul:[38,84],turn:[36,38,44,57,60,77,94,101],tutori:[10,22,62,65,69,75,85],tvd:[66,84,126],twice:[41,107],twitter:21,two:[0,3,4,6,7,11,13,19,25,26,27,30,35,37,41,43,44,49,55,60,66,73,76,80,82,84,87,89,92,93,94,96,100,101,102,103,105,109,110,118,120,123,126],two_d_classic_sourc:67,txt:[40,43,64],type:[3,4,6,10,17,26,29,31,35,41,46,49,60,61,62,66,67,68,70,73,78,79,82,84,85,88,89,90,92,108,109,110,118,120,126],typic:[3,17,49,53,55,56,62,67,78,80,84,86,92,93,108,109,117,122,123,126],u_t:88,u_x:88,ubuntu:[10,90],ucar:50,ucsb3:92,ucsb:[26,92,122],ucsbfault:26,ulimit:54,ultrabe:70,unaccept:41,unalt:41,unapp:41,unavail:24,uncertainti:[38,47],unchang:49,uncommit:[25,40],undefin:87,under:[4,6,19,41,43,45,59,64,73,82,94],underflow:96,underli:3,underlin:25,underscor:82,understand:[22,29,38,59,75,82,88,103],understood:38,underwat:[36,41,92],undivid:93,unexpect:[37,41,44],unidata:50,uniform:[26,53,56,67,118],uniformli:118,unind:44,union:118,uniqu:[1,55,101],unit:[26,36,37,73],univers:[4,13,21,42,45,64,83],unix:[31,51,90,92],unknown:[26,86],unkown:86,unless:[5,25,31,32,35,44,92,104,107,120],unlik:55,unlimit:54,unmap:73,unnecessarili:97,unneed:101,unpack:92,unpredict:49,unrecogn:89,unsplit:[107,109,111],unstabl:101,unstructur:120,unsuccess:83,unsur:107,untar:43,unterweg:64,until:[10,92],unus:2,unzip:[41,92],upbnd:[108,109],updat:[5,10,19,20,22,27,39,62,84,86,87,92,96,100,103,108,109,111,113,117,123],update_saved_valu:84,updip:26,upon:86,upper:[19,27,70,73,80,92,107,109,111,118,120],upper_bound_limit:70,upper_glob:73,uprint:[108,109],upstrik:26,upward:38,upwind:107,url:[4,13,41,75,120],usabl:82,usag:[0,1,2,3,10,41,43,76,82,120],usc0001xgp:92,use:[3,4,9,10,17,18,19,22,23,25,26,27,28,29,31,32,36,37,38,41,43,45,46,47,49,50,54,55,58,59,60,62,64,66,67,68,69,70,71,73,75,76,77,78,80,82,84,85,86,87,88,89,90,92,94,97,99,100,101,103,104,107,108,109,110,111,118,120,121,122,123,124,126],use_for_kml:41,use_fwav:[103,107,109,111],use_petsc:[71,78],used:[0,1,2,3,4,5,6,7,8,10,12,17,19,20,25,26,27,29,31,32,33,35,36,37,38,40,41,42,44,45,46,47,49,50,51,52,53,54,55,56,59,60,62,64,66,67,69,70,71,73,75,78,80,81,82,83,84,86,88,89,91,92,93,94,97,101,102,103,104,106,107,108,109,110,111,114,117,118,120,123,124,126],useful:[0,3,16,24,25,27,29,32,35,36,39,40,41,43,44,54,55,61,64,67,77,82,90,92,93,94,103,107,108,110,118,120,126],useoffset:39,user:[0,2,3,4,5,9,10,16,17,19,20,21,22,23,24,25,27,30,32,38,44,47,49,60,67,68,71,78,82,87,89,90,93,100,107,109,110,111,113,120,126],user_bc_low:80,usernam:25,uservari:49,uservariablefil:49,uses:[26,27,29,36,49,56,67,69,73,78,89,94,103,117,120,126],usg:[4,26,92,122],usgs100227:92,usgs_subfault:92,using:[0,1,3,4,5,6,8,9,10,12,13,16,19,20,22,23,26,27,29,32,35,36,37,39,41,43,44,46,47,50,51,52,53,54,55,56,59,60,61,62,66,67,68,69,70,73,75,78,79,80,82,84,86,87,88,90,92,93,94,100,103,107,109,110,115,117,118,120,121,122,124,126],usr:50,usual:[0,2,3,5,26,35,36,41,44,46,50,53,55,71,73,78,80,81,84,89,93,107,108,109,110,111,121,123],utah:21,utc:[41,44],util:[20,22,25,41,55,59,62,75,94,106,119,120],uwamath:10,valid:[3,38,53,69,77,83,86,110,120],valout:[50,55,117],valout_geo:50,valout_nc:50,valout_nc_geo:50,valu:[3,5,6,12,17,19,22,24,26,28,29,32,35,37,39,40,41,44,46,47,49,54,55,60,67,73,75,77,80,81,82,83,84,86,88,89,92,93,94,96,97,99,100,102,103,104,107,108,109,110,111,116,118,120,121,123,126],valueerror:[26,120],valuemax:27,van:[70,84,107,109,111],van_leer_klein_sharpening_limit:70,vanleer:[66,84,107,109,111],vari:[3,11,13,22,26,36,47,80,83,92,100,103,104,105,118,126],variabl:[0,3,10,19,22,24,25,26,27,29,31,35,36,40,41,49,51,54,56,60,66,67,78,82,83,84,86,87,89,92,100,101,103,107,108,109,111,120,121,123],variable_dt_refinement_ratio:[108,110],variant:[17,89,94],varieti:[69,90],variou:[17,19,26,38,49,60,62,73,88,90,92,93,106,110],vastli:104,vector:[19,66,70,77,82,86,103],veloc:[12,27,37,49,62,80,88,104,107,108,109,111,123],verbatim:42,verbos:[25,26,37,44,69,77,84,94,107,109,111,120],verbosity_regrid:[108,109],veri:[3,12,19,38,41,44,52,53,60,64,67,77,78,79,80,84,92,94,97,101,107,116],verifi:[37,89,94,122],verifyerror:89,version:[0,1,4,5,6,8,10,11,12,14,17,19,20,22,27,28,32,36,38,41,44,47,49,52,54,59,60,62,67,70,75,78,84,85,87,90,93,94,96,97,100,101,105,107,108,109,110,111,114,115,118,120,123,126],versu:120,vertic:[26,38,41,44,104,110,120,122],via:[10,19,20,25,26,29,32,33,35,36,38,41,43,46,49,54,56,60,66,73,79,83,85,87,93,94,112,114,115,116,118,120,123],view:[3,4,19,22,29,35,36,41,42,44,52,55,59,61,62,66,78,85,100,112,113],viewabl:69,viewable_attribut:69,viewer:92,vim:25,violat:[84,120],virtual:[4,10,22,24,43,86,90],vis:69,visclaw:[1,6,10,19,20,21,25,35,36,39,41,43,46,49,56,60,61,62,75,79,85,106,112],visibl:[10,41,112],visit:[19,22,59],visual:[20,21,25,29,35,49,55,56,59,75,79,80,100,124],volcano:4,volum:[4,13,27,33,44,49,75,108,117,118,123],vrt:41,wai:[5,10,12,23,25,29,35,41,44,45,60,62,64,66,69,71,73,78,80,82,83,85,88,90,92,96,106,107,113,118,123,126],wait:10,wakari:43,wall:[12,32,80,88,101,107,109,111,117],wang:26,want:[0,3,10,16,17,21,25,27,29,31,32,35,37,40,41,42,43,44,46,47,51,54,60,62,66,67,68,69,77,78,92,94,101,103,106,109,110,113,118,120,121],warm:70,warn:[25,52,76,77,84,107,121],warp:41,warranti:[45,64],washington:[4,42,45,90,120],water:[12,13,22,36,37,38,44,52,56,67,75,82,92,97,98,103,104,110,118,120,122,123],water_level:37,wave:[4,5,12,13,27,38,41,52,70,75,80,81,82,84,92,93,100,104,107,108,109,110,111,123],wave_toler:110,wavelength:38,wcs:92,web:[20,22,25,29,41,42,43,90,112,120],webpag:[19,22,29,33,36,41,46,90,104],webserv:10,websit:[12,41,92,112,120],weight:41,welcom:[21,64],well:[5,25,36,41,43,44,53,54,55,56,59,62,82,83,84,102,107,108,114,115,118,123,126],wendroff:[84,107,109,111,126],weno:[56,75,84],weno_ord:84,were:[4,5,17,43,49,50,67,93,96],west:[92,118],western:[92,120],wet:36,what:[5,10,19,22,25,26,35,38,40,41,42,43,44,46,49,50,55,66,69,82,83,86,88,90,92,93,94,101,104,106,107,109,110,111,112,118,120,122,123],whatev:[50,66,83],when:[11,12,17,25,26,27,31,32,35,39,40,41,42,43,47,49,53,54,55,56,59,60,62,66,77,78,79,84,87,94,96,97,99,101,103,104,105,106,107,108,109,110,111,112,118,120,121,122,123,124,126],whenc:77,whenev:[25,101,123],where:[1,3,5,10,12,19,24,26,27,29,30,31,35,36,38,41,43,44,46,47,49,50,52,55,56,62,69,73,76,78,81,92,93,96,97,100,101,102,104,106,107,109,110,111,117,118,120,123,126],wherea:[35,41,59,78],whereev:92,wherev:[82,121],whether:[3,5,10,12,19,30,37,45,49,64,76,77,82,83,84,93,94,107,108,110,120],which:[0,1,3,4,5,6,8,10,12,17,19,22,25,26,27,29,30,35,36,38,41,42,43,44,46,47,49,53,54,55,60,62,66,67,69,70,71,73,76,77,78,79,80,81,82,83,84,85,87,88,89,90,92,93,94,96,97,100,102,104,107,108,109,110,118,120,122,123,126],white:44,whith:67,who:[16,19,21,27,32,38,43],whole:[25,41,77,78,82],whose:[3,60,67,80,81,82,107,108,120],why:82,wide:90,wider:60,width:[26,41,44,53,55,73,80,82,86,92,93,109,111],wiki:85,wikipedia:82,wind:120,window:[10,26,43,49,62,90],wisdom:44,wise:[25,84],wish:[4,10,11,19,25,29,35,38,41,43,49,58,59,75,80,84,85,87,92,102,105,112,114,115,121],within:[5,12,25,30,56,60,79,82,89,93,103,106,112,120],without:[12,19,22,25,31,35,38,44,45,46,49,60,62,64,70,76,77,89,90,94,109,111,121,123],wkt:41,won:[10,67,82,120],word:[77,82,92],work:[3,7,10,12,16,17,19,21,22,23,25,27,29,30,31,36,38,41,42,43,44,49,51,52,53,54,60,64,65,66,68,69,70,75,76,77,78,81,84,85,90,92,93,94,98,99,100,101,103,106,107,108,110,112,118,121,125],workflow:112,workspac:[49,86],world:[38,47,75,78],worst:104,worth:86,worthwhil:80,would:[2,3,10,12,24,25,27,32,41,46,55,60,64,66,69,73,77,82,89,92,94,104,106,107,118,123],wpalg:13,wrap:[44,64,67,84,89],wrapper:120,write:[25,26,40,47,55,56,59,66,69,73,74,77,78,83,92,109,111,120],write_:76,write_aux:[76,83],write_aux_alwai:[66,69],write_aux_init:[66,69],write_input_data:27,write_p:83,written:[5,8,26,31,44,45,55,56,60,64,76,77,80,90,107,108,109,110,111,120,123],wrong:[49,77,93],www:[4,10,13,26,36,42,45,50,64,67,68,75,78,92,120],x_cell:44,x_edg:44,x_i:[103,123,126],x_inch:44,x_mask:120,xarr:73,xarrai:120,xarray_d:120,xclaw:[29,69],xclawcmd:69,xclawerr:69,xclawout:69,xcode:43,xdir:69,xiaom:26,xleft:[108,109],xlf:85,xlimit:[0,35,41],xllcenter:92,xllcorner:118,xlow:55,xlower:[0,3,12,19,24,67,92,109,111,118,120,123],xlowerg:67,xmax:0,xmin:0,xpoint:110,xrang:80,xtick:39,xupper:[0,19,92,109,111,120],xxdiff:94,xxxx:49,xylim:26,xzvf:43,y_cell:44,y_edg:44,y_inch:44,year:[4,13,19,41,44,75,95],yellow:[44,60],yellow_red_blu:60,yes:49,yet:[1,10,17,38,44,59,84,107,109,125],yianni:64,yield:3,yleft:[108,109],ylimit:[0,35,41,106],yllcenter:92,yllcorner:118,ylow:55,ylower:[3,19,24,67,92,109,118,120],ylowerg:67,ymax:0,ymin:0,yml:94,yong:13,you:[0,3,4,10,11,12,15,16,17,19,20,21,23,24,25,27,29,31,32,33,35,37,40,41,42,43,44,46,49,50,51,52,53,54,55,56,58,59,60,62,64,66,67,68,69,71,72,75,76,77,78,79,80,84,85,86,87,88,90,92,94,96,101,102,104,105,106,109,110,111,112,113,114,115,118,121,122,123,125],your:[5,11,12,16,17,21,22,23,29,32,35,42,50,51,54,59,60,62,64,65,66,67,68,71,74,75,77,82,87,88,90,91,92,93,94,96,105,114,115,118,121,123],yourself:[32,35,52],ypoint:110,yupper:[19,92,109,120],z_format:120,zero:[3,12,26,32,44,49,66,80,86,88,104],zip:[9,41,92],zipinfo:41,zlim:44,zlower:19,zone:[38,41,44,108,109],zoom:[41,92],zsh:78,zupper:19,zvar:120},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.3.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","dtopotools module for moving topography","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","Examples from the book FVMHP","Galleries of all Clawpack applications","Gauges","GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of git versions","Visualizing GeoClaw results in Google Earth","Guide for updating this documentation","Installation instructions","kmltools module of utility functions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":82,"catch":25,"class":[66,69],"default":[11,91,105,114,115],"function":[37,44,48,62,77,84,126],"new":[36,51,71,82,94],"switch":49,"true":60,Adding:[25,41,71,80],Going:74,One:[103,126],The:[41,48,49,88,92],Use:87,Using:[10,22,50,54,77,80,84,106,123],about:[4,64],access:62,acoust:[81,88],adapt:[5,12,22,30],add:[60,82],added:82,addit:[41,108,110],advect:81,after:102,afterfram:49,algorithm:[5,13,56,126],alias:41,all:[3,34,43],amazon:10,ami:10,amr:[3,5,19,54,93,108,110],amrclaw:[6,7,15,22,95,96,97,98,99,100,101,108,109,123],anoth:60,applic:[8,9,13,22,23,34,46,51,78],arrai:[55,87],arriv:110,artifact:41,ascii:[55,76],attribut:[0,1,2,3,24,41,60],author:4,auto:[26,37,44,120],aux:[55,66],auxiliari:80,avail:33,axes:39,b4step:[11,123],background:60,basic:[41,65,79],bathymetri:[92,122],befor:123,between:60,bibliographi:[13,22],binari:55,book:33,boundari:[5,12,80,123,126],bug:25,build:72,built:[42,71],buoi:122,burger:81,capac:126,cautionari:38,cell:[5,30],cfl:70,chang:[14,15,19,60,84,95,96,97,98,99,100,101],chardiff:94,check:[25,82,94],checkpoint:102,chile:41,choic:27,choos:5,cite:[4,75],clamshel:12,classic:[15,22,29,43,84,95,96,97,98,99,100,101,107,111],claw:57,clawcode2html:8,clawpack:[9,10,13,14,16,17,18,19,20,21,34,43,46,56,57,63,67,84,85,111,125],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,60],clawutil:[15,96,97,98,99,100,101],clone:25,cloud:[43,68],code:[8,22,25,36,57,82,94,116,123],color:60,colorbar:41,colormap:60,command:[49,62,71],comment:82,commun:[21,25,57],comparison:94,compil:[32,43,46,50,87,113,121],compon:[20,60],comput:[56,102],condit:[5,12,80,88,123,126],content:[22,25,43,60,66,77,84,90,94],continu:94,contourf:60,contribut:[23,25],contributor:64,control:[66,69,88],convent:82,convers:17,convert:[8,16,17],coordin:39,copi:51,correctli:78,coverag:25,creat:[10,27,41,49,51,66],creation:66,criteria:93,current_data:[24,62],curv:60,custom:84,dart:122,data:[55,106,110,118,120,121,122,123],debug:[60,108],defin:12,depend:[70,85],depth:39,deriv:[66,77],describ:13,desir:106,dev:57,develop:[22,25,43,57],diff:94,differ:[41,56,60],dimens:[73,126],dimension:103,directli:10,directori:[46,51,60],displac:118,docstr:[26,37,44,82,120],doctest:94,document:[8,26,37,42,44,75,82,113,120],domain:[73,88],done:123,download:118,dtopo:[92,119],dtopotool:26,each:123,earth:41,earthquak:[53,92,122],ec2:10,elev:39,environ:[32,43],equat:[81,88],error:[25,87],euler:81,event:[21,41],exampl:[9,22,23,29,33,35,36,41,49,51,52,58,71,78],exe:121,exist:51,extra:42,extrapol:93,f2py:121,faq:60,faster:41,fault:53,fflag:32,fgmax:27,figur:[41,60],file:[10,27,41,42,49,60,62,94,102,110,118,123],find:[10,60],finer:5,fix:[25,27,28,54,110],flag2refin:93,flag:[5,30,46,93,108],flow:[22,66],fly:59,fork:25,format:[27,55],formul:126,fort:[55,60],fortran:[19,22,31,32,82,87,94,116,121,123],found:49,friction:47,from:[10,16,17,19,25,26,33,37,44,62,67,71,79,92,120],full:22,fund:[4,64],further:74,fvmhp:33,galleri:[34,49,72],gaug:[35,41,77,92,122],gdal:41,gener:[19,26,37,44,110,120],geo:110,geoclaw:[11,12,15,19,22,36,37,38,39,41,54,57,61,91,93,95,96,97,98,99,100,101,105,110,114,115],geometri:73,geophys:22,get:[22,49,92],gfortran:[32,85],ghost:5,git:[25,40],github:25,godunov:126,googl:41,grid:[5,12,27,28,54,73,110],guid:[25,42,92],guidelin:25,hack:57,hazard:38,hdf5:76,help:49,high:126,hint:[38,60,90],how:[60,62],hpc3:57,html:[8,62],imag:41,imagediff:94,includ:9,independ:70,indic:75,initi:[5,80,88,123],input:[19,27,76,107,108],instal:[25,43,50,56,78,85,87,90,116,121],instanc:10,instruct:[25,43,82],integr:94,intel:32,interact:[62,71],interfac:56,interpol:27,iplotclaw:62,ipython:[52,71,112],issu:25,item:60,kaust:57,keep:40,kml:41,kmltool:44,kmz:41,latest:[25,43],latex:62,latitud:39,launch:10,layout:82,level:25,lflag:32,librari:41,licens:[4,45,64],limit:70,line:[62,71,94],link:18,list:71,load:41,local:[72,113],locat:35,log:[10,77],longitud:39,machin:125,make:[60,78,112,121],makefil:[31,46,80,102],man:47,mapc2p:48,master:15,math:68,matlab:49,matplotlib:85,maxfram:49,maximum:110,mesh:[5,22],method:[0,1,2,3,126],model:[38,53,92,122],modifi:[25,102],modul:[26,37,44,75,89,90,109,111,120],monitor:[27,110],more:31,most:25,motion:92,move:26,multipl:41,name:82,need:41,netcdf:[50,55,76],next:85,nose:85,note:14,notebook:[52,90,112],numpi:85,object:[73,106],obtain:85,okada:53,onli:43,openmp:54,option:[41,59,62,78,80],order:[82,87],other:[13,20,21,43,60,92],outdir:60,output:[27,28,46,49,50,54,55,66,76,77,94,102,107,108,110,121],overlai:41,overview:[22,36,106],own:[10,80],packag:[19,43,76,81],paper:13,parallel:[43,56,73,78,79,86],paramet:[19,35,60,62,88,92,107,108,110],pass:78,patch:73,path:49,pcolor:60,petclaw:[73,86],petsc:78,photo:57,piec:82,pip:121,pixel:94,plot:[3,10,19,22,27,35,36,39,41,46,49,50,58,59,60,61,62,71,78,79,94,106,112,121,124],plot_typ:3,plotax:41,plotclaw:49,plotdata:41,plotfigur:41,plotitem:41,port:67,post:59,ppflag:32,pre:32,prerequisit:43,previou:[21,63],print:108,printfram:62,problem:[7,67,80,88,123],procedur:27,process:[27,59],processor:32,produc:62,propag:126,provid:60,publish:41,pull:25,pyclaw:[15,19,22,29,43,64,65,66,67,68,69,70,71,72,73,75,76,77,79,82,83,84,85,86,88,89,94,95,96,97,98,99,100,101,116],pyflak:25,pylint:25,python:[17,62,85,90,119],q0002:55,qinit:[91,110,118],quantiti:[66,77],quick:92,raw:55,readm:8,recent:[14,25],refer:[13,75,90],refin:[5,12,22,30,93,110],region:[30,93,110],regress:[82,94],releas:[14,95,96,97,98,99,100,101],remot:25,remov:41,report:25,repositori:[9,20],request:25,requir:[41,90,123],resolut:[41,126],resourc:22,restart:[66,102],result:[10,36,41,50,79,112],richardson:93,riemann:[15,75,80,81,95,96,97,98,99,100,101,103,123],routin:[11,19,61,91,105,114,115],rst:8,run:[29,36,43,66,68,71,78,79,94,107,108,121],sage:[68,90],sampl:[109,111],save:112,script:80,seafloor:92,sealevel:104,search:49,serial:[43,73,86,94],servic:10,session:21,set:[36,43,49,60,62,80,92,104,121],setaux:[105,123],setplot:[49,60,62,106],setrun:[19,35,92,107,108,109,110,111],shallow:81,share:112,sharpclaw:84,shoot:[25,49],should:56,signatur:84,simul:66,simultan:94,sinc:15,size:60,slip:53,softwar:[4,13],solut:[60,66,83],solv:88,solver:[56,66,75,80,81,84,88,103,123],some:[60,82,122],someth:60,sourc:[53,80,92,122,123,126],space:126,spatial:123,special:[3,108],specif:[27,88,94,123],specifi:[60,62,92,93,106,107,108,110,123],sphere:12,sphinx:[42,113],sprint:[21,57],src1d:[114,123],src:[115,123],start:[22,92],state:86,statist:117,step:[85,123],stop:10,surfac:39,t0002:55,tabl:[22,75],term:[47,80,123,126],test:[25,43,78,82,85,94,116],than:60,thi:[4,42],tide:122,tile:41,time:[107,108,110,117,123],tip:[25,31,39,41,78,82],titl:60,tool:[17,22,27,35,39,94,119],top:25,topo:[92,119],topographi:[26,36,92,110,118,120,122],topotool:120,track:40,transfer:10,travi:94,troubl:[25,49,121],troubleshoot:[87,121],tsunami:[38,41,92,122],tutori:[88,90],tvd:70,understand:66,univers:57,upcom:21,updat:[25,42],use:56,used:121,user:[12,56,123],using:[38,49,123],utah:57,util:[37,44,89],valu:[27,66],vari:123,variabl:[32,43,46,80],version:[25,31,40,43,63],view:10,virtual:125,visclaw:[15,22,59,95,96,97,98,99,100,101],visit:124,visual:[22,41],wakari:68,water:[39,81],wave:[103,126],web:10,webpag:[10,42,112],what:[60,62],when:82,which:56,without:43,work:[4,71,119,120,123],workflow:25,workshop:[21,57],write:[80,82,94],you:82,your:[10,25,41,43,78,80,85,112,116]}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","dtopotools_module","fgmax","fgout","first_run","flag","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","howto_doc","installing","kmltools_module","license","makefiles","manning","mapc2p","matlab_plotting","netcdf","newapp","notebooks","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/gallery/how-to-build","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/rulesProposal","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","restart","riemann","sealevel","setaux_defaults","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","dtopotools_module.rst","fgmax.rst","fgout.rst","first_run.rst","flag.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","howto_doc.rst","installing.rst","kmltools_module.rst","license.rst","makefiles.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","notebooks.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/gallery/how-to-build.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/rulesProposal.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[26,1,0,"-"],kmltools:[44,1,0,"-"],topotools:[120,1,0,"-"],util:[37,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[26,0,1,""],DTopography:[26,0,1,""],Fault:[26,0,1,""],Mw:[26,3,1,""],SiftFault:[26,0,1,""],SubFault:[26,0,1,""],SubdividedPlaneFault:[26,0,1,""],TensorProductFault:[26,0,1,""],UCSBFault:[26,0,1,""],plot_dZ_colors:[26,3,1,""],plot_dZ_contours:[26,3,1,""],rise_fraction:[26,3,1,""],strike_direction:[26,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[26,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[26,2,1,""],dZ_max:[26,2,1,""],plot_dZ_colors:[26,2,1,""],plot_dZ_contours:[26,2,1,""],read:[26,2,1,""],write:[26,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[26,2,1,""],Mw:[26,2,1,""],containing_rect:[26,2,1,""],create_dtopo_xy:[26,2,1,""],create_dtopography:[26,2,1,""],plot_subfaults:[26,2,1,""],plot_subfaults_depth:[26,2,1,""],read:[26,2,1,""],set_dynamic_slip:[26,2,1,""],write:[26,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[26,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[26,2,1,""],calculate_geometry:[26,2,1,""],calculate_geometry_triangles:[26,2,1,""],centers:[26,2,1,""],convert_to_standard_units:[26,2,1,""],coordinate_specification:[26,4,1,""],corners:[26,2,1,""],depth:[26,4,1,""],dip:[26,4,1,""],dynamic_slip:[26,2,1,""],gauss_pts:[26,2,1,""],latitude:[26,4,1,""],length:[26,4,1,""],longitude:[26,4,1,""],mu:[26,4,1,""],okada:[26,2,1,""],rake:[26,4,1,""],rise_shape:[26,4,1,""],rise_time:[26,4,1,""],rise_time_starting:[26,4,1,""],rupture_time:[26,4,1,""],rupture_type:[26,4,1,""],set_corners:[26,2,1,""],slip:[26,4,1,""],strike:[26,4,1,""],width:[26,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[26,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[26,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[44,3,1,""],deg2dms:[44,3,1,""],dtopo2kml:[44,3,1,""],f2s:[44,3,1,""],fgmax2kml:[44,3,1,""],fgout2kml:[44,3,1,""],gauges2kml:[44,3,1,""],kml_build_colorbar:[44,3,1,""],kml_cb:[44,3,1,""],kml_png:[44,3,1,""],kml_timespan:[44,3,1,""],line2kml:[44,3,1,""],make_input_data_kmls:[44,3,1,""],pcolorcells_for_kml:[44,3,1,""],png2kml:[44,3,1,""],poly2kml:[44,3,1,""],quad2kml:[44,3,1,""],regions2kml:[44,3,1,""],topo2kml:[44,3,1,""],topo2kmz:[44,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[120,0,1,""],create_topo_func:[120,3,1,""],determine_topo_type:[120,3,1,""],fetch_topo_url:[120,3,1,""],get_topo:[120,3,1,""],read_netcdf:[120,3,1,""],swapheader:[120,3,1,""],topo1writer:[120,3,1,""],topo2writer:[120,3,1,""],topo3writer:[120,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[120,2,1,""],Y:[120,2,1,""],Z:[120,2,1,""],crop:[120,2,1,""],delta:[120,2,1,""],extent:[120,2,1,""],generate_2d_coordinates:[120,2,1,""],generate_2d_topo:[120,2,1,""],in_poly:[120,2,1,""],interp_unstructured:[120,2,1,""],make_shoreline_xy:[120,2,1,""],plot:[120,2,1,""],read:[120,2,1,""],read_header:[120,2,1,""],replace_no_data_values:[120,2,1,""],replace_values:[120,2,1,""],set_xyZ:[120,2,1,""],smooth_data:[120,2,1,""],write:[120,2,1,""],x:[120,2,1,""],y:[120,2,1,""],z:[120,2,1,""]},"clawpack.geoclaw.util":{bearing:[37,3,1,""],dist_latlong2meters:[37,3,1,""],dist_meters2latlong:[37,3,1,""],dms2decimal:[37,3,1,""],fetch_noaa_tide_data:[37,3,1,""],haversine:[37,3,1,""],inv_haversine:[37,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[84,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[84,4,1,""],kernel_language:[84,4,1,""],mthlim:[84,4,1,""],order:[84,4,1,""],setup:[84,2,1,""],source_split:[84,4,1,""],step:[84,2,1,""],step_hyperbolic:[84,2,1,""],step_source:[84,4,1,""],verbosity:[84,4,1,""]},"clawpack.riemann":{acoustics_1D_py:[81,1,0,"-"],advection_1D_py:[81,1,0,"-"],burgers_1D_py:[81,1,0,"-"],euler_1D_py:[81,1,0,"-"],shallow_1D_py:[81,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[81,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[81,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[81,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[81,3,1,""],euler_hll_1D:[81,3,1,""],euler_hllc_1D:[81,3,1,""],euler_roe_1D:[81,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[81,3,1,""],shallow_fwave_1d:[81,3,1,""],shallow_hll_1D:[81,3,1,""],shallow_roe_1D:[81,3,1,""]},"petclaw.geometry":{Domain:[73,0,1,""],Patch:[73,0,1,""]},"petclaw.geometry.Domain":{dimensional_split:[73,4,1,""],fwave:[73,4,1,""],kernel_language:[73,4,1,""],mthlim:[73,4,1,""],order:[73,4,1,""],source_split:[73,4,1,""],step_source:[73,4,1,""],transverse_waves:[73,4,1,""],verbosity:[73,4,1,""]},"petclaw.state":{State:[86,0,1,""]},"petclaw.state.State":{F:[86,2,1,""],aux:[86,2,1,""],fset:[86,2,1,""],gauge_data:[86,4,1,""],get_aux_global:[86,2,1,""],get_auxbc_from_aux:[86,2,1,""],get_q_global:[86,2,1,""],get_qbc_from_q:[86,2,1,""],keep_gauges:[86,4,1,""],mF:[86,2,1,""],mp:[86,2,1,""],num_aux:[86,2,1,""],num_eqn:[86,2,1,""],p:[86,2,1,""],problem_data:[86,4,1,""],q:[86,2,1,""],set_num_ghost:[86,2,1,""],t:[86,4,1,""]},"pyclaw.controller":{Controller:[69,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[69,4,1,""],F_path:[69,2,1,""],check_validity:[69,2,1,""],compute_F:[69,4,1,""],compute_p:[69,4,1,""],file_prefix_p:[69,4,1,""],frames:[69,4,1,""],keep_copy:[69,4,1,""],nstepout:[69,4,1,""],num_output_times:[69,4,1,""],out_times:[69,4,1,""],outdir:[69,4,1,""],outdir_p:[69,2,1,""],output_file_prefix:[69,4,1,""],output_format:[69,4,1,""],output_options:[69,4,1,""],output_style:[69,4,1,""],overwrite:[69,4,1,""],plot:[69,2,1,""],plotdata:[69,4,1,""],run:[69,2,1,""],rundir:[69,4,1,""],runmake:[69,4,1,""],savecode:[69,4,1,""],solver:[69,4,1,""],tfinal:[69,4,1,""],verbosity:[69,2,1,""],viewable_attributes:[69,4,1,""],write_aux_always:[69,4,1,""],write_aux_init:[69,4,1,""],xclawcmd:[69,4,1,""],xclawerr:[69,4,1,""],xclawout:[69,4,1,""],xdir:[69,4,1,""]},"pyclaw.geometry":{Dimension:[73,0,1,""],Domain:[73,0,1,""],Grid:[73,0,1,""],Patch:[73,0,1,""]},"pyclaw.geometry.Dimension":{centers:[73,2,1,""],centers_with_ghost:[73,2,1,""],delta:[73,2,1,""],nodes:[73,2,1,""],nodes_with_ghost:[73,2,1,""]},"pyclaw.geometry.Domain":{grid:[73,2,1,""],num_dim:[73,2,1,""],patch:[73,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[73,2,1,""],add_gauges:[73,2,1,""],c_center:[73,2,1,""],c_centers:[73,2,1,""],c_centers_with_ghost:[73,2,1,""],c_nodes:[73,2,1,""],c_nodes_with_ghost:[73,2,1,""],dimensions:[73,2,1,""],gauge_dir_name:[73,4,1,""],gauge_file_names:[73,4,1,""],gauge_files:[73,4,1,""],gauges:[73,4,1,""],get_dim_attribute:[73,2,1,""],num_dim:[73,2,1,""],p_center:[73,2,1,""],p_centers:[73,2,1,""],p_nodes:[73,2,1,""],plot:[73,2,1,""],setup_gauge_files:[73,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[73,2,1,""],delta:[73,2,1,""],dimensions:[73,2,1,""],get_dim_attribute:[73,2,1,""],level:[73,4,1,""],lower_global:[73,2,1,""],name:[73,2,1,""],num_cells_global:[73,2,1,""],num_dim:[73,2,1,""],patch_index:[73,4,1,""],upper_global:[73,2,1,""]},"pyclaw.limiters":{tvd:[70,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[70,3,1,""],beta_limiter:[70,3,1,""],cada_torrilhon_limiter:[70,3,1,""],cada_torrilhon_limiter_nonlinear:[70,3,1,""],cfl_superbee:[70,3,1,""],cfl_superbee_theta:[70,3,1,""],hyperbee_limiter:[70,3,1,""],limit:[70,3,1,""],mc_limiter:[70,3,1,""],minmod_limiter:[70,3,1,""],superbee_limiter:[70,3,1,""],superpower_limiter:[70,3,1,""],theta_limiter:[70,3,1,""],upper_bound_limiter:[70,3,1,""],van_leer_klein_sharpening_limiter:[70,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[84,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[84,2,1,""],aux_time_dep:[84,4,1,""],call_before_step_each_stage:[84,4,1,""],cfl_desired:[84,4,1,""],cfl_max:[84,4,1,""],char_decomp:[84,4,1,""],check_3rd_ord_cond:[84,2,1,""],dq:[84,2,1,""],dq_src:[84,4,1,""],dqdt:[84,2,1,""],fwave:[84,4,1,""],get_dt_new:[84,2,1,""],kernel_language:[84,4,1,""],lim_type:[84,4,1,""],num_ghost:[84,4,1,""],setup:[84,2,1,""],step:[84,2,1,""],tfluct:[84,4,1,""],tfluct_solver:[84,4,1,""],time_integrator:[84,4,1,""],update_saved_values:[84,2,1,""],weno_order:[84,4,1,""]},"pyclaw.solution":{Solution:[83,0,1,""]},"pyclaw.solution.Solution":{is_valid:[83,2,1,""],patch:[83,2,1,""],plot:[83,2,1,""],read:[83,2,1,""],set_all_states:[83,2,1,""],start_frame:[83,2,1,""],state:[83,2,1,""],write:[83,2,1,""]},"pyclaw.state":{State:[86,0,1,""]},"pyclaw.state.State":{F:[86,4,1,""],gauge_data:[86,4,1,""],get_aux_global:[86,2,1,""],get_auxbc_from_aux:[86,2,1,""],get_q_global:[86,2,1,""],get_qbc_from_q:[86,2,1,""],is_valid:[86,2,1,""],keep_gauges:[86,4,1,""],mF:[86,2,1,""],mp:[86,2,1,""],num_aux:[86,2,1,""],num_eqn:[86,2,1,""],p:[86,4,1,""],problem_data:[86,4,1,""],set_aux_from_auxbc:[86,2,1,""],set_cparam:[86,2,1,""],set_num_ghost:[86,2,1,""],set_q_from_qbc:[86,2,1,""],t:[86,4,1,""]},"pyclaw.util":{FrameCounter:[89,0,1,""],VerifyError:[89,5,1,""],add_parent_doc:[89,3,1,""],check_diff:[89,3,1,""],compile_library:[89,3,1,""],construct_function_handle:[89,3,1,""],convert_fort_double_to_float:[89,3,1,""],gen_variants:[89,3,1,""],read_data_line:[89,3,1,""],run_app_from_main:[89,3,1,""],run_serialized:[89,3,1,""],test_app:[89,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[89,2,1,""],increment:[89,2,1,""],reset_counter:[89,2,1,""],set_counter:[89,2,1,""]},pyclaw:{util:[89,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":55,"000000e":109,"00000e":109,"0000ff":[3,44],"001000e":109,"00er2592":4,"00ff00":44,"00ffff":44,"01er25474":4,"020204mag_polici":26,"0311_v3":92,"04d":124,"0d0":89,"115e":92,"1200x1680":41,"1440l":41,"1440p":41,"150w":92,"153w":92,"15e":120,"15n":92,"161w":92,"16m":54,"17th":84,"18n":92,"1d_plot":[35,60,62,106],"1drad":123,"1st":[70,84,107,109,111,123],"2013it":13,"210e":92,"23n":92,"25000000e":55,"260e":117,"27t06":44,"27t07":44,"288e":117,"2d_grid":19,"2d_patch":[3,19],"2d_pcolor":[35,41],"2d_schlieren":3,"2nd":[75,80,84,107,109,111,123],"301e":117,"30x30":41,"360x360":41,"373e":117,"3rd":[80,84],"40000000e":55,"4th":84,"50n":92,"5d0":123,"5e3":110,"5r01ar53652":4,"610000000000000e":92,"8888ff":44,"88er25053":4,"8x6":41,"92er25139":4,"93er25181":4,"96er25292":4,"990000000000000e":92,"99999000e":27,"\u010dert\u00edk":4,"abstract":41,"boolean":[3,41,76,81,107,108],"break":[25,26,38,41,44,82,94,101,110,120],"case":[5,7,10,12,16,19,26,27,32,38,41,44,49,60,66,73,78,80,83,89,93,94,97,100,101,104,110,118,120,121,123,126],"catch":[31,75],"class":[0,1,2,3,22,26,27,41,44,60,62,67,73,75,80,82,83,84,86,88,89,90,92,102,106,107,108,109,111,120],"default":[0,1,2,3,10,19,25,26,27,30,32,35,37,39,40,41,44,49,54,60,62,66,69,71,73,77,78,79,82,83,84,86,87,89,93,96,104,108,109,110,118,120,123],"export":[32,41,43,49,54,78,82,87,92],"final":[26,32,42,49,66,69,72,88,96,102,107,109,111,120],"float":[3,26,27,35,37,44,69,73,81,86,89,107,108,110,111,120],"function":[0,1,2,3,6,11,13,19,20,22,24,25,26,27,35,40,41,46,47,50,53,60,61,66,67,69,70,71,73,74,79,80,81,82,83,86,89,92,93,94,96,97,100,101,103,105,106,107,108,109,110,111,118,119,120,121,123],"import":[0,3,19,25,35,38,41,43,44,47,56,60,62,66,67,68,69,71,73,75,77,78,79,80,82,83,84,85,86,88,90,92,94,104,107,108,109,110,111,118,120,122,124],"int":[1,2,3,26,44,69,70,73,76,77,82,83,86,107,108,110,120],"long":[25,26,37,38,51,82,92,101,120],"new":[1,2,4,5,10,17,19,21,22,25,26,27,31,32,35,37,41,42,43,44,46,47,49,54,60,62,65,66,67,68,69,76,78,80,84,86,92,93,96,99,100,101,102,107,108,110,118,119,120,123],"ond\u0159ej":4,"public":[4,10,18,82],"return":[0,1,2,3,26,37,41,43,44,49,60,62,69,70,73,77,80,81,82,83,84,86,89,94,103,107,109,111,120,123,126],"short":[38,70,80],"static":26,"super":[20,25,120],"switch":[41,80,92,94,104,122],"throw":25,"true":[0,1,2,3,5,11,12,22,24,26,30,35,37,40,41,44,66,69,73,77,78,83,84,86,93,102,103,105,107,108,109,110,111,120],"try":[1,25,29,35,41,43,44,60,68,71,76,83,85,87,88,89,90,94,107,118,120,121],"var":[0,3,10,11,24,91,105,114,115],"while":[10,12,41,49,60,62,67,73,77,78,84,89,103,110,122],AND:[45,64],ARE:[45,64],AWS:[10,43],Added:[70,96,98,100,101],Adding:[65,74],And:[5,17,42,82],Are:95,Axes:106,BCs:[109,111],BUT:[45,64],But:[10,41,60,87,92,97],CMS:4,DAs:86,DMS:4,DNS:10,EBS:10,FOR:[45,64],For:[0,1,2,3,5,6,10,11,12,14,15,16,19,23,24,25,26,27,29,30,32,35,37,38,39,41,42,43,46,49,50,53,54,59,60,62,66,67,71,73,75,76,77,78,80,82,84,85,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,120,122,123,126],GIS:[41,118],Going:[10,22,75],Into:90,NOT:[44,45,60,64,82],Not:[26,41,73],OPS:37,One:[20,23,26,41,49,67,82,89,93,100,120],Res:13,SUCH:[45,64],Such:[49,82],Sys:13,THE:[45,64],That:[29,68,82,88],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,42,43,44,45,46,47,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,69,70,73,75,77,78,80,81,82,83,84,85,86,87,89,93,94,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,120,121,123,124,125,126],Their:64,Then:[10,12,25,26,35,42,43,54,62,66,68,69,72,78,85,86,87,102,120,121],There:[3,5,10,19,27,31,41,43,46,55,62,77,82,85,92,106,107,123,125],These:[1,4,9,12,15,20,25,26,27,30,33,38,41,42,44,49,60,62,66,71,77,79,82,86,88,91,93,94,96,102,103,108,112,118,122,126],USE:[45,64],Use:[26,41,75,81,82,84,92,107,109,111,120],Useful:[1,3,107],Uses:[26,120],Using:[0,1,2,3,6,19,32,33,41,58,60,62,73,74,75,107,114,115,117,120,121,126],WCS:122,Will:83,With:[5,19,25,35,39,41,56,90,93,101,107],__________________o:120,__doc__:82,__init__:[80,82],__main__:[109,111],__name__:[109,111],_build:42,_compute_c_cent:73,_compute_c_nod:73,_compute_p_cent:73,_compute_p_nod:73,_googleearth:41,_output2:[60,62],_output:[10,29,35,40,49,60,62,71,79,83,101,102,121],_output_from_previous_run:35,_output_new:94,_output_old:94,_plot:[10,29,35,49,62,106,112],_plotindex:[1,35],_plots_new:94,_plots_old:94,_pyclaw_io:69,a351:[13,75],a377:[13,75],aabbggrr:44,abbrevi:82,abdullah:64,abil:[32,100,120],abl:[10,43,68],abort:46,about:[3,6,10,12,19,22,29,31,37,38,43,44,46,47,49,55,61,66,75,78,82,84,92,94,101,103,106,109,110,121,123,126],aboutu:26,abov:[3,10,12,17,25,27,29,30,31,32,35,38,41,42,43,45,53,55,60,64,67,77,79,85,88,89,90,92,93,103,106,107,109,110,111,117,118,120,123],abs:[26,80,89,120],absolut:[77,94,108,109],abstol:89,academ:[87,90],acc:82,acceler:81,accept:[66,77,84,107],accept_reject_step:84,access:[0,13,24,71,73,75,84,86,89],accident:[25,60],accompani:18,accomplish:46,accord:5,accordingli:[41,118],account:[10,21,25,68,78],accur:[38,53,75,84,92,107,123,126],accuraci:[35,47,56,109,111],achiev:[17,67,114,115],acou:60,acount:92,acoust:[12,29,38,52,65,66,69,71,75,84,85,100,103,109,123],acoustics_1d:[66,81,88],acoustics_1d_example1:[29,51],acoustics_1d_heterogen:123,acoustics_1d_homogen:[71,94],acoustics_1d_pi:81,acoustics_2d:84,acoustics_2d_radi:[109,123],acoustics_3d_vari:94,acquaint:88,acquir:60,across:[92,118,120],acsza1:26,acszb1:26,act:[70,120],acta:13,actanum2011:13,action:[10,67],activ:[27,28,52,84,110],actual:[5,24,26,44,49,52,53,60,70,89,92,104,110],adapt:[4,6,13,26,49,56,66,82,103,106,107,123],add:[0,8,10,12,13,22,24,25,26,27,35,37,41,42,49,50,66,71,73,77,78,80,89,92,97,100,111,120,124],add_colorbar:[26,92,120],add_colormap:101,add_dimens:73,add_gaug:[73,77],add_label:35,add_param:[109,111],add_parent_doc:89,add_titl:60,add_true_solut:60,added:[3,12,17,19,25,26,27,28,37,44,47,49,60,73,77,93,96,97,99,100,101,107,108,117,119,120,124],addgaug:35,adding:[19,24,25,27,32,35,44,53,78,91,101],addit:[10,12,20,22,25,27,36,44,53,55,56,60,61,67,70,73,75,77,82,84,85,86,92,93,100,107,111,117,118,123,124],addition:78,address:[41,42,43],adequ:38,adjac:[5,12,27,36,93,107],adjust:[10,17,27,44,52,73,77,92,104,107,123],adopt:[26,82,84],adq:82,adv:[13,71],advanc:[5,13,54,88,101,107,123],advantag:[25,59,94],advect:[13,52,60,75,78,103,111,123],advection_1d:81,advection_1d_pi:81,advection_2d_inflow:100,advection_2d_swirl:123,advection_3d_swirl:[100,117],advis:[28,43,45,64],affect:[19,46,107,121],afosr:4,after:[0,1,3,5,10,16,22,24,27,29,35,38,44,46,49,50,55,60,67,68,69,71,82,84,86,92,94,96,100,101,107,108,109,111,123],afterax:[0,24,35,41,60],afterfram:[1,22,24],aftergrid:49,afteritem:[3,24],afterpatch:[3,24],again:[19,25,31,46,60,62,66,67,77,81,87,118,121],against:[89,94,101,116],agenc:4,agre:[9,25,103,116,117,120,123],agreement:38,ahmadia:[4,13,64,75,82],aht:104,aid:67,aim:25,albada:70,alg:109,alghamdi:[4,13,64,75,82],algorithm:[4,6,22,27,30,52,66,73,75,82,84,88,93,103,107,109,111,120],align:[27,41,44,110],all:[0,1,4,5,8,9,10,12,17,19,20,22,24,25,26,27,29,30,31,32,35,36,38,40,41,42,44,45,46,49,51,54,55,56,58,59,60,62,64,66,69,70,71,72,73,77,78,80,81,82,83,84,86,89,90,92,93,94,96,97,99,100,101,102,106,107,109,110,111,112,116,117,118,120,122,123],alloc:[17,82,84,100],allocat:100,allot:44,allow:[4,5,10,19,24,27,36,37,40,41,47,49,54,56,59,60,69,76,82,84,86,89,90,92,94,96,97,100,101,103,107,109,110,111,112,118,120],almost:[90,92],alon:[12,41,82],along:[5,12,24,26,27,30,35,50,53,92,93,100,102,110,122],alpha:[41,84],alphabet:[64,82],alreadi:[0,1,5,10,25,32,43,44,62,78,82,83,85,88,90,97,120],also:[3,4,5,6,7,8,12,17,19,20,21,22,25,26,27,29,30,32,33,34,35,36,37,38,41,42,43,44,46,49,50,52,53,54,55,56,59,60,62,66,68,69,73,75,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,96,101,102,103,104,107,109,110,111,112,114,115,116,117,118,120,121,122,123,126],alter:41,altern:[26,27,29,37,41,43,46,49,59,78,90,100,101],although:[26,41,49,79,80,83,120],alwai:[12,19,23,24,25,27,32,49,66,82,92,93,96,97,109,110,111,118,123],am583s2013:90,amal:[4,13,64,75,82],amazon:[22,43],amazonaw:10,amdq:[81,82,103],ami:[22,43],amount:[38,42],amr:[4,6,12,17,20,22,24,25,27,28,35,44,49,55,56,59,64,73,92,101,106,107,109,111,117,118,123],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:101,amr_level:55,amr_level_max:109,amr_levels_max:[27,30,93,108,109],amr_modul:[54,100],amrclaw:[4,5,9,11,12,16,17,19,20,21,25,30,32,35,36,43,49,50,52,54,55,56,85,91,93,94,102,105,107,110,114,115,116,117],amrdata:[19,93,108,109,110],amrlib:100,amrnez:93,an11:42,anaconda:[41,85,90],anal:13,analog:[107,108],andi:4,angl:[12,26,37,53],ani:[3,4,5,7,10,12,16,17,19,24,25,27,29,30,36,38,40,41,42,43,45,46,47,49,51,54,55,56,60,64,70,71,73,75,78,80,82,83,85,89,92,93,94,100,102,104,106,107,108,110,123,126],anim:[12,41,52,100,112],anisotrop:[5,19],anl:78,annot:[24,44],anoth:[3,19,22,41,43,44,55,59,71,84,87,94,102,123],answer:21,anyth:[3,5,25,43,94],apach:10,apdq:[81,82,103],api:37,app:[9,10,20,23,25,27,33,52,99],appar:[26,54],appeal:41,appear:[0,1,3,7,10,15,20,27,35,36,41,42,44,46,48,60,77,82,83,86,92,110,112,118],append:[17,30,35,60,69,83,92,93,101,109],appl:13,appli:[3,4,5,10,12,26,30,38,41,47,53,60,62,70,73,84,92,93,102,107,110,123],applic:[4,5,11,12,16,17,19,20,21,25,27,29,32,33,36,50,54,58,62,71,73,74,77,82,84,89,91,93,94,96,99,100,103,105,107,110,112,114,115,116,118,120,123,124],appreci:64,approach:[10,25,51,59,67,78,80,89,93,100,103,106,110,123,126],appropri:[5,10,12,21,25,35,36,38,39,41,44,47,49,50,51,54,66,69,70,71,76,78,79,80,81,83,92,94,103,104,107,123,126],approv:38,approxim:[5,12,38,41,53,82],apt:[10,90],arbitrari:[27,44,84,96,110],arc:[92,104],arcgi:120,architectur:78,archiv:[9,18,41,43,94,112,116,120,122],area:[11,19,84,92,105],aren:[82,92],arg:[73,83],argument:[0,1,2,3,24,26,37,40,41,60,66,67,71,73,76,80,82,83,84,86,89,94,103,106,107,108,120,123],argv:[109,111],aris:[45,52,64],arithmet:47,aron:[4,13,64,75,82],arora:70,arora_ro:70,around:[5,26,27,44,94,108,109,120,123],arrai:[0,3,5,11,17,19,22,24,26,27,35,37,39,44,60,66,67,69,70,73,75,76,80,81,82,83,84,86,88,89,90,96,97,98,103,105,107,108,109,110,111,120,123],arrang:120,arriv:[19,22,27,28,104],arrival_tol:27,articl:[13,75,82,112],artifici:12,asc:[92,120],ascii:[22,49,66,69,82,83,92,102,107,109,111,118,124],ascii_output_format:50,ask:21,ask_us:120,aspect:[38,39,49,92,120],assembl:43,assert:[109,111],assess:[38,104],assign:[26,27,66,69,83,92],assist:[19,27],associ:[0,1,2,5,19,41,54,73,76,77,94],assum:[3,17,19,26,37,38,41,42,43,44,49,53,59,79,80,81,88,89,92,93,100,104,107,110,118,120,122,126],astronom:104,aterrel:4,atmospher:4,attach:86,attempt:[7,8,17,29,46,83,89,92,94,96,120,121],attirbut:19,attr:[73,83],attribut:[6,19,22,26,35,61,62,66,69,73,78,80,82,83,84,93,96,101,102,106,107,108,110,120],attributeerror:60,audienc:82,aug:13,aug_glob:81,augment:103,austin:4,author:[13,22,36,38,70,75,81,82,92],auto:[0,35,67],autom:[67,82,94],automat:[0,2,3,7,8,12,26,29,32,41,46,59,60,62,66,71,76,78,82,85,86,87,89,94,96,107,108,110,118],aux1:27,aux1d:123,aux:[5,11,17,19,22,24,27,67,75,77,80,82,83,84,86,87,96,97,103,105,107,108,109,111,123],aux_bc_low:80,aux_bc_upp:80,aux_l:81,aux_r:81,aux_time_dep:84,aux_typ:[108,109],auxbc:[80,84,86],auxiliari:[19,67,69,76,81,84,86,103,107,109,111,123],auxillari:83,auxl:[82,103],auxr:[82,103],auxtyp:109,avail:[0,4,12,19,20,21,35,36,38,41,46,49,59,61,62,66,69,75,76,79,81,82,84,87,88,89,90,92,102,104,107,109,110,112,118],averag:[4,5,11,13,36,38,39,49,81,86,97,103,105,118,120,123],avoid:[27,41,44,49,73,82,96,97,101,102,107,110,126],awai:[25,104],awar:[38,78],awr11:13,axes1:[2,62],axes:[0,1,2,22,24,26,35,41,49,60,62,92,106,120],axescmd:[0,62],axesnam:[1,62],axessubplot:26,axi:[0,26,39,41,49,60,73,92],b0002:55,b4step1:[11,123],b4step2:[11,123],b4step3:11,b4step:22,b4stepn:123,back:[10,24,42,82,92],backend:41,background:[2,22,82,106],backward:[25,26,37,43,44,90,97,98,120],bad:94,bai:[104,122],balanc:[5,13,56,114,115],bale:13,balelevmitross02:[4,13,107,126],ball:120,band1:120,band:[41,120],bar:[10,42],barrier:89,base:[5,10,17,18,19,25,26,30,36,37,41,44,47,49,56,67,69,70,73,75,81,82,83,84,86,88,89,90,93,95,100,104,107,108,109,110,111,120,123,126],base_subfault:26,baselin:41,bash:[32,41,43,49,54,78],bash_profil:[43,87],bashrc:[10,32,43,87],basi:49,basic:[5,9,22,26,29,49,66,73,75,81,82,84,94,126],bathymetri:[11,22,27,36,38,41,44,81,104,105,110,118,120],bc1:89,bc2amr:12,bc_arrai:84,bc_lower:[12,66,80,88,107,109,111],bc_upper:[12,66,80,88,107,109,111],bcn:[5,12,111,123],bcnamr:[5,12,107,109,123],beam:70,bear:[26,37],bearing_unit:37,becaus:[19,24,27,41,77,78,82,96,103,104,107],becom:[38,82,87,126],been:[0,1,4,10,12,15,17,18,19,21,24,25,27,28,29,30,33,36,38,41,42,46,47,49,56,60,62,64,67,69,81,82,83,86,87,88,89,92,93,95,96,97,99,102,107,108,110,118,120,123],befor:[1,3,4,5,22,25,26,27,29,31,32,42,44,46,49,54,62,66,69,78,82,84,86,92,93,94,96,97,102,103,104,107,108,110,118,120,121],before_step:84,beforefram:[1,24],begin:[37,44,73,77,81,88],begin_d:37,behav:35,behavior:[42,82,92,93,94,101],behaviour:66,being:[1,3,4,7,10,38,52,62,69,81,83,84,89,93,101,103,107,118,121,123],believ:38,belki:57,belong:[60,73,78,82,83,86],below:[3,5,10,11,12,19,21,26,27,41,44,47,49,52,53,62,64,66,68,77,81,82,88,90,91,92,93,94,97,98,99,100,101,103,105,106,107,108,109,110,111,114,115,118,120,123],benchmark:38,benefit:82,beowulf:43,berger:[4,5,13],bergercalhounhelzellevequ:12,bergercolella89:[5,13],bergergeorgelevequemandli11:[4,13],bergerleveque98:[4,5,6,13],bergeroliger84:[5,13],bergerrigoutsis91:[5,13],berkelei:[4,45,64],best:[3,12,19,23,25,32,41,51,54,59,60,80,92,93,94,103,110,113,118,123],beta:[37,70,84,111],beta_limit:70,better:[0,5,19,27,35,49,54,55,59,82,84,101,110,118],between:[3,4,5,10,12,20,22,25,26,37,44,49,53,54,56,69,73,84,86,87,89,93,101,103,104,107,108,109,110,111,112,117,118,120,122,123],bewar:120,beyond:[5,26,30,82],bgr:44,bibliographi:4,bibtex:4,big:82,big_earthquak:[26,92],biggest:75,bilinear:[5,27,35,96,97,118],bin:78,binari:[22,32,45,50,64,79,101,102,107,109,120,124],bind:[25,41,59,67,78],bisect:[108,109],bit:[12,19,26,78,87],bitbucket:78,black:[3,35],blank:[3,44,82],blast:71,bleed:43,blob:101,block:[6,26,44,53,55,56,66,82,86,89,94,123],blossei:4,blue:[3,8,35,44,60,120],boe:4,boisest:41,bomb:[46,54],book:[4,9,13,22,82,83,90],bool:[0,1,2,3,37,44,69,76,81,83,84,86,89,110,120],border:[49,123],bore:38,both:[3,12,25,26,29,30,38,49,55,67,76,77,78,84,85,92,93,94,100,101,103,107,109,111,114,118,123],bottom:[9,10,11,26,29,36,38,47,66,80,81,92,105,114,115,118],bound:[67,70,78,107,120],boundari:[17,22,41,44,54,67,73,81,82,84,88,97,100,107,109,111],boussinesq:38,bowl_radial_fgmax:27,box2kml:44,box:[26,41,44,92,120],branch:[15,25,32,40,94],brief:[4,92,110],briefli:126,bring:[10,41,42,49],broad:120,broken:[16,17,25,50,94],brought:25,brown:[64,120],brows:[8,21,33,41,49,112,123],browser:[10,25,29,41,42,112],bsd:[4,45,64],buffer:[26,93,101,108,109,120],buffer_length:120,buffer_s:26,bug:[4,7,19,21,27,32,47,54,60,64,99,100,101],build:[22,25,42,49,67,75,78,89],buildsystem:78,built:[25,47,56,65,75,78,80,83,93,94,114,115],bulk:[16,66,81,88,103,109,123],bull:[13,26],buoi:[22,92],burg:71,burger:[75,103,123],burgers_1d:81,burgers_1d_pi:81,busi:[45,64],butcher:84,button:[9,10,25,41,44],c210:[13,75],c231:[13,75],c_center:73,c_centers_with_ghost:73,c_l:81,c_node:73,c_nodes_with_ghost:73,c_r:81,cach:[19,37,62,64],cache_dir:37,cada:70,cada_torrilhon_limit:70,cada_torrilhon_limiter_nonlinear:70,cake:57,cal:[103,123,126],calcul:[3,5,24,26,36,37,49,60,73,81,84,97,120],calculate_geometri:26,calculate_geometry_triangl:26,calhellev08:13,calhoun:[4,13,41],calhounhelzellevequ:12,call:[1,5,17,19,24,26,32,35,40,43,49,55,60,62,66,67,69,70,72,76,77,80,82,83,84,86,88,89,92,94,96,100,101,103,107,109,110,111,120,123],call_before_step_each_stag:84,call_setplot:60,callabl:89,calucl:81,cambridg:13,camera:41,can:[0,2,3,4,5,6,7,8,9,10,12,16,17,19,21,23,24,25,26,27,29,31,32,33,35,36,37,38,41,42,43,44,46,47,49,50,51,52,54,55,56,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,78,79,80,82,83,84,85,86,87,88,89,90,92,93,94,96,97,100,101,102,103,104,106,107,108,109,110,111,112,116,118,120,121,122,123,124,126],candid:101,canopi:85,capa:83,capa_index:[107,109,111],capab:120,capabl:[6,9,19,27,28,38,56,67,96,101,120,122],capac:[11,81,105,107,108,109,111],capit:82,captur:[38,118],care:[27,35,36,78,92],carefulli:[17,19,47],cartesian:[27,36,44,67,110],cascad:4,cast:120,cat:102,caten:102,caus:[19,38,41,42,45,62,64,87,92,94,101,106,108,120],caut:70,caution:[38,118],cautionari:[22,36,110],cautiou:38,caxi:49,cb_file:44,cb_filenam:44,cb_kwarg:120,cb_name:44,cb_xfrac:44,cb_yfrac:44,cbar:[81,120],cdot:[47,80],cell:[3,4,7,11,12,17,19,22,24,27,35,36,41,44,49,54,55,56,66,73,78,81,82,84,86,88,92,93,96,97,101,103,104,105,107,108,109,110,111,117,118,123,126],celledg:3,celledges_show:[3,19],cellgridintegr:96,cellgridintegrate2:96,cellsiz:[92,100,118],center:[4,24,26,27,30,35,41,44,53,66,73,80,81,88,92,93,108,109,123],centerlin:26,centers_with_ghost:73,central:107,centroid:[26,53],certain:[27,30,36,93,101,107],certainli:[78,90],certik:[4,64],cf2py:67,cfl:[5,73,77,84,88,96,101,107,109,110,111],cfl_desir:[84,107,109,111],cfl_max:[84,107,109,111],cfl_superbe:70,cfl_superbee_theta:70,chanc:64,chang:[1,5,10,11,12,16,17,22,25,26,27,31,32,35,40,41,42,43,44,46,47,49,50,52,54,55,56,62,66,67,74,77,86,89,92,93,94,105,107,108,109,110,111,114,115,121,123],changelog:[14,15,19,95,96,97,98,99,100,101],chapter:[12,103,107,123],char_decomp:84,charact:[37,82],characterist:84,charg:10,cheaper:10,check:[5,12,17,27,29,31,32,40,41,42,43,46,49,60,66,67,69,75,78,83,84,86,88,89,92,97,108,109,116,120,121,122,123],check_3rd_ord_cond:84,check_diff:[89,94],check_lmm_cond:84,check_valid:69,check_valu:[89,94],checkout:[25,42],checkpoint:[22,101,107,109,111],checkpt_interv:[107,109],checkpt_styl:[101,102,107,109],checkpt_tim:[107,109],chen:[26,122],chile2010:[41,92,96,99,118],chile2010_fgmax:27,chile:[22,44,92],chile_2010:41,chilie2010:92,chk00006:[109,111],chk00100:101,chk:101,chkaaaaa:101,chkbbbbb:101,chknnnnn:[102,107,109,111],choic:[12,22,59,84,107,109,110,111,123],choos:[0,22,44,80,82,92,107,110],chose:47,chosen:[3,30,41,88,92,93,104,108],circl:[3,37,60],circular:13,cise:13,citat:4,cite:[22,82],clamshel:[22,97],clarifi:[19,82],clash:49,classic4:111,classic:[4,5,9,11,12,16,17,19,20,21,25,30,32,33,35,36,51,54,55,56,64,66,69,71,73,74,75,80,91,92,94,102,103,105,108,110,115,121,123],claw1:89,claw:[5,8,9,10,11,12,16,17,19,21,25,26,27,29,31,32,35,36,37,39,40,42,43,44,46,49,51,52,53,54,61,66,69,71,75,77,78,85,87,91,92,93,94,96,97,99,100,103,105,109,110,111,113,114,115,116,117,118,120,121,123,124],claw_1dnoncon:126,claw_git_diff:40,claw_git_statu:40,claw_lib:50,claw_outdir:[46,60],claw_packag:84,claw_pkg:[107,108,109,110,111],claw_topo_download:120,clawcode2html:22,clawdata2pyclaw:67,clawdata:[92,96,100,102,107,108,109,110,111],clawdev2013:42,clawgraph:49,clawpac:42,clawpack:[1,4,5,6,8,12,22,23,25,26,27,28,29,32,33,35,36,37,38,40,41,42,44,45,49,51,52,54,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,86,87,88,90,92,94,95,96,97,98,99,100,101,102,103,107,108,109,112,113,116,118,119,120,121,123,124,126],clawplotax:[1,2,3,24,60,106],clawplotdata:[2,3,24,35,41,60,62,69,106],clawplotfigur:[0,1,41,60,106],clawplotitem:[0,1,6,19,22,24,61,101,106],clawrundata:[35,44,102,107,108,109,111],clawsolut:1,clawsolv:84,clawsolver1d:[66,69,73,84,88],clawsolver2d:[73,84],clawutil:[8,16,17,20,25,31,32,40,43,46,94,107,108,109,111,120,121],clean:[19,89,100],cleaner:25,clear:[1,2,5,49,62],clearfigur:1,clearfram:[1,62],cleargaug:35,clearli:[35,38,41],clf:2,clf_each_fram:2,click:[4,9,10,25,41,52,90,92,94],client:92,clint:13,clobber:101,clockwis:[27,37,53,120],clone:[9,15,20,21,33,43,63,72,78,85,121],close:[10,41,44,49,82,93,108],close_fig:44,closer:[53,109],cloud:[10,22],cluster:[5,13,30,43,93,108,109],clustering_cutoff:[93,108,109],cmap:[41,44,60,120],cmap_slip:26,cmax:[41,44],cmax_dz:26,cmax_slip:26,cmin:[41,44],cmin_slip:26,cname:42,coars:[3,27,41,92,93,107,118,123],coarsen:[93,108,120],coarser:[3,12,107,108,123],coarsest:[5,41,55,96,102,107],coast:[92,120],coastal:[38,92,104,110],coastlin:[27,41,110,122],code:[4,5,6,7,12,16,17,18,19,20,21,24,27,29,31,32,33,35,38,40,42,43,45,46,47,50,51,52,54,55,56,58,60,62,64,66,67,73,75,77,78,80,84,85,88,92,95,96,97,100,101,102,107,109,110,111,112,117,118,121],coeffici:[47,80,81,84,86,87,88,110],colella:[5,13],collabor:[41,112],collect:[9,23,25,26,27,53,59,66,84,90,92,112],collis:82,color:[3,22,26,41,44,49,106,120],colorbar:[3,44,120],colorbar_labels:26,colorbar_shrink:26,colorbar_ticks:26,colormap:[3,22,26,36,41,49,61,101,120],column:[26,27,38,81,100,120],column_list:26,column_map:26,com:[9,10,20,21,23,25,42,43,63,72,78,80,85,99,101],combin:[17,42,44,92,101,122],combinatori:94,come:[3,25,52,60,62,71,78,84,100,118,123],comfort:80,comm_world:89,command:[0,1,2,3,8,10,22,31,40,41,43,46,51,60,66,67,69,78,79,82,84,88,89,90,92,94,106,107,108,120,121],commenc:102,comment:[8,21,39,102],commit:[25,26,40,42,82,94],common:[3,20,25,29,31,32,46,56,59,66,81,84,86,87,121,123],commonli:[3,49,60,62],commun:[22,41,64,82,86,89],compact:118,compar:[19,35,38,41,43,60,77,93,94,104,108,110,116,122,126],compare_gaug:100,comparison:82,compat:[25,26,37,43,44,59,78,87,90,97,98,120],compens:120,compil:[10,22,29,31,36,54,56,62,67,75,80,85,89,96],compile_librari:89,complet:[17,19,25,37,46,62,66,67,78,82,89,90,94],complex:[9,73,82],complex_zero:82,compliant:32,complic:[12,60,67,106],compon:[3,12,17,19,22,25,27,35,43,49,55,80,83,85,86,93,100,107,108,109,118,123],compos:[26,66],comprehens:94,compress:[26,92,120],compris:[19,75,120],comput:[3,4,5,10,12,13,22,24,26,27,35,37,41,43,44,46,50,59,60,62,67,69,73,75,77,78,84,88,90,92,93,96,97,101,103,107,109,110,111,118,123,126],computation:[67,84],compute_f:[69,77],compute_gauge_valu:77,compute_p:[66,69],concern:[19,36],conclus:[4,41],conda:41,condit:[17,22,45,56,64,65,66,67,69,82,84,91,96,97,100,104,107,109,110,111],confer:21,config:78,config_fc:121,configur:[60,66,78,120],confin:82,confirm:38,conflict:[5,49,87],conform:[19,25,83],confus:[3,103],conjunct:93,connect:[27,44],consequenti:[45,64],conserv:[4,5,13,77,84,86,123,126],consid:[5,38,43,67,112,120],consider:[38,66],consist:[5,27,37,41,44,78,82,92,103,110,118,123],consol:[10,77],consolid:100,constant:[26,27,38,44,47,78,81,92,110,120,123],constant_storm_modul:100,constrain:[30,93],constraint:[108,126],construc:44,construct:[19,26,66,73,89,118],construct_function_handl:89,constructor:[82,86],consult:87,contact:[71,75,85],contain:[1,3,9,10,17,20,23,26,27,29,31,33,34,35,36,37,39,40,41,42,44,46,49,50,55,56,60,62,66,67,69,70,71,73,75,76,78,80,81,83,84,86,88,89,90,92,94,96,97,102,103,106,107,110,112,116,118,120,123],containing_rect:26,containt:102,contamin:107,content:[41,42,67,123,124],context:[24,41,123],contigu:[55,86],contingu:19,continu:[10,19,25,26,39,43,64,103,107,126],contour:[3,26,35,41,49,90,106,120],contour_color:3,contour_kwarg:[3,120],contour_level:[3,120],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[22,41],contract:[45,64],contribut:[4,21,22,64,67,75,80,84,94],contributor:[4,21,45,75],control:[5,6,20,22,32,35,49,62,65,70,73,75,76,77,78,80,82,93,110],conveni:[1,24,29,35,41,62,69,71,75,79,88,123,126],convens:118,convent:[3,19,26,36,81],converg:59,convers:[16,67,93,122],convert43to46:16,convert46to50:17,convert:[3,19,22,26,33,37,44,53,67,72,80,89,92,107,108,118,122],convert_fort_double_to_float:89,convert_readm:8,convert_to_standard_unit:26,converttopotyp:118,convex:27,coodin:26,coord:37,coordiat:92,coordin:[20,22,26,27,37,55,66,73,77,78,88,92,93,110,120],coordinate_specif:[26,92],coordinate_system:[11,105,110],coorind:120,copi:[5,11,12,29,35,42,49,66,69,72,80,86,91,92,93,97,101,102,105,112,114,115,118,123],copyright:[45,64],core:[4,56,94],corioli:[38,110,114,115],coriolis_forc:[38,110],corner:[3,26,27,55,73,92,107,109,111,118,120],correct:[17,25,32,47,49,60,66,73,78,83,89,96,97,101,107,109,111],correctli:[25,27,67,74,100,110],correspond:[3,5,20,24,26,37,38,44,49,60,66,70,73,77,80,83,86,92,93,94,103,104,107,108,109,111,118,122,123],cos:[37,39,66,80],cosin:66,cost:[10,82,84],could:[10,24,27,29,35,54,60,62,66,73,77,82,86,87,90,92,100,102,108,109,110,111,118,120,123],council:4,count:66,count_from_zero:66,counter:[89,120],counterclockwis:53,coupl:126,courant:[4,5,93,107,108,109,111],cours:[10,23,27,35,36,53,78,79,88,92,110,118],cover:[5,24,25,26,27,30,41,44,92,93,97,109,110,118],coverag:[75,94],covert:8,cparam:[66,86],cpu:[10,101,117],crash:[101,107],creat:[0,1,2,3,5,6,16,21,22,25,26,29,31,33,35,36,40,42,43,44,46,55,60,62,67,68,71,73,75,76,79,82,83,86,87,88,89,92,94,96,100,101,102,106,107,108,109,112,113,120,122,123,124],create_dtopo_xi:26,create_dtopographi:[26,92],create_topo_func:120,creation:[60,75,96],criteria:[5,6,19,22,30,86],criterion:[27,93,109],critic:[41,77,103],crop:120,cross:25,crucial:118,cse:21,csh:78,csv:26,csvfault:26,ctrl:60,cube:49,current:[3,10,17,19,24,25,26,27,30,32,35,36,38,44,49,50,52,55,60,62,73,77,78,84,86,89,92,93,94,101,102,104,106,107,109,110,111,118,120,122],current_data:[0,3,22,35,60],curv:[3,22,35],custom:[0,10,12,17,19,49,56,59,67,74,80],custom_bc:80,cut:108,cutoff:[5,109],cvs:41,cxx:78,cyber:13,cygwin:[43,69],cython:78,dai:[5,10,41],dalcin:[64,82],dam:71,damag:[5,45,64],damian:43,damiansra:80,danger:25,darker:41,darryl:13,dart:[22,92],dash:[3,78],daspect:49,dat:26,data:[0,1,3,22,24,26,27,29,31,33,35,36,37,41,42,44,45,46,49,59,60,61,62,64,66,69,73,77,79,81,83,84,86,89,91,92,93,96,98,99,101,103,104,109,111,117,119,124],data_break:120,data_typ:89,databas:[10,26,89,92,118],datadir:101,dataset:[120,122],date:[21,25,31,37,41,42,46,60,121],date_tim:37,datetim:37,datum:[37,38,81,104,110,122],dave:26,david:[4,13,64,75,82,84],dawson:13,daylight:44,dcp:44,deal:[26,38,59,77,78,86,120],dealloc:82,dealt:27,debian:90,debug:[22,32,46,55,77,86,94,107,109],debugg:60,decid:[66,84],decim:[37,44],decis:41,declar:[17,19,86,123],decompos:[55,103,126],decomposit:107,decor:89,deduc:118,deep:110,deeper:110,deepli:88,def:[0,1,3,35,41,60,66,73,77,80,82,84,109,111],default_tfluct:84,defenc:4,defin:[0,1,3,5,19,22,24,26,27,30,32,44,46,49,53,60,62,66,69,73,79,80,82,83,84,86,88,89,93,96,103,109,111,120,121,123,126],definit:[26,49,66,82,93,99],deform:[13,26,53,122],deg2dm:44,degre:[26,37,41,44,53,92],delet:[17,25,35,92,102],delimit:[26,82],delin:110,delta:[70,73,80,82,84,103,120,123,126],delta_h:81,delta_hu:81,delta_i:120,delta_limit:120,delta_x:120,dem:[44,120],demo:[52,78],demonstr:[9,52,71,78],denot:[5,19,35,103,120],densiti:[69,77,81,86,88,108,109,123],depart:4,depdend:70,depend:[3,10,12,25,26,27,29,30,31,32,36,38,41,46,47,49,60,65,81,83,84,89,92,93,110,120,121,123,126],deprec:[26,28,100,110,120],depth:[4,12,13,19,22,26,27,36,38,47,53,61,92,104,110,118],deriv:[45,53,64,69,74,75,86,94],describ:[3,4,5,6,10,12,16,20,23,25,26,27,29,30,36,37,38,41,42,43,44,46,49,53,55,56,59,60,61,73,83,89,92,93,94,103,104,106,107,108,110,118,119,120,122,123,126],descript:[3,4,19,30,44,49,59,82,89,92,93,103,110,118,126],design:[4,24,25,41,64,66,88,92,104,122],desir:[0,1,2,3,5,6,12,19,22,23,26,27,33,35,43,44,58,59,60,62,66,67,69,77,83,84,91,107,109,111,118,120,121],desktop:78,destin:41,detach:25,detail:[4,5,12,19,23,25,26,27,29,30,32,36,38,41,45,49,60,64,69,70,71,73,76,77,78,79,80,81,82,84,92,94,97,103,106,107,110,112,121,123,126],detect:[41,46,76,85,89,121],deterimin:120,determin:[3,5,26,27,30,35,38,40,41,42,44,60,70,73,81,86,92,93,97,101,102,104,106,107,108,110,116,120,123],determine_topo_typ:120,dev:[21,25,78],develop:[4,5,6,10,15,19,20,21,38,42,45,49,52,59,63,64,67,75,80,82,84,85,94,104,109,118],dict:[26,69,76,81,83,86,120],dictionari:[0,1,2,3,26,60,66,69,76,81,83,86,88,120],dicuss:26,didn:[71,99],died:96,diff:[15,40,96,97,98,99,100,101],differ:[1,3,5,6,9,12,19,22,25,26,27,29,35,36,38,40,44,47,49,52,53,54,62,66,67,69,71,73,81,82,84,89,90,92,93,94,100,101,103,104,107,108,109,110,118,120,121,122,123,126],differenti:[13,26],difficult:35,difficulti:[85,87],diffus:80,digit:[44,60,120],dim:[80,81,84],dimens:[5,6,12,17,19,35,37,44,49,66,67,69,78,80,81,83,86,88,93,103,107,108,109,111,120,123],dimension:[3,6,7,13,19,26,27,29,35,38,49,73,80,92,100,101,109,110,111,120,123],dimensional_split:[73,100,107,109,111],dip:[26,53,92],dir:[78,124],direct:[5,7,12,19,26,27,29,37,41,44,45,46,49,53,54,60,64,69,80,88,92,107,108,110,120],directli:[16,20,22,25,38,49,60,62,66,67,70,86,89,90,120,124],directori:[1,3,5,8,9,10,11,12,16,17,19,20,22,25,27,29,31,33,35,36,37,40,41,42,43,44,49,50,54,58,62,69,71,73,77,80,82,88,91,92,93,94,96,101,102,103,105,106,107,108,112,114,115,116,117,118,121,123,124],disabl:[39,85],disable_petsc:89,disallow:82,disappear:[92,122],discard:84,disclaim:[45,64],discontinu:[4,84,126],discov:47,discoveri:94,discret:84,discrib:4,discuss:[21,25,26,38,82,88,90,92,93,103,110,126],disk:[10,66,94],disloc:92,dispers:[38,52],displac:[22,26,38,53,92,110,122],displai:[1,10,29,31,41,44,60,77,82,94],dist_latlong2met:37,dist_meters2latlong:37,distanc:[26,37,53,92,118,120],distribut:[4,10,26,45,53,56,64,84,90],disturb:41,distutil:67,dive:90,divid:[93,107],divis:[4,41],dlgeorg:4,dms2decim:37,dnetcdf:32,doc:[20,21,25,26,41,42,70,72,89,113],docstr:[67,71,94],doctest:73,document:[0,1,2,3,14,18,19,20,21,22,25,27,34,36,38,45,53,59,60,61,62,64,70,71,72,73,76,78,79,84,86,89,92,97,106,109,124,125],doe:[4,8,12,17,24,25,27,31,38,41,43,49,56,60,73,82,83,86,89,94,97,103,118,120,121,123],doesn:[25,86,92],doing:[5,8,16,25,27,35,38,40,42,43,60,62,73,82,92,94,101,102],domain:[5,12,13,30,38,41,42,44,55,65,66,67,69,78,80,83,86,92,93,108,109,111,118],don:[10,24,25,60,77,78,82,85,94,109],done:[1,5,6,7,8,10,12,16,17,22,25,29,35,36,41,43,44,46,49,53,59,60,62,66,70,71,89,92,93,97,101,102,103,106,108,110,117,120,122],donna:4,donnabois:4,donor:[107,109,111],dot:[31,35,41,44,46,121],doubl:[49,67,73,89,103,108],down:[10,26,77,92,101,118,120],download:[9,10,20,22,25,26,41,43,50,52,71,78,85,90,92,120,121],downward:53,dpc:44,dpi:[41,44],dpng:49,dprint:[108,109],dq_src:[80,84],dqdt:84,draw:3,drawcontourlin:49,drawn:[26,41,106],driver:17,drop:[10,107],dry:[12,13,36,81],dry_toler:81,dst:44,dt_check:27,dt_initi:[96,107,109,110,111],dt_max:[107,109,111],dt_max_dtopo:[96,110],dt_variabl:[107,109,111],dtdtopo:99,dtdx1d:98,dtdx:70,dtdy1d:98,dtfe:84,dtopo2kml:44,dtopo:[22,26,36,38,44,53,96,98,99,110,118,122],dtopo_data:[96,110],dtopo_file_nam:44,dtopo_fnam:92,dtopo_modul:96,dtopo_typ:[26,44,92],dtopo_usgs100227:92,dtopofil:[44,53,92,110],dtopographi:26,dtopotool:[52,53,92,98,99,101,119],dtopotools_exampl:26,dtopotyp:[110,118],due:[13,26,37,92,94],dummi:[67,84,123],dump:[55,107],dumpgaug:[35,100],duplic:[60,99,102],durat:[26,104],dure:[19,27,35,44,56,96,104,109,110,111,118],dx0xgftn3_x04rdx0_w5nq7w0000gn:[11,91,105,114,115],dxc:67,dyc:67,dynam:[5,17,26,38,52,56,92],dynamic_slip:26,dz_at_t:26,dz_interv:26,dz_max:26,e10:92,e_l:81,e_r:81,each:[1,2,3,5,6,12,15,19,22,25,26,27,28,30,35,37,41,44,49,52,53,54,55,58,59,60,62,66,67,70,73,76,77,78,80,81,82,83,84,86,88,92,93,94,96,97,101,103,106,107,108,109,110,111,117,118,120,122,126],each_fram:35,each_gaug:35,earli:[5,17],earlier:[17,19,27,66,80,92,96,120],earth:[22,44,53,92,100,110],earth_radiu:110,earthquak:[22,26,36,38,110,118],eas:44,easi:[4,5,8,25,49,67,77,78,79,82,112,123],easier:[59,123],easiest:[16,25,30,32,56,60,62,90,92,93,123],easili:[3,10,25,27,41,49,60,67,73,82,85,89,90,92,94,112],east:[10,92,118],eastern:92,easy_instal:78,ec2:[22,43],edebug:[108,109],edg:[3,5,11,12,24,26,27,43,44,53,73,81,82,92,103,105,108,109,111,123],edit:[25,41,62],editor:55,edu:[26,41,50,90,92],effect:[25,41,47,49,73,77,82,90,93,94,104,110,120],effici:[38,64,75,77,82,86,93],effort:82,efix:81,eigenvector:[103,126],either:[9,12,17,26,30,36,41,43,49,53,60,62,66,68,73,77,82,84,89,93,94,100,101,103,118,120,123,126],elabor:82,elast:[10,52,53,92],element:[0,3,19,44,81,84,86,107,108,109,110],elev:[19,22,27,36,38,41,44,91,110,118,120,122],elif:[109,111],elimin:[19,67],ell:103,els:[24,25,86,111],elsewher:[21,92],emmett:[13,64,75],empir:[38,47],empti:[35,83,86,89,92,107,120],empyclaw:80,enabl:[73,77,82,85,89],encapsul:38,encount:[31,41,60,85,87],encourag:[49,82],end:[10,26,27,37,41,44,69,77,81,82,88,90,92,93,101,109,111,117],end_dat:37,enddo:123,endors:[45,64],energi:[77,81],enforc:110,engin:[13,41],english:82,enhanc:[47,64,82],enough:[117,118],ensur:[29,49,102],enter:[49,78,85],enthought:[85,87,90],entir:[5,38,41,44,54,56,66,77,82,83,97,102,120],entireti:69,entri:[41,66,89],entropi:81,enumer:[73,84],environ:[22,25,29,31,40,41,49,51,54,56,79,82,87,89,92,120,121],envis:12,epd:87,eprint:[108,109],epsg:41,epsilon:70,eqinthenew:92,eqn:126,eqnarrai:88,equal:[12,26,27,41,78,80,92,93,102,107,109,111,118,120],equat:[4,12,13,29,36,38,47,52,60,65,66,67,69,75,77,80,82,84,85,86,92,97,100,103,107,109,110,111,118,123,126],equiv:126,equival:[5,44],err:109,error:[12,17,29,30,31,41,43,49,54,60,69,75,77,82,89,93,94,108,109,121],escap:[93,109],escienc:10,especi:[25,41,67,80],esri:118,essenti:[49,84,92,110,118],est:109,establish:4,estim:[47,93,108,110],estimat:109,eta:[26,27,100],eta_tild:27,etc:[0,2,12,16,17,21,24,25,27,38,41,42,44,55,59,67,82,103,106,107,110,123],etopo10min120w60w60s0:92,etopo1:[92,104,120,122],etopo:[92,122],etopo_sample_2min:120,euler:[52,75,84,98,100,103,123],euler_1d_pi:81,euler_2d:[29,80],euler_exact_1d:81,euler_hll_1d:81,euler_hllc_1d:81,euler_roe_1d:81,evalu:[24,26,47,66,73,84,92,120,123],even:[38,41,45,53,64,82,89,92,93,108,109,118,121,123],evenli:41,event:[22,38,44,45,64,92,104,107],event_tim:44,eventu:[10,36],ever:[82,106,110],everi:[5,27,30,35,43,66,69,71,77,86,92,93,94,103,107,109,111,120,123],everyth:[25,27,43,54,78,88,89,94],everywher:[37,47,86],evolv:[19,66,69,84],evolve_to_tim:[66,84],exact:81,exactli:[25,40,86,107],exam:60,examin:[12,29,35,92],exampl:[0,1,2,3,4,5,10,12,17,19,21,24,25,26,27,30,31,32,34,37,42,43,44,46,47,50,53,54,55,59,60,62,64,65,66,67,68,69,72,73,74,75,76,80,81,82,83,84,85,88,89,90,92,93,94,96,98,99,100,101,102,103,104,106,107,108,109,110,111,112,116,117,118,120,121,122,123],exce:[27,41,93,108],exceed:93,except:[19,24,26,81,82,89,107,110,118],excerpt:78,exe:[22,29,69],exec:[0,1,3,60],execut:[0,1,3,12,16,24,29,35,43,44,49,60,62,69,71,78,94,121],exemplari:[45,64],exercis:[36,94],exist:[1,18,26,28,29,49,60,73,80,83,86,89,90,97,120],exit:[60,78,85],exp:[66,77,88],expand:[23,41,44,82],expect:[81,82,88,89,94,109,110,111],expens:[84,93,97],experi:[21,38,84],experiment:64,expert:38,explain:[10,30,38,43,82,93,107,112],explan:[25,70],explicit:[89,108],explicitli:[49,107,126],explor:[4,44,60,62,82],expon:47,expos:10,express:[4,26,45,64,85],extend:[12,19,44,49,73,82,92,110,118,120,126],extens:[4,13,19,21,25,26,38,49,67,75,76,89,92,107,116,120,126],extent:[38,43,44,47,49,66,73,86,92,96,110,120],extra:3,extra_fil:42,extract:[41,82,120,122],extran:100,extrap:[12,80,88,107,109],extrapol:[12,19,27,30,80,88,107,108,109,111],extrem:[41,87],extropl:12,f2py:[43,67,80,89],f2py_flag:89,f2s:44,f49620:4,f77:[32,121],f90:[11,17,27,43,54,80,91,93,96,100,105,114,115,118,121,123],f95:89,f_file_nam:69,f_path:69,facecolor:[2,60,106],facilit:[94,100,112],fact:[41,86],factor:[5,41,92,108,110,117,120],faculti:[26,90,92],fade:60,fail:[11,25,78,89,91,94,100,105,114,115],failur:94,fairli:[12,38,82,92],fall:104,fals:[0,1,2,3,26,30,38,39,40,41,44,69,73,81,83,84,86,89,92,93,101,102,107,108,109,110,111,120],famili:[73,84,109,111],familiar:43,faq:[10,22,90],far:[12,33,59],faster:120,fastest:85,fault:[13,22,26,36,92,118,122],fault_plan:26,favor:[100,120],favorit:59,fbound:32,fc02:4,fcompil:121,fdefault:89,feasibl:82,featur:[19,25,27,41,49,60,67,75,82,93,94,99,101,110,118],feet:[104,122],fetch:[10,25,37],fetch_noaa_tide_data:37,fetch_topo_url:120,few:[5,9,10,19,23,38,42,43,49,67,84,88,93,94,104,116,123],fewer:[92,93,120],ff0000:[3,44],ff9999:106,ffff00:60,fflag:[22,25,31,46,50,54,67,89],ffpe:32,fg02:4,fg03:4,fg06:4,fg1:27,fg2:27,fg_maxnum_fgrid:27,fg_num_val:27,fgmax2kml:44,fgmax:[22,44,54,97,99,110],fgmax_data:[27,110],fgmax_fil:[27,110],fgmax_grid:44,fgmax_interpol:27,fgmax_interpolate0:27,fgmax_modul:27,fgmax_tool:[27,99],fgmax_tools_modul:27,fgmax_valu:27,fgmaxgrid:27,fgout2kml:44,fgout:44,fgout_grid:44,field:[44,80,83,86],fig:44,fig_kwarg:[26,120],fignam:[1,62],figno:[1,2,35,41,60,62,106],figsiz:[2,60,92,106],figur:[0,1,2,4,10,22,26,29,33,35,44,49,62,83,92,103,106,120],file1info:110,file2info:110,file:[1,5,7,8,11,16,17,19,20,22,24,25,26,29,31,32,33,35,36,38,40,43,44,46,50,53,55,56,59,61,64,67,69,71,72,73,76,77,78,79,80,82,83,86,87,89,91,92,96,97,99,100,101,104,105,106,107,108,109,111,113,114,115,117,119,120,121,122,124],file_format:83,file_prefix:[76,83],file_prefix_p:69,filenam:[41,100,120],fill:[0,3,4,5,12,41,73,75,86,107,117,120,123],fill_between:3,fill_topo:120,fill_valu:120,fill_var2:3,fill_wher:3,filter:120,filter_region:120,find:[1,3,4,5,21,22,24,25,26,37,41,46,50,52,53,56,59,64,71,80,86,87,89,90,121],fine:[3,27,56,80,93,107,110,118,123],finer:[3,22,41,92,93,96,97,107,108],finest:[3,35,117,120],finish:[10,60,66,82],finit:[4,13,27,33,44,49,53,84,92,117,118,123],finite_fault:92,finlin:89,first:[1,3,10,16,17,19,25,26,27,29,30,41,42,43,44,46,49,60,62,66,67,72,73,78,80,82,84,85,86,88,89,92,93,96,100,102,103,107,109,110,118,120,126],fit:[45,64,82],five:27,fix:[5,16,17,19,22,36,44,64,81,96,97,98,99,100,101,107,109,111,118,120],fixedgrid:110,flag2refin:[19,30,108,109],flag2refine_tol:[93,108,109],flag:[10,19,22,25,31,32,50,54,67,87,89,100,109,110],flag_richardson:[93,101,108,109],flag_richardson_tol:[93,108,109],flat:[53,92,118],flavor:[9,18],flexibl:[19,26,44,67,92,100,103],floor:[26,36,53],flow:[4,12,13,20,27,36,38,75,82,92,103,107,110,118,123],fluctuat:[81,84,126],fluid:[38,52,104],flush:101,flux2:67,flux2_dimsplit:100,flux3_dimsplit:100,flux:[13,27,73,81,82,84,103,107,126],fly:22,fmt:3,fname:[44,92,109,110,111],focu:[4,36],fold:12,folder:[11,41,91,105,114,115],follow:[0,2,3,4,5,10,12,15,16,20,21,25,26,27,29,30,35,36,41,43,45,49,50,53,55,60,61,64,66,67,68,71,72,73,76,78,80,81,82,83,85,86,88,89,92,93,94,102,103,106,107,108,110,117,118,121,123,125],fontsiz:60,foot:53,fopenmp:[32,54,89],forbidden:30,forc:[19,30,31,46,89,92,120,121],force_dri:44,forestclaw:100,fork:[21,42],form:[0,2,3,4,5,16,17,19,26,27,29,30,33,35,37,45,47,53,55,64,67,77,81,82,84,88,89,92,93,97,102,103,107,108,109,110,114,118,120,123,126],formal:82,format:[1,3,10,22,26,29,36,38,39,41,44,49,50,59,60,66,69,76,79,80,83,89,92,101,107,110,118,120,124],format_str:35,former:[60,123],formerli:100,formul:[4,38,47,103,107],formula:47,fort:[1,7,22,24,27,35,49,50,83,97,101,102,107,108,109,111,117,124],fortfil:29,fortran90:82,fortran:[5,8,10,17,20,24,25,26,27,29,36,43,46,47,52,54,55,56,59,62,64,66,67,69,73,75,78,80,81,84,85,86,89,100,101,109,111,117,118],fortran_modul:86,fortran_src_wrapp:67,forward:[84,123],found:[1,4,5,8,9,10,11,12,19,24,27,29,31,33,35,37,38,40,44,46,52,58,60,61,62,63,66,70,78,83,87,89,91,92,94,101,102,104,105,106,114,115,120,121],founder:4,four:[73,93,94],fourth:27,fpe0:32,frac:[47,81,88,126],fraction:[5,10,26,93,107,123,126],fragil:86,fragment:3,frame0000:49,frame0005fig1:41,frame0005fig1_tmp:41,frame:[1,2,3,24,35,41,49,50,55,59,60,62,66,69,76,78,83,85,89,92,102,106,109,111,112],framecount:89,framenam:49,frameno:[1,3,24],framesoln_dict:1,frametool:[1,24,62],framework:[4,64,67,101],free:[10,41,43,53,64,68,80,85,87,90],frequenc:84,frequent:[17,24,87,101],friction:[22,36,38,110,114,115],friction_depth:[47,110],friction_forc:110,friction_modul:100,friedemann:70,from:[0,1,3,4,5,6,9,12,13,14,15,20,22,23,24,27,28,29,30,35,38,41,42,43,45,46,49,51,53,55,60,63,64,65,66,68,69,73,74,75,77,78,80,81,82,83,84,85,86,87,88,89,90,93,94,96,97,100,101,102,103,104,107,108,109,110,111,116,118,121,122,123,124],frommm:70,front:[49,83,89],fset:86,fstr:49,ftrapuv:32,full:[5,43,44,60,69,77,82,84,88,90,118,123],fulli:[5,38,41],fun:89,func:89,function_nam:89,fund:[22,75],funrol:89,further:[5,12,22,32,38,44,46,49,75,92,93,94],furthermor:[41,88],futur:[10,19,23,29,38,44,47,52,66,84,92,101,118],fvmbook:[9,33],fvmhp:[4,9,12,13,22,56,103,107,123,126],fwave:[73,81,84,103],g77:87,galerkin:84,galleri:[9,22,29,58,71,75,90,94,99,112,116,123],gallery_al:[34,75],gallery_classic_amrclaw:[29,34],gallery_fvmbook:[13,33,34],gallery_geoclaw:[27,34,36],gamma1:81,gamma:[47,81],gap:120,gas:[5,81],gaug:[22,44,73,74,86,96,100,101,102,104,109],gauge1:102,gauge2:102,gauge_coord:73,gauge_data:86,gauge_dir_nam:73,gauge_fil:73,gauge_file_nam:73,gaugedata:[35,109],gaugeno:[35,92,109],gauges2kml:44,gauges_modul:100,gaugetool:[35,100],gauss_pt:26,gaussian:[66,88,111],gca:39,gcc:[78,85],gcs:41,gdal_data:41,gdal_test:41,gear:10,gen_vari:[89,94],gener:[0,1,2,3,4,5,6,8,10,12,13,16,17,21,22,25,27,31,32,38,41,43,46,47,53,54,55,59,60,61,62,64,67,68,70,72,73,78,79,80,82,83,84,85,88,89,90,92,93,96,100,102,104,107,108,112,117,118,123,124],generate_2d_coordin:120,generate_2d_topo:120,geo:[22,47],geo_data:110,geoclaw:[4,9,13,20,21,25,26,27,28,30,32,35,43,44,47,50,52,53,56,85,92,94,102,104,107,108,117,118,119,120,122,123],geoclaw_modul:100,geoda:[92,104,122],geodaa:92,geodas_npacif:92,geodata:92,geohazard:38,geol:[26,92],geolib:[27,50,96,100],geom:[73,86],geometr:123,geometri:[22,26,75,80,83,86,100],geophys:[4,12,13,20,36,38,56,107],geoplot:[39,41,61],georefer:41,georeferenc:41,georg:[4,13,26],geoscientist:38,geospati:41,get:[0,10,21,25,31,41,43,46,66,67,73,77,78,82,85,87,88,89,90,94,102,120,121],get_aux_glob:86,get_auxbc_from_aux:86,get_cmap:60,get_count:89,get_dim_attribut:73,get_dt:84,get_dt_new:84,get_q_glob:86,get_qbc_from_q:86,get_remote_fil:120,get_topo:120,getax:1,getcwd:60,getfigur:1,getfram:[1,3,62],getgaug:35,gethandl:[0,2,3],getitem:1,getlogg:77,gfortran:[10,22,43,54,65,87,121],gfortranbinari:85,ghamdi:4,ghost:[12,22,54,55,73,84,86,107,109,111,117,123,126],gica2937:26,gist:43,git:[9,10,20,21,22,23,42,72,85,94],git_statu:40,github:[9,19,20,21,23,42,43,63,71,72,80,85,94,99,101,121],gitter:21,give:[3,5,10,12,21,25,26,29,35,44,54,55,60,62,78,79,82,84,92,94,97,101,107,110,118,120,122],given:[26,37,41,44,47,49,53,70,78,83,84,86,89,92,93,104,110,118,120,123],glitch:99,glob:71,global:[5,73,82,86,89,92,104,122,123],gloss:122,glu:12,gmt:37,gnu:85,gnufcompil:121,goal:5,godaddi:42,godunov:[4,73,84,107,109,111,123],goe:[26,36,82],going:[12,19,66,69,71,81,82,90,92,95,112,118,126],gone:77,good:[12,38,41,45,54,64,88,92,94],googl:[21,22,25,44,71,78,87,92,100],googlecod:78,googleearth:[41,44],googleearth_darkblu:41,googleearth_lightblu:41,googleearth_transpar:41,gov:[26,37,78,92],govern:110,gprint:[108,109],gradi:[4,64],gradient:126,gradylemoin:4,grant:[4,64],graphic:[20,25,49,59],grav:81,gravit:[47,81,110,123],graviti:110,great:[37,71,92],greater:[27,44,47,85,90,93,102,107,108],greatest:93,greatli:[23,64,104],green:[44,53,60,92,94,120],grid1d:73,grid1info:110,grid2info:110,grid:[4,6,13,16,17,19,20,22,24,25,30,35,36,38,41,44,49,55,56,59,64,66,75,77,78,80,81,82,83,84,86,88,92,93,94,96,97,99,100,103,104,107,108,109,111,117,118,120,122,123,126],grid_files_scanf:124,grid_numb:55,grid_registr:120,griddata:120,grideges_show:19,gridlin:49,gridlines_show:19,ground:27,groundoverlai:41,group:[3,10,21,25,26,38,71,78,87,92,101],guarante:[36,38,84,92],guard:101,gui:[19,124],guid:[10,15,20,21,22,36,63,75,90,113],guidelin:75,h_l:81,h_r:81,hack:86,hadjimichael:64,half:[0,12,13,53,84,92,107,123],halfspac:53,hand:[3,16,17,47,66,92,94],handi:46,handl:[0,2,3,5,27,32,36,43,44,54,56,59,73,80,83,84,86,87,88,89,92,96,97,99,100,110,120],hang:53,happen:[41,46,66,83,86,121],harbor:27,hard:[39,54,60,120],hardcopi:[1,60,62,106],harder:107,hardest:[50,90],hardwir:54,has:[0,4,5,10,12,14,17,18,19,20,24,25,27,28,29,30,40,41,44,46,47,49,53,55,56,60,64,67,69,73,77,80,81,82,83,86,87,89,90,91,92,93,94,95,96,97,103,104,107,108,110,117,118,120,122,123,124,126],hash:[40,42,94],have:[0,1,2,3,4,5,7,8,10,12,15,17,19,21,24,25,26,27,29,32,33,35,36,38,41,42,43,46,47,49,50,52,54,55,59,60,62,64,66,67,70,71,73,75,77,78,79,80,81,82,83,84,85,86,87,88,89,92,93,94,96,97,99,100,101,102,103,104,107,108,110,112,116,118,120,121,123],haven:88,haversin:37,hawaii:92,hazard:[22,27,47,104],head:[25,26,92],header:[8,26,55,83,92,100,118,120],header_styl:120,heat:81,heavili:67,height:[41,81,92,120],held:38,hello:78,help:[6,20,21,22,25,31,39,43,46,62,75,78,82,85,89,94,101,112,121],helzel:13,hemispher:92,henc:[42,84,93],here:[10,12,27,38,44,52,56,60,62,63,66,69,70,75,78,80,81,82,87,88,92,100,120,126],heterogen:123,hex:[44,60],hidden:[3,46,60],hide:[41,49],hierarchi:[41,73],high:[4,13,38,41,56,67,75,84,103,104,110,122,123],higher:[3,5,41,73,84,85,104],highlight:[8,10],hilo:[104,122],hint:[12,22,36,43,62,110,121],histor:[38,53,122],histori:[25,62,90,102],hit:[12,49,62,77,107],hll:81,hllc:81,hmin:27,hoc:67,hold:[3,62,88,92,93],holder:[45,64],holland_storm_modul:100,home:[10,26,43],homebrew:41,homepag:18,homogen:[53,84,123,126],honshu:92,honshu_ucsb3:92,hood:59,hope:[23,94],horizont:[41,92,120],host:41,hour:[10,41,44,92],how:[1,5,6,9,12,19,21,22,25,26,27,29,30,32,35,36,41,44,52,53,54,55,69,71,76,80,82,84,88,89,92,93,94,97,102,103,106,107,110,112,120,124],howev:[5,10,12,19,25,29,32,36,38,41,45,53,54,55,64,67,93,94,104,106,110,117],hpc:[21,43],html:[1,10,13,20,22,25,26,29,31,35,41,42,52,59,60,71,72,78,79,90,92,94],html_plot:79,htmlplot:71,http:[4,9,10,13,21,23,25,26,37,41,42,43,45,50,63,64,67,68,75,78,80,90,92,99,101,120],hydrodynam:13,hyperbe:70,hyperbee_limit:70,hyperbol:[4,5,13,33,56,67,75,80,81,88,103,107,110,123,126],hyperol:107,hyphen:82,ibm:85,idea:[21,26,49,56,66,82,88,92,97,120,126],ideal:[81,92,104],ident:[73,78,94,120],identifi:[29,41,67,82,93],idl:10,ieee:13,ifort:32,igetsp:100,ignor:[12,41,44,100,104,118,120],iii:92,iinstal:78,illustr:[26,29,41,49,52,53,99,100,103,112,119,120],imag:[10,29,44,82,94],imaginari:82,immedi:[25,38,49,66,68,69,77],impati:80,imped:[66,81,88],implement:[1,4,6,12,26,30,44,51,64,80,81,82,84,88,89,93,94,99,103,107,120,123,126],impli:[45,64],implicit:[64,82,84],importantli:78,impos:[12,67,93,110,114,115,126],imposs:[38,107],improv:[4,10,19,21,27,28,41,82,96,97,99,100,101,107],imshow:120,in_poli:120,inaccur:38,inaccuraci:38,inadequaci:47,inadvertantli:60,inbound:10,inc:49,incept:4,inch:[2,41,44,60,106],incident:[45,64],includ:[4,5,10,11,18,19,20,24,25,26,29,31,32,35,38,41,43,44,45,47,49,50,54,56,59,60,62,64,66,67,71,73,75,77,78,79,80,81,82,83,84,85,86,88,90,91,92,94,96,103,105,107,109,110,112,113,114,115,117,118,120,123],incom:12,incompat:25,incompress:13,inconsist:101,incorpor:[19,38,42,64,84,90,96,120],incorrect:82,incorrectli:101,increas:[41,44,54,82,110],increasingli:25,increment:[27,73,89,92,107,109,111],ind:73,inde:[67,78],indent:[37,44,82],independ:[20,26],index:[1,5,10,19,20,24,27,35,42,60,73,75,78,80,81,82,89,107,109,111],indic:[6,12,17,19,22,26,32,41,49,58,62,73,77,78,81,82,84,88,92,93,94,103,107,109,110,111,118,120,123],indirect:[45,64],individu:[4,19,20,41,44,49,73,82,93,94],inf:120,infer:120,infinit:107,inflat:12,info:[26,44,49,69,73,77,84,108,109],info_sz:26,inform:[10,19,29,36,37,38,39,40,43,55,60,61,62,63,66,67,73,77,78,79,81,82,83,89,92,101,102,103,107,108,110,117,118,121,122,123,124],inhabit:66,inherit:[60,73,84],initi:[4,10,19,22,26,27,30,35,37,38,41,49,53,56,62,64,65,66,67,69,70,73,74,81,82,83,84,86,87,89,91,92,93,101,104,107,109,110,111,118,120],initialize_sourc:67,inlin:90,input:[6,12,17,20,22,24,26,30,31,41,44,49,66,69,70,73,75,81,82,83,84,89,101,103,109,110,111,118,120,123],input_filenam:67,input_unit:26,inputfil:[89,118,120],inrati:92,inratt:92,inratx:92,ins:19,insert:[8,12,53,92],insid:[73,78,82,83,120],inspect:[16,17,41,92],instal:[9,10,15,20,22,29,41,62,64,65,68,74,75,76,88,92,94,95,96,97,98,99,100,101,125],install_output:43,instanc:[3,22,25,41,56,62,66,67,69,73,77,80,82],instantan:[84,118],instanti:[69,78,80,84,86,109,111],instati:120,instead:[3,10,25,27,29,50,85,86,89,92,101,103,118,120],institut:4,instruct:[10,15,21,22,29,41,50,66,68,75,78,85,88,95,96,97,98,99,100,101,102,125],insur:[40,46,62,92,93,96,100,108,110,118],intact:[51,101],integ:[3,27,35,41,44,47,60,67,83,93,103,107,110,120],integr:[19,64,75,77,84,96,97,101,109,111,117,118,123],intel:22,intend:[38,67,82],intens:67,intent:[67,103],inter:25,interac:77,interact:[1,10,19,22,29,31,35,36,46,52,56,60,67,78,79,85,88,101],interactive_plot:[79,88],interactive_test:101,interdepend:86,interest:[9,12,20,24,27,39,49,67,86,92,94,107],interfac:[4,16,19,22,49,64,67,70,75,81,82,84,89,90,103,123,124,126],interface_funct:89,interior:[5,12,55,86],interleav:[64,81],intermedi:[16,27,123],intern:[5,26,35,44,118,120,126],interp_unstructur:120,interpol:[5,12,22,26,28,35,44,49,60,104,110,120],interpret:[27,90],interrupt:[45,64],intersect:27,interv:[35,37,66,82,88,92,93,107,110],introduc:[12,16,27,60,82,126],introduct:52,introductori:90,introspect:82,intuit:75,inund:[27,36,41,47,92,104,122],inundataion:[104,122],inv_haversin:37,invalid:[32,83],invert:[37,82],invest:38,investig:94,invis:[31,100],invok:[8,54,82,121],involv:[21,80,84],ioerror:83,ioexcept:89,iout:111,ioutarrivaltim:110,ioutsurfacemax:110,ipdb:60,iplot:[29,71,78],iplotclaw:[1,10,19,22,29,35,36,60,79],iplotclaw_:60,iplotclaw_figno:1,ipynb:[26,101],ipynotebook:101,ipython:[10,22,26,34,53,56,60,62,67,68,75,77,85,88,90,100,101,119,120],ipython_displai:96,iqinit:[110,118],irregular:92,is_valid:[83,86],island:92,isn:[46,54,55,121],isosurfac:49,isotrop:53,issu:[19,21,23,42,43,49,66,71,73,75,84,85,87,94,96,101,110],item1:[0,62],item:[0,1,3,22,49,62,89,106],itemnam:[1,62],iter:[26,81],ith:81,its:[4,5,10,19,28,38,41,45,55,64,69,70,71,73,75,80,82,83,84,86,89,90,93,109,120,126],itself:[43,59,72,110,120],ixi:82,jacobian:[103,126],jan:4,januari:[14,95],japan:[41,44],javascript:112,jed:64,jet:[26,49],job:10,join:[21,60,92],journal:[13,75,112],jpg:49,jsanim:[96,100],jsanimation_frametool:98,juli:[14,97,98],jump:[4,43,49,62,73,84,107,126],junction:[27,110],jupyt:[100,101],just:[0,5,25,31,43,66,67,69,71,77,78,79,80,82,86,89,90,92,97,107,123],justifi:53,kappa:[88,126],kappa_i:126,karg:83,kaust:[4,21],keep:[22,25,29,54,66,69,82,86,89,92,94,97,110],keep_copi:[66,69],keep_gaug:86,kei:[0,1,2,10,26,84,88,89,120],kemm:70,kemm_2009:70,kernel:89,kernel_languag:[73,84,89,94],ketch:4,ketcheson:[4,13,57,64,75,82,84],ketchesonmandliet:[4,13],ketparlev13:[4,13,56,75],keyboard:49,keypair:10,keyword:[2,3,60,66,71,73,82,83,89,94,106,120],kind:[69,71],kinemat:26,king:64,klein:70,kml:[44,100],kml_build_colorbar:[41,44],kml_cb:44,kml_colorbar:41,kml_dpi:[41,44],kml_figsiz:41,kml_footer:44,kml_gaug:44,kml_header:44,kml_index_fnam:41,kml_name:41,kml_png:44,kml_publish:41,kml_region:44,kml_starttim:41,kml_tile_imag:41,kml_timespan:44,kml_timezon:41,kml_tz_offset:41,kml_use_for_initial_view:41,kml_xlimit:41,kml_ylimit:41,kmltool:119,kmz:44,kneplei:[13,64,75,82],know:[38,43,46,64,104,120,121,122],knowledg:38,known:[32,49,53,54,60,85,87,94,107],kpp:71,kristof:64,kutta:[75,84],kwarg:[2,26,44,60,89,94,106],kyle:[4,13,64,70,75,81,82],label:[26,39,41,44,100,118,120],lack:3,lake:[36,118],lambda:[73,120],lambda_roe_1:81,lambda_roe_2:81,land:[12,36,41,44,61,120],landslid:38,langseth:[4,13],langsethleveque00:[4,13],langtangen:90,languag:[8,59,89,90],lapack:96,laptop:75,larg:[5,17,29,38,41,42,49,54,59,77,78,92,93,94,101,102,107,120],larger:[10,17,27,41,44,54,55,60,73,96,110,118],largest:[93,104],last:[3,15,24,27,60,66,67,80,88,92,101,107],lat:[26,37,92,120],later:[10,40,62,82,84,92,102],latest:[20,22,68,78,85,97,101],latex:[1,22,41,59,79],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latin:82,latitud:[11,22,26,27,36,37,41,53,92,100,105,110,120],latitude_max:41,latitude_min:41,latitudin:37,latitutd:26,latlong:26,latter:[11,42,80,105,107,123],launch:[22,71,75,78,79,85],law:[4,13,44,126],lax:[73,84,107,109,111,126],layer:[13,44,73,96,98,101],lbla:87,lead:[5,10,19,38,41,47,49,53,108],learn:[38,71,90],least:[4,5,10,30,41,44,49,87,92,93,94,101,107,109,118,120],leav:[10,12,108,120],led:17,leer:[70,84,107,109,111],left:[3,10,12,24,27,55,62,73,80,81,82,88,92,102,103,104,108,118,120,122,126],legaci:20,lemoin:[4,64],len:[26,73,109,111,120],lenght:107,length:[11,26,38,44,53,80,82,86,92,105,107,108,109,110,123],less:[38,41,47,54,82,84,93,94,107],let:[12,36,43,64,92],letter:82,level:[3,5,6,12,20,24,27,30,35,36,37,38,41,43,49,51,54,55,67,69,73,77,82,84,91,92,93,94,96,97,101,102,104,107,108,109,110,111,117,118,120,122,123],levequ:[4,12,13,26,56,70,73,75,84,90,103,107,123,126],leveque09:13,leveque1996:13,leveque1997:75,leveque96:13,leveque97:[4,13],leveque_book_2002:81,levequegeorgeberg:[4,13],levyon03:13,lflag:22,lgomp:89,liabil:[36,38,45,64,92],liabl:[45,64],librari:[5,10,11,12,17,19,24,25,27,29,32,35,44,50,54,55,56,64,70,76,78,82,84,89,91,93,105,108,114,115,121,123],library_path:89,licens:[22,36,38,75,92],lie:[5,27],lies:[5,12,27,30,93,110],life:82,lifetim:82,light:[41,49,93],lighter:41,like:[10,25,32,41,42,44,49,50,62,67,69,73,77,78,81,82,83,84,86,90,94,101,106,117,118,121],lim_typ:[82,84],limit:[0,4,5,22,26,38,41,44,45,49,52,54,59,64,66,67,73,75,82,84,92,93,98,107,109,110,111,118,120,126],limiter_typ:82,limitertyp:82,linalgexcept:82,line2kml:44,line:[1,3,4,12,22,25,26,27,32,35,36,37,40,41,44,46,49,50,55,60,78,82,84,88,89,92,96,97,100,106,107,109,118,120],linear:[4,26,27,53,60,66,70,84,103],liner:[0,26,82],linestyl:120,linewidth:60,link:[4,8,10,13,15,16,17,21,25,32,33,36,41,42,43,44,50,52,82,90,104,111,118,122],linspac:[49,69,88,92],linux:[10,43,51,87,90,94],lisandro:[64,82],list:[1,3,4,6,7,8,10,19,25,26,27,29,30,31,35,41,43,44,45,47,49,54,60,62,64,65,66,69,70,73,77,79,80,81,82,83,84,86,87,89,92,93,100,102,107,108,109,110,111,117,120],liter:82,literalinclud:42,literatur:38,littl:[38,104],live:86,llapack:87,llcenter:120,llcorner:120,lmm:84,lnetcdf:[32,50],lnetcdff:50,load:[10,44,79,83,89,90,94,120,124],load_sift_unit_sourc:26,loc:120,local:[10,13,17,22,25,41,44,49,70,73,75,80,86,120,123],local_fnam:120,local_path:89,locat:[5,10,21,22,26,36,37,41,49,55,73,77,79,81,83,89,92,101,102,104,120],log:[22,25,73,74,83,84],logger:[77,86],logic:[5,12,13,27,82],long_lat:120,longer:[17,25,44],longest:92,longitud:[22,26,27,36,37,41,53,92,100,110,120],longitude_max:41,longitude_min:41,longitude_shift:26,longitudin:37,look:[10,19,25,26,41,44,49,50,60,62,67,73,78,82,83,84,88,89,90,92,94,97,107,108,110,117,120,121],loop:[30,35,49,59,89,93,106,107,123],lose:101,loss:[45,64],lot:[25,43],love:71,low:[41,67,120,122],lower:[3,19,26,27,55,73,78,82,92,107,109,111,118,120,122],lower_glob:73,lowerg:78,luna:[13,64,75],lxml:41,lying:5,m_w:126,mac:[43,54,87,90,94],machin:[10,22,43,54,56,90,94],macport:41,made:[4,15,19,25,26,83,86,92,96,97,110,120,123],magic:44,magnitud:[26,92],mai:[0,1,2,3,4,5,10,14,15,16,17,19,20,24,25,26,27,29,31,36,37,38,39,41,42,43,45,46,47,49,50,52,53,54,59,60,62,64,67,68,71,73,75,77,80,82,83,84,87,89,90,92,93,94,98,100,101,102,104,106,107,108,109,110,118,120,121,123],mail:[80,87],main:[8,16,25,49,56,67,69,76,80,82,88,89,94],mainli:78,maintain:[25,82,108,118,123],mainten:[64,82],major:[4,19,64,67,95,96,97,98],make:[1,8,10,16,17,19,21,22,24,25,27,29,31,32,35,36,38,40,41,42,43,44,46,47,49,54,56,62,66,67,69,72,73,74,75,80,82,83,89,92,94,96,100,101,107,116,118,120,122,123],make_colormap:60,make_input_data_kml:44,make_lib:10,make_plot:72,make_shoreline_xi:120,makefil:[5,8,11,12,16,17,20,22,25,27,29,32,50,54,56,60,62,67,74,93,96,100,105,107,109,110,111,112,114,115,121,123],makefile_kml:100,maketopo:[92,118],man:[13,22,36,38,110,114,115],manag:[10,41,77,92],mandli13a:13,mandli13b:13,mandli:[4,13,64,70,75,81,82],mani:[1,3,4,5,9,10,17,18,19,25,27,29,30,32,33,36,44,46,53,54,55,60,62,64,66,71,75,80,82,83,88,89,90,92,93,95,96,103,106,107,108,110,116,118,123],manifold:49,manipul:[35,120],manner:[35,41,59,107,114,115],manning_break:110,manning_coeffici:110,manual:[25,43,67,85,87,94],manuel:[13,64,75],maojr:101,map2d_to_1d:24,map:[3,12,26,44,49,60,64,67,73,75,80,92,93,100,120,126],map_2d_to_1d:3,mapc2p:[3,22,24,49,67,73],mappedgrid:[3,49],march:[14,92,96,97],margin:[27,36],mark:[12,41,94],mark_cent:73,mark_nod:73,marker:44,markup:8,marsha:[4,5],mask:[39,120],mask_outside_zlim:44,maskedarrai:120,mass:[5,77],massiv:75,master:[10,14,25,42,80,101],match:[26,41,44,71,76,83,94,120],materi:[4,45,53,64],math:[13,41,88],mathemat:[4,90],mathwork:49,matlab:[6,19,22,29,58,59,60,79,90],matlabpath:49,matplotlib:[0,2,3,10,26,39,41,43,59,60,65,68,90,92,106,120,121],matric:[103,126],matrix:[81,82],matteo:[4,13,64,75],matter:100,matthew:[13,64,75,82],maux:[19,103,123],max1d:54,max:[0,26,49,81,92,93,97,109,111,120,126],max_inch:44,max_level_deep:110,max_step:84,max_vertices_in_descript:44,maxima:[27,54,110],maximum:[3,19,22,26,27,28,30,49,84,88,93,96,97,107,108,109,111],maxlevel:[30,49,92,93,108,109,110],maxm:103,maxmi:[17,67],maxmx:[17,67,82,103],maxmz:17,maxwell_1d_homogen:80,mayb:120,mbc:[103,123],mc_limit:70,mcs:78,mean:[3,10,19,35,38,49,77,78,92,93,103,104,107,109,111,122],mean_latitud:39,meant:[32,73,84],measur:[26,35,37,53],mechan:86,media:[13,52],medial:82,medium:[109,123],member:[80,83,88],memori:[17,19,54,55,56,66,69,82,86,108,109],mention:[107,108],menu:[10,44,104,122],meqn:[35,55,103,123],merchant:[45,64],mercuri:78,merg:[5,10,25,100],mesh:[4,6,13,49,56,59,66,93,106,107,123],meshgrid:[66,80,120],messag:[25,31,37,42,49,54,69,73,77,79,82,83,84,86,87,107,109,111,121],met:[27,45,64],metadata:[55,82,92,120],meter:[26,37,41,104,110,120,122],method:[4,13,33,35,52,60,62,66,69,70,73,78,82,83,84,89,93,94,100,103,106,107,108,109,111,117,118,120,123],method_data:82,metric:37,mhhw:104,mhw:[38,104,122],micro:10,mid:60,middl:[81,101],midpoint:73,might:[10,12,19,25,29,30,37,41,42,43,49,51,54,60,66,77,81,90,92,93,96,103,107,108,118,120,122,123],migrat:16,millimet:120,min:[0,81,120,126],min_level_check:27,mind:82,minim:[5,82,108,120],minimum:[3,27,41,53,88,110,120],minisymposterium:21,minlevel:[30,92,93,108,109,110],minmod:[70,73,84,107,109,111],minmod_limit:70,minor:[8,41,77,96,97,98,99,100,101],minut:[37,41,42,44,92,104,120,122],mis:60,misc:[4,75],miscellan:81,miss:[19,82,118,120,121],mitig:38,mitran:[4,13],mix:[26,41],mjb:[5,13],mjberger:4,mllw:122,mode:[1,10,25,89,117],model:[12,13,22,26,27,32,36,47,52,77,101,104,110,118,119],modern:85,modif:[25,31,45,49,60,64,70,110],modifi:[5,11,12,17,19,22,24,27,29,35,36,46,49,51,60,67,70,73,75,80,91,92,93,99,101,105,107,109,110,111,114,115,118,120,123],modul:[0,22,25,27,32,39,41,43,53,54,59,60,61,62,66,67,70,71,76,80,81,82,83,86,92,94,97,98,100,102,107,108,110,119],module_nam:89,modulu:[26,81,88,109,123],molsolv:84,moment:[24,26],momentum:[12,27,38,47,110,118],monitor:[19,22,28,36,54,97,99],monoton:[107,110],month:[13,41,75],more:[1,2,3,4,5,6,9,10,12,13,17,19,22,23,25,26,27,29,30,35,36,38,41,43,44,45,46,49,52,53,59,60,61,62,64,67,69,70,73,77,78,79,80,81,82,84,85,86,88,89,92,93,94,96,97,100,103,104,106,107,108,109,110,112,116,117,118,120,121,123,126],most:[3,17,19,24,27,29,30,31,32,38,40,41,42,43,44,46,49,54,56,59,60,62,64,73,78,82,84,87,88,92,93,94,101,104,106,107,108,110,113,123],mostli:[3,59],motion:118,movabl:26,move:[12,29,42,43,53,80,92,93,96,98,110,118,119],movement:26,movetopo:96,mparsani:4,mpi:[56,78],mpich:78,mpiexec:78,mpirun:[78,85,94],msl:[104,122],mthlim:[73,84],much:[10,25,27,32,41,43,55,56,59,90,92,96,100,107,110,117,120],muct:84,multi:[13,41,66,82,96,98,101,123],multicor:54,multidimension:[67,75],multilay:[97,100],multipl:[5,10,20,25,59,66,73,77,82,89,94,96],multistep:84,must:[5,10,12,17,19,25,26,27,36,43,45,46,49,53,54,55,64,67,76,77,80,82,83,84,86,87,88,89,92,96,100,102,103,104,107,109,110,111,120,121,122,123,126],mwave:103,mx1d:123,mxnest:[19,92],mxnext:92,my_acoustics_rp:66,my_custom_bc:84,my_initial_solut:69,my_rp_modul:66,my_setplot_fil:62,my_solv:69,myclaw:51,n00014:4,n12:27,n23:27,name:[0,1,2,3,6,8,10,17,19,25,26,27,29,31,35,41,44,45,46,49,50,60,62,64,67,69,71,73,76,77,81,83,88,89,92,101,102,103,106,107,108,109,110,111,116,120,123,124],namespac:67,nan:[37,120],nation:[4,38],natur:[27,42,126],naux:55,navig:[9,112],nbtool:100,nbviewer:[52,101],nc_param:120,ncar:4,ncol:[92,100],nctr:26,ndarrai:[37,70,73,81,86,120],ndarrari:73,ndim:[19,55,62,107,108],ndip:26,nearbi:104,nearest:[35,120],nearli:[73,118],nearshor:38,necessari:[5,10,29,36,38,41,44,49,53,55,56,62,66,67,73,82,100,102,106,107,118,123],necessarili:[4,94],necessit:25,need:[0,4,5,10,11,12,15,16,17,19,24,25,27,29,31,32,35,38,39,42,43,44,46,49,50,53,54,55,56,62,66,67,69,70,72,75,76,77,78,80,82,84,88,90,92,93,94,97,101,102,103,105,107,108,109,110,111,114,115,118,120,122,123,126],neg:[19,92,118,120],negat:[37,118],neglig:[45,54,64,110],neighbor:[4,93,108,109,120],neither:[41,44,45,64],nest:[96,108,109],net:43,netcdf3:76,netcdf4:[76,120],netcdf4_dir:32,netcdf:[10,22,32,101,107,109,111,118,120],never:[25,27,80,86,91,93,107,109,111,121],nevertheless:41,new_featur:25,new_frame_num:89,new_plotax:[0,2,35,41,60,106],new_plotfgur:60,new_plotfigur:[1,2,35,41,60,106],new_plotitem:[0,3,35,41,60,106],new_userdata:[109,111],newdir:51,newer:[25,54,70],newli:102,newton:81,next:[2,3,5,10,15,27,29,30,35,42,43,49,55,60,62,65,66,72,78,82,84,88,92,93,94,107,108,110],nfr:4,ngdc:[92,104,122],nghost:55,ngrid:55,nhtmp:38,nice:[25,44,52,67,80,97],nicer:[62,90],nih:4,nnnnn:[102,107],no_data_valu:120,no_tran:73,noaa:[26,37,92,104,122],nodata_valu:[92,118,120],nodatav:118,nodatavalu:118,node:73,nodes_with_ghost:73,nohup:97,non:[12,52,56,67,80,82,88,107,109,111,126],nonconserv:126,none:[0,1,2,3,12,24,26,37,41,44,69,73,82,83,84,86,89,94,96,107,109,111,118,120],nonexist:[34,71,75],nonlinear:[4,13,38,70,82,107,126],nonoverlap:5,nonphys:35,nonuniform:49,nor:[45,64],norm:[44,93,120],normal:[12,60,80,82,103,107,108,109,111],north:[37,53,92],northernmost:[92,118],norwegian:4,nose:[25,65,78,82,94],nosetest:[25,43,78,85,94,116],notat:[26,37,44,103],note:[1,3,4,10,12,17,19,21,22,25,26,30,31,32,35,37,41,42,43,44,46,53,54,60,62,67,70,71,73,75,76,78,80,81,82,85,86,89,90,92,93,100,102,103,104,106,107,108,109,110,111,117,118,120,122,123],notebook:[22,26,34,53,68,77,100,101,119,120],noth:[11,86,105,114,115,120,123],notic:[41,45,64,88,94],nout:[92,111],nov:[13,75],novemb:14,now:[5,6,10,15,17,19,23,25,26,27,32,40,42,43,47,55,60,66,67,68,73,75,77,78,79,80,83,84,85,88,92,94,96,97,100,101,103,106,110,112,118,125],npacif:92,nprint:[108,109],npt:27,npy:120,nrm:44,nrow:92,nsf:4,nstepout:69,nstrike:26,nthmp:38,ntime:109,ntot:111,num_aux:[67,78,80,81,86,103,107,108,109,111,123],num_cel:[7,19,73,103,107,108,109,111],num_cells_glob:73,num_digit:44,num_dim:[19,73,80,107,108,109,111],num_entri:89,num_eqn:[55,66,67,70,78,80,81,82,83,86,88,103,107,109,111,123],num_fgmax_v:[27,110],num_ghost:[67,73,80,81,82,84,86,107,109,111],num_output_tim:[66,69,102,107,109,111],num_wav:[70,81,82,103,107,109,111],number:[1,2,3,4,5,7,12,13,16,19,24,25,26,27,29,35,41,43,44,46,49,54,55,56,62,66,67,69,70,71,73,75,76,77,78,80,82,83,84,86,88,89,92,93,94,96,97,99,100,101,102,103,107,108,109,110,111,116,120,123],numer:[4,13,41,82,90],numerica:13,numpi:[3,10,26,37,43,65,66,67,68,69,73,80,82,86,87,88,90,92,94,109,120,121],nxpoint:120,nypoint:120,nyu:4,object:[0,1,2,3,19,22,24,26,27,35,44,60,62,66,67,69,76,77,78,80,82,83,86,87,88,89,90,96,102,107,108,109,111,120],obliqu:12,obscur:19,observ:[27,38,96,104,107,110,118,122],observatori:4,obtain:[5,9,20,27,35,36,38,43,44,76,78,82,92,93,103,110,112,118,126],obviou:[41,82],occasion:94,occupi:41,occur:[53,82,118],ocean:[12,13,38,41,92,110,114,115,118,122],octob:[14,98,99,100],off:[10,27,38,41,44,49,62,69,77,92,108,120],offer:[31,41,94],offici:43,offset:[39,41,44,120],offshor:[44,47],oft:81,often:[5,8,10,12,17,24,27,29,31,32,35,36,38,39,40,44,47,53,55,90,92,94,102,103,104,106,107,110,118,122,123,126],okada85:[13,26,53],okada:[13,22,26,36,52,92,118,119,122],okadamap:26,olav:4,old:[1,17,19,62,69,78,79,80,84,94,101],older:[19,84,110],olig:[5,13],omega:66,omit:[94,110],omp_num_thread:[32,54,117],omp_stacks:54,on_lower_boundari:73,on_upper_boundari:73,onc:[1,10,19,25,29,41,49,62,66,77,78,79,80,86,89],ondrej:64,one:[0,1,2,3,4,5,7,10,11,12,17,19,21,24,25,26,27,29,35,36,41,44,47,49,50,51,53,55,56,59,60,66,73,77,78,80,82,83,84,85,88,89,92,93,94,101,102,105,106,107,108,109,110,111,112,114,115,118,120,123,124],ones:[66,67,86,92,107,108],onli:[1,3,5,7,10,12,16,19,22,24,25,26,27,38,41,44,47,49,53,54,55,56,60,66,69,73,77,78,80,82,83,84,85,86,88,89,92,93,96,101,102,103,104,106,107,108,109,110,111,118,120,121,123,126],onlin:[90,113],onr:4,onshor:[27,44,47],onto:[25,26,41,120],open:[10,25,26,41,43,44,59,64,68,73,82,89,90,124],opendiff:94,openli:20,openmp:[19,22,32,56,89,101,117],opensourc:[45,64],oper:[39,43,94],opinion:4,oppos:[25,82],opposit:[5,12],optim:[32,64,89],option:[1,2,6,10,12,17,19,22,25,26,27,29,31,32,36,37,40,43,46,49,50,60,61,66,67,69,71,73,74,76,77,79,82,83,84,85,88,89,90,91,93,94,97,100,101,106,107,109,111,112,120],order:[4,5,10,12,13,26,27,38,43,49,55,56,60,62,64,66,69,70,73,75,76,77,79,80,84,88,89,100,103,106,107,108,109,111,118,120,121,123,126],ordinari:103,ordinarili:87,org:[4,13,36,42,45,64,67,68,73,75,78,101,120],organ:[19,20,29,69,82],orient:[53,67,90,92],origin:[3,5,10,12,17,25,26,28,42,54,55,67,82,84,89,96,102,108,109,111,120],oscil:[35,126],oscillatori:120,osher:84,osx:[41,43,90],other:[3,4,5,10,12,17,19,22,24,26,27,29,35,36,38,41,42,45,46,47,49,50,53,54,55,62,64,66,67,69,73,75,77,79,80,81,82,85,88,93,94,96,97,99,100,104,106,107,110,112,118,119,120,122,123,124],otherwis:[26,45,64,77,81,83,84,85,86,89,107,120],ought:84,ouput:69,our:[66,92],out:[3,12,23,25,26,29,40,42,44,45,46,49,60,64,66,67,69,76,77,78,79,83,88,90,94,103,109,111,120],out_tim:69,outaux:24,outdir:[1,3,22,29,35,40,46,62,69,71,73,101,109,111,121],outdir_p:69,outfil:120,outflow:[12,107,109,111],outgo:12,outlin:[44,49,62,92,106],outn:24,output:[1,7,10,12,22,24,25,26,29,31,32,35,36,37,39,40,41,43,59,60,62,67,69,70,71,73,74,75,78,79,81,82,83,84,85,86,88,89,92,96,100,101,103,106,109,111,117,120,123,124],output_aux_compon:[107,109,111],output_aux_onlyonc:[107,109,111],output_file_prefix:69,output_filenam:67,output_format:[69,107,109,111],output_opt:69,output_q_compon:[107,109,111],output_step_interv:[107,109,111],output_styl:[55,66,69,102,107,109,111],output_t0:[102,107,109,111],output_tim:[102,107,109],output_unit:26,outputdir:49,outputfil:[118,120],outsid:[5,12,44,118,120],outsiz:44,outstyl:92,over:[1,3,5,10,12,13,19,25,26,27,30,35,36,38,41,44,49,53,59,77,84,92,93,96,97,106,109,110,117,118,123,126],overal:66,overflow:32,overhead:[5,54,93,117],overlai:44,overlaid:[41,44],overlap:[30,93,96,97,118],overli:82,overrid:[25,32,41,66,67,89],overridden:[49,84,86],overrul:3,overview:[41,95,98],overwrit:[1,69,83],overwritten:[102,123],own:[12,17,21,22,25,35,51,66,67,74,75,82,85,86,90,112],p_center:[73,88],p_function:77,p_l:81,p_node:73,p_r:81,p_t:88,p_x:88,pacif:92,packag:[4,20,22,25,29,41,56,59,64,66,73,75,79,80,82,83,85,88,90,124],page:[1,8,9,10,13,19,21,25,38,42,52,71,75,78,79,82,87,90,92,94,104,106,112,122,123],pair:[10,94,120],panel:41,paper:[4,5,12,26,36,42,70,75,82],paragraph:27,parallel:[4,19,20,22,54,65,71,74,75,77,80,82,83,85,89,94],paramet:[1,5,6,12,17,22,24,26,27,28,29,30,31,33,36,38,41,46,47,49,52,53,54,55,65,66,69,70,77,79,81,82,83,86,89,91,93,96,102,103,104,109,111,118,120,121,123],paramt:27,parent:[3,24,73,86,89],pars:[35,89],parsani:[4,13,64,75],part:[4,19,25,26,36,38,44,50,64,67,78,82,85,86,88,90,92,94,110,123],partial:[13,56],particular:[5,9,17,19,26,27,32,35,36,38,41,45,49,60,61,64,66,81,83,84,86,88,90,92,94,97,100,101,106,110,126],particularli:[12,24,40,41,53,55,97,100],partit:78,pascal:26,pass:[12,16,17,25,26,41,44,54,60,66,69,71,74,80,82,84,86,87,89,94,109,120,123],past:[14,18,83,104],patch:[3,5,6,12,19,24,27,49,53,54,55,59,60,78,83,86,106,108,110,117,123],patch_index:73,patchedges_show:[3,19],patchno:[3,24],path:[1,10,22,25,26,32,37,41,43,46,51,60,69,76,78,83,89,92,120,121],pathtool:49,pattern:[17,36,41,71,104],pcolor:[3,22,35,90,120],pcolor_cmap:[3,41],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:44,pcolormesh:44,pdb:60,pde:[13,56,75,88,107,123],pdf:[1,26],pdflatex:1,peanoclaw:64,pedant:32,pem:10,pend:[3,101],peopl:[4,10,64,90],pep8:25,pep:82,per:[10,26,41,44,49,54,82,108],perfect:12,perfectli:12,perfom:94,perform:[5,19,24,38,41,43,54,56,59,60,69,73,80,84,89,94,110,116],perhap:[5,27,35,60,82,86,89,92],perimet:27,period:[5,12,27,52,66,80,82,93,107,109,111],perman:49,permiss:[45,64],permit:[45,64],permut:17,perturb:[91,110,118],petclaw:[64,78,79,80,82,83,89,94],peter:4,petsc4pi:[78,85,86,94],petsc:[19,20,56,64,66,74,85,86,87,89],petsc_arch:78,petsc_dir:78,petsc_hello_world:78,phase:[78,82,101],philim:67,phoni:60,photo:21,php:[26,45,64,92],phrase:[82,90],phy:13,physic:[12,35,67,73,75,88,93,126],pick:[66,84],pictur:82,piec:[12,38,73],piecewis:[26,27,97,103,118],pink:[44,60,106],pinkfig:60,pip:[25,41,43,68,75,78,85,87],pixel:[41,44],pkg:111,place:[12,17,25,29,41,42,51,78,80,85,96,123],placemark:41,plai:52,plaid:41,plain:39,plan:[21,25,38,43,47,84],planar:53,plane:[26,53,92,101,122],platform:[10,41,52,69,78,90,94],pleas:[4,14,21,25,43,52,64,66,69,71,75,76,78,80,83,84,85,87],plot:[0,1,2,4,6,7,9,24,26,29,31,32,33,43,44,52,55,65,66,68,69,73,74,75,77,82,83,85,87,88,90,92,99,100,101,116,120],plot_box:[26,92,120],plot_centerlin:26,plot_dz_color:26,plot_dz_contour:26,plot_gauge_loc:35,plot_rak:26,plot_subfault:26,plot_subfaults_depth:26,plot_topo_fil:[61,100],plot_typ:[0,19,35,41,60,62,106],plot_var2:3,plot_var:[3,24,35,41,60,61],plotax:[3,35,60,106],plotclaw1:49,plotclaw2:49,plotclaw3:49,plotclaw:[22,35,60,62,106],plotdata:[24,35,50,60,62,69,101,106],plotdir:[1,62,106],plotexampl:60,plotfigur:[35,60,106],plotfram:1,plotgaug:35,plotitem:[3,24,35,60,106],plotloop:[60,62],plotstyl:[3,35,60,106],plotter:[1,3,24,35,62],plotting_makeplot:29,plottyp:49,plt:[44,92],plu:[60,96,109,111,120],pmel:26,png2kml:44,png:[1,10,29,31,41,44,49],png_extent:44,png_file:44,png_filenam:44,png_name:44,point:[3,5,10,11,12,13,17,25,26,27,29,30,32,35,36,37,38,41,42,43,44,49,50,53,66,77,78,83,89,92,93,102,104,105,107,108,109,110,114,115,118,120,121,123],point_styl:[27,99],pointer:[4,12,53,59,62,84,89,92,100],pointwis:[86,100],poisson:53,poli:44,polici:82,poly2kml:44,polygon:[3,44,120],poor:25,popup:10,port:[10,74,75,80,108],portion:[5,41,67,117],posit:[41,53,56,89,92,118,120],possibl:[5,10,19,23,25,26,27,30,35,37,38,41,45,53,60,64,66,73,78,79,84,89,92,93,101,104,107,108,118,123],post:[21,22,23,25,41,52,78,112],posteriori:84,postprocess:[55,77],potenti:[25,49,82,104],power:[41,59,90],ppflag:22,pprint:[108,109],practic:[25,92],pre:[3,10,22,68,90],preced:[25,60],preceed:[27,55,123],precis:[32,44,67,73,103,120],predefin:60,predict:37,prefer:[43,44,78,80,90],prefix:[69,76,83],preliminari:[37,92,122],prepar:[25,82],prepend:[25,69],preprocess:100,prerequisit:22,prescrib:82,present:[5,44,73,81,83,84,89,112,123,126],preserv:[35,56,84,102],press:[13,78,85],pressur:[35,49,62,77,81,88],presum:104,pretti:10,prevent:41,previou:[1,22,25,27,35,43,49,62,66,84,96,101,107,109,111,120],previous:[5,19,62,82,100],price:10,primari:[19,36,94],prime:94,principl:[120,123],print:[1,3,22,41,44,49,60,73,77,78,79,82,86,88,92,96,97,100,107,109,111,121],print_figno:[1,41],print_format:[1,41],print_frameno:[1,41],print_git_statu:40,printenv:121,printfig:1,printfram:[1,22],prior:[45,64,109,111,123],probabl:[10,25,41,47,92],probdata:[109,111],problem:[4,6,12,13,17,21,22,24,25,27,29,33,36,43,49,52,53,56,60,65,66,71,74,75,78,81,82,84,87,92,94,96,97,99,100,103,107,109,110,111,112,117,118],problem_data:[66,81,83,86,88],problemat:77,proce:[5,25],procedur:[5,12,22,82,123],proceed:42,process:[22,29,41,66,71,73,78,85,86,89,92,94],processor:[22,86],procur:[45,64],produc:[1,3,19,22,24,26,29,31,35,41,43,44,49,52,54,58,59,94,106,110,120],product:[26,45,64,89],profession:82,professorship:4,profil:120,profit:[45,64],program:[4,36,38,56,82,90],programm:82,programmat:64,progress:[21,25,84,100,118,120],prohibit:19,proj:109,project:[21,26,38,41,64,68,82,108,118,120],projection_zon:26,promot:[45,64,82],prompt:[49,60,62,71,88,90,92,120],propag:[4,5,13,26,38,41,73,75,82,84,92,103],proper:[5,11,35,44,47,49,76,89,96,105,108,109,114,115,123],properli:[17,27,29,31,38,41,42,43,44,51,69,82,90,94,96,99,107,110,120,121,123],properti:[26,49,66,69,73,83,86,120],propos:[25,82,126],provid:[0,2,4,6,12,17,22,24,26,32,36,37,38,41,42,44,45,53,55,59,64,67,69,70,77,78,80,82,83,84,88,89,90,92,94,101,103,107,115,117,118,120,123],proximity_radiu:120,pseudo:[41,49],psi:[80,123,126],psystem:71,pth:25,pts:[108,109],pub:26,publicli:112,publish:[13,42,75],pull:[21,23,42,52,71,80,94,99],pure:[43,62,73,75,78,84,90,94],purpos:[27,36,38,45,49,55,64,73,90,92,94],push:[25,42],put:[1,8,12,25,32,43,44,49,51,66,71,80,82,92],pwd:92,pyclaw:[1,3,4,9,13,14,20,21,24,25,34,35,52,55,56,62,74,78,80,87,90],pyflak:75,pykml:41,pylab:[0,60],pylint:75,pyplot:[44,92,120],pyramid:41,python:[3,4,6,7,8,10,13,16,19,20,22,24,25,26,27,29,31,33,35,36,37,40,41,43,44,53,55,56,59,60,61,64,65,67,71,72,73,75,78,79,80,81,82,84,87,88,89,92,94,97,98,100,118,120,121,124],python_io:55,pythonpath:[25,43],pyweno:[64,84],q0000:[49,107],q0001:[49,50],q000n:[1,7],q0_vs_radiu:3,q1d:123,q_hat:81,q_hat_l:81,q_hat_r:81,q_i:[103,126],q_l:81,q_r:[81,103],q_t:[80,81,84,88,123,126],q_x:[81,88,126],qbc:[80,84,86],qcor:67,qinit:[17,19,22,67,82,104,123],qinitdata:110,qinitfil:110,qquad:126,qtrue:60,quad2kml:44,quad:44,quadrat:26,quadrilater:[27,44],qualiti:41,quantiti:[11,27,44,49,69,74,75,81,86,105,110],queri:[67,73,89],question:[21,25,83],quezada:[13,64,75],quick:[10,22,36,43,52,82,90,94,116],quicker:10,quickli:[44,68,82,116,120],quit:[49,60,62,92],quot:[44,82,92],radial:[3,37,123],radian:37,radio:44,radio_styl:44,radiu:[3,110,120],rai:120,rais:[21,26,43,82,83,85,89,120],rake:[26,53,92],randal:[4,13,75],randi:[26,70,73],rang:[3,10,26,35,37,41,96,101],rare:[53,82],raster:[92,118],rate:10,rather:[5,17,19,25,27,47,51,73,78,80,82,84,91,92,100,101,103,106,107,108,118,120,123,126],ratio:[5,11,19,39,49,53,70,81,84,92,105,107,108,109],raw:[22,107],rcl:41,rea:52,reach:92,reachabl:83,reaction:80,read:[1,4,11,25,26,27,29,35,38,39,44,49,55,59,67,69,77,82,83,89,91,101,105,109,110,111,114,115,118,120,123,124],read_:[76,83],read_aux:83,read_data_lin:89,read_head:120,read_netcdf:120,read_output:27,readabl:82,reader:124,readi:[66,67,69,85],readm:[22,43,123],real:[38,47,82,89,92,122],realist:41,realiti:38,realli:[5,82,94,123],reason:[38,41,44,53,54,56,78,80,82,92,93,107],rebas:25,recal:[1,9,92],recalcul:97,receiv:94,recent:[10,19,22,24,26,40,42,43,46,47,54,60,62,101,118],recogn:[36,118],recomil:27,recommend:[4,26,27,29,54,59,68,73,78,79,82,84,85,87,88,107,109,110,111,124],recompil:[25,31,32,46,54,89,123],recomput:[62,66,97],reconstruct:[75,84],record:[27,35,86,92,122],recov:25,recreat:[25,31,46],rect:26,rectangl:[5,26,93,120],rectangular:[5,6,12,13,26,27,36,44,53,73,92,93,108,110,118],recurs:[42,51,96],red:[2,3,25,35,44,60,94,106],redhat:90,redirect:[42,43],redistribut:[45,64],redraw:[49,62],reduc:[5,12,41,82,101,126],ref:82,refactor:[82,96,97,98,100],refer:[17,22,26,29,34,36,41,49,66,70,71,73,81,82,84,86,92,102,118,120,122,123],referenc:[41,104],refin:[3,4,6,7,13,19,38,41,49,55,56,66,92,106,107,108,109,117,118,123],refinement_data:110,refinement_ratios_i:[7,108,109],refinement_ratios_t:[108,109,110],refinement_ratios_x:[108,109],refinementdata:99,reflect:[4,12,25,107,109,111],refresh:[10,35],regard:[4,101],regardless:[10,93,107,110],regener:46,region00:44,region:[3,5,10,12,19,22,27,38,39,41,44,47,56,92,104,108,109,118,120],regiondata:[30,93,109],regions2kml:44,regist:43,registr:120,regress:[19,22,25,40,78,116],regrid:[30,93,96,97,108,109,117],regrid_buffer_width:[93,108,109],regrid_interv:[93,108,109],regular:[27,120],reiter:82,reject:[77,84,107],rel:[10,17,26,31,36,38,41,53,54,60,89,94,97,98,99,100,101,104,108,110,112,118,122],relat:[3,19,56,81,104],releas:[15,19,22,43,63,68,84,85],relev:[19,24,32,36,41,94],reli:[56,67,79],relief:[92,104,122],reload:120,reltol:89,remain:[27,41,80,89,96,114,115],rememb:[11,24,25,54,60,78,105,114,115],remind:92,remot:[10,41,120],remote_directori:120,remote_topo_url:120,remov:[1,3,17,31,44,46,50,62,78,96,99,100,120,121],renam:[17,19,29,80,84],render:[19,41,44,124],reorder:[17,19],reorgan:[19,67,95],repeat:[62,102],repeatedli:[3,78,85],replac:[5,10,27,35,38,59,67,71,78,79,80,81,82,86,89,94,96,120,121,122],replace_no_data_valu:120,replace_valu:120,replot:62,report:[21,26,27,40,43,82,94,101,107,109,116],repositori:[15,19,21,22,23,25,27,33,36,40,42,46,52,72,84,94,99,113,116],repres:[26,30,66,73,80,81,84,86,93,120,126],represent:[73,83,89,120],reprint:64,reproduc:[13,45,64],request:[21,23,26,42,52,55,66,71,73,77,80,83,92,94,120],requir:[3,4,12,17,19,22,24,29,31,37,38,43,49,53,56,59,62,66,67,73,76,79,80,84,85,86,88,89,92,93,94,96,97,100,106,107,108,109,110,111,118,121,124,126],rerun:[32,35],rescal:26,research:[4,13,36,38,64,84,92],reserv:[45,64],reset:[32,89],reset_count:89,resetplot:[60,62],resid:[43,46,73],resolut:[4,5,13,26,35,73,84,88,89,92,96,100,103,104,110,118,120,122,123],resolution_limit:120,resolv:[4,27,41,42,92],resourc:[13,25,36],resp:[17,26],respecitv:26,respect:[26,27,41,44,75,76,81,120],respons:[10,38,66,83],rest:[19,62,82,104,114,115,118,120],restart:[10,22,35,62,75,101,107,109,111],restart_fil:[102,107,109,111],restor:5,restrict:[41,82,110,118],restructur:[8,42],result:[1,3,4,6,9,13,22,23,26,27,28,29,35,37,38,43,44,46,47,49,52,53,59,60,61,62,65,69,71,75,81,82,85,89,92,93,94,96,100,107,108,109,110,111,116,120,122],retain:[45,64],retak:[107,109,111],retreiv:92,retriev:[10,37,62,67,84,92,120,122],return_topo:120,return_xarrai:120,reus:82,reutil:67,reveal:[35,88],revert:41,review:[13,70],revis:5,rewritten:26,rgb:60,rho:[49,81,88,109],rho_l:81,rho_r:81,rhou:49,rhov:49,richardson:[19,30,108,109],rid:25,ridg:41,riemann:[4,7,17,19,20,22,25,36,43,52,56,64,66,73,74,82,84,85,86,88,107,109,111,114,115,126],riemann_interact:101,riemann_solv:84,riemann_tool:100,right:[27,45,47,52,53,64,73,78,80,81,82,86,88,92,103,126],rigid:26,rigin:26,rigoutsi:5,rigoutso:13,rise:[26,104],rise_fract:26,rise_shap:26,rise_tim:26,rise_time_start:26,rjl:[5,13,90],rjlevequ:[4,25],rjlkei:10,robust:[36,120],rock:53,roe:[70,81,82],roman:43,root:[76,77,83],rossbi:71,rossmanith:13,rotat:39,rough:47,roughli:[92,117],round:41,roundoff:73,routin:[4,5,12,17,22,24,26,27,29,30,35,36,41,46,49,50,54,55,56,59,62,64,67,69,73,76,79,80,82,84,86,87,90,93,96,97,100,103,107,109,111,120,121,123,124,126],row:[26,70,93,118,120],rp1:[103,126],rp_:81,rp_sourc:80,rpn2_vc_advect:98,rprint:[108,109],rsphere:[37,67],rst:[22,42,72],rsync_clawpack:42,rule:[10,44,67,82],run1:46,run:[1,5,6,9,10,12,17,19,21,22,25,27,30,31,33,35,40,41,42,44,46,47,49,50,52,55,56,59,60,62,65,67,69,72,73,74,75,77,80,85,87,88,89,92,93,96,97,101,102,103,109,110,111,116,117,120,123],run_app_from_main:89,run_data:69,run_exampl:120,run_seri:89,runclaw:[40,97,103],rundata:[19,27,30,35,44,92,93,96,102,107,108,109,110,111],rundir:69,rung:[75,84],runmak:69,runnabl:89,runtest:78,runtim:[52,89],runup:47,ruptur:26,rupture_tim:26,rupture_typ:26,s_1:81,s_2:81,s_3:81,s_l:81,s_m:81,s_r:81,safe:54,safer:46,safeti:70,sage:[22,82],sagemath:[43,68],sagemathcloud:68,sai:[10,12,25,44,87,93,102],same:[3,5,10,12,19,25,27,32,35,36,37,38,41,44,47,50,56,59,60,61,62,66,70,73,75,77,80,81,82,84,89,90,92,96,97,101,102,103,107,108,109,110,114,118,120,123],sampl:[13,22,27,32,36,41,94,102,107,108,120,123],san:43,sanromd:43,satisfi:[84,93,126],save:[10,22,23,40,43,44,55,69,84,92,101,102,120],savecod:69,savefig:44,scalabl:[13,75,82],scalar:[24,26,77,86,107,126],scale:[4,26,39,41,49,56,75,92,96,110],scan:32,scatter:[3,19,49],scenario:[38,104],scheme:[70,81],schlieren:[3,49],sci:13,scienc:[13,64],scientif:[4,13,75,78,90],scipi:[10,67,90,120],scp:10,scratch:[37,88,92],scratch_dir:92,screen:[10,25,41,44,69,77,78,82,101,109,111],screenshot:[10,41],script:[8,16,17,26,31,35,41,42,43,46,49,56,59,64,67,71,74,75,78,82,84,89,90,92,94,106,110,111,120],scroll:[10,92],sea:[26,36,38,41,53,91,92,100,104,110,118,120,122],sea_level:[27,38,44,81,110,118,120],seab:47,seafloor:[26,38,53,122],sealevel:[22,36,110],search:[1,10,22,75,82,89],sec:26,second:[3,12,26,27,30,37,41,43,44,49,66,73,84,92,93,96,102,107,117,120,123,126],section:[5,10,12,29,32,36,38,49,59,62,82,92,94,102,107,110,120],secur:10,see:[0,1,2,3,4,5,6,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,43,45,46,47,49,50,51,53,54,55,58,59,60,61,62,63,64,67,69,71,73,75,76,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,126],seem:[86,106,118],seen:[9,19,27,29,38,54,80,107,112],segement:120,segmentedplanefault:26,seism:[13,26],seismic:26,select:[10,12,25,27,84,92,96,107,110,122],self:[26,82,84,120],semi:84,send:[10,21,52,80],sens:[24,41,126],sensit:[38,47],sent:[77,86],separ:[1,41,44,75,82,84,120],seper:89,septemb:21,sequenc:[17,19,78,82,85,88,89,92,94,96,103,123],serial:[22,78,83,89,117],server:[10,41,42],servic:[22,43,45,64],session:[1,29,75,79,85],set:[0,1,2,3,5,7,10,11,12,19,22,24,25,26,27,29,30,31,32,33,35,37,38,39,40,41,42,44,46,51,52,53,54,55,56,58,59,66,67,69,71,73,74,75,77,78,81,82,83,84,85,86,87,88,89,91,93,94,96,97,100,101,102,103,105,106,107,108,109,110,111,112,118,120,122,123,126],set_all_st:83,set_aspect:39,set_aux_from_auxbc:86,set_corn:26,set_count:89,set_cparam:[66,86],set_dynamic_slip:26,set_num_ghost:86,set_printopt:73,set_q_from_qbc:86,set_subfault:26,set_xyz:120,setaux:[17,19,22,67,82,96,97,103,107,109,111],setaux_default:42,setdtopo:92,setenv:78,setgaug:[35,92,101],setlevel:77,setplot1:49,setplot2:49,setplot3:49,setplot:[0,1,2,3,6,16,17,19,22,33,35,50,58,79,80,89,121,124],setplot_fil:41,setplot_kml:41,setprob:[109,111,123],setregion:92,setrun:[5,6,12,16,17,22,27,29,30,31,33,36,38,44,46,47,55,56,60,91,93,96,100,101,102,103,104,118,121,123],setrun_setgeo:110,settopo:92,setup:[25,43,66,67,71,75,78,80,82,84,85,86,121],setup_gauge_fil:73,sever:[0,1,2,12,17,19,20,26,29,31,35,36,38,41,43,49,59,82,85,92,93,94,95,96,97,100,101,106,110,116,118,120,123],sftp:10,shaheen:77,shall:[45,64],shallow:[11,12,13,27,36,38,52,56,67,71,75,82,91,92,97,98,100,103,105,110,114,115,118,123],shallow_1d_pi:81,shallow_exact_1d:81,shallow_fwave_1d:81,shallow_hll_1d:81,shallow_roe_1d:81,shallow_spher:[67,94],shallowest:53,shape:[26,37,44,67,73,78,86,120],shapshot:10,share:[22,23,41,54,56,73,78],sharp:44,sharpclaw:[4,20,22,56,64,71,74,75,80,96],sharpclawnd:84,sharpclawsolv:84,sharpclawsolver1d:84,sharpclawsolver2d:84,sharpen:70,sharper:[41,44],shear:[13,26],shell:[43,54,60,62,68,78,85,88,90],shg:49,shift:[26,38],ship:27,shock:[5,13,38,52,71,84,93],shock_bubble_interact:[29,71,75,85],shockbubbl:80,shoot:[22,75],shore:[27,36,92,110],shorelin:[41,120],shoreline_xi:120,shorter:[3,93,120],shortli:94,shot:10,should:[0,1,2,3,4,5,9,10,12,15,16,17,19,22,24,25,26,27,29,30,31,32,35,38,41,42,43,44,47,49,50,51,52,54,59,60,62,67,68,72,73,76,78,80,81,82,83,84,85,86,87,88,89,91,92,93,94,96,97,100,102,103,104,106,107,108,109,110,111,112,118,120,121,123,125,126],shouldn:71,show:[0,2,3,25,26,29,35,41,42,44,46,49,62,73,88,92,94,100,120,121,123],showcolor:60,showgridlin:49,showitem:1,shown:[3,10,44,47,49,56,77,97,98,99,100,101,120,123],showpatchbord:49,shrink:120,shu:84,siam:[13,21,75],side:[5,12,27,41,47,53,82,92,94,103,126],sidebar:41,sift:26,sift_slip:26,siftfault:26,sigma:66,sign:[10,21,60],signatur:[3,67,70,73,74,76,81,82],signific:[14,47,104,120],signitur:83,silenc:77,silo:124,similar:[10,12,25,27,35,41,43,66,67,80,82,84,88,92,118],similarli:[31,71,78,80,117],simpl:[27,29,67,75,80,81,84,89,92,94,120],simplest:[51,88],simpli:[10,25,27,29,35,41,46,66,68,69,71,77,78,82,85,92,94,112,118,120,123,124],simplifi:[59,60,92,94,102,123],simul:[29,36,38,41,49,69,73,75,78,80,85,88,92,110],simultan:41,sin:[37,60],sinc:[0,3,4,5,12,14,17,19,25,27,32,37,38,41,42,44,46,53,54,55,59,60,66,67,68,77,90,92,93,94,96,100,101,103,104,107,108,110,118,121,122],singl:[0,1,2,3,5,12,16,19,20,24,25,26,35,36,41,44,46,49,54,55,66,73,77,82,83,89,92,94,99,100,107,108,109,110,118,120,122,123],sisc:[13,75],sit:10,site:[25,41,43,52],situat:49,size:[17,22,26,41,44,54,55,73,78,84,92,109,111,118,120],size_x_inch:41,size_y_inch:41,skinni:0,skip:26,skiprow:26,slice:[3,49],slide:90,slider:[41,44],slightli:12,slip:[22,26,36,92,118,122],slip_along_strik:26,slip_at_dynamic_t:26,slip_color:26,slip_distribut:26,slip_down_dip:26,slip_funct:26,slip_tim:26,slope:[26,84],slow:[10,41,77,87],slowli:[44,118],small:[12,47,92,93,94,96,101,102,107,109,110,118,120,122],smaller:[10,41,47,56,73,96,107,109,110,111,120],smallest:93,smear:44,smooth:[26,84,93,123],smooth_data:120,snapshot:25,soc:[13,26],softwar:[5,10,22,36,38,45,50,64,75,82,90,112,118],sol:66,solid:[3,12,41,53,80,106,107,109,111],solitari:[13,52],sollut:53,solut:[1,3,4,12,19,22,24,35,37,43,49,52,53,55,62,67,69,73,75,76,77,80,81,82,84,86,87,88,92,93,94,100,101,102,103,106,107,108,109,111,116,123,126],solv:[4,7,12,17,23,29,38,65,67,69,73,75,80,81,82,85,92,103,107,118,123,126],solver:[4,5,17,19,20,22,25,36,43,52,64,65,69,73,74,77,82,86,98,100,107,109,111,114,115,126],solver_typ:[71,84],some:[3,4,5,6,9,12,13,16,17,18,19,20,21,22,24,25,26,27,29,32,33,35,36,38,39,41,42,43,52,53,54,55,59,61,62,64,67,68,70,77,79,80,83,85,86,87,88,90,92,93,94,96,97,98,99,100,101,103,104,106,107,108,109,110,111,112,116,117,118,120,123],someon:25,someth:[10,22,24,25,46,51,77,82,83,84,118,121,123],sometim:[27,46,60,66,77,104,122],somewhat:[54,59,93,94,107],somewher:[50,92,100],sonel:122,soon:84,sophist:82,sorin:4,sort:[10,106],sound:[66,81,88],sourc:[20,22,26,32,36,41,42,44,45,47,52,59,64,67,71,73,74,82,84,85,87,88,89,90,94,104,107,109,110,111,113,114,115,118],source_list:89,source_split:[73,84,107,109,111,123],sourceforg:43,southernmost:92,space:[5,6,12,13,26,27,30,35,41,53,73,80,82,92,93,100,102,107,108,109,110,111,118,120,123],spacial:110,span:[37,41,44],spatial:[5,13,22,26,30,47,80,92,93,96,100,103,109,111,126],spawn:94,specfi:120,special:[4,12,22,36,41,45,56,64,82,90,93,120],specif:[3,19,22,25,26,35,37,41,45,47,64,65,67,69,76,81,83,89,92,106,107,108,109,110,111],specifi:[0,1,2,3,4,5,6,11,12,17,19,22,24,26,27,28,30,31,32,33,35,36,37,38,40,44,46,47,49,53,54,55,56,58,59,61,66,69,73,80,82,83,84,87,89,91,94,96,99,100,101,102,103,104,105,109,111,112,114,115,117,118,120,121,122,124,126],speed:[27,66,70,81,82,88,103,107,110,120,123,126],spell:60,spend:101,spent:117,sphere:[22,37,67,97,110],spheric:13,sphinx:[8,20,22,72],split:[5,54,73,84,100,101,107,109,111,117,123,126],spot:60,sprint:[108,109],spuriou:[12,94],sqrt:[3,27,47,66,80,81,88,109],src1:[115,123,126],src1d:[22,115],src2:[67,115,123],src3:[115,123],src:[5,8,11,12,16,17,22,26,27,31,32,37,40,44,46,49,53,54,61,79,80,89,91,93,94,97,100,101,103,105,107,109,111,114,120,121,126],src_split:[107,109,111],srcn:[107,123],ssh:10,ssp104:84,ssp33:84,ssplmm32:84,ssplmm43:84,ssplmm:84,ssprk22:84,stabil:[84,107],stabl:73,stack:[54,100],stage:[84,104,118,120],stai:23,stand:[4,82],standard:[5,12,26,49,55,67,70,82,84,90,94,103,109,110,111,112,118,123,126],start:[1,2,4,5,6,10,21,24,25,26,27,29,31,36,37,41,43,44,46,51,60,62,66,78,83,84,90,94,101,102,110,118,123],start_fram:83,start_max:27,state:[10,13,22,25,53,60,66,67,69,73,75,77,78,80,81,82,83,84,87,88,94,103,107,118,126],statement:[29,49,55,82,90,92,109],station:[37,104,122],stationari:118,statist:[22,101],statu:[10,40,69,88],stdout:94,steadi:[53,118],steep:126,stegoton:[52,71],stencil:86,stencil_width:86,step1:82,step2:67,step2i:100,step2qcor:67,step2x:100,step3i:100,step3x:100,step3z:100,step:[5,12,16,22,25,27,29,35,41,42,43,49,59,62,64,65,66,67,69,77,80,84,86,88,92,93,96,101,102,103,107,108,109,110,111,118,126],step_hyperbol:84,step_index:84,step_interv:109,step_sourc:[73,80,84],stepgrid:117,stepgrid_dimsplit:100,steps_max:[107,109,111],stiff:107,still:[1,6,7,10,12,19,21,23,27,28,35,41,43,49,55,59,64,82,84,93,94,100,101,102,110],stnd:37,stommel_storm_modul:100,stop:[22,54,60,96,109,111,120],storag:101,store:[0,1,10,25,27,31,41,49,55,80,86,87,88,92,94,96,106,108,110,116,117,118,120],storm:[13,100],storm_modul:100,str:[0,1,3,26,44,107,108,120],strang:[73,84,107,109,111,123],strategi:5,stream:60,stress:[66,77,82],stretch:120,strict:[45,64],stride:[19,120],strike:[26,53,92],strike_direct:[26,92],string:[0,1,3,6,26,37,41,44,60,67,69,70,73,76,82,83,89,90,107,110,118,120],strip:[44,120],strip_archive_extens:44,stripe:41,strong:84,strongli:49,structur:[6,19,27,56,83,84,92,106,120],student:4,studi:[38,47,92],style:[5,19,25,26,39,41,55,60,64,69],sub:[26,94,120],subclass:[26,82],subdirectori:[17,19,20,29,42,43,46,51,62,71,94,106,110,112,116,120],subdivid:26,subdividedplanefault:26,subdivis:26,subduct:[38,53],subfault:[26,53,92,122],subject:[41,93,108,110],submit:[52,92],submodul:23,subpackag:82,subplot:[0,26,62],subrepositori:25,subroutin:[4,5,12,19,27,30,82,93,100,103,107,108,117,123,126],subsequ:[3,49],subset:[26,120],substanti:[25,64,100],substitut:[45,64],subsurfac:[92,118],succeed:84,succesfulli:67,success:[49,83,120,123],successfulli:[46,83],suffici:[10,12,17,54,82,92,96,110],suffix:120,suggest:[4,21,37,62,82,110],suit:[25,41,94],suitabl:[7,12,17,36,38,41,83,92,103,104,120],sum:[77,86,117],sum_:126,sum_p:126,summar:[3,30,82,93,95,123],summari:[21,82,107,108,109,110],superbe:[70,107,109,111],superbee_limit:70,superclass:84,supercomput:[75,77,78],superpack:90,superposit:53,superpow:70,superpower_limit:70,supplement:112,supplementari:94,suppli:[30,93,123,126],support:[4,10,19,32,38,41,43,52,64,66,67,73,76,77,79,81,84,92,100,107,118,121,124],suppos:[12,30,49,60,92,93],suppress:[0,2,3,25,41,44,101,107,108],sure:[1,17,25,31,42,49,56,66,78,80,83,87,89,92,104,120,121,122],surfac:[13,19,22,26,27,36,38,41,53,61,67,75,88,91,92,100,110,118],surface_or_depth:[41,61],surg:[13,100],surround:[93,120],surviv:64,swap:120,swaphead:[92,120],sweep:7,symbol:[3,43,49],symlink:43,symmetr:[3,37,123],symmetri:12,syntax:[8,82],sys:[69,109,111],system:[4,12,13,20,43,44,54,55,64,75,77,78,80,81,85,88,90,94,103,107,109,111,123,126],systemat:19,t0000:49,t0001:[49,50],t0002:49,t_end:84,t_n:103,tab:[10,82],tabl:[44,47,59],tackl:[21,25],tag:[41,108,109],take:[5,19,24,25,26,37,42,47,49,52,60,66,73,80,84,88,89,92,93,94,99,107,108,109,110,120,123,126],take_one_step:84,taken:[5,27,53,84,92,93,107,123],tall:0,tan:60,tank:[12,38],tar:[10,20,43,44],tarbal:121,tarfil:43,target:[60,67,80],task:59,tba:101,tbd:21,tchknnnnn:102,tck00100:101,tck:101,tckaaaaa:101,tckbbbbb:101,tcp:10,tcsh:78,teach:[36,38,92],team:[4,21,45,75,82],technic:82,techniqu:[13,23],technolog:64,tell:[50,55,60,66,92,94],templat:67,temporari:86,temporarili:49,ten:[4,56],tend:84,tend_max:27,tensil:13,tensor:26,tensorproductfault:26,term:[4,22,36,38,45,67,73,74,82,84,93,107,109,110,111,114,115],termin:[43,68,107,108],terrain:47,terrel:4,test:[19,22,26,29,32,40,41,47,52,59,64,65,67,74,75,81,89,92,93,97,101,111,117,120],test_acoust:94,test_app:[89,94],test_dtopotool:26,test_shallow_spher:94,test_topotool:[97,120],tex:1,text:[8,42,44,55,69,82,84,90,100],tfinal:[66,69,88,92,102,107,109,111],tfluct:[82,84],tfluct_solv:84,than:[3,5,10,12,17,19,22,25,26,27,35,41,44,46,47,51,55,59,62,66,67,69,73,77,78,80,81,82,84,89,90,92,93,94,96,99,100,101,102,103,104,106,107,108,110,117,118,120,123,126],thank:[4,75],thei:[3,5,10,12,24,25,26,27,30,38,41,44,49,55,59,73,80,82,84,89,93,94,102,106,110,118,120,123],them:[10,15,19,25,26,27,30,41,42,49,50,52,56,64,66,71,76,77,78,80,89,92,93,94,97,113,120,123],theori:[45,64,82,126],therefor:[67,78],thereof:10,thesi:84,theta:70,theta_limit:70,thi:[0,1,2,3,5,7,8,9,10,12,13,16,17,19,20,22,23,24,25,26,27,28,29,30,31,32,35,36,37,38,40,41,43,44,45,46,47,49,50,53,54,55,59,60,62,64,66,67,69,70,71,73,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,96,97,99,100,101,102,103,104,106,107,108,109,110,111,112,113,117,118,119,120,121,122,123,124,125,126],thing:[0,10,12,19,25,38,44,62,71,90,94],think:[47,81,82],third:[12,27,70,117,120],thn:107,thoroughli:[76,82],those:[4,5,9,19,21,38,41,43,56,66,67,69,77,80,86,92,94,96,102,112,116,120,123],though:[3,56,82,118],thought:104,thousand:[4,56],thread:[32,54,117],three:[3,10,13,19,26,27,38,41,49,78,83,89,92,94,107,110,118,120,123],threshold:47,through:[4,10,25,29,30,35,38,41,49,56,59,67,80,86,88,89,92,93],thu:[5,37,80,82],tick:[41,92],ticklabel:99,ticklabel_format:39,tidal:[77,104],tide:[22,35,37,92,104,120],tidesandcurr:37,tier:10,tild:126,time:[0,1,5,6,12,17,19,22,24,26,27,28,29,30,31,32,33,35,36,37,38,41,43,44,49,50,54,55,56,60,64,66,69,70,75,77,82,84,86,88,92,93,94,96,99,101,102,103,106,109,111,118,121,122,126],time_files_scanf:124,time_integr:84,time_zon:37,timespan:44,timestep:[69,77,101,107,109,111],timezon:44,tip:[21,22,36,74,75,80,90],tipe:88,titl:[0,1,4,13,22,35,41,44,75,120],title_with_t:[0,60],toctre:[34,71,75],todo:[12,27,93,102,103,120,126],togeth:[12,25,26,53,93],toggl:109,tohoku:92,toler:[27,81,89,93,94,108,109,110],too:[5,37,41,92,101,109,111],tool:[6,7,13,19,20,25,26,29,36,37,38,41,43,44,49,52,53,58,59,60,61,75,82,92,97,98,112,118,120,122,124],toolkit:[78,124],top:[0,1,3,8,20,26,41,43,51,52,53,60,80,81,82,92,94,102],topgraphi:120,topic:49,topo1writ:120,topo2kml:44,topo2kmz:44,topo2writ:120,topo3writ:120,topo:[22,36,38,44,61,96,98,104,110,118,120],topo_data:[92,110],topo_fil:120,topo_file_nam:44,topo_fnam:120,topo_func:120,topo_path:92,topo_typ:[44,92,100,101,120],topo_upd:96,topofil:[44,92,110,120],topographi:[12,13,22,27,38,41,44,47,53,61,96,97,98,100,101,104,114,115,119],topograpi:118,topoplotdata:100,topotool:[37,44,52,92,97,98,99,100,101,118,119],topotyp:[92,110,118],topotype1:120,topotypein:118,topotypeout:118,torrilhon:70,tort:[45,64],total:[5,26,41,77,84,107,108,109,111,117],total_step:[107,109,111],tout:111,toward:[4,26],tprint:[108,109],trace:77,traceback:60,track:[21,22,25,43,54,66,89,94,96,110],tracker:25,tradeoff:93,tradit:[69,76],traffic:[103,123],trail:44,tran:13,tranpsort:107,trans_cor:73,trans_inc:73,transect:[27,110],transfer:22,transform:32,translat:[53,92,104,122],transliter:82,transmiss:84,transmit:107,transpar:[41,44],transport:[107,109,111],transvers:[7,73,103,107,123,126],transverse_wav:[73,107,109,111],trap:32,travel:108,travi:19,tree:[43,80],triangular:26,trigger:110,tripl:82,troubl:[22,29,75],troubleshoot:[22,43,75],truli:83,truncat:12,tscale:44,tstart:84,tstart_max:27,tsunami:[12,13,22,27,36,47,53,77,96,99,104,110,118],tt1:92,tt3:[92,120],tube:52,tune:23,tupl:[3,26,37,44,60,73,77,120],turbul:[38,84],turn:[36,38,44,57,60,77,94,101],tutori:[10,22,62,65,69,75,85],tvd:[66,73,84,126],twice:[41,107],twitter:21,two:[0,3,4,6,7,11,13,19,25,26,27,30,35,37,41,43,44,49,55,60,66,73,76,80,82,84,87,89,92,93,94,96,100,101,102,103,105,109,110,118,120,123,126],two_d_classic_sourc:67,txt:[40,43,64],type:[3,4,6,10,17,26,29,31,35,41,46,49,60,61,62,66,67,68,70,73,78,79,82,84,85,88,89,90,92,108,109,110,118,120,126],typic:[3,17,49,53,55,56,62,67,78,80,84,86,92,93,108,109,117,122,123,126],u_l:81,u_r:81,u_t:[81,88],u_x:88,ubar:81,ubuntu:[10,90],ucar:50,ucsb3:92,ucsb:[26,92,122],ucsbfault:26,ulimit:54,ultrabe:70,unaccept:41,unalt:41,unapp:41,unavail:24,uncertainti:[38,47],unchang:49,uncommit:[25,40],undefin:87,under:[4,6,19,41,43,45,59,64,73,82,94],underflow:96,underli:3,underlin:25,underscor:82,understand:[22,29,38,59,75,82,88,103],understood:38,underwat:[36,41,92],undivid:93,unexpect:[37,41,44],unidata:50,uniform:[26,53,56,67,118],uniformli:118,unind:44,union:118,uniqu:[1,55,101],unit:[26,36,37,73],univers:[4,13,21,42,45,64,83],unix:[31,51,90,92],unknown:[26,86],unkown:86,unless:[5,25,31,32,35,44,81,92,104,107,120],unlik:55,unlimit:54,unmap:73,unnecessarili:97,unneed:101,unpack:92,unpredict:49,unrecogn:89,unsplit:[73,107,109,111],unstabl:101,unstructur:120,unsuccess:83,unsur:107,untar:43,unterweg:64,until:[10,92],unus:2,unzip:[41,92],upbnd:[108,109],updat:[5,10,19,20,22,27,39,62,84,86,87,92,96,100,103,108,109,111,113,117,123],update_saved_valu:84,updip:26,upon:86,upper:[19,27,70,73,80,92,107,109,111,118,120],upper_bound_limit:70,upper_glob:73,uprint:[108,109],upstrik:26,upward:38,upwind:107,url:[4,13,41,75,120],usabl:82,usag:[0,1,2,3,10,41,43,76,82,120],usc0001xgp:92,use:[3,4,9,10,17,18,19,22,23,25,26,27,28,29,31,32,36,37,38,41,43,45,46,47,49,50,54,55,58,59,60,62,64,66,67,68,69,70,71,73,75,76,77,78,80,81,82,84,85,86,87,88,89,90,92,94,97,99,100,101,103,104,107,108,109,110,111,118,120,121,122,123,124,126],use_for_kml:41,use_fwav:[103,107,109,111],use_petsc:[71,78],used:[0,1,2,3,4,5,6,7,8,10,12,17,19,20,25,26,27,29,31,32,33,35,36,37,38,40,41,42,44,45,46,47,49,50,51,52,53,54,55,56,59,60,62,64,66,67,69,70,71,73,75,78,80,81,82,83,84,86,88,89,91,92,93,94,97,101,102,103,104,106,107,108,109,110,111,114,117,118,120,123,124,126],useful:[0,3,16,24,25,27,29,32,35,36,39,40,41,43,44,54,55,61,64,67,77,82,90,92,93,94,103,107,108,110,118,120,126],useoffset:39,user:[0,2,3,4,5,9,10,16,17,19,20,21,22,23,24,25,27,30,32,38,44,47,49,60,67,68,71,78,82,87,89,90,93,100,107,109,110,111,113,120,126],user_bc_low:80,usernam:25,uservari:49,uservariablefil:49,uses:[26,27,29,36,49,56,67,69,73,78,89,94,103,117,120,126],usg:[4,26,92,122],usgs100227:92,usgs_subfault:92,using:[0,1,3,4,5,6,8,9,10,12,13,16,19,20,22,23,26,27,29,32,35,36,37,39,41,43,44,46,47,50,51,52,53,54,55,56,59,60,61,62,66,67,68,69,70,73,75,78,79,80,81,82,84,86,87,88,90,92,93,94,100,103,107,109,110,115,117,118,120,121,122,124,126],usr:50,usual:[0,2,3,5,26,35,36,41,44,46,50,53,55,71,73,78,80,81,84,89,93,107,108,109,110,111,121,123],utah:21,utc:[41,44],util:[20,22,25,41,55,59,62,75,94,106,119,120],uwamath:10,valid:[3,38,53,69,77,83,86,110,120],valout:[50,55,117],valout_geo:50,valout_nc:50,valout_nc_geo:50,valu:[3,5,6,12,17,19,22,24,26,28,29,32,35,37,39,40,41,44,46,47,49,54,55,60,67,73,75,77,80,81,82,83,84,86,88,89,92,93,94,96,97,99,100,102,103,104,107,108,109,110,111,116,118,120,121,123,126],valueerror:[26,120],valuemax:27,van:[70,84,107,109,111],van_leer_klein_sharpening_limit:70,vanleer:[66,84,107,109,111],vari:[3,11,13,22,26,36,47,80,83,92,100,103,104,105,118,126],variabl:[0,3,10,19,22,24,25,26,27,29,31,35,36,40,41,49,51,54,56,60,66,67,78,82,83,84,86,87,89,92,100,101,103,107,108,109,111,120,121,123],variable_dt_refinement_ratio:[108,110],variant:[17,89,94],varieti:[69,90],variou:[17,19,26,38,49,60,62,73,88,90,92,93,106,110],vastli:104,vector:[19,66,70,77,82,86,103],veloc:[12,27,37,49,62,80,81,88,104,107,108,109,111,123],verbatim:42,verbos:[25,26,37,44,69,73,77,84,94,107,109,111,120],verbosity_regrid:[108,109],veri:[3,12,19,38,41,44,52,53,60,64,67,77,78,79,80,84,92,94,97,101,107,116],verifi:[37,89,94,122],verifyerror:89,version:[0,1,4,5,6,8,10,11,12,14,17,19,20,22,27,28,32,36,38,41,44,47,49,52,54,59,60,62,67,70,75,78,81,84,85,87,90,93,94,96,97,100,101,105,107,108,109,110,111,114,115,118,120,123,126],versu:120,vertic:[26,38,41,44,104,110,120,122],via:[10,19,20,25,26,29,32,33,35,36,38,41,43,46,49,54,56,60,66,73,79,83,85,87,93,94,112,114,115,116,118,120,123],view:[3,4,19,22,29,35,36,41,42,44,52,55,59,61,62,66,78,85,100,112,113],viewabl:69,viewable_attribut:69,viewer:92,vim:25,violat:[84,120],virtual:[4,10,22,24,43,86,90],vis:69,visclaw:[1,6,10,19,20,21,25,35,36,39,41,43,46,49,56,60,61,62,75,79,85,106,112],visibl:[10,41,112],visit:[19,22,59],visual:[20,21,25,29,35,49,55,56,59,75,79,80,100,124],volcano:4,volum:[4,13,27,33,44,49,75,108,117,118,123],vrt:41,w_1:81,w_2:81,w_3:81,wai:[5,10,12,23,25,29,35,41,44,45,60,62,64,66,69,71,73,78,80,82,83,85,88,90,92,96,106,107,113,118,123,126],wait:10,wakari:43,wall:[12,32,80,88,101,107,109,111,117],wang:26,want:[0,3,10,16,17,21,25,27,29,31,32,35,37,40,41,42,43,44,46,47,51,54,60,62,66,67,68,69,77,78,92,94,101,103,106,109,110,113,118,120,121],wari:81,warm:70,warn:[25,52,76,77,84,107,121],warp:41,warranti:[45,64],washington:[4,42,45,90,120],water:[12,13,22,36,37,38,44,52,56,67,75,82,92,97,98,103,104,110,118,120,122,123],water_level:37,wave:[4,5,12,13,27,38,41,52,70,73,75,80,81,82,84,92,93,100,104,107,108,109,110,111,123],wave_toler:110,wavelength:38,wcs:92,web:[20,22,25,29,41,42,43,90,112,120],webpag:[19,22,29,33,36,41,46,90,104],webserv:10,websit:[12,41,92,112,120],weight:41,welcom:[21,64],well:[5,25,36,41,43,44,53,54,55,56,59,62,82,83,84,102,107,108,114,115,118,123,126],wendroff:[73,84,107,109,111,126],weno:[56,75,84],weno_ord:84,were:[4,5,17,43,49,50,67,93,96],west:[92,118],western:[92,120],wet:36,what:[5,10,19,22,25,26,35,38,40,41,42,43,44,46,49,50,55,66,69,82,83,86,88,90,92,93,94,101,104,106,107,109,110,111,112,118,120,122,123],whatev:[50,66,83],when:[11,12,17,25,26,27,31,32,35,39,40,41,42,43,47,49,53,54,55,56,59,60,62,66,77,78,79,84,87,94,96,97,99,101,103,104,105,106,107,108,109,110,111,112,118,120,121,122,123,124,126],whenc:77,whenev:[25,101,123],where:[1,3,5,10,12,19,24,26,27,29,30,31,35,36,38,41,43,44,46,47,49,50,52,55,56,62,69,73,76,78,81,92,93,96,97,100,101,102,104,106,107,109,110,111,117,118,120,123,126],wherea:[35,41,59,78],whereev:92,wherev:[82,121],whether:[3,5,10,12,19,30,37,45,49,64,73,76,77,81,82,83,84,93,94,107,108,110,120],which:[0,1,3,4,5,6,8,10,12,17,19,22,25,26,27,29,30,35,36,38,41,42,43,44,46,47,49,53,54,55,60,62,66,67,69,70,71,73,76,77,78,79,80,81,82,83,84,85,87,88,89,90,92,93,94,96,97,100,102,104,107,108,109,110,118,120,122,123,126],white:44,whith:67,who:[16,19,21,27,32,38,43],whole:[25,41,77,78,82],whose:[3,60,67,80,81,82,107,108,120],why:82,wide:90,wider:60,width:[26,41,44,53,55,73,80,82,86,92,93,109,111],wiki:85,wikipedia:82,wind:120,window:[10,26,43,49,62,90],wisdom:44,wise:[25,84],wish:[4,10,11,19,25,29,35,38,41,43,49,58,59,75,80,84,85,87,92,102,105,112,114,115,121],within:[5,12,25,30,56,60,79,82,89,93,103,106,112,120],without:[12,19,22,25,31,35,38,44,45,46,49,60,62,64,70,76,77,89,90,94,109,111,121,123],wkt:41,won:[10,67,82,120],word:[77,82,92],work:[3,7,10,12,16,17,19,21,22,23,25,27,29,30,31,36,38,41,42,43,44,49,51,52,53,54,60,64,65,66,68,69,70,75,76,77,78,81,84,85,90,92,93,94,98,99,100,101,103,106,107,108,110,112,118,121,125],workflow:112,workspac:[49,86],world:[38,47,75,78],worst:104,worth:86,worthwhil:80,would:[2,3,10,12,24,25,27,32,41,46,55,60,64,66,69,73,77,82,89,92,94,104,106,107,118,123],wpalg:13,wrap:[44,64,67,73,84,89],wrapper:120,write:[25,26,40,47,55,56,59,66,69,73,74,77,78,83,92,109,111,120],write_:76,write_aux:[76,83],write_aux_alwai:[66,69],write_aux_init:[66,69],write_input_data:27,write_p:83,written:[5,8,26,31,44,45,55,56,60,64,76,77,80,90,107,108,109,110,111,120,123],wrong:[49,77,93],www:[4,10,13,26,36,42,45,50,64,67,68,73,75,78,92,120],x_cell:44,x_edg:44,x_i:[103,123,126],x_inch:44,x_mask:120,xarr:73,xarrai:120,xarray_d:120,xclaw:[29,69],xclawcmd:69,xclawerr:69,xclawout:69,xcode:43,xdir:69,xiaom:26,xleft:[108,109],xlf:85,xlimit:[0,35,41],xllcenter:92,xllcorner:118,xlow:55,xlower:[0,3,12,19,24,67,92,109,111,118,120,123],xlowerg:67,xmax:0,xmin:0,xpoint:110,xrang:80,xtick:39,xupper:[0,19,92,109,111,120],xxdiff:94,xxxx:49,xylim:26,xzvf:43,y_cell:44,y_edg:44,y_inch:44,year:[4,13,19,41,44,75,95],yellow:[44,60],yellow_red_blu:60,yes:49,yet:[1,10,17,38,44,59,84,107,109,125],yianni:64,yield:3,yleft:[108,109],ylimit:[0,35,41,106],yllcenter:92,yllcorner:118,ylow:55,ylower:[3,19,24,67,92,109,118,120],ylowerg:67,ymax:0,ymin:0,yml:94,yong:13,you:[0,3,4,10,11,12,15,16,17,19,20,21,23,24,25,27,29,31,32,33,35,37,40,41,42,43,44,46,49,50,51,52,53,54,55,56,58,59,60,62,64,66,67,68,69,71,72,75,76,77,78,79,80,81,84,85,86,87,88,90,92,94,96,101,102,104,105,106,109,110,111,112,113,114,115,118,121,122,123,125],your:[5,11,12,16,17,21,22,23,29,32,35,42,50,51,54,59,60,62,64,65,66,67,68,71,74,75,77,82,87,88,90,91,92,93,94,96,105,114,115,118,121,123],yourself:[32,35,52],ypoint:110,yupper:[19,92,109,120],z_format:120,zero:[3,12,26,32,44,49,66,80,81,86,88,104],zip:[9,41,92],zipinfo:41,zlim:44,zlower:19,zone:[38,41,44,108,109],zoom:[41,92],zsh:78,zupper:19,zvar:120},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.3.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","dtopotools module for moving topography","Fixed grid monitoring","Fixed grid output","Running an example","Flagging cells for adaptive refinement","Fortran version","Fortran Compilers","Examples from the book FVMHP","Galleries of all Clawpack applications","Gauges","GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of git versions","Visualizing GeoClaw results in Google Earth","Guide for updating this documentation","Installation instructions","kmltools module of utility functions","License","Clawpack Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","IPython notebook examples","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Visclaw Plotting options","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","Building the PyClaw gallery locally","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","Conventions for coding and documenting PyClaw","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":82,"catch":25,"class":[66,69],"default":[11,91,105,114,115],"function":[37,44,48,62,77,84,126],"new":[36,51,71,82,94],"switch":49,"true":60,Adding:[25,41,71,80],Going:74,One:[103,126],The:[41,48,49,88,92],Use:87,Using:[10,22,50,54,77,80,84,106,123],about:[4,64],access:62,acoust:[81,88],adapt:[5,12,22,30],add:[60,82],added:82,addit:[41,108,110],advect:81,after:102,afterfram:49,algorithm:[5,13,56,126],alias:41,all:[3,34,43],amazon:10,ami:10,amr:[3,5,19,54,93,108,110],amrclaw:[6,7,15,22,95,96,97,98,99,100,101,108,109,123],anoth:60,applic:[8,9,13,22,23,34,46,51,78],arrai:[55,87],arriv:110,artifact:41,ascii:[55,76],attribut:[0,1,2,3,24,41,60],author:4,auto:[26,37,44,120],aux:[55,66],auxiliari:80,avail:33,axes:39,b4step:[11,123],background:60,basic:[41,65,79],bathymetri:[92,122],befor:123,between:60,bibliographi:[13,22],binari:55,book:33,boundari:[5,12,80,123,126],bug:25,build:72,built:[42,71],buoi:122,burger:81,capac:126,cautionari:38,cell:[5,30],cfl:70,chang:[14,15,19,60,84,95,96,97,98,99,100,101],chardiff:94,check:[25,82,94],checkpoint:102,chile:41,choic:27,choos:5,cite:[4,75],clamshel:12,classic:[15,22,29,43,84,95,96,97,98,99,100,101,107,111],claw:57,clawcode2html:8,clawpack:[9,10,13,14,16,17,18,19,20,21,34,43,46,56,57,63,67,84,85,111,125],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,60],clawutil:[15,96,97,98,99,100,101],clone:25,cloud:[43,68],code:[8,22,25,36,57,82,94,116,123],color:60,colorbar:41,colormap:60,command:[49,62,71],comment:82,commun:[21,25,57],comparison:94,compil:[32,43,46,50,87,113,121],compon:[20,60],comput:[56,102],condit:[5,12,80,88,123,126],content:[22,25,43,60,66,77,84,90,94],continu:94,contourf:60,contribut:[23,25],contributor:64,control:[66,69,88],convent:82,convers:17,convert:[8,16,17],coordin:39,copi:51,correctli:78,coverag:25,creat:[10,27,41,49,51,66],creation:66,criteria:93,current_data:[24,62],curv:60,custom:84,dart:122,data:[55,106,110,118,120,121,122,123],debug:[60,108],defin:12,depend:[70,85],depth:39,deriv:[66,77],describ:13,desir:106,dev:57,develop:[22,25,43,57],diff:94,differ:[41,56,60],dimens:[73,126],dimension:103,directli:10,directori:[46,51,60],displac:118,docstr:[26,37,44,82,120],doctest:94,document:[8,26,37,42,44,75,82,113,120],domain:[73,88],done:123,download:118,dtopo:[92,119],dtopotool:26,each:123,earth:41,earthquak:[53,92,122],ec2:10,elev:39,environ:[32,43],equat:[81,88],error:[25,87],euler:81,event:[21,41],exampl:[9,22,23,29,33,35,36,41,49,51,52,58,71,78],exe:121,exist:51,extra:42,extrapol:93,f2py:121,faq:60,faster:41,fault:53,fflag:32,fgmax:27,figur:[41,60],file:[10,27,41,42,49,60,62,94,102,110,118,123],find:[10,60],finer:5,fix:[25,27,28,54,110],flag2refin:93,flag:[5,30,46,93,108],flow:[22,66],fly:59,fork:25,format:[27,55],formul:126,fort:[55,60],fortran:[19,22,31,32,82,87,94,116,121,123],found:49,friction:47,from:[10,16,17,19,25,26,33,37,44,62,67,71,79,92,120],full:22,fund:[4,64],further:74,fvmhp:33,galleri:[34,49,72],gaug:[35,41,77,92,122],gdal:41,gener:[19,26,37,44,110,120],geo:110,geoclaw:[11,12,15,19,22,36,37,38,39,41,54,57,61,91,93,95,96,97,98,99,100,101,105,110,114,115],geometri:73,geophys:22,get:[22,49,92],gfortran:[32,85],ghost:5,git:[25,40],github:25,godunov:126,googl:41,grid:[5,12,27,28,54,73,110],guid:[25,42,92],guidelin:25,hack:57,hazard:38,hdf5:76,help:49,high:126,hint:[38,60,90],how:[60,62],hpc3:57,html:[8,62],imag:41,imagediff:94,includ:9,independ:70,indic:75,initi:[5,80,88,123],input:[19,27,76,107,108],instal:[25,43,50,56,78,85,87,90,116,121],instanc:10,instruct:[25,43,82],integr:94,intel:32,interact:[62,71],interfac:56,interpol:27,iplotclaw:62,ipython:[52,71,112],issu:25,item:60,kaust:57,keep:40,kml:41,kmltool:44,kmz:41,latest:[25,43],latex:62,latitud:39,launch:10,layout:82,level:25,lflag:32,librari:41,licens:[4,45,64],limit:70,line:[62,71,94],link:18,list:71,load:41,local:[72,113],locat:35,log:[10,77],longitud:39,machin:125,make:[60,78,112,121],makefil:[31,46,80,102],man:47,mapc2p:48,master:15,math:68,matlab:49,matplotlib:85,maxfram:49,maximum:110,mesh:[5,22],method:[0,1,2,3,126],model:[38,53,92,122],modifi:[25,102],modul:[26,37,44,75,89,90,109,111,120],monitor:[27,110],more:31,most:25,motion:92,move:26,multipl:41,name:82,need:41,netcdf:[50,55,76],next:85,nose:85,note:14,notebook:[52,90,112],numpi:85,object:[73,106],obtain:85,okada:53,onli:43,openmp:54,option:[41,59,62,78,80],order:[82,87],other:[13,20,21,43,60,92],outdir:60,output:[27,28,46,49,50,54,55,66,76,77,94,102,107,108,110,121],overlai:41,overview:[22,36,106],own:[10,80],packag:[19,43,76,81],paper:13,parallel:[43,56,73,78,79,86],paramet:[19,35,60,62,88,92,107,108,110],pass:78,patch:73,path:49,pcolor:60,petclaw:[73,86],petsc:78,photo:57,piec:82,pip:121,pixel:94,plot:[3,10,19,22,27,35,36,39,41,46,49,50,58,59,60,61,62,71,78,79,94,106,112,121,124],plot_typ:3,plotax:41,plotclaw:49,plotdata:41,plotfigur:41,plotitem:41,port:67,post:59,ppflag:32,pre:32,prerequisit:43,previou:[21,63],print:108,printfram:62,problem:[7,67,80,88,123],procedur:27,process:[27,59],processor:32,produc:62,propag:126,provid:60,publish:41,pull:25,pyclaw:[15,19,22,29,43,64,65,66,67,68,69,70,71,72,73,75,76,77,79,82,83,84,85,86,88,89,94,95,96,97,98,99,100,101,116],pyflak:25,pylint:25,python:[17,62,85,90,119],q0002:55,qinit:[91,110,118],quantiti:[66,77],quick:92,raw:55,readm:8,recent:[14,25],refer:[13,75,90],refin:[5,12,22,30,93,110],region:[30,93,110],regress:[82,94],releas:[14,95,96,97,98,99,100,101],remot:25,remov:41,report:25,repositori:[9,20],request:25,requir:[41,90,123],resolut:[41,126],resourc:22,restart:[66,102],result:[10,36,41,50,79,112],richardson:93,riemann:[15,75,80,81,95,96,97,98,99,100,101,103,123],routin:[11,19,61,91,105,114,115],rst:8,run:[29,36,43,66,68,71,78,79,94,107,108,121],sage:[68,90],sampl:[109,111],save:112,script:80,seafloor:92,sealevel:104,search:49,serial:[43,73,86,94],servic:10,session:21,set:[36,43,49,60,62,80,92,104,121],setaux:[105,123],setplot:[49,60,62,106],setrun:[19,35,92,107,108,109,110,111],shallow:81,share:112,sharpclaw:84,shoot:[25,49],should:56,signatur:84,simul:66,simultan:94,sinc:15,size:60,slip:53,softwar:[4,13],solut:[60,66,83],solv:88,solver:[56,66,75,80,81,84,88,103,123],some:[60,82,122],someth:60,sourc:[53,80,92,122,123,126],space:126,spatial:123,special:[3,108],specif:[27,88,94,123],specifi:[60,62,92,93,106,107,108,110,123],sphere:12,sphinx:[42,113],sprint:[21,57],src1d:[114,123],src:[115,123],start:[22,92],state:86,statist:117,step:[85,123],stop:10,surfac:39,t0002:55,tabl:[22,75],term:[47,80,123,126],test:[25,43,78,82,85,94,116],than:60,thi:[4,42],tide:122,tile:41,time:[107,108,110,117,123],tip:[25,31,39,41,78,82],titl:60,tool:[17,22,27,35,39,94,119],top:25,topo:[92,119],topographi:[26,36,92,110,118,120,122],topotool:120,track:40,transfer:10,travi:94,troubl:[25,49,121],troubleshoot:[87,121],tsunami:[38,41,92,122],tutori:[88,90],tvd:70,understand:66,univers:57,upcom:21,updat:[25,42],use:56,used:121,user:[12,56,123],using:[38,49,123],utah:57,util:[37,44,89],valu:[27,66],vari:123,variabl:[32,43,46,80],version:[25,31,40,43,63],view:10,virtual:125,visclaw:[15,22,59,95,96,97,98,99,100,101],visit:124,visual:[22,41],wakari:68,water:[39,81],wave:[103,126],web:10,webpag:[10,42,112],what:[60,62],when:82,which:56,without:43,work:[4,71,119,120,123],workflow:25,workshop:[21,57],write:[80,82,94],you:82,your:[10,25,41,43,78,80,85,112,116]}}) \ No newline at end of file diff --git a/v5.3.x/setaux_defaults.html b/v5.3.x/setaux_defaults.html index 45ffcc54f..761cb46d1 100644 --- a/v5.3.x/setaux_defaults.html +++ b/v5.3.x/setaux_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/2d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/3d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 48)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/setaux_defaults.rst, line 48)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

        diff --git a/v5.3.x/src1d_defaults.html b/v5.3.x/src1d_defaults.html index 8e26ef16f..a6079c8b1 100644 --- a/v5.3.x/src1d_defaults.html +++ b/v5.3.x/src1d_defaults.html @@ -84,12 +84,12 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/amrclaw/src/2d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 21)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 21)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

        $CLAW/amrclaw/src/3d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 28)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 28)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

        @@ -100,7 +100,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 46)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src1d_defaults.rst, line 46)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

        diff --git a/v5.3.x/src_defaults.html b/v5.3.x/src_defaults.html index 881ce5e02..a34e403a5 100644 --- a/v5.3.x/src_defaults.html +++ b/v5.3.x/src_defaults.html @@ -85,17 +85,17 @@

        Navigation

        see Using src1d for source terms with AMRClaw.

        $CLAW/classic/src/1d/src1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 23)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 23)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 29)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 29)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/src3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 35)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 35)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

        @@ -106,7 +106,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 52)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/24e2c68df118c5a00b116198860c806cae4b064d/src_defaults.rst, line 52)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

        diff --git a/v5.4.x/.buildinfo b/v5.4.x/.buildinfo index 3b8ba4aec..3210921c1 100644 --- a/v5.4.x/.buildinfo +++ b/v5.4.x/.buildinfo @@ -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: b931d2538f400071aa62353c6740b4a4 +config: 34b0085097316140ef854b32a8bdd780 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.4.x/.doctrees/ClawPlotAxes.doctree b/v5.4.x/.doctrees/ClawPlotAxes.doctree index e9990a920..b1f8f2358 100644 Binary files a/v5.4.x/.doctrees/ClawPlotAxes.doctree and b/v5.4.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.4.x/.doctrees/ClawPlotData.doctree b/v5.4.x/.doctrees/ClawPlotData.doctree index d9d6516ab..1433db27b 100644 Binary files a/v5.4.x/.doctrees/ClawPlotData.doctree and b/v5.4.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.4.x/.doctrees/ClawPlotFigure.doctree b/v5.4.x/.doctrees/ClawPlotFigure.doctree index df29e2c80..96ceca2f5 100644 Binary files a/v5.4.x/.doctrees/ClawPlotFigure.doctree and b/v5.4.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.4.x/.doctrees/ClawPlotItem.doctree b/v5.4.x/.doctrees/ClawPlotItem.doctree index 0bc1c20f5..f09b92927 100644 Binary files a/v5.4.x/.doctrees/ClawPlotItem.doctree and b/v5.4.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.4.x/.doctrees/about.doctree b/v5.4.x/.doctrees/about.doctree index 9c20725d4..f697fc0a7 100644 Binary files a/v5.4.x/.doctrees/about.doctree and b/v5.4.x/.doctrees/about.doctree differ diff --git a/v5.4.x/.doctrees/amr_algorithm.doctree b/v5.4.x/.doctrees/amr_algorithm.doctree index 05d17eed2..0b867f1f2 100644 Binary files a/v5.4.x/.doctrees/amr_algorithm.doctree and b/v5.4.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.4.x/.doctrees/amrclaw.doctree b/v5.4.x/.doctrees/amrclaw.doctree index 185c61079..0d406ebb2 100644 Binary files a/v5.4.x/.doctrees/amrclaw.doctree and b/v5.4.x/.doctrees/amrclaw.doctree differ diff --git a/v5.4.x/.doctrees/amrclaw1d.doctree b/v5.4.x/.doctrees/amrclaw1d.doctree index 3dcf3e4cd..912834870 100644 Binary files a/v5.4.x/.doctrees/amrclaw1d.doctree and b/v5.4.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.4.x/.doctrees/amrclaw_doxygen.doctree b/v5.4.x/.doctrees/amrclaw_doxygen.doctree index 4c70deb89..0ee0ddf41 100644 Binary files a/v5.4.x/.doctrees/amrclaw_doxygen.doctree and b/v5.4.x/.doctrees/amrclaw_doxygen.doctree differ diff --git a/v5.4.x/.doctrees/amrclaw_flowcharts.doctree b/v5.4.x/.doctrees/amrclaw_flowcharts.doctree index 2fd5652cd..8f4c8c94a 100644 Binary files a/v5.4.x/.doctrees/amrclaw_flowcharts.doctree and b/v5.4.x/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/v5.4.x/.doctrees/application_documentation.doctree b/v5.4.x/.doctrees/application_documentation.doctree index edabe8e2c..8f1aaf6ad 100644 Binary files a/v5.4.x/.doctrees/application_documentation.doctree and b/v5.4.x/.doctrees/application_documentation.doctree differ diff --git a/v5.4.x/.doctrees/apps.doctree b/v5.4.x/.doctrees/apps.doctree index bf956068e..78a445dae 100644 Binary files a/v5.4.x/.doctrees/apps.doctree and b/v5.4.x/.doctrees/apps.doctree differ diff --git a/v5.4.x/.doctrees/aws.doctree b/v5.4.x/.doctrees/aws.doctree index d0dff3b2c..36d0ed953 100644 Binary files a/v5.4.x/.doctrees/aws.doctree and b/v5.4.x/.doctrees/aws.doctree differ diff --git a/v5.4.x/.doctrees/b4step_defaults.doctree b/v5.4.x/.doctrees/b4step_defaults.doctree index 48fd0c7a6..50d7063c1 100644 Binary files a/v5.4.x/.doctrees/b4step_defaults.doctree and b/v5.4.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.4.x/.doctrees/bc.doctree b/v5.4.x/.doctrees/bc.doctree index 796511baa..e157dce03 100644 Binary files a/v5.4.x/.doctrees/bc.doctree and b/v5.4.x/.doctrees/bc.doctree differ diff --git a/v5.4.x/.doctrees/biblio.doctree b/v5.4.x/.doctrees/biblio.doctree index 850129006..1527ace1a 100644 Binary files a/v5.4.x/.doctrees/biblio.doctree and b/v5.4.x/.doctrees/biblio.doctree differ diff --git a/v5.4.x/.doctrees/changes.doctree b/v5.4.x/.doctrees/changes.doctree index af47a6dfc..4646419d8 100644 Binary files a/v5.4.x/.doctrees/changes.doctree and b/v5.4.x/.doctrees/changes.doctree differ diff --git a/v5.4.x/.doctrees/changes_to_master.doctree b/v5.4.x/.doctrees/changes_to_master.doctree index 3ed9a5d0b..4dc2dffab 100644 Binary files a/v5.4.x/.doctrees/changes_to_master.doctree and b/v5.4.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.4.x/.doctrees/claw43to46.doctree b/v5.4.x/.doctrees/claw43to46.doctree index d200b23a4..796c42465 100644 Binary files a/v5.4.x/.doctrees/claw43to46.doctree and b/v5.4.x/.doctrees/claw43to46.doctree differ diff --git a/v5.4.x/.doctrees/claw46to50.doctree b/v5.4.x/.doctrees/claw46to50.doctree index 98853a61a..e6b6bb843 100644 Binary files a/v5.4.x/.doctrees/claw46to50.doctree and b/v5.4.x/.doctrees/claw46to50.doctree differ diff --git a/v5.4.x/.doctrees/claw4x.doctree b/v5.4.x/.doctrees/claw4x.doctree index 7b6b25c4d..3bd4392ac 100644 Binary files a/v5.4.x/.doctrees/claw4x.doctree and b/v5.4.x/.doctrees/claw4x.doctree differ diff --git a/v5.4.x/.doctrees/clawpack5.doctree b/v5.4.x/.doctrees/clawpack5.doctree index f65e775bc..8c86540af 100644 Binary files a/v5.4.x/.doctrees/clawpack5.doctree and b/v5.4.x/.doctrees/clawpack5.doctree differ diff --git a/v5.4.x/.doctrees/clawpack_components.doctree b/v5.4.x/.doctrees/clawpack_components.doctree index 110f97976..69b490677 100644 Binary files a/v5.4.x/.doctrees/clawpack_components.doctree and b/v5.4.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.4.x/.doctrees/community.doctree b/v5.4.x/.doctrees/community.doctree index b2c25e71e..eae9f10c6 100644 Binary files a/v5.4.x/.doctrees/community.doctree and b/v5.4.x/.doctrees/community.doctree differ diff --git a/v5.4.x/.doctrees/contents.doctree b/v5.4.x/.doctrees/contents.doctree index aa01d5ed1..8319784e9 100644 Binary files a/v5.4.x/.doctrees/contents.doctree and b/v5.4.x/.doctrees/contents.doctree differ diff --git a/v5.4.x/.doctrees/contribute_apps.doctree b/v5.4.x/.doctrees/contribute_apps.doctree index 5dc6c6fed..d41578284 100644 Binary files a/v5.4.x/.doctrees/contribute_apps.doctree and b/v5.4.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.4.x/.doctrees/current_data.doctree b/v5.4.x/.doctrees/current_data.doctree index 8904bb860..e418c6d70 100644 Binary files a/v5.4.x/.doctrees/current_data.doctree and b/v5.4.x/.doctrees/current_data.doctree differ diff --git a/v5.4.x/.doctrees/developers.doctree b/v5.4.x/.doctrees/developers.doctree index b078c4b3b..e3b408b59 100644 Binary files a/v5.4.x/.doctrees/developers.doctree and b/v5.4.x/.doctrees/developers.doctree differ diff --git a/v5.4.x/.doctrees/docker_image.doctree b/v5.4.x/.doctrees/docker_image.doctree index 96b29c757..348b8be01 100644 Binary files a/v5.4.x/.doctrees/docker_image.doctree and b/v5.4.x/.doctrees/docker_image.doctree differ diff --git a/v5.4.x/.doctrees/dtopotools_module.doctree b/v5.4.x/.doctrees/dtopotools_module.doctree index 99f086567..40551e07c 100644 Binary files a/v5.4.x/.doctrees/dtopotools_module.doctree and b/v5.4.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.4.x/.doctrees/environment.pickle b/v5.4.x/.doctrees/environment.pickle index 361b91080..555fd8814 100644 Binary files a/v5.4.x/.doctrees/environment.pickle and b/v5.4.x/.doctrees/environment.pickle differ diff --git a/v5.4.x/.doctrees/f77_vs_f90.doctree b/v5.4.x/.doctrees/f77_vs_f90.doctree index bd2bacc23..91e3d86d8 100644 Binary files a/v5.4.x/.doctrees/f77_vs_f90.doctree and b/v5.4.x/.doctrees/f77_vs_f90.doctree differ diff --git a/v5.4.x/.doctrees/fgmax.doctree b/v5.4.x/.doctrees/fgmax.doctree index 8d892784c..f077a8dac 100644 Binary files a/v5.4.x/.doctrees/fgmax.doctree and b/v5.4.x/.doctrees/fgmax.doctree differ diff --git a/v5.4.x/.doctrees/fgout.doctree b/v5.4.x/.doctrees/fgout.doctree index 83f86597f..b19f0a777 100644 Binary files a/v5.4.x/.doctrees/fgout.doctree and b/v5.4.x/.doctrees/fgout.doctree differ diff --git a/v5.4.x/.doctrees/first_run.doctree b/v5.4.x/.doctrees/first_run.doctree index 22b1b294b..eabdcc060 100644 Binary files a/v5.4.x/.doctrees/first_run.doctree and b/v5.4.x/.doctrees/first_run.doctree differ diff --git a/v5.4.x/.doctrees/first_run_fortran.doctree b/v5.4.x/.doctrees/first_run_fortran.doctree index e83b5dc42..7f930e608 100644 Binary files a/v5.4.x/.doctrees/first_run_fortran.doctree and b/v5.4.x/.doctrees/first_run_fortran.doctree differ diff --git a/v5.4.x/.doctrees/first_run_pyclaw.doctree b/v5.4.x/.doctrees/first_run_pyclaw.doctree index a02d32fd0..902cf008d 100644 Binary files a/v5.4.x/.doctrees/first_run_pyclaw.doctree and b/v5.4.x/.doctrees/first_run_pyclaw.doctree differ diff --git a/v5.4.x/.doctrees/fortran.doctree b/v5.4.x/.doctrees/fortran.doctree index b6c4befe3..047f2bcb8 100644 Binary files a/v5.4.x/.doctrees/fortran.doctree and b/v5.4.x/.doctrees/fortran.doctree differ diff --git a/v5.4.x/.doctrees/fortran_compilers.doctree b/v5.4.x/.doctrees/fortran_compilers.doctree index 969803853..cac8d20bc 100644 Binary files a/v5.4.x/.doctrees/fortran_compilers.doctree and b/v5.4.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.4.x/.doctrees/fvmbook.doctree b/v5.4.x/.doctrees/fvmbook.doctree index 4b39a133e..91cfe285e 100644 Binary files a/v5.4.x/.doctrees/fvmbook.doctree and b/v5.4.x/.doctrees/fvmbook.doctree differ diff --git a/v5.4.x/.doctrees/galleries.doctree b/v5.4.x/.doctrees/galleries.doctree index 10b872657..91c528fc6 100644 Binary files a/v5.4.x/.doctrees/galleries.doctree and b/v5.4.x/.doctrees/galleries.doctree differ diff --git a/v5.4.x/.doctrees/gauges.doctree b/v5.4.x/.doctrees/gauges.doctree index b50035510..65ed3496c 100644 Binary files a/v5.4.x/.doctrees/gauges.doctree and b/v5.4.x/.doctrees/gauges.doctree differ diff --git a/v5.4.x/.doctrees/geoclaw.doctree b/v5.4.x/.doctrees/geoclaw.doctree index 47155bb2e..3e6204ab9 100644 Binary files a/v5.4.x/.doctrees/geoclaw.doctree and b/v5.4.x/.doctrees/geoclaw.doctree differ diff --git a/v5.4.x/.doctrees/geoclaw_started.doctree b/v5.4.x/.doctrees/geoclaw_started.doctree index d0efbaf70..e2da43b93 100644 Binary files a/v5.4.x/.doctrees/geoclaw_started.doctree and b/v5.4.x/.doctrees/geoclaw_started.doctree differ diff --git a/v5.4.x/.doctrees/geoclaw_util_module.doctree b/v5.4.x/.doctrees/geoclaw_util_module.doctree index 752ae6742..114f12106 100644 Binary files a/v5.4.x/.doctrees/geoclaw_util_module.doctree and b/v5.4.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.4.x/.doctrees/geohints.doctree b/v5.4.x/.doctrees/geohints.doctree index 5be77b549..97eec80df 100644 Binary files a/v5.4.x/.doctrees/geohints.doctree and b/v5.4.x/.doctrees/geohints.doctree differ diff --git a/v5.4.x/.doctrees/geoplot.doctree b/v5.4.x/.doctrees/geoplot.doctree index a6fa2b220..92c2226b4 100644 Binary files a/v5.4.x/.doctrees/geoplot.doctree and b/v5.4.x/.doctrees/geoplot.doctree differ diff --git a/v5.4.x/.doctrees/git_versions.doctree b/v5.4.x/.doctrees/git_versions.doctree index d9418abc5..97bc540dc 100644 Binary files a/v5.4.x/.doctrees/git_versions.doctree and b/v5.4.x/.doctrees/git_versions.doctree differ diff --git a/v5.4.x/.doctrees/googleearth_plotting.doctree b/v5.4.x/.doctrees/googleearth_plotting.doctree index 8ebca75ce..982cdcf74 100644 Binary files a/v5.4.x/.doctrees/googleearth_plotting.doctree and b/v5.4.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.4.x/.doctrees/howto_doc.doctree b/v5.4.x/.doctrees/howto_doc.doctree index 6089c6025..2b5799c7a 100644 Binary files a/v5.4.x/.doctrees/howto_doc.doctree and b/v5.4.x/.doctrees/howto_doc.doctree differ diff --git a/v5.4.x/.doctrees/howto_release.doctree b/v5.4.x/.doctrees/howto_release.doctree index fbef057e4..38d7a0a09 100644 Binary files a/v5.4.x/.doctrees/howto_release.doctree and b/v5.4.x/.doctrees/howto_release.doctree differ diff --git a/v5.4.x/.doctrees/installing.doctree b/v5.4.x/.doctrees/installing.doctree index 3ae9bc9ba..7ecef0bd1 100644 Binary files a/v5.4.x/.doctrees/installing.doctree and b/v5.4.x/.doctrees/installing.doctree differ diff --git a/v5.4.x/.doctrees/installing_pip.doctree b/v5.4.x/.doctrees/installing_pip.doctree index fc39b1a82..38e36e7d1 100644 Binary files a/v5.4.x/.doctrees/installing_pip.doctree and b/v5.4.x/.doctrees/installing_pip.doctree differ diff --git a/v5.4.x/.doctrees/kmltools_module.doctree b/v5.4.x/.doctrees/kmltools_module.doctree index 55cd9cca7..56dbae393 100644 Binary files a/v5.4.x/.doctrees/kmltools_module.doctree and b/v5.4.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.4.x/.doctrees/license.doctree b/v5.4.x/.doctrees/license.doctree index fa42d7d39..3f77c0e5d 100644 Binary files a/v5.4.x/.doctrees/license.doctree and b/v5.4.x/.doctrees/license.doctree differ diff --git a/v5.4.x/.doctrees/makefiles.doctree b/v5.4.x/.doctrees/makefiles.doctree index c5e2a9484..020b6bd9b 100644 Binary files a/v5.4.x/.doctrees/makefiles.doctree and b/v5.4.x/.doctrees/makefiles.doctree differ diff --git a/v5.4.x/.doctrees/makefiles_library.doctree b/v5.4.x/.doctrees/makefiles_library.doctree index 9003bd230..c732e4e44 100644 Binary files a/v5.4.x/.doctrees/makefiles_library.doctree and b/v5.4.x/.doctrees/makefiles_library.doctree differ diff --git a/v5.4.x/.doctrees/manning.doctree b/v5.4.x/.doctrees/manning.doctree index 0e0e495ba..f7e360ef2 100644 Binary files a/v5.4.x/.doctrees/manning.doctree and b/v5.4.x/.doctrees/manning.doctree differ diff --git a/v5.4.x/.doctrees/mapc2p.doctree b/v5.4.x/.doctrees/mapc2p.doctree index 602ac3e11..d4d487200 100644 Binary files a/v5.4.x/.doctrees/mapc2p.doctree and b/v5.4.x/.doctrees/mapc2p.doctree differ diff --git a/v5.4.x/.doctrees/matlab_plotting.doctree b/v5.4.x/.doctrees/matlab_plotting.doctree index 77ee229c0..49d7a6bd3 100644 Binary files a/v5.4.x/.doctrees/matlab_plotting.doctree and b/v5.4.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.4.x/.doctrees/netcdf.doctree b/v5.4.x/.doctrees/netcdf.doctree index c0c100d6f..d2ffa8b4b 100644 Binary files a/v5.4.x/.doctrees/netcdf.doctree and b/v5.4.x/.doctrees/netcdf.doctree differ diff --git a/v5.4.x/.doctrees/newapp.doctree b/v5.4.x/.doctrees/newapp.doctree index 5e867b7e4..b7b3c6011 100644 Binary files a/v5.4.x/.doctrees/newapp.doctree and b/v5.4.x/.doctrees/newapp.doctree differ diff --git a/v5.4.x/.doctrees/okada.doctree b/v5.4.x/.doctrees/okada.doctree index 2179e1ce2..a2ddb86ac 100644 Binary files a/v5.4.x/.doctrees/okada.doctree and b/v5.4.x/.doctrees/okada.doctree differ diff --git a/v5.4.x/.doctrees/openmp.doctree b/v5.4.x/.doctrees/openmp.doctree index fcfc40c66..fb674b8d8 100644 Binary files a/v5.4.x/.doctrees/openmp.doctree and b/v5.4.x/.doctrees/openmp.doctree differ diff --git a/v5.4.x/.doctrees/output_styles.doctree b/v5.4.x/.doctrees/output_styles.doctree index 443c297df..19c76e952 100644 Binary files a/v5.4.x/.doctrees/output_styles.doctree and b/v5.4.x/.doctrees/output_styles.doctree differ diff --git a/v5.4.x/.doctrees/packages.doctree b/v5.4.x/.doctrees/packages.doctree index eaf0ba9a6..12a883f84 100644 Binary files a/v5.4.x/.doctrees/packages.doctree and b/v5.4.x/.doctrees/packages.doctree differ diff --git a/v5.4.x/.doctrees/photos.doctree b/v5.4.x/.doctrees/photos.doctree index 7f357ea13..4332867c9 100644 Binary files a/v5.4.x/.doctrees/photos.doctree and b/v5.4.x/.doctrees/photos.doctree differ diff --git a/v5.4.x/.doctrees/plotexamples.doctree b/v5.4.x/.doctrees/plotexamples.doctree index bf2d1947a..3835c91e8 100644 Binary files a/v5.4.x/.doctrees/plotexamples.doctree and b/v5.4.x/.doctrees/plotexamples.doctree differ diff --git a/v5.4.x/.doctrees/plotting.doctree b/v5.4.x/.doctrees/plotting.doctree index 337ccbbf8..17890f8b7 100644 Binary files a/v5.4.x/.doctrees/plotting.doctree and b/v5.4.x/.doctrees/plotting.doctree differ diff --git a/v5.4.x/.doctrees/plotting_faq.doctree b/v5.4.x/.doctrees/plotting_faq.doctree index 7a88fbae7..69b07780b 100644 Binary files a/v5.4.x/.doctrees/plotting_faq.doctree and b/v5.4.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.4.x/.doctrees/plotting_geoclaw.doctree b/v5.4.x/.doctrees/plotting_geoclaw.doctree index 95a295280..0f7522f6c 100644 Binary files a/v5.4.x/.doctrees/plotting_geoclaw.doctree and b/v5.4.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.4.x/.doctrees/plotting_python.doctree b/v5.4.x/.doctrees/plotting_python.doctree index 62d4fa1a1..338ffe817 100644 Binary files a/v5.4.x/.doctrees/plotting_python.doctree and b/v5.4.x/.doctrees/plotting_python.doctree differ diff --git a/v5.4.x/.doctrees/prereqs.doctree b/v5.4.x/.doctrees/prereqs.doctree index 915b47cdf..5c7d13b4f 100644 Binary files a/v5.4.x/.doctrees/prereqs.doctree and b/v5.4.x/.doctrees/prereqs.doctree differ diff --git a/v5.4.x/.doctrees/previous.doctree b/v5.4.x/.doctrees/previous.doctree index 72ac1fa77..b0c503c19 100644 Binary files a/v5.4.x/.doctrees/previous.doctree and b/v5.4.x/.doctrees/previous.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/about.doctree b/v5.4.x/.doctrees/pyclaw/about.doctree index 55f95f9a5..e3c97b974 100644 Binary files a/v5.4.x/.doctrees/pyclaw/about.doctree and b/v5.4.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/basics.doctree b/v5.4.x/.doctrees/pyclaw/basics.doctree index f0e5e78f0..d70338fed 100644 Binary files a/v5.4.x/.doctrees/pyclaw/basics.doctree and b/v5.4.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/classes.doctree b/v5.4.x/.doctrees/pyclaw/classes.doctree index 31d6e69da..a10b25edc 100644 Binary files a/v5.4.x/.doctrees/pyclaw/classes.doctree and b/v5.4.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.4.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 79cac2b10..d939e7664 100644 Binary files a/v5.4.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.4.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/cloud.doctree b/v5.4.x/.doctrees/pyclaw/cloud.doctree index 6854db144..87091b380 100644 Binary files a/v5.4.x/.doctrees/pyclaw/cloud.doctree and b/v5.4.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/controller.doctree b/v5.4.x/.doctrees/pyclaw/controller.doctree index 3d328ed32..70cb35c9b 100644 Binary files a/v5.4.x/.doctrees/pyclaw/controller.doctree and b/v5.4.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.4.x/.doctrees/pyclaw/evolve/limiters.doctree index 2600377f5..59be5e191 100644 Binary files a/v5.4.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.4.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/examples.doctree b/v5.4.x/.doctrees/pyclaw/examples.doctree index 9138c8824..9041bdb36 100644 Binary files a/v5.4.x/.doctrees/pyclaw/examples.doctree and b/v5.4.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/geometry.doctree b/v5.4.x/.doctrees/pyclaw/geometry.doctree index 516e4807e..1cc9093ef 100644 Binary files a/v5.4.x/.doctrees/pyclaw/geometry.doctree and b/v5.4.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/going_further.doctree b/v5.4.x/.doctrees/pyclaw/going_further.doctree index a495e9040..8f9aa3218 100644 Binary files a/v5.4.x/.doctrees/pyclaw/going_further.doctree and b/v5.4.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/index.doctree b/v5.4.x/.doctrees/pyclaw/index.doctree index 95151b7c2..ded1df739 100644 Binary files a/v5.4.x/.doctrees/pyclaw/index.doctree and b/v5.4.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/io.doctree b/v5.4.x/.doctrees/pyclaw/io.doctree index b36761b32..9ddb25b89 100644 Binary files a/v5.4.x/.doctrees/pyclaw/io.doctree and b/v5.4.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/output.doctree b/v5.4.x/.doctrees/pyclaw/output.doctree index 688eef452..462cdbda0 100644 Binary files a/v5.4.x/.doctrees/pyclaw/output.doctree and b/v5.4.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/parallel.doctree b/v5.4.x/.doctrees/pyclaw/parallel.doctree index 25aa4781b..e4c64d547 100644 Binary files a/v5.4.x/.doctrees/pyclaw/parallel.doctree and b/v5.4.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/plotting.doctree b/v5.4.x/.doctrees/pyclaw/plotting.doctree index b714ca367..dce4e4e2b 100644 Binary files a/v5.4.x/.doctrees/pyclaw/plotting.doctree and b/v5.4.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/problem.doctree b/v5.4.x/.doctrees/pyclaw/problem.doctree index d6f398ba6..dbf56af0d 100644 Binary files a/v5.4.x/.doctrees/pyclaw/problem.doctree and b/v5.4.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/rp.doctree b/v5.4.x/.doctrees/pyclaw/rp.doctree index 1fdd07c30..cda03ca22 100644 Binary files a/v5.4.x/.doctrees/pyclaw/rp.doctree and b/v5.4.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/solution.doctree b/v5.4.x/.doctrees/pyclaw/solution.doctree index 654323081..43825878e 100644 Binary files a/v5.4.x/.doctrees/pyclaw/solution.doctree and b/v5.4.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/solvers.doctree b/v5.4.x/.doctrees/pyclaw/solvers.doctree index 7c7807602..99e15c59f 100644 Binary files a/v5.4.x/.doctrees/pyclaw/solvers.doctree and b/v5.4.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/started.doctree b/v5.4.x/.doctrees/pyclaw/started.doctree index c866f56a7..f2be25856 100644 Binary files a/v5.4.x/.doctrees/pyclaw/started.doctree and b/v5.4.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/state.doctree b/v5.4.x/.doctrees/pyclaw/state.doctree index d3ac4abbc..8c3a35cb2 100644 Binary files a/v5.4.x/.doctrees/pyclaw/state.doctree and b/v5.4.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.4.x/.doctrees/pyclaw/troubleshooting.doctree index dad0e4cb1..37608a928 100644 Binary files a/v5.4.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.4.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/tutorial.doctree b/v5.4.x/.doctrees/pyclaw/tutorial.doctree index 79c7a6921..6a9561add 100644 Binary files a/v5.4.x/.doctrees/pyclaw/tutorial.doctree and b/v5.4.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.4.x/.doctrees/pyclaw/util.doctree b/v5.4.x/.doctrees/pyclaw/util.doctree index 098ed6ce7..97059a323 100644 Binary files a/v5.4.x/.doctrees/pyclaw/util.doctree and b/v5.4.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.4.x/.doctrees/python.doctree b/v5.4.x/.doctrees/python.doctree index 714fb51b4..bacaffca4 100644 Binary files a/v5.4.x/.doctrees/python.doctree and b/v5.4.x/.doctrees/python.doctree differ diff --git a/v5.4.x/.doctrees/python_path.doctree b/v5.4.x/.doctrees/python_path.doctree index 90a1994d6..9f495775a 100644 Binary files a/v5.4.x/.doctrees/python_path.doctree and b/v5.4.x/.doctrees/python_path.doctree differ diff --git a/v5.4.x/.doctrees/qinit_defaults.doctree b/v5.4.x/.doctrees/qinit_defaults.doctree index cdb859ae0..399aefde3 100644 Binary files a/v5.4.x/.doctrees/qinit_defaults.doctree and b/v5.4.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.4.x/.doctrees/quick_tsunami.doctree b/v5.4.x/.doctrees/quick_tsunami.doctree index 166da1af3..a6581f6c4 100644 Binary files a/v5.4.x/.doctrees/quick_tsunami.doctree and b/v5.4.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.4.x/.doctrees/refinement.doctree b/v5.4.x/.doctrees/refinement.doctree index f6b3667ad..e2d3dab17 100644 Binary files a/v5.4.x/.doctrees/refinement.doctree and b/v5.4.x/.doctrees/refinement.doctree differ diff --git a/v5.4.x/.doctrees/regression.doctree b/v5.4.x/.doctrees/regression.doctree index 55350b251..52affc24f 100644 Binary files a/v5.4.x/.doctrees/regression.doctree and b/v5.4.x/.doctrees/regression.doctree differ diff --git a/v5.4.x/.doctrees/release_5_0_0.doctree b/v5.4.x/.doctrees/release_5_0_0.doctree index b5d3d6617..bcbaf4e8f 100644 Binary files a/v5.4.x/.doctrees/release_5_0_0.doctree and b/v5.4.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.4.x/.doctrees/release_5_1_0.doctree b/v5.4.x/.doctrees/release_5_1_0.doctree index 39d688f6b..b5d4f105b 100644 Binary files a/v5.4.x/.doctrees/release_5_1_0.doctree and b/v5.4.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.4.x/.doctrees/release_5_2_0.doctree b/v5.4.x/.doctrees/release_5_2_0.doctree index 64b3debac..a24238ce3 100644 Binary files a/v5.4.x/.doctrees/release_5_2_0.doctree and b/v5.4.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.4.x/.doctrees/release_5_2_1.doctree b/v5.4.x/.doctrees/release_5_2_1.doctree index af2191477..0484611a5 100644 Binary files a/v5.4.x/.doctrees/release_5_2_1.doctree and b/v5.4.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.4.x/.doctrees/release_5_2_2.doctree b/v5.4.x/.doctrees/release_5_2_2.doctree index 8b3b8b8ad..6f3113b0e 100644 Binary files a/v5.4.x/.doctrees/release_5_2_2.doctree and b/v5.4.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.4.x/.doctrees/release_5_3_0.doctree b/v5.4.x/.doctrees/release_5_3_0.doctree index 2aa2aa1f3..54240c4cc 100644 Binary files a/v5.4.x/.doctrees/release_5_3_0.doctree and b/v5.4.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.4.x/.doctrees/release_5_3_1.doctree b/v5.4.x/.doctrees/release_5_3_1.doctree index 9ba7cd7b6..311c41cc5 100644 Binary files a/v5.4.x/.doctrees/release_5_3_1.doctree and b/v5.4.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.4.x/.doctrees/release_5_4_0.doctree b/v5.4.x/.doctrees/release_5_4_0.doctree index 4eb67ff83..65827dd39 100644 Binary files a/v5.4.x/.doctrees/release_5_4_0.doctree and b/v5.4.x/.doctrees/release_5_4_0.doctree differ diff --git a/v5.4.x/.doctrees/release_5_4_1.doctree b/v5.4.x/.doctrees/release_5_4_1.doctree index 3c7d6b4d7..fb251ad8f 100644 Binary files a/v5.4.x/.doctrees/release_5_4_1.doctree and b/v5.4.x/.doctrees/release_5_4_1.doctree differ diff --git a/v5.4.x/.doctrees/restart.doctree b/v5.4.x/.doctrees/restart.doctree index 73a784582..11f04d469 100644 Binary files a/v5.4.x/.doctrees/restart.doctree and b/v5.4.x/.doctrees/restart.doctree differ diff --git a/v5.4.x/.doctrees/riemann.doctree b/v5.4.x/.doctrees/riemann.doctree index 68cf9f6a9..183aad1e5 100644 Binary files a/v5.4.x/.doctrees/riemann.doctree and b/v5.4.x/.doctrees/riemann.doctree differ diff --git a/v5.4.x/.doctrees/sealevel.doctree b/v5.4.x/.doctrees/sealevel.doctree index 1ae1e3f48..58b6eaec9 100644 Binary files a/v5.4.x/.doctrees/sealevel.doctree and b/v5.4.x/.doctrees/sealevel.doctree differ diff --git a/v5.4.x/.doctrees/setaux_defaults.doctree b/v5.4.x/.doctrees/setaux_defaults.doctree index e928d67ec..34b55ca9b 100644 Binary files a/v5.4.x/.doctrees/setaux_defaults.doctree and b/v5.4.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.4.x/.doctrees/setenv.doctree b/v5.4.x/.doctrees/setenv.doctree index 1d8e05b95..b3d8dc5e7 100644 Binary files a/v5.4.x/.doctrees/setenv.doctree and b/v5.4.x/.doctrees/setenv.doctree differ diff --git a/v5.4.x/.doctrees/setplot.doctree b/v5.4.x/.doctrees/setplot.doctree index 926e1d33b..ec4cd82fa 100644 Binary files a/v5.4.x/.doctrees/setplot.doctree and b/v5.4.x/.doctrees/setplot.doctree differ diff --git a/v5.4.x/.doctrees/setrun.doctree b/v5.4.x/.doctrees/setrun.doctree index c9b20e75a..cfd42947b 100644 Binary files a/v5.4.x/.doctrees/setrun.doctree and b/v5.4.x/.doctrees/setrun.doctree differ diff --git a/v5.4.x/.doctrees/setrun_amrclaw.doctree b/v5.4.x/.doctrees/setrun_amrclaw.doctree index 32069afe3..9897cd32d 100644 Binary files a/v5.4.x/.doctrees/setrun_amrclaw.doctree and b/v5.4.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.4.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.4.x/.doctrees/setrun_amrclaw_sample.doctree index e44615c7e..eb7b80434 100644 Binary files a/v5.4.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.4.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.4.x/.doctrees/setrun_geoclaw.doctree b/v5.4.x/.doctrees/setrun_geoclaw.doctree index 0a54316c1..0c090f718 100644 Binary files a/v5.4.x/.doctrees/setrun_geoclaw.doctree and b/v5.4.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.4.x/.doctrees/setrun_sample.doctree b/v5.4.x/.doctrees/setrun_sample.doctree index 9b3adcac7..d6f80f4d9 100644 Binary files a/v5.4.x/.doctrees/setrun_sample.doctree and b/v5.4.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.4.x/.doctrees/sharing.doctree b/v5.4.x/.doctrees/sharing.doctree index ff562b8f7..da788185b 100644 Binary files a/v5.4.x/.doctrees/sharing.doctree and b/v5.4.x/.doctrees/sharing.doctree differ diff --git a/v5.4.x/.doctrees/sphinxdoc.doctree b/v5.4.x/.doctrees/sphinxdoc.doctree index 2062093f6..1891c4b07 100644 Binary files a/v5.4.x/.doctrees/sphinxdoc.doctree and b/v5.4.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.4.x/.doctrees/src1d_defaults.doctree b/v5.4.x/.doctrees/src1d_defaults.doctree index 7438a71bd..afe075144 100644 Binary files a/v5.4.x/.doctrees/src1d_defaults.doctree and b/v5.4.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.4.x/.doctrees/src_defaults.doctree b/v5.4.x/.doctrees/src_defaults.doctree index cd10c5bfe..0d51514a8 100644 Binary files a/v5.4.x/.doctrees/src_defaults.doctree and b/v5.4.x/.doctrees/src_defaults.doctree differ diff --git a/v5.4.x/.doctrees/testing.doctree b/v5.4.x/.doctrees/testing.doctree index d0182ec36..a7b921741 100644 Binary files a/v5.4.x/.doctrees/testing.doctree and b/v5.4.x/.doctrees/testing.doctree differ diff --git a/v5.4.x/.doctrees/timing.doctree b/v5.4.x/.doctrees/timing.doctree index 975aa3def..40903d943 100644 Binary files a/v5.4.x/.doctrees/timing.doctree and b/v5.4.x/.doctrees/timing.doctree differ diff --git a/v5.4.x/.doctrees/topo.doctree b/v5.4.x/.doctrees/topo.doctree index ad0bcbed9..1ab89fdb7 100644 Binary files a/v5.4.x/.doctrees/topo.doctree and b/v5.4.x/.doctrees/topo.doctree differ diff --git a/v5.4.x/.doctrees/topotools.doctree b/v5.4.x/.doctrees/topotools.doctree index 8f27d1e32..869583139 100644 Binary files a/v5.4.x/.doctrees/topotools.doctree and b/v5.4.x/.doctrees/topotools.doctree differ diff --git a/v5.4.x/.doctrees/topotools_module.doctree b/v5.4.x/.doctrees/topotools_module.doctree index e81994241..1a42b2a3d 100644 Binary files a/v5.4.x/.doctrees/topotools_module.doctree and b/v5.4.x/.doctrees/topotools_module.doctree differ diff --git a/v5.4.x/.doctrees/trouble.doctree b/v5.4.x/.doctrees/trouble.doctree index 0d70c4dfa..7a7dcd00e 100644 Binary files a/v5.4.x/.doctrees/trouble.doctree and b/v5.4.x/.doctrees/trouble.doctree differ diff --git a/v5.4.x/.doctrees/tsunamidata.doctree b/v5.4.x/.doctrees/tsunamidata.doctree index bbeeb4a54..e789b38ac 100644 Binary files a/v5.4.x/.doctrees/tsunamidata.doctree and b/v5.4.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.4.x/.doctrees/user_routines.doctree b/v5.4.x/.doctrees/user_routines.doctree index 28dfea0d9..3b4dc9f82 100644 Binary files a/v5.4.x/.doctrees/user_routines.doctree and b/v5.4.x/.doctrees/user_routines.doctree differ diff --git a/v5.4.x/.doctrees/visit_plotting.doctree b/v5.4.x/.doctrees/visit_plotting.doctree index 89d20c4d3..d6421608e 100644 Binary files a/v5.4.x/.doctrees/visit_plotting.doctree and b/v5.4.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.4.x/.doctrees/vm.doctree b/v5.4.x/.doctrees/vm.doctree index 2a27fc100..bc0e21367 100644 Binary files a/v5.4.x/.doctrees/vm.doctree and b/v5.4.x/.doctrees/vm.doctree differ diff --git a/v5.4.x/.doctrees/wp_algorithms.doctree b/v5.4.x/.doctrees/wp_algorithms.doctree index f96c32703..a9a8c9769 100644 Binary files a/v5.4.x/.doctrees/wp_algorithms.doctree and b/v5.4.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.4.x/amrclaw.html b/v5.4.x/amrclaw.html index deb00ccd8..40c81fd78 100644 --- a/v5.4.x/amrclaw.html +++ b/v5.4.x/amrclaw.html @@ -107,7 +107,7 @@

        Navigation

        Matlab tools from Clawpack 4.3 can still be used, see Plotting using Matlab.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/amrclaw.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/amrclaw.rst, line 36)

        toctree contains reference to nonexisting document ‘amrclaw/amrclaw_advection_2d_square’

        diff --git a/v5.4.x/b4step_defaults.html b/v5.4.x/b4step_defaults.html index 429d5fcba..1827148bb 100644 --- a/v5.4.x/b4step_defaults.html +++ b/v5.4.x/b4step_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/b4step1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 19)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 19)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 25)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 25)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/b4step3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 31)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 31)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 49)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/b4step_defaults.rst, line 49)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

        diff --git a/v5.4.x/contents.html b/v5.4.x/contents.html index 77131cd2d..46f730b9f 100644 --- a/v5.4.x/contents.html +++ b/v5.4.x/contents.html @@ -261,7 +261,7 @@

        PyClawRiemann

        All Clawpack packages make use of the same collection of Riemann solvers.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/contents.rst, line 113)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/contents.rst, line 113)

        toctree contains reference to nonexisting document ‘riemann/Shallow_water_Riemann_solvers’

      - +
      • verbosity() (pyclaw.controller.Controller property) diff --git a/v5.4.x/geoclaw.html b/v5.4.x/geoclaw.html index 1db3c1f70..d2974c257 100644 --- a/v5.4.x/geoclaw.html +++ b/v5.4.x/geoclaw.html @@ -110,15 +110,15 @@

        Navigation

        Some sample calculations can be viewed in the gallery_geoclaw. More will eventually appear in the Clawpack Applications repository.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        toctree contains reference to nonexisting document ‘geoclaw/topotools_examples’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        toctree contains reference to nonexisting document ‘geoclaw/dtopotools_examples’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/geoclaw.rst, line 36)

        toctree contains reference to nonexisting document ‘geoclaw/Okada’

        diff --git a/v5.4.x/geoclaw_util_module.html b/v5.4.x/geoclaw_util_module.html index 100f74556..97d6e3fa2 100644 --- a/v5.4.x/geoclaw_util_module.html +++ b/v5.4.x/geoclaw_util_module.html @@ -112,7 +112,7 @@

        Navigation

        Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

        Unexpected indentation.

        diff --git a/v5.4.x/kmltools_module.html b/v5.4.x/kmltools_module.html index f14f0d7c3..450e5c564 100644 --- a/v5.4.x/kmltools_module.html +++ b/v5.4.x/kmltools_module.html @@ -110,6 +110,7 @@

        Navigation

      • topo2kml - create a kml outline for each topo grid specified in setrun

      • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

      • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

      • +
      • fgout2kml - create a kml outline for each fgout grid specified in setrun

      • make_input_data_kmls - make kml files for many things specified in setrun

      • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

      • png2kml - create kml file wrapping a png figure to be viewed on GE

      • @@ -189,6 +190,28 @@

        Navigation

        +
        +
        +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
        +

        Create a KML box for each fgout grid specified for a GeoClaw run.

        +
        +
        Inputs
        +
          +
        • rundata - an object of class ClawRunData or None

          +

          If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

          +
        • +
        • fname (str) - resulting kml file.

        • +
        • verbose (bool) - If True, print out info about each region found

        • +
        • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

        • +
        +
        +
        +
        +
        clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
        @@ -336,7 +359,7 @@

        Navigation

        Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

        Unexpected indentation.

        @@ -344,7 +367,7 @@

        Navigation

        dpi * y_inches = dcp * y_cells

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

        Block quote ends without a blank line; unexpected unindent.

        where x_cells, y_cells are the number of cells in each direction.

        @@ -354,14 +377,14 @@

        Navigation

        annotate the figure befor saving it as a png file, which should then be done with:

        -

        System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

        +

        System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

        Unexpected indentation.

        plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

        Block quote ends without a blank line; unexpected unindent.

        The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

        Field list ends without a blank line; unexpected unindent.

        If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.4.x/objects.inv b/v5.4.x/objects.inv index 5797d0ce0..121f85a40 100644 Binary files a/v5.4.x/objects.inv and b/v5.4.x/objects.inv differ diff --git a/v5.4.x/py-modindex.html b/v5.4.x/py-modindex.html index 214a25e42..fdb9312d9 100644 --- a/v5.4.x/py-modindex.html +++ b/v5.4.x/py-modindex.html @@ -114,6 +114,31 @@

        Python Module Index

            clawpack.geoclaw.util + + +     + clawpack.riemann.acoustics_1D_py + + + +     + clawpack.riemann.advection_1D_py + + + +     + clawpack.riemann.burgers_1D_py + + + +     + clawpack.riemann.euler_1D_py + + + +     + clawpack.riemann.shallow_1D_py +   p diff --git a/v5.4.x/pyclaw/examples.html b/v5.4.x/pyclaw/examples.html index 6831aff57..6a11b7e12 100644 --- a/v5.4.x/pyclaw/examples.html +++ b/v5.4.x/pyclaw/examples.html @@ -136,47 +136,47 @@

        From the command lineList of built-in examples

        You can see results from many of the examples in the galleries.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*adv*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*acoust*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*burg*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*shallow*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*blast*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*shock*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*psystem*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*Rossby*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree glob pattern ‘gallery/*dam*’ didn’t match any documents

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/kpp’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/examples.rst, line 63)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/stegoton’

        diff --git a/v5.4.x/pyclaw/geometry.html b/v5.4.x/pyclaw/geometry.html index 505bee756..b0f6c61b6 100644 --- a/v5.4.x/pyclaw/geometry.html +++ b/v5.4.x/pyclaw/geometry.html @@ -619,10 +619,120 @@

        Parallel Geometry Objects

        -

        petclaw.geometry.Domain

        +

        petclaw.geometry.Domain

        +
        +
        +class petclaw.geometry.Domain(geom)
        +

        Bases: clawpack.pyclaw.geometry.Domain

        +

        Parallel Domain Class

        +

        Parent Class Documentation:

        +

        2D Classic (Clawpack) solver.

        +

        Solve using the wave propagation algorithms of Randy LeVeque’s +Clawpack code (www.clawpack.org).

        +

        In addition to the attributes of ClawSolver1D, ClawSolver2D +also has the following options:

        +
        +
        +dimensional_split
        +

        If True, use dimensional splitting (Godunov splitting). +Dimensional splitting with Strang splitting is not supported +at present but could easily be enabled if necessary. +If False, use unsplit Clawpack algorithms, possibly including +transverse Riemann solves.

        +
        + +
        +
        +transverse_waves
        +

        If dimensional_split is True, this option has no effect. If +dimensional_split is False, then transverse_waves should be one of +the following values:

        +

        ClawSolver2D.no_trans: Transverse Riemann solver +not used. The stable CFL for this algorithm is 0.5. Not recommended.

        +

        ClawSolver2D.trans_inc: Transverse increment waves are computed +and propagated.

        +

        ClawSolver2D.trans_cor: Transverse increment waves and transverse +correction waves are computed and propagated.

        +
        + +

        Note that only the fortran routines are supported for now in 2D.

        +

        Parent Class Documentation:

        +

        Generic classic Clawpack solver

        +

        All Clawpack solvers inherit from this base class.

        +
        +
        +mthlim
        +

        Limiter(s) to be used. Specified either as one value or a list. +If one value, the specified limiter is used for all wave families. +If a list, the specified values indicate which limiter to apply to +each wave family. Take a look at pyclaw.limiters.tvd for an enumeration. +Default = limiters.tvd.minmod

        +
        + +
        +
        +order
        +

        Order of the solver, either 1 for first order (i.e., Godunov’s method) +or 2 for second order (Lax-Wendroff-LeVeque). +Default = 2

        +
        + +
        +
        +source_split
        +

        Which source splitting method to use: 1 for first +order Godunov splitting and 2 for second order Strang splitting. +Default = 1

        +
        + +
        +
        +fwave
        +

        Whether to split the flux jump (rather than the jump in Q) into waves; +requires that the Riemann solver performs the splitting. +Default = False

        +
        + +
        +
        +step_source
        +

        Handle for function that evaluates the source term. +The required signature for this function is:

        +

        def step_source(solver,state,dt)

        +
        + +
        +
        +kernel_language
        +

        Specifies whether to use wrapped Fortran routines (‘Fortran’) +or pure Python (‘Python’). Default = 'Fortran'.

        +
        + +
        +
        +verbosity
        +

        The level of detail of logged messages from the Fortran solver. +Default = 0.

        +
        + +
        +
        -

        petclaw.geometry.Patch

        +

        petclaw.geometry.Patch

        +
        +
        +class petclaw.geometry.Patch(dimensions)
        +

        Bases: clawpack.pyclaw.geometry.Patch

        +

        Parallel Patch class.

        +

        Parent Class Documentation:

        +
        +
        Global Patch information
        +

        Each patch has a value for level and patch_index.

        +
        +
        +
        +

        diff --git a/v5.4.x/pyclaw/index.html b/v5.4.x/pyclaw/index.html index 511e45c69..d0a424e32 100644 --- a/v5.4.x/pyclaw/index.html +++ b/v5.4.x/pyclaw/index.html @@ -114,11 +114,11 @@

        Navigation

        PyClaw Documentation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/index.rst, line 39)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/index.rst, line 39)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/gallery_all’

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/index.rst, line 39)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/pyclaw/index.rst, line 39)

        toctree contains reference to nonexisting document ‘pyclaw/gallery/how-to-build’

        diff --git a/v5.4.x/pyclaw/rp.html b/v5.4.x/pyclaw/rp.html index 63ff2cad6..0e7321daa 100644 --- a/v5.4.x/pyclaw/rp.html +++ b/v5.4.x/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/v5.4.x/pyclaw/solution.html b/v5.4.x/pyclaw/solution.html index 030d9d3ab..2587a614b 100644 --- a/v5.4.x/pyclaw/solution.html +++ b/v5.4.x/pyclaw/solution.html @@ -116,10 +116,10 @@

        Navigation

        petclaw.state.State

        pyclaw.geometry.Domain

        -

        petclaw.geometry.Domain

        +

        petclaw.geometry.Domain

        pyclaw.geometry.Patch

        -

        petclaw.geometry.Patch

        +

        petclaw.geometry.Patch

        pyclaw.geometry.Grid

        @@ -215,7 +215,7 @@

        Navigation

        -read(frame, path='./_output', file_format='ascii', file_prefix=None, read_aux=True, options={}, **kargs)
        +read(frame, path='./_output', file_format=None, file_prefix='fort', read_aux=True, options={}, **kargs)

        Reads in a Solution object from a file

        Reads in and initializes this Solution with the data specified. This function will raise an IOError if it was unsuccessful.

        @@ -234,7 +234,8 @@

        Navigation

      • path - (string) Base path to the files to be read. default = './_output'

      • file_format - (string) Format of the file, should match on of the -modules inside of the io package. default = 'ascii'

      • +modules inside of the io package. default = None +but now attempts to read from header file (as of v5.9.0).

      • file_prefix - (string) Name prefix in front of all the files, defaults to whatever the format defaults to, e.g. fort for ascii

      • options - (dict) Dictionary of optional arguments dependent on diff --git a/v5.4.x/pyclaw/state.html b/v5.4.x/pyclaw/state.html index 903b91eeb..6016bd278 100644 --- a/v5.4.x/pyclaw/state.html +++ b/v5.4.x/pyclaw/state.html @@ -92,7 +92,7 @@

        Navigation

        object also handles some of the parallel communication required of the state on the given patch such that only the parts of the fields local to the process. If you are interested in the geometry of the local state you can find it through the -Patch object’s reference to its own +Patch object’s reference to its own Grid.

        Serial pyclaw.state.State

        diff --git a/v5.4.x/python_path.html b/v5.4.x/python_path.html index 34fcf53ec..d53970770 100644 --- a/v5.4.x/python_path.html +++ b/v5.4.x/python_path.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/python_path.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/python_path.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/qinit_defaults.html b/v5.4.x/qinit_defaults.html index aac0469a7..a0d127bfd 100644 --- a/v5.4.x/qinit_defaults.html +++ b/v5.4.x/qinit_defaults.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        @@ -86,17 +86,17 @@

        Navigation

        the initial conditions as desired.

        $CLAW/classic/src/1d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/2d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/3d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

        @@ -107,7 +107,7 @@

        Navigation

        qinit data file parameters.

        $CLAW/geoclaw/src/2d/shallow/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/qinit_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

        diff --git a/v5.4.x/release_5_0_0.html b/v5.4.x/release_5_0_0.html index caf2608ab..1ee9872b2 100644 --- a/v5.4.x/release_5_0_0.html +++ b/v5.4.x/release_5_0_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_0_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_0_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_1_0.html b/v5.4.x/release_5_1_0.html index f786470dc..eec2b2ddf 100644 --- a/v5.4.x/release_5_1_0.html +++ b/v5.4.x/release_5_1_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_1_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_1_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_2_0.html b/v5.4.x/release_5_2_0.html index 1f90db9f4..2ede60668 100644 --- a/v5.4.x/release_5_2_0.html +++ b/v5.4.x/release_5_2_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_2_1.html b/v5.4.x/release_5_2_1.html index 70ab48558..a6951a42c 100644 --- a/v5.4.x/release_5_2_1.html +++ b/v5.4.x/release_5_2_1.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_1.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_1.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_2_2.html b/v5.4.x/release_5_2_2.html index 0d859a9e8..042cd343a 100644 --- a/v5.4.x/release_5_2_2.html +++ b/v5.4.x/release_5_2_2.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_2.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_2_2.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_3_0.html b/v5.4.x/release_5_3_0.html index 0e583777f..9b8e04079 100644 --- a/v5.4.x/release_5_3_0.html +++ b/v5.4.x/release_5_3_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_3_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_3_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/release_5_3_1.html b/v5.4.x/release_5_3_1.html index e9a3a63f1..85a052754 100644 --- a/v5.4.x/release_5_3_1.html +++ b/v5.4.x/release_5_3_1.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_3_1.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/release_5_3_1.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.4.x/searchindex.js b/v5.4.x/searchindex.js index ff77dc190..c1fabf628 100644 --- a/v5.4.x/searchindex.js +++ b/v5.4.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","howto_doc","howto_release","installing","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[52,1,0,"-"],topotools:[131,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[52,3,1,""],deg2dms:[52,3,1,""],dtopo2kml:[52,3,1,""],f2s:[52,3,1,""],fgmax2kml:[52,3,1,""],gauges2kml:[52,3,1,""],kml_build_colorbar:[52,3,1,""],kml_cb:[52,3,1,""],kml_png:[52,3,1,""],kml_timespan:[52,3,1,""],line2kml:[52,3,1,""],make_input_data_kmls:[52,3,1,""],pcolorcells_for_kml:[52,3,1,""],png2kml:[52,3,1,""],poly2kml:[52,3,1,""],quad2kml:[52,3,1,""],regions2kml:[52,3,1,""],topo2kml:[52,3,1,""],topo2kmz:[52,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[131,0,1,""],create_topo_func:[131,3,1,""],determine_topo_type:[131,3,1,""],fetch_topo_url:[131,3,1,""],get_topo:[131,3,1,""],read_netcdf:[131,3,1,""],swapheader:[131,3,1,""],topo1writer:[131,3,1,""],topo2writer:[131,3,1,""],topo3writer:[131,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[131,2,1,""],Y:[131,2,1,""],Z:[131,2,1,""],crop:[131,2,1,""],delta:[131,2,1,""],extent:[131,2,1,""],generate_2d_coordinates:[131,2,1,""],generate_2d_topo:[131,2,1,""],in_poly:[131,2,1,""],interp_unstructured:[131,2,1,""],make_shoreline_xy:[131,2,1,""],plot:[131,2,1,""],read:[131,2,1,""],read_header:[131,2,1,""],replace_no_data_values:[131,2,1,""],replace_values:[131,2,1,""],set_xyZ:[131,2,1,""],smooth_data:[131,2,1,""],write:[131,2,1,""],x:[131,2,1,""],y:[131,2,1,""],z:[131,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[91,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[91,4,1,""],kernel_language:[91,4,1,""],mthlim:[91,4,1,""],order:[91,4,1,""],setup:[91,2,1,""],source_split:[91,4,1,""],step:[91,2,1,""],step_hyperbolic:[91,2,1,""],step_source:[91,4,1,""],verbosity:[91,4,1,""]},"petclaw.state":{State:[93,0,1,""]},"petclaw.state.State":{F:[93,2,1,""],aux:[93,2,1,""],fset:[93,2,1,""],gauge_data:[93,4,1,""],get_aux_global:[93,2,1,""],get_auxbc_from_aux:[93,2,1,""],get_q_global:[93,2,1,""],get_qbc_from_q:[93,2,1,""],keep_gauges:[93,4,1,""],mF:[93,2,1,""],mp:[93,2,1,""],num_aux:[93,2,1,""],num_eqn:[93,2,1,""],p:[93,2,1,""],problem_data:[93,4,1,""],q:[93,2,1,""],set_num_ghost:[93,2,1,""],t:[93,4,1,""]},"pyclaw.controller":{Controller:[78,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[78,4,1,""],F_path:[78,2,1,""],check_validity:[78,2,1,""],compute_F:[78,4,1,""],compute_p:[78,4,1,""],file_prefix_p:[78,4,1,""],frames:[78,4,1,""],keep_copy:[78,4,1,""],nstepout:[78,4,1,""],num_output_times:[78,4,1,""],out_times:[78,4,1,""],outdir:[78,4,1,""],outdir_p:[78,2,1,""],output_file_prefix:[78,4,1,""],output_format:[78,4,1,""],output_options:[78,4,1,""],output_style:[78,4,1,""],overwrite:[78,4,1,""],plot:[78,2,1,""],plotdata:[78,4,1,""],run:[78,2,1,""],rundir:[78,4,1,""],runmake:[78,4,1,""],savecode:[78,4,1,""],solver:[78,4,1,""],tfinal:[78,4,1,""],verbosity:[78,2,1,""],viewable_attributes:[78,4,1,""],write_aux_always:[78,4,1,""],write_aux_init:[78,4,1,""],xclawcmd:[78,4,1,""],xclawerr:[78,4,1,""],xclawout:[78,4,1,""],xdir:[78,4,1,""]},"pyclaw.geometry":{Dimension:[81,0,1,""],Domain:[81,0,1,""],Grid:[81,0,1,""],Patch:[81,0,1,""]},"pyclaw.geometry.Dimension":{centers:[81,2,1,""],centers_with_ghost:[81,2,1,""],delta:[81,2,1,""],nodes:[81,2,1,""],nodes_with_ghost:[81,2,1,""]},"pyclaw.geometry.Domain":{grid:[81,2,1,""],num_dim:[81,2,1,""],patch:[81,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[81,2,1,""],add_gauges:[81,2,1,""],c_center:[81,2,1,""],c_centers:[81,2,1,""],c_centers_with_ghost:[81,2,1,""],c_nodes:[81,2,1,""],c_nodes_with_ghost:[81,2,1,""],dimensions:[81,2,1,""],gauge_dir_name:[81,4,1,""],gauge_file_names:[81,4,1,""],gauge_files:[81,4,1,""],gauges:[81,4,1,""],get_dim_attribute:[81,2,1,""],num_dim:[81,2,1,""],p_center:[81,2,1,""],p_centers:[81,2,1,""],p_nodes:[81,2,1,""],plot:[81,2,1,""],setup_gauge_files:[81,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[81,2,1,""],delta:[81,2,1,""],dimensions:[81,2,1,""],get_dim_attribute:[81,2,1,""],level:[81,4,1,""],lower_global:[81,2,1,""],name:[81,2,1,""],num_cells_global:[81,2,1,""],num_dim:[81,2,1,""],patch_index:[81,4,1,""],upper_global:[81,2,1,""]},"pyclaw.limiters":{tvd:[79,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[79,3,1,""],beta_limiter:[79,3,1,""],cada_torrilhon_limiter:[79,3,1,""],cada_torrilhon_limiter_nonlinear:[79,3,1,""],cfl_superbee:[79,3,1,""],cfl_superbee_theta:[79,3,1,""],hyperbee_limiter:[79,3,1,""],limit:[79,3,1,""],mc_limiter:[79,3,1,""],minmod_limiter:[79,3,1,""],superbee_limiter:[79,3,1,""],superpower_limiter:[79,3,1,""],theta_limiter:[79,3,1,""],upper_bound_limiter:[79,3,1,""],van_leer_klein_sharpening_limiter:[79,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[91,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[91,2,1,""],aux_time_dep:[91,4,1,""],call_before_step_each_stage:[91,4,1,""],cfl_desired:[91,4,1,""],cfl_max:[91,4,1,""],char_decomp:[91,4,1,""],check_3rd_ord_cond:[91,2,1,""],dq:[91,2,1,""],dq_src:[91,4,1,""],dqdt:[91,2,1,""],fwave:[91,4,1,""],get_dt_new:[91,2,1,""],kernel_language:[91,4,1,""],lim_type:[91,4,1,""],num_ghost:[91,4,1,""],setup:[91,2,1,""],step:[91,2,1,""],tfluct:[91,4,1,""],tfluct_solver:[91,4,1,""],time_integrator:[91,4,1,""],update_saved_values:[91,2,1,""],weno_order:[91,4,1,""]},"pyclaw.solution":{Solution:[90,0,1,""]},"pyclaw.solution.Solution":{is_valid:[90,2,1,""],patch:[90,2,1,""],plot:[90,2,1,""],read:[90,2,1,""],set_all_states:[90,2,1,""],start_frame:[90,2,1,""],state:[90,2,1,""],write:[90,2,1,""]},"pyclaw.state":{State:[93,0,1,""]},"pyclaw.state.State":{F:[93,4,1,""],gauge_data:[93,4,1,""],get_aux_global:[93,2,1,""],get_auxbc_from_aux:[93,2,1,""],get_q_global:[93,2,1,""],get_qbc_from_q:[93,2,1,""],is_valid:[93,2,1,""],keep_gauges:[93,4,1,""],mF:[93,2,1,""],mp:[93,2,1,""],num_aux:[93,2,1,""],num_eqn:[93,2,1,""],p:[93,4,1,""],problem_data:[93,4,1,""],set_aux_from_auxbc:[93,2,1,""],set_cparam:[93,2,1,""],set_num_ghost:[93,2,1,""],set_q_from_qbc:[93,2,1,""],t:[93,4,1,""]},"pyclaw.util":{FrameCounter:[96,0,1,""],VerifyError:[96,5,1,""],add_parent_doc:[96,3,1,""],check_diff:[96,3,1,""],compile_library:[96,3,1,""],construct_function_handle:[96,3,1,""],convert_fort_double_to_float:[96,3,1,""],gen_variants:[96,3,1,""],read_data_line:[96,3,1,""],run_app_from_main:[96,3,1,""],run_serialized:[96,3,1,""],test_app:[96,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[96,2,1,""],increment:[96,2,1,""],reset_counter:[96,2,1,""],set_counter:[96,2,1,""]},pyclaw:{util:[96,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":63,"000000e":120,"00000e":120,"0000ff":[3,52],"001000e":120,"00er2592":4,"00ff00":52,"00ffff":52,"01er25474":4,"020204mag_polici":29,"04d":135,"0d0":96,"1200x1680":47,"1440l":47,"1440p":47,"15e":131,"16m":62,"17th":91,"1_contain":28,"1_dockerimag":28,"1d_plot":[40,68,70,117],"1drad":134,"1rc":49,"1st":[79,91,118,120,122,134],"2013it":15,"25000000e":63,"260e":128,"27t06":52,"27t07":52,"288e":128,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[83,88,91,118,120,122,134],"301e":128,"30x30":47,"360x360":47,"373e":128,"3rd":[88,91],"40000000e":63,"4th":91,"5_x_x":49,"5d0":134,"5e3":121,"5r01ar53652":4,"639s":[34,127],"8888ff":52,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,84,118,119],"break":[27,29,44,47,52,102,109,121,131],"case":[5,7,12,14,18,21,29,31,37,40,44,47,51,52,55,58,68,75,81,86,88,90,96,98,101,102,105,108,109,110,111,112,114,121,129,131,132,134,137],"catch":[36,83],"class":[0,1,2,3,24,29,31,47,52,68,70,76,81,83,88,90,91,93,95,96,97,112,117,118,119,120,122,131],"default":[0,1,2,3,12,21,27,29,31,37,40,43,45,46,47,52,54,55,58,62,68,70,75,78,80,81,85,86,87,90,91,93,94,96,101,104,110,112,114,119,120,121,129,131,134],"export":[37,47,48,51,58,62,86,94,116],"final":[29,37,48,58,75,78,85,95,104,112,118,120,122,131],"float":[3,29,31,40,43,52,78,81,93,96,118,119,121,122,131],"function":[0,1,2,3,6,13,15,21,22,24,26,27,29,31,40,41,46,47,54,55,56,59,61,67,68,69,75,76,78,79,80,82,87,88,89,90,93,96,101,102,104,105,108,109,110,111,113,115,117,118,119,120,121,122,129,130,131,132,134],"import":[0,3,21,27,35,40,44,47,50,51,52,55,56,64,68,70,75,76,78,80,81,83,85,86,87,88,90,91,92,93,95,97,102,110,113,114,118,119,120,121,122,129,131,133,135],"int":[1,2,3,29,52,78,79,81,84,85,90,93,118,119,121,131],"long":[27,29,43,44,47,60,109,131],"new":[1,2,4,5,7,12,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,51,52,54,55,56,58,62,68,70,71,74,75,76,77,78,84,86,88,91,93,101,104,107,108,109,110,111,112,113,116,118,119,121,129,131,134],"ond\u0159ej":4,"public":[4,12,20],"return":[0,1,2,3,29,35,43,47,52,55,58,68,70,78,79,81,85,88,89,90,91,93,96,102,111,113,118,120,122,127,131,134,137],"short":[44,79,88],"static":29,"super":[22,27,131],"switch":[31,47,51,88,98,102,111,114,133],"throw":27,"true":[0,1,2,3,5,13,14,26,29,40,43,46,47,48,52,67,75,78,81,85,86,90,91,93,101,110,112,113,115,118,119,120,121,122,131],"try":[1,27,33,34,35,40,47,51,52,68,77,80,84,90,92,94,95,96,97,98,102,118,127,129,131,132],"var":[0,3,12,13,26,99,115,125,126],"while":[12,14,47,58,68,70,76,81,85,86,91,96,113,121,133],AND:[53,73],ARE:[53,73],AWS:12,Added:[79,104,106,108,109,111],Adding:[24,74,82],And:[5,19,48],Are:103,Axes:117,BCs:[120,122],BUT:[53,73],But:[12,47,48,68,94,105],CMS:4,DAs:93,DMS:4,DNS:12,EBS:12,FOR:[53,73],For:[0,1,2,3,6,7,8,9,12,13,14,16,17,18,21,25,26,27,29,31,33,35,37,40,43,44,45,47,48,49,51,54,55,58,59,61,62,67,68,70,71,75,76,80,81,83,84,85,86,88,91,92,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,117,118,119,120,121,122,124,125,126,128,129,131,133,134,137],GIS:[47,110,129],Going:[12,24,83],Into:97,NOT:[52,53,68,73],Not:[29,47,110],OPS:43,One:[22,24,25,29,47,58,76,96,101,108,131],Res:15,SUCH:[53,73],Such:58,Sys:15,THE:[53,73],That:[33,35,95],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,50,51,52,53,54,55,56,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,81,83,85,86,88,89,90,91,92,93,94,96,98,101,102,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,134,135,136,137],Their:73,Then:[12,14,27,28,29,40,48,49,50,55,62,70,75,78,86,92,93,94,113,131,132],There:[3,5,12,21,28,31,34,36,47,54,63,70,85,92,111,117,118,127,134,136],These:[1,4,11,14,17,22,27,29,31,38,40,44,47,48,51,52,55,58,68,70,75,80,85,87,93,95,98,99,100,101,102,104,110,111,112,119,123,129,133,137],USE:[53,73],Use:[29,47,83,91,118,120,122,131],Useful:[1,3,118],Uses:[29,131],Using:[0,1,2,3,6,21,37,38,47,66,67,68,70,81,82,83,116,118,125,126,128,131,132,137],WCS:133,Will:90,With:[5,21,27,40,45,47,64,97,101,109,113,118],__________________o:131,__file__:98,__future__:110,__init__:[88,98],__main__:[120,122],__name__:[120,122],_build:48,_compute_c_cent:81,_compute_c_nod:81,_compute_p_cent:81,_compute_p_nod:81,_googleearth:47,_outdir:85,_output2:[68,70],_output:[12,33,34,40,46,58,68,70,80,85,87,90,109,132],_output_from_previous_run:40,_output_new:102,_output_old:102,_plot:[12,33,34,40,58,70,117,123],_plotindex:[1,40],_plots_new:102,_plots_old:102,_ptwise:113,_pyclaw_io:78,a351:[15,83],a377:[15,83],aabbggrr:52,abdullah:73,abil:[37,108,110,131],abl:[12,50,98],abort:54,about:[3,6,12,14,21,24,33,34,36,43,44,52,54,56,58,63,69,71,75,83,86,91,102,109,113,116,117,120,121,132,134,137],aboutu:29,abov:[3,12,14,19,27,28,31,33,34,36,37,40,44,47,48,49,50,51,53,55,61,63,68,71,73,76,85,87,92,95,96,97,101,110,113,116,117,118,120,121,122,128,129,131,134],abs:[29,88,96,131],absolut:[85,102,119,120],absolute_import:110,abstol:96,academ:[94,97],accept:[40,75,85,91,118],accept_reject_step:91,access:[0,15,26,51,80,81,83,91,93,96],accid:27,accident:[27,68],accompani:20,accomplish:54,accord:5,accordingli:[47,129],account:[12,23,27,77,86],accumul:[40,110,112],accur:[44,61,83,91,118,134,137],accuraci:[40,56,64,120,122],achiev:[19,76,125,126],acou:68,acoust:[14,33,34,44,74,75,78,80,83,91,92,108,113,120,134],acoustics1dheterogeneoustest:[34,127],acoustics3dheterogeneoustest:[34,127],acoustics_1d:[75,95],acoustics_1d_example1:[33,34,60],acoustics_1d_heterogen:[34,127,134],acoustics_1d_homogen:[80,102],acoustics_2d:91,acoustics_2d_radi:[120,134],acoustics_3d_heterogen:[34,127],acoustics_3d_vari:102,acquaint:95,acquir:68,across:[110,129,131],acsza1:29,acszb1:29,act:[79,131],acta:15,actanum2011:15,action:[12,76],activ:[31,32,91,121],actual:[5,26,29,52,58,61,68,79,96,98,114,121],adapt:[4,6,15,29,58,64,75,113,117,118,134],add:[0,10,12,14,15,26,27,29,31,40,43,47,48,49,51,55,58,59,67,75,80,81,85,86,88,96,105,108,110,111,122,129,131,135],add_colorbar:[29,131],add_colormap:109,add_dimens:81,add_gaug:[81,85],add_label:40,add_param:[120,122],add_parent_doc:96,add_titl:68,add_true_solut:68,added:[3,14,19,21,27,31,32,43,49,51,52,56,58,68,81,85,98,101,104,105,107,108,109,110,111,112,118,119,128,130,131,135],addgaug:40,adding:[21,26,27,31,37,40,52,61,86,99,109,111],addit:[6,12,14,22,27,28,31,34,35,41,42,52,61,63,64,68,69,76,79,83,85,91,92,93,101,108,110,111,113,118,122,128,129,134,135],addition:86,address:[47,48,50,110],adequ:44,adjac:[5,14,31,41,101,118],adjust:[12,19,31,48,52,81,85,114,118,134],adopt:[29,91],adv:[15,80],advanc:[5,15,62,95,109,118,134],advantag:[67,102],advect:[15,68,83,86,113,122,134],advection2dannulustest:[34,127],advection_1d_example1:55,advection_2d_annulu:[34,127],advection_2d_inflow:108,advection_2d_swirl:134,advection_3d_swirl:[108,128],advis:[32,50,53,73],affect:[21,54,110,111,118,132],afosr:4,after:[0,1,3,5,12,18,22,26,27,28,31,33,34,40,44,48,49,52,54,55,58,59,63,68,76,77,78,80,85,91,93,98,102,104,108,109,118,119,120,122,134],afterax:[0,26,40,47,68],afterfram:[1,26,67],aftergrid:58,afteritem:[3,26],afterpatch:[3,26],again:[21,36,54,68,70,75,76,85,89,94,98,129,132],against:[96,102,109,127],agenc:[4,50,51],agre:[11,27,113,128,131,134],agreement:44,ahmadia:[4,15,73,83],aht:114,aid:76,aim:27,albada:79,alg:120,alghamdi:[4,15,73,83],algorithm:[4,6,24,31,75,83,91,95,101,113,118,120,122,131],align:[31,47,52,121],all:[0,1,4,5,10,12,14,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,48,49,50,52,53,54,55,58,60,62,63,64,67,68,70,71,73,75,78,79,81,85,86,88,89,90,91,93,96,97,98,100,101,102,104,105,108,109,110,112,113,117,118,120,121,122,123,127,128,129,131,133,134],alloc:[19,91,108],allocat:108,allot:52,allow:[4,5,12,21,26,27,28,31,40,41,43,46,47,48,51,56,58,62,64,67,68,78,84,85,91,93,96,97,98,102,104,105,108,109,110,111,113,118,120,121,122,123,129,131],almost:97,alon:[14,47],along:[5,14,26,29,31,40,47,59,61,101,108,112,121,133],alpha:[47,49,91],alphabet:73,alreadi:[0,1,5,12,27,37,49,50,51,52,70,71,86,90,92,95,97,105,131],also:[3,4,5,6,7,8,10,14,15,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,54,55,58,59,61,62,63,64,67,68,70,72,75,77,78,81,83,85,86,88,90,91,92,93,94,95,96,97,98,99,100,101,102,104,109,110,111,112,113,114,116,118,120,121,122,123,125,126,127,128,129,131,132,133,134,136,137],alter:47,altern:[29,31,33,34,40,43,47,50,54,58,67,86,97,98,108,109,110],although:[29,47,55,58,87,88,90,131],alwai:[14,21,25,26,27,31,37,51,58,75,100,101,104,105,120,121,122,129,134],amal:[4,15,73,83],amazon:24,amazonaw:12,amdq:[89,113],ami:24,amount:[40,44,48],amplitud:110,amr:[4,6,7,14,19,22,24,26,27,31,32,40,41,52,58,63,64,67,73,81,109,111,117,118,120,122,128,129,134],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:109,amr_level:63,amr_level_max:120,amr_levels_max:[31,101,119,120],amr_modul:[62,108],amrclaw:[4,5,11,13,14,18,19,21,22,23,27,34,37,40,41,42,49,50,51,58,59,62,63,64,92,99,101,102,112,113,115,116,118,121,125,126,127,128],amrclaw_advection_2d_squar:6,amrdata:[21,101,119,120,121],amrlib:108,amrnez:101,an11:48,anaconda:[47,71,92,97],anal:15,analog:[118,119],andi:4,angl:[14,29,43,61],ani:[3,4,5,7,12,14,18,19,21,26,27,31,33,34,35,41,44,46,47,48,49,51,53,54,56,58,60,62,63,64,68,73,79,80,81,83,85,86,88,90,92,96,100,101,102,108,112,114,116,117,118,119,121,134,137],anim:[14,47,108,123],anisotrop:[5,21],anl:86,annot:[26,52],annual:23,anoth:[3,21,40,47,50,51,52,63,67,71,80,91,94,102,134],answer:23,anyth:[3,5,27,50,51,55,102],apach:12,apdq:[89,113],api:43,app:[11,12,17,22,25,27,28,31,38,100,107,111],appar:[29,62],appeal:47,appear:[0,1,3,7,12,17,22,31,40,41,47,48,52,54,57,68,85,90,93,110,121,123,129],append:[19,40,47,68,78,90,101,109,110,112,113,120],appl:15,appli:[3,4,5,12,14,24,29,44,47,56,61,68,70,79,91,101,112,118,121,134],applic:[4,5,13,14,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,49,51,55,59,62,70,80,81,82,85,91,96,99,100,101,102,104,107,108,110,111,113,115,118,121,125,126,129,131,134,135],appreci:73,approach:[6,12,27,40,48,50,51,60,67,76,86,88,96,101,108,110,111,113,117,121,134,137],appropri:[4,5,12,14,23,27,41,44,45,47,49,52,56,58,59,60,62,75,78,79,80,84,86,87,88,89,90,102,113,114,118,134,137],approv:44,approxim:[5,14,44,47,61],april:23,apt:[12,97],arbitrari:[31,52,91,104,121],arc:114,arcgi:131,architectur:86,archiv:[11,20,34,47,49,102,123,127,131,133],area:[13,21,91,110,115],arg:[81,90],argument:[0,1,2,3,26,29,43,46,47,68,75,76,80,81,84,88,90,91,93,96,102,113,117,118,119,131,134],argv:[120,122],aris:[53,73],arithmet:56,aron:[4,15,73,83],arora:79,arora_ro:79,around:[5,29,31,52,102,119,120,131,134],arrai:[0,3,5,13,19,21,26,29,31,40,43,45,52,68,75,76,78,79,81,83,84,85,88,89,90,91,93,95,96,97,104,105,106,110,113,115,118,119,120,121,122,131,134],arrang:131,arriv:[21,31,32,41,110,114],arrival_tol:31,articl:[4,15,83,123],artifici:14,asc:131,ascii:[40,58,75,78,85,90,110,112,118,120,122,129,135],ascii_output_format:59,ask:23,ask_us:131,aspect:[44,45,58,131],assembl:50,assert:[120,122],assess:[44,114],assign:[29,31,75,78,90],assist:[21,31],associ:[0,1,2,5,21,47,51,62,81,84,85,102],assum:[3,19,21,29,34,43,44,47,48,49,50,52,58,61,67,85,87,88,95,96,101,108,114,118,121,129,131,133,137],assumpt:47,astronom:114,aterrel:4,atmospher:4,attach:[49,93],attempt:[7,10,19,33,34,54,96,102,104,131,132],attirbut:21,attr:[81,90],attribut:[6,21,29,40,67,69,70,75,78,81,86,88,90,91,101,104,109,112,117,118,119,121,131],attributeerror:68,aug:15,august:23,austin:4,author:[15,24,41,44,79,83,100],auto:[0,40,76],autom:[76,102],automat:[0,2,3,7,10,14,29,33,34,37,47,49,54,67,68,70,75,80,84,86,92,93,94,96,102,104,118,119,121,129],autumn:23,aux1:31,aux1d:134,aux:[5,13,19,21,26,31,40,76,83,85,88,90,91,93,94,104,105,110,113,115,118,119,120,122,134],aux_bc_low:88,aux_bc_upp:88,aux_l:[89,113],aux_out_field:40,aux_r:[89,113],aux_time_dep:91,aux_typ:[119,120],auxbc:[88,91,93],auxiliari:[21,76,78,84,89,91,93,113,118,120,122,134],auxillari:90,auxl:113,auxr:113,auxtyp:120,avail:[0,4,9,14,21,22,23,39,40,42,44,47,50,51,54,58,67,69,70,75,78,83,84,85,87,89,91,94,95,96,97,98,111,113,114,118,120,121,123,129],averag:[4,5,13,15,41,44,45,58,93,105,113,115,129,131,134],avoid:[31,47,52,54,58,81,85,104,105,109,110,112,118,121,137],awai:[27,114],awar:[44,86],awr11:15,axes1:[2,70],axes:[0,1,2,26,29,40,47,58,67,68,70,117,131],axescmd:[0,70],axesnam:[1,70],axessubplot:29,axi:[0,29,45,47,58,68,81],azv:48,b0002:63,b4step1:[13,55,134],b4step2:[13,134],b4step3:13,b4stepn:134,back:[12,26,31,48,49,50,111],backend:47,background:[2,67,117],backward:[27,29,43,52,97,105,106,131],bad:102,bai:[114,133],balanc:[5,15,64,111,125,126],bale:15,balelevmitross02:[4,15,118,137],ball:131,band1:131,band:[47,131],bar:[12,48],barrier:96,base:[5,12,19,20,21,27,29,41,43,47,48,52,55,56,58,64,76,78,79,81,83,89,90,91,93,95,96,101,103,108,111,114,118,119,120,121,122,131,134,137],base_subfault:29,baselin:47,bash:[37,47,51,58,62,86,98,116],bash_profil:[94,116],bashrc:[12,37,94,116],basi:[40,58],basic:[5,9,11,24,29,33,35,41,58,75,81,83,85,91,102,137],bathymetri:[13,31,41,44,47,52,110,114,115,121,129,131],bc1:[55,96],bc1_inflow:55,bc2amr:14,bc_arrai:91,bc_lower:[14,75,88,95,118,120,122],bc_upper:[14,75,88,95,118,120,122],bcn:[5,14,122,134],bcnamr:[5,14,118,120,134],beam:79,bear:[29,43],bearing_unit:43,becaus:[21,26,31,47,85,86,104,113,114,118],becom:[44,94,137],been:[0,1,4,7,8,12,14,17,19,20,21,23,26,27,31,32,33,34,38,41,44,47,48,49,54,56,58,64,68,70,73,76,78,85,90,93,94,95,96,98,101,103,104,105,107,110,111,112,113,118,119,121,129,131,134],befor:[1,3,4,5,27,29,31,33,34,36,37,40,48,49,50,51,52,54,55,58,62,70,75,78,86,91,93,98,101,102,104,105,113,114,116,118,119,121,129,131,132],before_step:91,beforefram:[1,26],begin:[43,52,81,85,95],begin_d:43,behav:40,behavior:[48,101,102,109],behaviour:75,being:[1,3,4,7,12,40,44,70,78,89,90,91,96,98,101,109,111,113,118,129,132,134],believ:[44,110],belki:65,belong:[68,81,86,90,93],below:[3,5,12,13,14,17,21,23,29,31,47,48,49,50,51,52,56,58,61,70,73,75,77,85,95,97,98,99,101,102,105,106,107,108,109,110,111,113,115,117,118,119,120,121,122,125,126,129,131,134],benchmark:44,beowulf:50,berger:[4,5,15],bergercalhounhelzellevequ:14,bergercolella89:[5,15],bergergeorgelevequemandli11:[4,15],bergerleveque98:[4,5,6,15],bergeroliger84:[5,15],bergerrigoutsis91:[5,15],berkelei:[4,53,73],best:[3,14,21,25,27,37,47,49,54,60,62,67,68,88,100,101,102,113,121,124,129,134],beta:[43,79,91,122],beta_limit:79,better:[0,5,21,31,40,58,62,63,67,91,109,110,111,121,129],between:[3,4,5,12,14,22,27,29,30,43,47,49,52,58,61,62,64,67,78,81,85,91,93,94,96,101,109,110,113,114,118,119,120,121,122,123,128,129,131,133,134],bewar:131,beyond:[5,29],bgr:52,bibliographi:4,bibtex:4,big_earthquak:29,biggest:83,bilinear:[5,31,40,104,105,129],bin:86,binari:[37,49,50,53,59,73,85,87,109,112,118,120,131,135],bind:[27,47,67,76,86],bisect:[119,120],bit:[14,21,29,86,94],bitbucket:86,black:[3,40],blank:[3,52,98,99,103,104,105,106,107,108,109],blast:[80,111],bleed:50,blob:109,block:[6,29,52,61,63,64,75,93,96,102,134],blossei:4,blue:[3,10,40,52,68,131],boe:4,boisest:47,bomb:[54,62],book:[4,11,15,24,71,90,97],bool:[0,1,2,3,43,52,78,84,90,91,93,96,121,131],border:[58,134],bore:44,both:[3,14,27,29,33,34,40,44,48,55,58,63,76,84,85,86,91,92,101,102,108,109,113,118,120,122,125,129,134],bottom:[11,12,13,29,33,34,41,44,48,56,75,88,89,110,111,115,125,126,129],boulder:23,bound:[76,79,86,118,131],boundari:[6,19,24,47,52,55,62,76,81,89,91,95,105,108,118,120,122],boussinesq:44,bowl_radial_fgmax:31,box2kml:52,box:[29,47,52,131],branch:[17,28,37,46,48,49,51,102,111],brief:[4,49,121],briefli:137,bring:[12,47,48,58],brisa:4,brisadavi:4,broad:131,broken:[18,19,27,59,102],brought:27,brown:[73,131],brows:[10,23,28,38,47,58,123,134],browser:[12,27,28,33,34,47,48,123],bsd:[4,53,73],buffer:[29,40,101,109,110,119,120,131],buffer_length:131,buffer_s:29,bug:[4,7,21,23,31,37,47,56,62,68,73,107,108,109,110],build:[4,15,27,48,49,58,76,83,86,96,111],buildsystem:86,built:[27,56,64,74,83,86,88,90,101,102,125,126],bulk:[18,75,95,113,120,134],bull:[15,29],buoi:41,burg:80,burger:[83,113,134],busi:[53,73],butcher:91,button:[11,12,27,47,52,111],c210:[15,83],c231:[15,83],c_center:81,c_centers_with_ghost:81,c_node:81,c_nodes_with_ghost:81,cach:[21,43,70,73],cache_dir:43,cada:79,cada_torrilhon_limit:79,cada_torrilhon_limiter_nonlinear:79,cake:65,cal:[113,134,137],calcul:[3,5,26,29,41,43,58,68,81,91,105,110,131],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:15,calhoun:[4,15,47],calhounhelzellevequ:14,call:[1,5,8,19,21,26,29,37,40,46,47,55,58,63,68,70,75,76,78,79,84,85,88,90,91,93,95,96,102,104,108,109,111,113,116,118,120,121,122,131,134],call_before_step_each_stag:91,call_setplot:68,callabl:96,cambridg:15,camera:47,can:[0,2,3,4,5,6,7,8,10,11,12,14,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,54,55,56,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,79,80,81,84,85,86,87,88,90,91,92,93,94,95,96,97,98,101,102,104,105,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,127,129,131,132,133,134,135,137],cannot:51,canopi:92,capa:90,capa_index:[118,120,122],capab:131,capabilit:110,capabl:[6,11,21,31,32,44,64,76,104,109,110,131,133],capac:[13,115,118,119,120,122],captur:[44,129],care:[31,41,86],carefulli:[19,21,56],cartesian:[31,42,52,76,121],cascad:4,cast:131,caus:[21,44,47,48,53,54,70,73,94,102,109,110,111,117,119,131],caut:79,caution:[44,129],cautionari:[24,41,55,121],cautiou:44,caxi:58,cb_file:52,cb_filenam:52,cb_kwarg:131,cb_name:52,cb_xfrac:52,cb_yfrac:52,cbar:131,cdot:[56,88],cell:[3,4,6,7,13,14,19,21,26,31,40,41,47,52,58,62,63,64,75,81,86,89,91,93,95,101,104,105,109,110,111,113,114,115,118,119,120,121,122,128,129,134,137],celledg:3,celledges_show:[3,21],cellgridintegr:104,cellgridintegrate2:104,cellsiz:[108,129],center:[4,26,29,31,40,47,52,61,75,81,88,89,95,101,119,120,134],centerlin:29,centers_with_ghost:81,central:118,centroid:[29,61],certain:[31,41,85,101,109,118],certainli:[86,97],certik:[4,73],cf2py:76,cfl:[5,85,91,95,104,109,118,120,121,122],cfl_desir:[91,118,120,122],cfl_max:[91,118,120,122],cfl_superbe:79,cfl_superbee_theta:79,challeng:111,chanc:73,chang:[1,5,7,12,13,14,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,52,54,55,56,58,59,62,63,64,67,70,75,76,82,85,93,96,100,101,102,113,115,118,119,120,121,122,125,126,132,134],changelog:[16,17,21,103,104,105,106,107,108,109,110,111],changes_to_mast:49,chapter:[14,113,118,134],char_decomp:91,charact:43,characterist:91,charg:12,cheaper:12,check:[5,14,19,31,33,34,36,37,46,47,48,49,50,51,54,58,68,75,76,78,83,86,90,91,93,95,96,98,105,119,120,131,132,133,134],check_3rd_ord_cond:91,check_diff:[96,102],check_lmm_cond:91,check_valid:78,check_valu:[96,102],checkout:[27,48,49],checkpoint:[24,40,109,110,118,120,122],checkpt_interv:[118,120],checkpt_styl:[109,112,118,120],checkpt_tim:[118,120],chen:[29,133],chile2010:[47,100,104,107,129],chile2010_fgmax:31,chile2010a:100,chile2010b:100,chile:[41,52],chile_2010:47,chk00006:[120,122],chk00100:109,chk:109,chkaaaaa:109,chkbbbbb:109,chknnnnn:[112,118,120,122],choic:[14,41,67,91,118,120,121,122,134],choos:[0,6,52,88,118,121],chose:56,chosen:[3,47,95,101,114,119],chri:4,circl:[3,43,68],circular:15,cise:15,citat:4,cite:[24,50,72],cjvogl:4,clamshel:105,clarifi:21,clash:58,classic4:122,classic:[4,5,11,13,14,18,19,21,22,23,27,37,38,42,49,50,51,55,60,62,63,64,73,75,78,80,82,83,88,99,102,112,113,115,116,119,121,126,132,134],classic_1d:55,claw1:[55,96],claw1ez:55,claw:[5,7,10,11,12,13,14,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,48,49,50,51,52,54,55,58,60,61,62,69,75,78,80,83,85,86,92,94,98,99,100,101,102,104,105,107,108,111,113,115,120,121,122,124,125,126,127,128,129,131,132,134,135],claw_1dnoncon:137,claw_git_diff:[27,46,49],claw_git_statu:[27,46,49],claw_lib:59,claw_outdir:[54,68],claw_packag:91,claw_pkg:[118,119,120,121,122],claw_topo_download:131,claw_vers:51,clawdata2pyclaw:76,clawdata:[104,108,112,118,119,120,121,122],clawdev2013:48,clawgraph:58,clawpack:[1,4,5,6,10,14,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,51,52,53,55,58,60,62,66,67,68,69,70,71,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,90,93,94,95,97,98,100,102,103,104,105,106,107,108,109,110,112,113,116,118,119,120,123,124,127,129,130,131,132,134,135,137],clawpack_src:[51,98],clawplotax:[1,2,3,26,68,117],clawplotdata:[2,3,26,40,47,68,70,78,117],clawplotfigur:[0,1,47,68,117],clawplotitem:[0,1,6,21,26,67,69,109,117],clawrundata:[40,52,112,118,119,120,122],clawsolut:1,clawsolv:[91,113],clawsolver1d:[75,78,91,95,113],clawsolver2d:91,clawutil:[10,18,19,22,27,36,37,46,49,54,98,102,116,118,119,120,122,131,132],clawvi:49,clean:[21,49,96,108],cleaner:[27,110],cleanup:111,clear:[1,2,5,58,70],clearfigur:1,clearfram:[1,70],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,11,12,27,47,102,111],clint:15,clobber:109,clockwis:[31,43,61,131],clone:[11,17,22,23,38,48,49,50,51,71,72,86,92,100,116,132],close:[12,47,48,52,58,101,119],close_fig:52,closer:[61,120],cloud:12,cluster:[5,15,50,101,119,120],clustering_cutoff:[101,119,120],cmap:[47,52,68,131],cmap_slip:29,cmax:[47,52],cmax_dz:29,cmax_slip:29,cmin:[47,52],cmin_slip:29,cname:48,coars:[3,31,47,101,110,118,129,134],coarsen:[101,119,131],coarser:[3,14,110,118,119,134],coarsest:[5,47,63,104,112,118],coast:131,coastal:[44,114,121],coastlin:[31,47,121,133],code:[4,5,6,7,14,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,50,51,53,54,55,56,59,60,62,63,64,66,68,70,73,75,76,83,85,86,88,91,92,95,98,100,103,104,105,108,109,110,111,112,113,116,118,120,121,122,123,127,128,129,132],coeffici:[56,88,91,93,94,95,113,121],colella:[5,15],collabor:[47,123],collect:[11,24,25,27,29,31,61,67,75,91,123],collela:111,color:[3,29,47,52,58,67,117,131],colorbar:[3,52,131],colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,58,67,69,109,131],column:[9,29,31,40,44,85,108,131],column_list:29,column_map:29,com:[11,12,22,23,25,27,28,48,49,50,51,72,86,88,92,107,109,110,111],combin:[19,48,52,109,133],combinatori:102,come:[3,27,48,68,70,80,86,91,108,129,134],comfort:[51,88],comm_world:96,command:[0,1,2,3,10,12,27,28,36,46,47,49,50,51,54,60,67,68,71,75,76,78,86,87,91,95,96,97,98,102,113,116,117,118,119,129,131,132],commenc:112,comment:[10,23,45,49,111,112],commit:[29,46,48,49,102],common:[3,22,27,33,34,36,37,54,55,64,67,75,89,91,93,94,110,132,134],common_sourc:55,commonli:[3,58,68,70],commun:[24,47,73,93,96],comot:4,compact:129,compar:[21,34,40,44,47,49,68,85,101,102,114,119,121,127,133,137],compare_gaug:108,compat:[27,29,43,47,52,67,86,94,97,105,106,110,111,131],compens:131,compil:[12,24,33,34,36,42,51,55,62,64,70,71,76,83,88,92,96,104,113,116],compile_librari:96,complet:[19,21,27,43,54,70,75,76,86,96,97,102],complex:[11,81],compliant:37,complic:[14,68,76,117],compon:[3,14,19,21,24,31,34,40,50,51,58,63,67,88,90,92,93,101,108,118,119,120,129,134],compos:[29,75],comprehens:102,compress:[29,131],compris:[21,83,131],comput:[3,4,5,12,14,15,26,28,29,31,40,43,47,51,52,54,59,67,68,70,76,78,81,83,85,86,91,95,97,98,101,104,105,109,110,113,118,120,121,122,129,134,137],computation:[76,91],compute_f:[78,85],compute_gauge_valu:85,compute_p:[75,78],concern:[21,41],conclus:[4,47],conda:[47,71],condit:[6,19,24,53,55,64,73,74,75,76,78,85,91,99,104,105,108,114,118,120,121,122],conf:[48,49],confer:23,config:86,config_fc:132,configur:[68,75,86,131],confirm:44,conflict:[5,27,51,54,58,94],conform:[21,27,90,129],confus:[3,51,113],conjunct:101,conlict:54,connect:[31,48,52],consequenti:[53,73],conserv:[4,5,15,85,91,93,134,137],consid:[5,44,50,51,76,116,123,131],consider:[44,75],consist:[5,31,43,47,49,52,86,110,113,121,129,134],consol:[12,85],consolid:108,constant:[29,31,44,52,56,86,113,121,131,134],constant_storm_modul:108,constrain:101,constraint:[40,119,137],construc:52,construct:[21,29,75,81,96,129],construct_function_handl:96,constructor:93,consult:94,contact:[80,83,92],contain:[1,3,6,11,12,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,52,54,55,58,59,63,64,68,70,71,75,76,78,79,80,81,83,84,86,88,89,90,91,93,95,96,98,102,104,105,113,117,118,121,123,129,131,134],containing_rect:29,containt:112,contamin:118,contan:47,content:[47,76,134,135],context:[26,47,134],contigu:[63,93],contingu:21,continu:[12,21,27,29,45,50,73,113,118,137],contour:[3,29,40,47,58,97,117,131],contour_color:3,contour_kwarg:[3,131],contour_level:[3,131],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,67],contract:[53,73],contribut:[4,23,24,73,76,83,88,91,102],contributor:[4,23,53,83],control:[5,6,22,24,37,40,58,70,74,79,81,83,84,85,86,88,101,110,121],conveni:[1,26,33,34,40,47,70,78,80,83,85,87,95,134,137],convens:129,convent:[3,21,29,42,89,129],converg:67,convers:[18,24,76,101,129,133],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,52,54,61,76,88,96,118,119,129,133],convert_fort_double_to_float:96,convert_readm:10,convert_to_standard_unit:29,converttopotyp:129,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,63,67,75,81,85,86,95,101,121,131],coordinate_specif:29,coordinate_system:[13,115,121],coorind:131,copi:[5,13,14,33,34,40,47,48,49,51,58,75,78,88,93,99,100,101,105,109,115,123,125,126,129,134],copyq1:55,copyright:[53,73],core:[4,64,102],corioli:[44,121,125,126],coriolis_forc:[44,121],corner:[3,29,31,63,81,118,120,122,129,131],correct:[19,27,37,49,55,56,58,68,75,86,90,96,104,105,109,118,120,122],correctli:[27,31,76,82,108,121],correspond:[3,5,22,26,29,40,43,44,48,52,58,68,75,79,81,85,88,90,93,101,102,113,114,118,119,120,122,129,133,134],cos:[43,45,75,88],cosin:75,cost:[12,91],could:[12,26,31,33,34,40,51,62,68,70,75,81,85,93,94,97,98,108,119,120,121,122,129,131,134],council:4,count:75,count_from_zero:75,counter:[96,131],counterclockwis:61,coupl:[110,137],courant:[4,5,101,111,118,119,120,122],cours:[12,25,31,40,42,61,86,87,95,121,129],cover:[5,26,27,29,31,47,52,101,105,110,120,121,129],coverag:[83,102],covert:10,cparam:[75,93],cpu:[12,109,128],crash:[109,118],creat:[0,1,2,3,5,6,18,23,24,27,29,33,34,36,38,40,41,42,46,48,50,51,52,54,63,67,68,70,76,77,80,81,83,84,87,90,93,94,95,96,102,104,108,109,110,117,118,119,120,123,124,131,133,134,135],create_dtopo_xi:29,create_dtopographi:29,create_topo_func:131,creation:[68,83,104],criteria:[5,6,21,24,93],criterion:[31,101,120],critic:[47,85,113],crop:131,cross:27,crucial:[47,129],csdm:23,cse:23,csh:86,csv:29,csvfault:29,ctrl:[28,68],cube:58,current:[3,12,19,21,26,27,28,29,31,37,40,41,44,48,49,50,52,58,59,63,68,70,81,85,86,91,93,96,98,101,102,109,111,112,114,117,118,120,121,122,129,131,133],current_data:[0,3,24,40,67,68],curv:[3,40,67],custom:[0,12,14,19,21,24,55,58,64,67,76,82,88],custom_bc:88,customari:85,cut:119,cutoff:[5,120],cvs:47,cxx:86,cyber:15,cygwin:78,cython:86,dai:[5,12,47],dalcin:73,dam:[47,80],damag:[5,53,73],damian:50,damiansra:88,darker:47,darryl:15,dart:41,dash:[3,86],daspect:58,dat:29,data:[0,1,3,24,26,29,31,33,34,36,38,40,41,42,43,48,52,53,54,58,67,68,69,70,73,75,78,81,85,87,89,90,91,93,96,99,100,101,104,106,107,109,110,113,114,120,122,128,130,135],data_break:131,data_typ:96,databas:[12,29,96,129],datadir:109,dataset:[131,133],date:[27,36,43,47,48,49,50,54,68,132],date_tim:43,datetim:43,datum:[43,44,114,121,133],dave:29,davi:4,david:[4,15,73,83,91],dawson:15,daylight:52,dcp:52,deal:[29,44,67,85,86,93,131],dealt:31,debian:97,debug:[6,37,50,54,63,67,85,93,98,102,116,118,120],debugg:68,decid:[75,91],decim:[43,52],decis:47,declar:[19,21,93,134],decompos:[63,113,137],decomposit:118,decor:96,decoupl:48,decreas:40,deduc:129,deep:121,deep_depth:121,deeper:121,deepli:95,def:[0,1,3,40,47,68,75,85,88,91,120,122],default_tfluct:91,defenc:4,defin:[0,1,3,5,21,26,29,31,37,47,52,54,58,61,68,70,75,78,81,87,88,90,91,93,95,96,101,104,113,120,122,131,132,134,137],definit:[29,58,75,101,107],deform:[15,29,61,133],deg2dm:52,degre:[29,43,47,52,61],delet:[19,27],delimit:29,delin:121,delta:[79,81,88,91,113,131,134,137],delta_i:131,delta_limit:131,delta_x:131,dem:[52,131],demo:86,demonstr:[11,80,86],denot:[5,21,40,113,131],densiti:[78,85,93,95,119,120,134],depart:4,depdend:79,depend:[3,12,14,27,28,29,31,33,34,36,37,42,44,47,50,54,56,58,68,74,89,90,91,96,98,101,121,131,132,134,137],deprec:[6,29,32,108,121,131],depth:[4,14,15,21,29,31,40,41,44,56,61,67,69,114,121,129],deriv:[53,61,73,78,82,83,93,102],describ:[3,4,5,6,12,14,18,25,27,29,30,31,33,34,40,42,43,44,47,48,49,50,52,54,55,58,61,63,64,67,68,69,81,90,96,101,102,110,113,114,117,118,119,121,129,130,131,133,134,137],descript:[3,4,8,21,52,58,67,96,101,113,121,129,137],design:[4,26,27,47,73,75,95,114,133],desir:[0,1,2,3,5,6,14,21,24,25,29,31,38,40,49,51,52,66,67,68,70,75,76,78,85,90,91,99,110,116,118,120,122,129,131,132],desktop:86,destin:47,detail:[4,6,9,14,21,25,27,29,31,33,34,37,41,42,44,47,48,51,53,54,58,68,73,78,79,80,84,85,86,87,88,89,91,100,102,105,110,113,117,118,121,123,132,134,137],detect:[47,54,84,92,96,132],deterimin:131,determin:[3,5,29,31,40,44,46,47,48,52,68,79,81,93,101,105,109,110,112,114,117,118,119,121,131,134],determine_topo_typ:131,dev:[23,27,86],develop:[4,5,6,12,17,21,22,44,48,51,53,58,67,71,72,73,76,83,88,91,92,102,113,114,120,129],dict:[29,78,84,89,90,93,131],dictionari:[0,1,2,3,29,40,68,75,78,84,89,90,93,95,131],dicuss:29,didn:[80,107],died:104,diff:[17,46,49,104,105,106,107,108,109,110,111],differ:[1,3,5,6,11,14,21,27,29,30,31,33,34,40,42,44,46,51,52,54,56,58,61,62,67,70,75,76,78,80,81,89,91,96,97,98,101,102,108,109,110,111,113,114,116,118,119,120,121,129,131,132,133,134,137],differenti:[15,29],difficult:40,difficulti:[92,94],diffus:88,digit:[52,68,110,111,131],dim:[88,89,91],dimens:[5,6,14,19,21,40,43,52,58,75,76,78,86,88,89,90,93,95,101,113,118,119,120,122,131,134],dimension:[3,6,7,15,21,24,29,31,33,34,40,44,58,81,88,108,109,111,120,121,122,131,134],dimensional_split:[108,118,120,122],dip:[29,61],dir:[28,86,135],direct:[5,7,14,21,29,31,33,34,40,43,47,52,53,54,58,61,62,68,73,78,88,95,111,113,118,119,121,131],directli:[7,18,22,44,58,68,70,75,76,79,93,96,98,131,135],directori:[1,3,5,10,11,12,13,14,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,48,49,50,51,52,55,58,59,62,66,67,70,78,80,81,85,88,95,98,99,101,102,104,109,110,111,112,113,115,116,117,118,119,123,125,126,127,128,129,132,134,135],disabl:[45,92],disable_petsc:96,disappear:133,discard:91,disclaim:[53,73],discontinu:[4,91,137],discov:56,discoveri:102,discret:91,discrib:4,discuss:[23,27,29,44,95,97,98,101,110,113,121,137],disk:[12,40,75,85,102,110],dispers:44,displac:[29,41,44,61,121,133],displai:[1,12,33,34,36,40,47,52,68,85,102],display_format:40,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,61,129,131],distinct:[40,110],distribut:[4,12,28,29,48,53,61,64,71,73,91,97],disturb:47,distutil:76,dive:97,divid:[101,118],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,129],doc:[17,22,23,27,29,47,48,49,79,96,111,124],docker:[17,24,49,50,111,136],dockerhub:[28,49],dockeril:28,docstr:[76,80,102],doctest:81,document:[0,1,2,3,5,6,16,20,21,22,23,24,27,31,41,44,51,53,61,67,68,69,70,73,79,80,84,85,86,87,91,93,96,98,105,117,120,135,136],doe:[4,10,14,19,26,27,31,36,44,47,58,64,68,71,81,90,93,96,102,105,110,112,113,129,131,132,134],doesn:[27,50,55,93],doi:[4,15,16,49,72],doing:[5,10,18,24,27,31,40,44,46,48,50,51,55,68,70,81,102,109,110,111],domain:[5,14,15,44,47,48,52,63,74,75,76,78,86,88,90,93,101,119,120,122,129],don:[12,26,27,48,49,68,85,86,92,102,120,132],done:[1,5,6,7,10,12,14,18,19,27,33,34,40,42,47,48,50,51,52,54,58,61,67,68,70,75,79,80,96,101,105,109,110,112,113,117,119,121,128,131,133],donna:[4,15],donnabois:4,donor:[118,120,122],dot:[36,40,47,52,54,132],doubl:[58,76,81,96,113,119],down:[12,29,85,109,129,131],download:[11,12,27,28,29,34,35,41,47,49,50,59,80,86,92,127,131,132],downward:61,doxygen:[5,6,24,111],dpc:52,dpi:[47,52],dpng:58,dprint:[119,120],dq_src:[88,91],dqdt:91,draft:49,draw:3,drawcontourlin:58,drawn:[29,47,117],driver:[19,55],drop:[12,118],dry:[14,15,31,41],dst:52,dt_check:31,dt_initi:[104,118,120,121,122],dt_max:[118,120,122],dt_max_dtopo:[104,121],dt_variabl:[118,120,122],dtdtopo:107,dtdx1d:106,dtdx:79,dtdy1d:106,dtfe:91,dtopo2kml:52,dtopo:[24,29,41,44,52,61,98,104,106,107,121,129,133],dtopo_data:[104,121],dtopo_file_nam:52,dtopo_modul:104,dtopo_typ:[29,52],dtopofil:[52,61,121],dtopographi:29,dtopotool:[41,61,106,107,109,130],dtopotools_exampl:[29,41,100],dtopotyp:[121,129],dual:116,due:[15,29,43,102,111],dummi:[76,91,134],dump:[63,118],dumpgaug:108,duplic:[68,107,112],durat:[29,114],dure:[21,31,40,52,64,104,114,120,121,122,129],dx0xgftn3_x04rdx0_w5nq7w0000gn:[13,99,115,125,126],dxc:76,dyc:76,dylib:47,dynam:[5,19,29,44,64],dynamic_slip:29,dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,15],each:[1,2,3,5,6,14,17,21,29,31,32,40,43,47,49,52,55,58,61,62,63,66,67,68,70,75,76,79,81,84,85,86,88,89,90,91,93,95,101,102,104,105,109,110,112,113,117,118,119,120,121,122,128,129,131,133,137],each_fram:40,each_gaug:40,ear:4,earli:[5,19],earlier:[19,21,31,51,75,88,104,111,131],earth:[24,41,52,61,108,110,121],earth_radiu:121,earthquak:[24,29,41,44,100,121,129],eas:52,easi:[4,5,10,28,51,58,71,76,85,86,87,116,123,134],easier:[51,67,110,134],easiest:[18,27,37,64,68,70,97,101,134],easili:[3,12,27,31,47,58,68,76,92,96,97,102,123],east:[12,129],easy_instal:86,ec2:24,echo:98,ecosystem:[4,15],edebug:[119,120],edg:[3,5,13,14,26,29,31,50,52,61,81,89,113,115,119,120,122,134],edit:[47,49,51,70],editabl:27,editor:63,edu:[29,47,59],effect:[40,47,56,58,85,97,101,102,114,121,131],effici:[44,73,83,85,93,101],egg:51,eigenvector:[113,137],either:[11,14,19,29,41,42,47,50,54,58,61,68,70,75,85,91,96,98,101,102,108,109,110,113,129,131,134,137],elast:[12,61],element:[0,3,21,52,89,91,93,118,119,120,121],elementwis:85,elev:[21,31,42,44,47,52,67,99,121,129,131,133],elif:[120,122],elimin:[7,21,76],ell:113,els:[26,27,93,122],elsewher:23,emmett:[15,73,83],empir:[44,56],empti:[40,90,93,96,98,118,131],empyclaw:88,enabl:[85,92,96,110],encapsul:44,encount:[36,47,68,92,94],encourag:58,end:[12,29,31,40,43,47,49,52,78,85,95,98,99,101,103,104,105,106,107,108,109,110,112,120,122,128],end_dat:43,enddo:134,endors:[53,73],energi:85,enforc:121,engin:[15,47],enhanc:[56,73],enlarg:110,enough:[128,129],ensur:[33,34,58],enter:[58,86,92],enthought:[92,94,97],entir:[5,44,47,52,62,64,75,85,90,105,131],entireti:78,entri:[47,75,85,96],enumer:91,environ:[24,27,33,34,36,46,47,48,50,51,58,60,62,64,87,94,96,98,110,131,132],envis:14,epd:94,eprint:[119,120],epsg:47,epsilon:79,eqn:137,eqnarrai:95,equal:[14,29,31,47,86,88,101,112,118,120,122,129,131],equat:[4,14,15,33,34,41,44,56,68,74,75,76,78,83,85,88,91,92,93,105,108,110,113,118,120,121,122,129,134,137],equiv:137,equival:[5,40,52],err:120,error:[14,19,33,34,36,47,50,51,58,62,68,78,83,85,96,101,102,119,120,132],escap:[101,120],escienc:12,especi:[27,47,76,88],esri:129,essenti:[58,91,121,129],est:120,establish:4,estim:[56,101,119,121],estimat:120,eta:[29,31,40,108],eta_tild:31,etc:[0,2,14,18,19,23,26,27,31,44,47,48,52,55,63,67,76,113,117,118,121,134],etopo1:[114,131,133],etopo:133,etopo_sample_2min:131,euler:[83,91,106,108,111,113,134],euler_2d:[33,35,88],evalu:[26,29,56,75,91,131,134],even:[44,47,51,53,61,73,96,101,119,120,129,132,134],evenli:[47,85],event:[41,44,52,53,73,114,118],event_tim:52,eventu:[12,41],ever:[117,121],everi:[5,27,31,40,54,55,75,78,80,85,93,101,102,110,111,113,116,118,120,122,131,134],everyth:[31,49,50,62,86,95,96,102],everywher:[43,56,93],evolv:[21,75,78,91],evolve_to_tim:[75,91],exactli:[27,46,93,118],exam:68,examin:[14,33,34,40,98],exampl:[0,1,2,3,4,5,6,7,8,12,14,19,21,23,26,27,29,31,36,37,41,43,48,49,50,51,52,54,55,56,59,61,62,63,67,68,70,73,74,75,76,78,81,82,83,84,85,88,89,90,91,92,95,96,98,100,101,102,104,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,127,128,129,131,132,133,134],exce:[31,47,101,119],exceed:101,except:[21,26,29,89,96,118,121,129],excerpt:86,exclud:[31,55],exclude_modul:55,exclude_sourc:55,exe:[33,34,78],exec:[0,1,3,68],execut:[0,1,3,14,18,26,33,34,40,52,58,68,70,78,80,86,102,113,116,132],exemplari:[53,73],exercis:[41,100,102],exist:[1,20,29,30,32,33,34,47,54,58,68,81,85,88,90,93,96,97,105,111,116,131],exit:[28,68,86,92],exp:[75,85,95],expand:[25,47,52],expect:[95,96,102,120,121,122],expens:[91,101,105,110],experi:[23,44,51,91],experiment:73,expert:44,explain:[12,44,50,101,118,123],explan:[27,79],explicit:[96,119],explicitli:[55,58,98,118,137],explor:[4,52,68,70],expon:56,expos:12,express:[4,29,53,73,92],extend:[7,14,21,52,58,81,121,129,131,137],extens:[4,15,21,23,27,29,44,47,48,50,51,55,58,76,83,84,96,110,111,118,127,131,137],extent:[44,50,51,52,56,58,75,81,93,104,121,131],extra:[3,47],extra_fil:48,extract:[47,131,133],extran:108,extrap:[14,88,95,118,120],extrapol:[14,21,31,88,95,118,119,120,122],extrem:[47,94],extropl:14,f2py:[50,51,76,88,96,113],f2py_flag:96,f2s:52,f49620:4,f77:[37,132],f90:[8,13,19,30,31,40,54,55,62,71,88,99,101,104,108,110,113,115,125,126,129,132,134],f95:96,f_file_nam:[78,85],f_path:78,facecolor:[2,68,117],facilit:[40,102,108,110,123],fact:[47,93],factor:[5,47,119,121,128,131],faculti:29,fade:68,fail:[13,27,86,96,99,102,108,115,125,126],failur:102,fairli:[14,44,110],fall:114,fals:[0,1,2,3,29,44,45,46,47,48,52,78,81,90,91,93,96,101,109,110,112,118,119,120,121,122,131],famili:[91,120,122],familiar:71,faq:[12,24,67,97],far:[14,38,67],fashion:112,faster:131,fastest:92,fault:[15,24,29,41,100,129,133],fault_plan:29,favor:[108,131],favorit:67,fbound:37,fc02:4,fcompil:132,fdefault:96,featur:[21,27,31,47,58,68,76,83,101,102,107,109,110,121,129],februari:[17,23,111],feet:[114,133],fellowship:4,fetch:[12,43],fetch_noaa_tide_data:43,fetch_topo_url:131,few:[5,11,12,21,25,34,44,48,58,76,91,95,101,102,114,127,134],fewer:[101,131],ff0000:[3,52],ff9999:117,ffff00:68,fflag:[27,36,54,59,62,76,96,129],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:52,fgmax:[41,52,62,105,107,110,111,121],fgmax_data:[31,121],fgmax_fil:[31,121],fgmax_grid:52,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,107],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,field:[40,52,88,90,93,98,99,103,104,105,106,107,108,109,110],fig:52,fig_kwarg:[29,131],fignam:[1,70],figno:[1,2,40,47,68,70,117],figsiz:[2,68,117],figur:[0,1,2,4,12,29,33,34,38,40,52,58,67,70,90,98,113,117,131],file1info:121,file2info:121,file:[1,5,7,8,10,13,17,18,19,21,22,24,26,27,28,29,33,34,36,37,38,40,41,42,44,46,50,51,52,54,59,61,63,64,67,69,73,76,78,80,81,84,85,86,87,88,90,93,94,96,98,99,104,105,107,108,109,110,111,114,115,116,117,118,119,120,122,124,125,126,128,131,132,133,135],file_format:[40,90],file_prefix:[84,90],file_prefix_p:78,filenam:[30,47,108,131],fill:[0,3,4,5,14,47,81,83,93,110,118,128,131,134],fill_between:3,fill_topo:131,fill_valu:131,fill_var2:3,fill_wher:3,filpatch:[8,110],filter:131,filter_region:131,find:[1,3,4,5,23,26,27,28,29,43,47,51,54,59,61,64,67,73,80,88,93,94,96,97,98,132],fine:[3,31,48,60,64,88,101,110,118,121,129,134],finer:[3,6,47,101,104,105,118,119],finest:[3,40,128,131],finish:[12,68,75],finit:[4,15,31,38,52,58,61,91,128,129,134],finlin:96,first:[1,3,12,18,19,21,27,29,31,33,34,47,48,49,50,51,52,54,58,68,70,75,76,81,85,86,88,91,92,93,95,96,98,101,104,108,113,118,120,121,127,129,131,137],first_test:33,fit:[53,73],five:31,fix:[5,18,19,21,24,41,49,52,54,73,104,105,106,107,108,109,110,111,118,120,122,129,131],fixedgrid:121,flag2refin:[21,119,120],flag2refine_tol:[101,119,120],flag:[6,12,21,27,36,37,51,59,62,76,94,96,98,108,120,121],flag_richardson:[101,109,119,120],flag_richardson_tol:[101,119,120],flat:[61,129],flavor:[11,20,50],flexibl:[21,29,52,76,108,111,113],flood:47,floor:[29,41,61],flow:[4,14,15,22,31,41,42,44,83,113,118,121,129,134],flowchart:[5,6,24],fluctuat:[89,91,137],fluid:[44,114],flush:109,flux2:76,flux2_dimsplit:108,flux3_dimsplit:108,flux:[15,31,91,113,118,137],fly:24,fmt:3,fname:[52,120,121,122],focu:[4,41],fold:14,folder:[13,47,99,115,125,126],follow:[0,2,3,4,5,12,14,17,18,22,23,27,29,31,33,34,35,40,42,47,48,49,50,51,53,58,59,61,63,68,69,71,73,75,76,77,80,81,84,85,86,88,89,90,92,93,95,96,98,101,102,112,113,117,118,119,121,127,128,129,132,134,136],fontsiz:68,foot:61,fopenmp:[37,62,96],forc:[21,36,54,96,131,132],force_dri:52,forestclaw:108,forg:50,forget:132,fork:[23,48,49],form:[0,2,3,4,5,7,18,19,21,27,28,29,31,33,34,38,40,43,47,48,49,53,56,61,63,73,76,85,91,95,96,101,105,112,113,118,119,120,121,125,129,131,134,137],format:[1,3,12,24,29,33,34,40,41,42,44,45,47,52,54,58,59,67,68,75,78,84,85,87,88,90,96,109,110,118,121,129,131,135],format_str:40,former:[68,134],formerli:108,formul:[4,44,56,113,118],formula:56,fort:[1,7,26,31,40,58,59,67,90,105,109,110,111,112,118,119,120,122,128,135],fortfil:[33,34],fortran:[5,8,10,12,19,22,26,27,29,31,33,40,42,51,54,55,56,62,63,64,67,70,73,75,76,78,83,86,88,89,91,92,93,96,108,109,110,113,116,120,122,127,128,129],fortran_modul:93,fortran_src_wrapp:76,forward:[91,134],found:[1,4,5,10,11,12,13,14,21,26,31,33,34,36,38,40,43,44,46,51,52,54,55,66,68,69,70,72,75,79,86,90,94,96,98,99,102,109,112,114,115,116,117,125,126,131,132],founder:4,four:[81,101,102],fourth:31,fpe0:37,frac:[56,95,137],fraction:[5,12,29,101,118,134,137],fragil:93,fragment:3,frame0000:58,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,58,59,63,67,68,70,75,78,82,84,86,90,92,96,110,112,117,120,122,123],framecount:96,framenam:58,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,70],framework:[4,49,73,76,109,110],free:[12,47,54,61,73,77,88,92,94,97],frequenc:91,frequent:[19,26,94,109],friction:[24,41,44,121,125,126],friction_depth:[56,121],friction_forc:121,friction_modul:108,friedemann:79,from:[0,1,3,4,5,6,11,14,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,51,53,54,55,58,60,61,63,67,68,72,73,74,75,77,78,81,82,83,85,86,88,89,90,91,92,93,94,95,96,98,101,102,104,105,108,109,110,112,113,114,116,118,119,120,121,122,127,129,132,133,134,135],frommm:79,front:[58,90,96,116],fset:93,fstr:58,ftrapuv:37,full:[5,49,52,68,78,85,91,95,116,129,134],fulli:[5,44,47,111,113],fun:96,func:96,function_nam:96,fund:[24,50,51,83],funrol:96,further:[5,14,24,37,44,52,54,58,83,101,102],furthermor:[47,95],futur:[12,21,25,33,34,44,52,56,75,91,109,110,129],fvmbook:[11,38],fvmhp:[4,11,14,15,24,64,113,118,134,137],fwave:[91,113],g77:94,galerkin:91,galleri:[11,33,34,35,39,49,66,67,80,83,97,102,107,111,123,127,134],gallery_al:83,gallery_classic_amrclaw:[7,33,34],gallery_fvmbook:[15,38],gallery_geoclaw:[31,41],gamma:56,gap:131,gas:5,gaug:[6,24,41,52,81,82,93,104,108,109,110,111,112,114,120],gauge00001:[40,110],gauge_coord:81,gauge_data:93,gauge_dir_nam:81,gauge_fil:81,gauge_file_nam:81,gauge_id:40,gaugedata:[40,120],gaugeno:[40,120],gauges2kml:52,gauges_modul:[40,108,110],gaugesolut:40,gaugetool:[40,108],gaugexxxxx:[40,110,112],gauss_pt:29,gaussian:[75,95,122],gca:45,gcc:[86,92],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:12,gen_vari:[96,102],gener:[0,1,2,3,4,5,6,8,10,12,14,15,18,19,23,24,27,31,36,37,41,44,47,49,54,55,56,61,62,63,67,68,69,70,73,76,77,79,81,86,87,88,90,91,92,95,96,97,98,101,104,108,110,112,114,116,118,119,123,128,129,134,135],generate_2d_coordin:131,generate_2d_topo:131,geo:[41,56],geo_data:121,geoclaw:[4,6,11,15,22,23,27,29,31,32,34,37,40,49,50,51,52,56,59,61,64,67,92,98,100,102,112,113,114,116,118,119,127,128,129,130,131,133,134],geoclaw_modul:108,geoclaw_riemann_util:111,geoda:[114,133],geograph:47,geohack:28,geohazard:44,geol:29,geolib:[59,104,108],geom:93,geometr:134,geometri:[24,29,83,88,90,93,108],geophys:[4,14,15,22,41,44,64,118],geoplot:[45,47,69],georefer:47,georeferenc:47,georg:[4,15,29],geoscientist:44,geospati:47,get:[0,9,12,23,27,36,41,47,50,51,54,55,67,71,75,76,81,85,86,92,94,95,96,97,100,102,111,113,131,132],get_aux_glob:93,get_auxbc_from_aux:93,get_cmap:68,get_count:96,get_dim_attribut:81,get_dt:91,get_dt_new:91,get_q_glob:93,get_qbc_from_q:93,get_remote_fil:131,get_topo:131,getax:1,getcwd:68,getfigur:1,getfram:[1,3,70],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:85,getsitepackag:98,getusersitepackag:98,gfortran:[12,51,62,71,74,94,116,132],gfortranbinari:92,ghamdi:4,ghost:[6,14,62,63,81,91,93,110,118,120,122,128,134,137],gica2937:29,gist:50,git:[11,12,22,23,24,25,48,49,51,92,102,116],git_statu:46,github:[11,21,22,23,25,28,48,50,51,72,80,88,92,102,107,109,110,111,113,132],gitter:23,give:[3,5,8,9,12,14,23,27,29,31,33,34,40,51,52,62,63,68,70,86,87,91,102,105,109,110,118,121,129,131,133],given:[29,43,47,52,56,58,61,79,86,90,91,93,96,101,114,121,129,131,134],glitch:107,glob:80,global:[5,81,93,96,114,133,134],gloss:133,glu:14,gmt:43,gnu:92,gnufcompil:132,goal:5,godaddi:48,godunov:[4,91,118,120,122,134],goe:[29,41],going:[14,21,49,75,78,80,89,97,103,123,129,137],gone:85,good:[14,27,44,47,53,62,73,95,102,110,113],googl:[23,24,27,41,52,80,86,94,108,110,113],googlecod:86,googleearth:[47,52],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:9,gov:[29,43,86],govern:121,gprint:[119,120],gradi:[4,15,73],gradient:[111,137],gradylemoin:4,grant:[4,73],graph:8,graphic:[22,27,58,67],gravit:[56,121,134],graviti:121,great:[43,80],greater:[31,52,56,92,97,101,112,118,119],greatest:101,greatli:[25,73,114],green:[52,61,68,102,131],grid1d:81,grid1info:121,grid2info:121,grid:[4,6,15,18,19,21,22,24,26,27,40,41,42,44,47,52,58,63,64,67,73,75,83,85,86,88,89,90,91,93,95,101,102,104,105,107,108,110,111,113,114,118,119,120,122,128,129,131,133,134,137],grid_files_scanf:135,grid_numb:63,grid_registr:131,griddata:131,grideges_show:21,gridlin:58,gridlines_show:21,ground:31,groundoverlai:47,group:[3,12,23,27,29,44,80,86,94,109,113],guarante:[41,44,91,100],guard:109,gui:[21,135],guid:[12,17,22,23,24,41,42,72,83,97,111,124],guidelin:83,gzip:49,hack:93,had:[40,110,111],hadjimichael:[4,15,73],half:[0,14,15,61,91,118,134],halfspac:61,hand:[3,18,19,56,75,102],handi:[27,54],handl:[0,2,3,5,31,37,41,52,62,64,67,81,88,90,91,93,94,95,96,98,104,105,107,108,110,121,131],hang:61,happen:[30,47,54,75,90,93,132],har:113,harbor:31,hard:[45,50,62,68,131],hardcopi:[1,68,70,117],harder:118,hardest:[59,97],hardwir:62,has:[0,4,5,7,12,14,16,19,20,21,22,26,27,31,32,33,34,46,47,49,52,54,56,58,61,63,64,68,73,76,78,81,85,88,89,90,93,94,96,97,98,99,101,102,103,104,105,110,111,113,114,118,119,121,128,129,131,133,134,135,137],hash:[46,48,102],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,21,22,23,26,27,28,29,31,33,34,37,38,40,41,44,47,48,49,50,51,54,55,56,58,59,62,63,67,68,70,71,73,75,76,79,80,81,83,85,86,87,88,89,90,91,92,93,94,95,96,98,101,102,104,105,107,108,109,110,111,112,113,114,116,118,119,121,123,129,131,132,134],haven:95,haversin:43,hazard:[31,41,56,114],hdf5:85,head:[27,29],header:[10,29,40,63,108,110,129,131],header_styl:131,heavili:76,height:[47,131],held:44,hello:86,help:[6,8,22,23,24,27,36,45,50,51,54,67,70,83,86,92,96,102,109,113,123,132],helzel:15,henc:[48,51,55,91,101],here:[4,12,14,31,44,48,51,52,64,68,70,72,75,78,79,83,86,88,89,94,95,98,108,113,131,137],heterogen:134,hex:[52,68],hidden:[3,54,68],hide:[47,58],hierarchi:[47,81,98],high:[4,15,44,47,64,76,83,91,113,114,121,133,134],higher:[3,5,47,81,91,92,113,114],highlight:[10,12],hilo:[114,133],hint:[14,24,41,67,70,71,98,121,132],histor:[44,61,133],histori:[27,49,70,97],hit:[14,58,70,85,118],hmin:31,hoc:76,hold:[3,70,95,101],holder:[53,73],holland_storm_modul:108,home:[12,29,51,116],homebrew:47,homepag:20,homogen:[61,91,134,137],hood:67,hope:[25,102],horizont:[47,131],host:47,hour:[12,47,52],how:[1,5,6,11,14,21,23,27,29,31,33,34,37,40,42,47,49,52,54,61,62,63,67,78,80,82,83,84,88,91,95,96,98,100,101,102,105,110,112,113,117,118,121,123,131,135],howev:[5,12,14,21,33,34,37,42,44,47,51,53,55,61,62,63,73,76,101,102,110,114,117,121,128],hpc:23,html:[1,12,15,22,27,29,33,34,36,39,40,47,48,67,68,80,86,87,102],html_plot:87,htmlplot:80,htpp:27,http:[4,11,12,15,23,25,27,28,29,39,43,47,48,49,50,51,53,59,71,72,73,76,77,83,86,88,107,109,110,111,131],hurt:55,hydrodynam:15,hyperbe:79,hyperbee_limit:79,hyperbol:[4,5,15,38,64,76,83,88,89,95,113,118,121,134,137],hyperol:118,ibm:92,idea:[9,23,29,58,64,75,95,105,131,137],ideal:[49,114],ident:[55,81,86,102,131],identifi:[33,34,47,76,101],idl:12,ids:40,ieee:15,ifort:37,igetsp:108,ignor:[14,47,52,108,114,129,131],iinstal:86,illustr:[29,33,34,47,58,61,100,107,108,113,123,131],imag:[12,33,34,49,52,102],immedi:[44,58,75,77,78,85],impati:88,imped:[75,95],implement:[1,4,6,14,29,52,55,60,73,88,91,95,96,101,102,107,110,113,118,131,134,137],impli:[53,73],implicit:[73,91],importantli:86,impos:[14,76,101,121,125,126,137],imposs:[44,118],improv:[4,12,21,23,31,32,47,104,105,107,108,109,110,111,118],imshow:131,in_poli:131,inaccur:44,inaccuraci:44,inadequaci:56,inadvertantli:68,inbound:12,inc:[4,15,58],incept:4,inch:[2,47,52,68,117],incident:[53,73],includ:[4,5,12,13,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,48,49,50,51,52,53,55,56,58,59,62,64,67,68,70,73,75,76,80,81,83,85,86,87,88,90,91,92,93,95,97,99,102,104,110,111,113,115,118,120,121,123,124,125,126,128,129,131,134],incom:14,incompat:[27,47],incompress:15,inconsist:109,incorpor:[21,44,48,73,91,104,111,131],incorrectli:109,increas:[47,52,62,121],increasingli:27,increment:[31,40,47,96,118,120,122],ind:81,inde:[76,86],indent:[43,52],independ:[22,29],index:[1,5,12,21,22,26,31,39,40,48,68,81,83,86,88,89,96,118,120,122],indic:[6,14,19,21,24,28,29,37,40,47,49,51,55,58,66,70,81,85,86,89,91,95,98,101,102,110,113,118,120,121,122,129,131,134],indirect:[53,73],individu:[4,21,22,47,52,54,55,58,81,101,102],inf:131,infer:131,infinit:118,inflat:14,info:[29,40,52,58,78,81,85,91,110,119,120],info_sz:29,inform:[12,21,24,33,34,42,43,44,45,46,50,51,55,63,68,69,70,71,72,75,76,81,85,86,87,89,90,96,98,109,112,113,118,119,121,128,129,132,133,134,135],inhabit:75,inherit:[68,91],initi:[4,6,12,21,29,31,40,43,44,47,55,58,61,64,70,73,74,75,76,78,79,81,82,85,90,91,93,94,96,99,101,109,113,114,118,120,121,122,129,131],initialize_sourc:76,inlinelimit:55,input:[6,14,19,22,24,26,29,36,41,47,52,55,58,75,78,79,81,83,89,90,91,96,109,113,120,121,122,129,131,134],input_filenam:76,input_unit:29,inputfil:[96,129,131],ins:21,insert:[10,14,61],insid:[81,86,90,113,131],insidi:110,inspect:[18,19,47],instabl:110,instal:[11,12,17,22,24,28,33,47,48,49,70,73,74,77,82,83,84,95,102,103,104,105,106,107,108,109,110,111,116,136],install_fortran:34,install_prerequisit:[33,34],installing_pip:49,instanc:[3,27,47,64,70,75,76,78,81,85,88],instantan:[91,129],instanti:[78,86,88,91,93,120,122],instati:131,instead:[3,12,31,33,34,40,49,50,51,54,55,59,92,93,96,109,110,112,113,129,131],institut:4,instruct:[12,17,23,24,33,34,47,48,49,50,59,75,77,83,86,92,95,98,111,112,116,132],insur:[46,54,70,101,104,108,119,121,129],intact:[60,109],integ:[3,31,40,47,52,56,68,76,90,101,111,113,118,121,131],integr:[21,73,83,85,91,104,105,109,120,122,128,129,134],intend:[44,76],intens:76,intent:[76,113],inter:[27,111],interac:85,interact:[1,12,21,33,34,36,40,42,54,64,67,68,76,86,87,92,95,98,109,110],interactive_plot:[87,95],interactive_test:109,interdepend:93,interest:[11,14,17,22,26,31,45,58,76,93,102,111,118],interfac:[4,18,21,58,73,76,79,83,89,91,96,113,134,135,137],interface_funct:96,interior:[5,14,63,93],interleav:73,intermedi:[18,31,134],intermit:[40,110],intern:[5,29,40,52,110,129,131,137],interp_unstructur:131,interpol:[5,14,29,32,40,41,52,58,68,110,114,121,131],interpret:[31,97],interrupt:[53,73],intersect:31,intersphinx:48,intersphinx_map:48,interv:[40,43,75,95,101,118,121],introduc:[14,18,31,68,137],introduct:28,introductori:97,intuit:83,inund:[31,41,47,56,114,133],inundataion:[114,133],inv_haversin:43,invalid:[37,90],invert:43,invest:44,investig:102,invis:[36,108],invok:[10,62,132],involv:[23,88,91],ioerror:90,ioexcept:96,iout:122,ioutarrivaltim:121,ioutsurfacemax:121,ipdb:68,iplot:[33,35,80,86],iplotclaw:[1,12,21,33,34,40,42,67,68,87,98],iplotclaw_:68,iplotclaw_figno:1,ipynb:[29,100,109,131],ipynotebook:109,ipython:[12,64,68,70,76,77,83,85,92,95,97,98,108,109],ipython_displai:104,iqinit:[121,129],is_valid:[90,93],isn:[54,62,63,132],isosurfac:58,isotrop:61,issu:[21,23,25,48,49,50,51,58,75,80,81,83,91,92,94,102,104,109,110,111,113,121,132],item1:[0,70],item:[0,1,3,58,67,70,96,117],itemnam:[1,70],iter:29,ith:89,its:[4,5,12,21,28,32,44,47,50,53,55,63,73,78,79,80,81,83,88,90,91,93,96,101,120,131,137],itself:[4,67,113,121,131],ixi:113,jacobian:[113,137],jan:[4,49],januari:[16,103,110],japan:[47,52],javascript:123,jed:73,jet:[29,58],job:12,join:[23,68],journal:[4,15,83,123],jpg:58,jsanim:[104,108],jsanimation_frametool:106,juli:[16,105,106],jump:[4,48,50,58,70,91,110,118,137],junction:[31,121],june:[16,111],jupyt:[61,100,108,109],just:[0,5,27,36,49,75,76,78,80,85,86,87,88,93,96,97,105,118,134],justifi:61,kappa:[95,137],kappa_i:137,karg:90,kaust:[4,23],keep:[24,27,33,34,62,75,78,93,96,102,105,121],keep_copi:[75,78,85],keep_gaug:93,kei:[0,1,2,12,27,29,40,91,95,96,131],kemm:79,kemm_2009:79,kentzo:49,kernel:96,kernel_languag:[91,96,102],ketch:4,ketcheson:[4,15,65,73,83,91],ketchesonmandliet:[4,15],ketparlev13:[4,15,64,83,113],keyboard:58,keypair:12,keyword:[2,3,68,75,80,81,90,96,102,117,131],kind:[78,80,85,113],kinemat:29,king:73,klein:79,kml:[52,108,110,111],kml_build_colorbar:[47,52],kml_cb:52,kml_colorbar:47,kml_dpi:[47,52],kml_figsiz:47,kml_footer:52,kml_gaug:52,kml_header:52,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:52,kml_publish:47,kml_region:52,kml_starttim:47,kml_tile_imag:47,kml_timespan:52,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,130],kmz:[52,110],kneplei:[15,73,83],know:[44,50,51,54,73,111,113,114,131,132,133],knowledg:44,known:[37,58,61,62,68,92,94,102,111,118],kpp:80,kristof:73,kutta:[83,91],kwarg:[2,29,52,68,96,102,117],kyle:[4,15,73,79,83],label:[29,45,47,52,108,129,131],lack:3,lake:[41,129],lambda:[81,131],land:[14,41,42,47,48,52,69,131],landslid:44,langseth:[4,15],langsethleveque00:[4,15],langtangen:97,languag:[10,67,96,97],lapack:104,laptop:83,larg:[5,19,31,33,34,44,47,48,58,62,67,85,86,101,102,109,112,118,131],larger:[12,19,31,47,52,62,63,68,81,104,110,121,129],largest:[101,114],last:[3,17,26,31,49,68,75,76,88,95,109,118],lat:[29,43,47,131],later:[12,46,47,51,70,91,112],latest:[22,39,47,49,51,77,86,92,105,109],latex:[1,47,67,87],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[13,29,31,42,43,61,67,108,115,121,131],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[13,88,115,118,134],launch:[35,80,83,86,87,92],law:[4,15,52,137],lax:[91,118,120,122,137],layer:[15,40,52,81,104,106,109,110],lbla:94,lead:[5,12,21,44,47,56,58,61,100,119],learn:[44,80,97],least:[4,5,12,47,52,58,94,101,102,109,110,118,120,129,131],leav:[12,14,40,119,131],led:19,leer:[79,91,118,120,122],left:[3,9,12,14,26,31,63,70,81,88,89,95,111,112,113,114,119,129,131,133,137],legaci:22,legend:111,legend_tool:111,lemoin:[4,15,73],len:[29,81,120,122,131],lenght:118,length:[13,29,44,52,61,88,93,110,115,118,119,120,121,134],less:[44,47,56,62,91,101,102,118],let:[14,41,50,51,73,111,113],level:[3,5,6,14,22,26,31,40,42,43,44,47,49,50,51,58,62,63,76,78,81,85,91,98,99,101,102,104,105,109,110,112,114,116,118,119,120,121,122,128,129,131,133,134],levequ:[4,14,15,29,64,79,83,91,97,113,118,134,137],leveque09:15,leveque1996:15,leveque1997:83,leveque96:15,leveque97:[4,15],leveque_book_2002:89,levequegeorgeberg:[4,15],levyon03:15,lgomp:96,liabil:[41,44,53,73,100],liabl:[53,73],lib:55,libgdal:47,liblzma:47,librari:[5,12,13,14,19,21,24,26,27,31,33,34,37,40,52,54,59,62,63,64,73,79,84,86,91,96,99,101,110,115,119,125,126,132,134],library_path:96,licens:[24,41,44,83,100],lie:[5,31],lies:[5,14,31,101,121],light:[47,58,101],lighter:47,like:[12,27,28,37,47,48,49,52,58,59,70,76,78,81,85,86,89,90,91,93,97,98,102,109,113,117,128,129,132],lim_typ:91,limit:[0,4,5,24,29,44,47,52,53,58,62,67,73,75,76,83,91,101,106,118,120,121,122,129,131,137],line2kml:52,line:[1,3,4,14,27,29,31,37,40,41,42,43,46,47,52,54,55,58,59,63,67,68,86,91,95,96,98,99,103,104,105,106,107,108,109,110,117,118,120,129,131],linear:[4,29,31,47,61,68,75,79,91,113],liner:[0,29],linestyl:131,linewidth:68,link:[4,10,12,15,17,18,19,23,27,37,38,41,47,48,49,50,52,59,97,98,111,113,114,122,129,133],linspac:[58,78,95],linux:[12,50,60,71,94,97,102,116],lisandro:73,list:[1,3,4,6,7,8,10,12,21,27,29,31,33,34,35,36,40,47,48,50,51,52,53,54,55,56,58,62,68,70,73,74,75,78,79,81,85,87,88,89,90,91,93,94,96,98,99,101,103,104,105,106,107,108,109,110,112,116,118,119,120,121,122,128,131],literalinclud:48,literatur:[44,113],littl:[44,114],live:93,llapack:94,llcenter:131,llcorner:131,lmm:91,lnetcdf:[37,59],lnetcdff:59,load:[12,52,85,87,90,96,97,102,131,135],load_sift_unit_sourc:29,loc:131,local:[12,15,19,24,27,47,48,52,54,55,58,79,81,88,93,110,131,134],local_fnam:131,local_path:96,localhost:28,locat:[5,6,12,29,42,43,47,51,58,63,81,85,87,89,90,96,98,109,111,114,131],log:[27,82,83,90,91],logger:[85,93],logic:[5,14,15,31],logo:111,long_lat:131,longer:[19,27,40,48,52,110,112,113],longitud:[29,31,42,43,61,67,108,121,131],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[12,21,24,27,29,47,49,52,58,59,68,70,76,81,86,90,91,95,96,97,98,102,105,118,119,121,128,131,132],loop:[40,58,67,96,101,113,117,118,134],lose:109,loss:[53,73],lot:[27,50],love:[80,113],low:[47,76,131,133],lower:[3,21,29,31,63,81,86,118,120,122,129,131,133],lower_glob:81,lowerg:86,luna:[15,73,83],lxml:47,lying:5,m_w:137,mac:[50,62,71,94,97,102,116],machin:[12,24,50,62,64,97,102,110,116],macport:47,made:[4,17,21,27,29,51,90,93,104,105,110,121,131,134],magic:52,magnitud:29,mai:[0,1,2,3,4,5,12,16,17,18,19,21,22,23,24,26,27,29,31,33,34,36,42,43,44,45,47,48,50,51,53,54,56,58,59,61,62,67,68,70,71,73,76,77,80,81,83,85,88,90,91,94,96,97,98,101,102,106,108,109,110,111,112,113,114,116,117,118,119,120,121,129,131,132,134],mail:[88,94],main:[10,18,27,48,49,58,64,76,78,84,88,95,96,102,111],mainli:86,maintain:[27,119,129,134],mainten:73,major:[4,21,49,73,76,103,104,105,106,111],make:[1,10,12,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,48,49,52,54,55,56,58,62,64,67,70,71,75,76,78,81,82,83,88,90,96,100,102,104,108,109,110,111,113,118,129,131,133,134],make_colormap:68,make_input_data_kml:52,make_lib:12,make_shoreline_xi:131,makefil:[5,10,13,14,18,19,22,24,27,31,33,34,37,59,62,64,68,70,76,82,101,104,108,110,115,118,120,121,122,123,125,126,129,132,134],makefile_kml:108,maketopo:129,man:[15,24,41,44,121,125,126],manag:[12,47,50,85],mandli13a:15,mandli13b:15,mandli2016clawpack:[4,15],mandli:[4,15,73,79,83],mandlietal2016:15,mani:[1,3,4,5,11,12,19,20,21,27,31,33,34,35,37,38,42,47,52,54,55,61,62,63,68,70,73,75,80,83,88,90,95,96,97,101,103,104,110,113,117,118,119,121,129,134],manifold:58,manipul:[40,131],manner:[40,47,67,118,125,126],manning_break:121,manning_coeffici:121,manual:[35,76,85,92,94,102,127],manuel:[15,73,83],maojr:109,map2d_to_1d:26,map:[3,14,29,52,58,68,73,76,81,83,88,101,108,131,137],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,58,76,81],mappedgrid:[3,58],march:[16,23,104,105],margin:[31,41],mark:[14,47,102],mark_cent:81,mark_nod:81,marker:52,markup:10,marsha:[4,5,15],mask:[45,131],mask_outside_zlim:52,maskedarrai:131,mass:[5,85],massiv:83,master:[12,16,28,48,49,51,88,109,110,111],match:[29,47,52,80,84,90,102,131],materi:[4,53,61,73],math:[15,47,95],mathemat:4,mathwork:58,matlab:[6,21,24,33,34,66,67,68,87,97],matlabpath:58,matplotlib:[0,2,3,12,29,45,47,67,68,71,74,77,97,117,131,132],matric:[113,137],matteo:[4,15,73,83],matter:[55,108],matthew:[15,73,83],maux:[21,113,134],max1d:62,max:[0,29,58,101,105,120,122,131,137],max_buff:[40,110],max_inch:52,max_level_deep:121,max_step:91,max_vertices_in_descript:52,maxima:[31,62,121],maximum:[3,21,29,31,32,41,58,91,95,101,104,105,118,119,120,122],maxlevel:[58,101,119,120,121],maxm:113,maxmi:[19,76],maxmx:[19,76],maxmz:19,maxwell_1d_homogen:88,mayb:131,mbc:134,mc_limit:79,mcs:86,mean:[3,12,21,27,40,44,58,85,86,101,113,114,118,120,122,133],mean_latitud:45,meant:[37,81,91],measur:[29,40,43,61],mechan:93,media:15,medium:[120,134],meet:23,member:[47,88,90,95],memori:[19,21,62,63,64,75,78,85,93,119,120],mention:[118,119],menu:[12,52,111,114,133],meqn:[40,63,113,134],merchant:[53,73],mercuri:86,merg:[5,12,27,48,49,51,108],mesh:[4,6,15,58,64,67,75,101,117,118,134],meshgrid:[75,88,131],messag:[27,36,43,48,51,58,62,78,85,87,90,91,93,94,118,120,122,132],met:[31,53,73],metadata:[63,129,131],meter:[29,43,47,114,121,131,133],method:[4,15,38,40,68,70,75,78,79,81,86,90,91,96,101,102,108,113,117,118,119,120,122,128,129,131,134],metric:43,mhhw:114,mhw:[44,114,133],micro:12,mid:68,middl:109,midpoint:81,might:[9,12,14,21,27,28,33,34,35,43,47,48,50,51,55,58,62,68,75,85,97,100,101,104,116,118,119,129,131,133,134],migrat:18,millimet:131,min:[0,131,137],min_level_check:31,min_time_incr:40,mind:27,minim:[5,51,119,131],minimum:[3,31,40,47,61,95,110,121,131],minisymposterium:23,minlevel:[101,119,120,121],minmod:[79,91,118,120,122],minmod_limit:79,minor:[10,47,85,104,105,106,107,108,109,110,111],minut:[43,47,48,52,114,131,133],mis:68,misc:[4,83],miscellan:89,miss:[21,129,131,132],mitig:44,mitran:[4,15],mix:[29,47],mjb:[5,15],mjberger:4,mllw:133,mode:[1,12,27,96,128],model:[14,15,23,24,29,31,37,41,42,56,85,109,114,121,129],modern:[92,113],modif:[27,36,53,58,68,73,79,121],modifi:[5,8,13,14,19,21,26,31,33,34,40,41,49,51,54,58,60,68,76,79,81,83,88,98,99,100,101,107,109,110,111,115,118,120,121,122,125,126,129,131,134],modul:[0,6,7,24,27,31,37,41,45,47,50,51,55,61,62,67,68,69,70,71,75,76,79,80,84,88,89,90,93,98,102,105,106,108,111,112,118,119,121,129,130],module_nam:96,modulu:[29,95,120,134],molsolv:91,moment:[26,29],momentum:[14,31,44,56,85,121,129],monitor:[21,24,32,41,62,105,107,110],monoton:[118,121],monster:9,month:[15,47,83],more:[1,2,3,4,6,9,11,12,14,15,19,21,25,27,29,31,33,40,41,42,44,47,48,49,50,51,52,53,54,58,61,67,68,69,70,71,73,76,78,79,81,85,86,87,88,89,91,92,93,95,96,98,100,101,102,104,105,108,110,111,113,114,116,117,118,119,120,121,123,127,128,129,131,132,134,137],most:[3,19,21,26,31,33,34,36,37,40,44,46,47,48,50,52,54,58,62,64,67,68,70,73,81,85,86,91,94,95,101,102,109,111,112,113,114,117,118,119,121,124,134],mostli:[3,67],motion:129,movabl:29,move:[14,33,34,41,48,50,61,88,101,104,106,111,121,129,130],movement:29,movetopo:104,mparsani:4,mpi:[64,86],mpich:86,mpiexec:86,mpirun:[86,92,102],msl:[114,133],mthlim:91,much:[12,27,31,37,47,48,63,64,67,97,104,108,118,121,128,131],muct:91,multi:[15,47,75,104,106,109,134],multicor:[62,110],multidimension:[76,83],multilay:[40,105,108,111],multipl:[5,12,22,27,40,67,75,81,85,96,98,102,104,110,112,113],multistep:91,must:[5,12,14,19,21,27,29,31,42,47,48,53,54,55,58,61,62,63,73,76,84,85,88,90,91,93,94,95,96,98,104,108,113,114,118,120,121,122,131,132,133,134,137],mwave:113,mx1d:134,mxnest:21,my_acoustics_rp:75,my_custom_bc:91,my_initial_solut:78,my_riemann_solv:113,my_rp_modul:75,my_setplot_fil:70,my_solv:78,n00014:4,n12:31,n23:31,name:[0,1,2,3,6,10,12,19,21,27,28,29,31,33,34,36,40,47,49,52,53,58,59,68,70,73,76,78,80,81,84,85,89,90,95,96,98,109,112,113,117,118,119,120,121,122,131,134,135],namespac:76,nan:[43,131],nation:[4,44],natur:[31,48,113,137],naux:63,navig:[11,123],nbtool:108,nbviewer:109,nc_param:131,ncar:4,ncol:108,nctr:29,ndarrai:[43,79,81,89,93,131],ndarrari:81,ndim:[21,63,70,118,119],ndip:29,nearbi:114,nearest:[40,131],nearli:[81,129],nearshor:44,necessari:[5,12,31,33,34,42,44,47,49,51,52,58,61,63,64,70,75,76,108,110,112,113,116,117,118,129,132,134],necessarili:[4,102],necessit:27,need:[0,4,5,12,13,14,17,18,19,21,26,27,31,33,34,36,37,44,45,48,49,51,52,54,55,58,59,61,62,63,64,70,71,75,76,78,79,83,84,85,86,88,91,95,97,98,101,102,105,109,110,112,113,115,116,118,119,120,121,122,125,126,129,131,133,134,137],neg:[21,129,131],negat:[43,129],neglig:[53,62,73,121],neighbor:[4,31,101,110,119,120,131],neither:[47,52,53,73,110],nest:[104,110,119,120],netcdf3:84,netcdf4:[84,129,131],netcdf4_dir:37,netcdf:[12,37,109,118,120,122,129,131],never:[31,88,93,99,101,118,120,122,132],nevertheless:47,new_featur:27,new_frame_num:96,new_plotax:[0,2,40,47,68,117],new_plotfgur:68,new_plotfigur:[1,2,40,47,68,117],new_plotitem:[0,3,40,47,68,117],new_userdata:[120,122],newdir:60,newer:[27,51,62,79],next:[2,3,5,12,17,31,33,35,40,48,58,63,68,70,74,75,86,91,95,101,102,118,119,121],nfr:4,ngdc:[114,133],nghost:63,ngrid:63,nhtmp:44,nice:[27,52,76,88,105],nicer:[70,97],nih:4,nnnnn:[112,118],no_data_valu:131,noaa:[29,43,114,133],nodata_valu:[129,131],nodatav:129,nodatavalu:129,node:81,nodes_with_ghost:81,nohup:105,non:[14,31,64,76,88,95,118,120,122,137],nonconserv:137,none:[0,1,2,3,14,26,29,40,43,47,52,78,81,85,90,91,93,96,102,104,110,112,118,120,122,129,131],nonexist:[6,24,41,80,83],nonlinear:[4,15,44,79,113,118,137],nonoverlap:5,nonphys:40,nonuniform:58,nor:[53,73],norm:[52,101,131],normal:[14,68,88,98,113,118,119,120,122],north:[43,61],northernmost:129,norwegian:4,nose:[27,74,86,102],nosetest:[27,34,35,86,92,102,127],notat:[29,43,52,113],note:[1,3,4,12,14,19,21,23,24,27,29,36,37,40,43,47,48,49,50,52,54,55,61,62,68,70,76,79,80,81,83,84,86,88,92,93,96,97,101,108,110,112,113,114,116,117,118,119,120,121,122,128,129,131,133,134],notebook:[29,61,77,85,100,108,109],noth:[13,93,115,125,126,131,134],notic:[47,53,73,95,102],nout:122,nov:[15,83],novemb:[16,109,110],now:[5,6,12,17,19,21,25,27,28,29,31,37,46,48,50,56,63,68,71,75,76,83,85,86,87,88,91,92,95,102,104,105,108,109,110,111,117,121,123,129,136],nprint:[119,120],npt:31,npy:131,nrm:52,nsf:4,nstepout:[78,85],nstrike:29,nthmp:44,ntime:120,ntot:122,num_aux:[76,86,88,89,93,113,118,119,120,122,134],num_cel:[7,21,81,113,118,119,120,122],num_cells_glob:81,num_digit:52,num_dim:[21,81,88,118,119,120,122],num_entri:96,num_eqn:[63,75,76,79,86,88,89,90,93,95,113,118,120,122,134],num_fgmax_v:[31,121],num_ghost:[76,81,88,89,91,93,113,118,120,122],num_output_tim:[75,78,85,112,118,120,122],num_proc:110,num_wav:[79,89,113,118,120,122],number:[1,2,3,4,5,7,14,15,18,21,26,27,28,29,31,33,34,40,47,49,52,54,58,62,63,64,70,75,76,78,79,80,81,83,84,85,86,88,90,91,93,95,96,101,102,104,105,107,108,109,110,111,112,113,118,119,120,121,122,127,131,134],numer:[4,15,47,97],numerica:15,numpi:[3,12,29,43,71,74,75,76,78,81,88,93,94,95,97,102,120,131,132],nxpoint:131,nypoint:131,nyu:4,object:[0,1,2,3,21,26,29,31,40,47,52,67,68,70,75,76,78,84,85,86,88,90,93,94,95,96,97,104,112,113,118,119,120,122,131],obliqu:14,obscur:21,observ:[31,44,104,114,118,121,129,133],observatori:4,obtain:[5,11,31,40,42,44,50,52,84,85,86,101,113,121,123,129,137],obviou:[7,47],occasion:[102,110],occupi:47,occur:[54,61,129],ocean:[14,15,44,47,121,125,126,129,133],octob:[16,106,107,108],off:[12,31,40,44,47,52,58,70,78,85,119,131],offer:[36,47,102],offici:49,offset:[45,47,52,131],offshor:[52,56],oft:89,often:[5,10,12,14,19,26,31,33,34,36,37,40,41,44,45,46,52,56,61,63,85,97,102,112,113,114,117,118,121,129,133,134,137],okada85:[15,29,61],okada:[15,24,29,41,100,129,133],okadamap:29,olav:4,old:[1,6,19,21,24,49,70,78,86,87,88,91,102,109,111,113],older:[21,91,121],olig:[5,15],omega:75,omit:[51,102,110,112,121],omp_num_thread:[37,62,110,128],omp_stacks:62,on_lower_boundari:81,on_upper_boundari:81,onc:[1,12,21,27,33,34,47,49,50,51,58,70,75,85,86,87,88,93,96,110],ondrej:73,one:[0,1,2,3,4,5,7,12,13,14,19,21,23,26,27,28,29,31,33,34,40,42,47,49,50,51,52,56,58,59,60,61,63,64,67,68,75,81,85,86,88,90,91,92,95,96,98,101,102,109,110,112,113,115,117,118,119,120,121,122,123,125,126,129,131,134,135],ones:[75,76,93,118,119],onli:[1,3,5,7,12,14,18,21,26,27,29,31,39,40,44,47,48,49,52,55,56,58,61,62,63,64,68,75,78,81,85,86,88,90,91,92,93,95,96,98,101,104,109,110,111,112,113,114,116,117,118,119,120,121,122,129,131,132,134,137],onlin:[100,124],onr:4,onshor:[31,52,56],onto:[27,29,47,131],open:[4,12,15,27,28,29,47,52,67,73,77,81,96,116,135],opendatafil:55,opendiff:102,openli:22,openmp:[21,24,37,64,96,109,128],opensourc:[53,73],oper:[45,102,110],opinion:4,oppos:27,opposit:[5,14],optim:[37,73,96],option:[2,12,14,19,21,24,27,29,31,33,34,36,37,43,46,51,54,58,59,67,68,75,76,78,80,81,82,84,85,87,90,91,92,95,96,99,101,102,103,104,105,106,107,108,109,110,111,117,118,120,122,123,131,136],order:[4,5,12,14,15,29,31,44,48,51,55,58,63,64,68,70,71,73,75,78,79,81,83,84,85,87,88,91,95,96,98,108,113,116,117,118,119,120,122,129,131,132,134,137],ordinari:113,ordinarili:94,org:[4,15,39,41,48,49,53,73,76,77,83,86,109,111,131],organ:[21,22,33,34,78],orient:[61,76,97],origin:[3,5,12,14,19,27,29,32,40,48,62,63,76,91,96,104,110,112,119,120,122,131],oscil:[40,137],oscillatori:131,osher:91,osx:[47,71,97],other:[3,4,5,8,12,14,19,21,26,28,29,31,33,34,40,42,44,47,48,49,51,53,54,56,58,59,61,62,63,67,70,71,73,75,76,78,81,83,85,87,88,89,92,95,98,101,102,104,105,107,108,110,113,114,116,117,118,121,123,129,131,133,134,135],otherwis:[29,48,53,73,85,90,91,92,93,96,118,131],ought:91,ouput:78,our:[55,75],out1:55,out:[3,14,25,29,33,34,40,46,48,49,50,51,52,53,54,58,68,73,75,76,78,84,85,86,87,90,95,97,98,102,110,113,120,122,131,132],out_tim:78,outaux:26,outdir:[1,3,33,34,40,46,54,67,70,78,80,81,85,109,120,122,132],outdir_p:78,outfil:131,outflow:[14,118,120,122],outgo:14,outlin:[52,58,70,113,117],outn:26,output:[1,6,7,12,14,24,26,27,29,33,34,36,37,40,41,42,43,45,46,47,49,50,67,68,70,76,78,79,80,81,82,83,86,87,89,90,91,92,93,95,96,104,108,109,110,111,113,117,120,122,127,128,131,134,135],output_aux_compon:[118,120,122],output_aux_onlyonc:[118,120,122],output_file_prefix:[78,85],output_filenam:76,output_format:[78,85,118,120,122],output_opt:78,output_q_compon:[118,120,122],output_step_interv:[118,120,122],output_styl:[63,75,78,85,112,118,120,122],output_t0:[112,118,120,122],output_tim:[85,112,118,120],output_unit:29,outputdir:58,outputfil:[129,131],outsid:[5,14,52,129,131],outsiz:52,over:[1,3,5,12,14,15,21,27,29,31,40,41,42,44,47,52,58,61,67,85,91,101,104,105,113,117,120,121,128,129,134,137],overal:[9,75],overflow:[37,111],overhead:[5,62,101,128],overlai:52,overlaid:[47,52],overland:47,overlap:[101,104,105,129],overrid:[27,37,47,75,76,96],overridden:[58,91,93],overrul:3,overview:[41,47,67,103,106],overwrit:[1,78,85,90],overwritten:[40,85,110,112,134],own:[14,19,23,27,51,75,76,82,83,92,93,113,123],p_center:[81,95],p_function:85,p_node:81,p_t:95,p_x:95,packag:[4,24,27,33,34,47,55,64,67,71,73,75,81,83,85,87,88,90,92,95,97,98,116,135],page:[1,4,8,10,11,12,15,21,23,24,27,44,49,50,51,80,83,86,87,94,97,102,111,114,117,123,133,134],pair:[12,102,131],panel:47,paper:[4,5,14,29,41,48,79,83],paragraph:[31,50],parallel:[4,21,22,40,62,74,80,82,83,85,88,90,92,96,102,110],paramet:[1,5,6,8,14,19,24,26,29,31,32,33,34,36,38,41,42,44,47,54,55,56,58,61,62,63,67,74,75,78,79,85,87,90,93,96,99,101,104,110,112,113,114,120,122,129,131,132,134],paramt:31,parent:[3,26,93,96],pars:[40,96],parsani:[4,15,73,83],part:[4,21,29,41,44,52,59,73,76,86,92,93,95,97,100,102,121,134],partial:[15,64],particular:[5,11,19,21,27,29,31,37,40,41,42,44,47,53,54,55,58,68,69,71,73,75,89,90,91,93,95,100,102,105,108,109,110,111,117,121,137],particularli:[14,26,46,47,50,61,63,105,108],partit:86,pascal:29,pass:[14,18,19,27,29,40,47,52,62,68,75,78,80,82,88,91,93,94,96,102,113,120,131,134],password:27,past:[16,20,48,90,110,114],patch:[3,5,6,14,21,26,31,47,58,61,62,63,67,68,86,90,93,110,117,119,121,128,134],patch_index:81,patchedges_show:[3,21],patchno:[3,26],path:[1,12,29,37,40,43,47,50,51,54,60,67,68,78,84,86,90,96,111,116,131,132],pathtool:58,pattern:[19,42,47,80,114],pcolor:[3,40,67,97,131],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:52,pcolormesh:52,pdb:68,pde:[4,15,64,83,95,118,134],pdf:[1,29],pdflatex:1,peanoclaw:73,pedant:37,peerj:[4,15],pem:12,pend:3,peopl:[4,12,73,97],pep8:27,per:[12,29,40,47,52,58,62,119],perfect:14,perfectli:14,perfom:102,perform:[5,21,26,44,47,62,64,67,68,78,88,91,96,102,112,113,116,121,127],perhap:[5,31,40,68,93,96],perimet:31,period:[5,14,31,54,75,88,101,118,120,122],perman:[58,72],permiss:[49,51,53,73],permit:[53,73],permut:19,perturb:[99,121,129],petclaw:[73,86,87,88,90,96,102],peter:4,petsc4pi:[86,92,93,102],petsc:[21,22,64,73,75,82,85,92,93,94,96],petsc_arch:86,petsc_dir:86,petsc_hello_world:86,phase:[86,109],philim:76,phoni:68,photo:[23,24],php:[29,53,73],phy:15,physic:[14,31,40,47,76,81,83,95,101,137],pick:[75,91],piec:[14,44,81],piecewis:[29,31,105,113,129],pink:[52,68,117],pinkfig:68,pip:[17,24,27,47,48,49,77,83,86,92,94,98,111,116],pixel:[47,52],pkg:122,place:[14,19,27,33,34,47,48,49,51,54,55,60,85,86,88,92,98,104,110,116,134],placemark:47,plaid:47,plain:45,plan:[23,27,44,50,56,91],planar:[61,113],plane:[29,61,109,133],platform:[12,47,78,86,97,102],pleas:[4,16,23,27,39,50,51,72,73,75,78,80,83,84,86,88,90,91,92,94,113],plot:[0,1,2,4,6,7,11,26,29,33,34,35,36,37,38,41,49,52,63,74,75,77,78,81,82,83,85,90,92,94,95,97,98,107,108,109,110,111,127,131],plot_box:[29,131],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_topo_fil:[69,108],plot_typ:[0,21,40,47,68,70,117],plot_var2:3,plot_var:[3,26,40,47,68,69],plotax:[3,40,68,117],plotclaw1:58,plotclaw2:58,plotclaw3:58,plotclaw:[40,67,68,70,117],plotdata:[26,40,59,68,70,78,109,110,117],plotdir:[1,70,117],plotexampl:68,plotfigur:[40,68,117],plotfram:1,plotgaug:40,plotitem:[3,26,40,68,117],plotloop:[68,70],plotstyl:[3,40,68,117],plotter:[1,3,26,70],plotting_makeplot:[33,34],plottyp:58,plt:52,plu:[68,104,120,122,131],pmel:29,png2kml:52,png:[1,12,33,34,36,47,52,58,110],png_extent:52,png_file:52,png_filenam:52,png_name:52,point:[3,5,12,13,14,15,19,27,29,31,33,34,37,40,42,43,44,47,48,49,51,52,58,59,61,75,85,86,90,96,101,111,112,113,114,115,116,118,119,120,121,125,126,129,131,132,134],point_styl:[31,107],pointer:[4,14,61,67,70,91,96,108],pointwis:[24,93,108],poisson:61,poli:52,poly2kml:52,polygon:[3,47,52,131],polynomi:113,poor:27,popup:12,port:[12,28,82,83,88,119],portion:[5,47,76,128],posit:[47,61,64,96,129,131],possibl:[5,12,21,25,27,29,31,40,43,44,47,53,54,61,68,73,75,81,86,87,91,96,101,109,113,114,118,119,129,134],post:[23,24,25,27,47,86,123],poster:15,posteriori:91,postprocess:[63,85],potenti:[58,110,114],power:[47,67,97],pprint:[119,120],practic:27,pre:[3,12,49,77,97],preced:68,preceed:[31,63,134],precis:[37,52,76,81,113,131],predefin:68,predict:43,prefer:[52,86,88,97,116],prefix:[49,78,84,85,90],preliminari:[43,133],prepar:27,prepend:78,preprocess:108,prerequisit:[50,51],present:[5,52,90,91,96,123,134,137],preserv:[64,91],press:[15,86,92],pressur:[40,58,70,85,95,111],presum:114,pretti:12,prevent:47,previou:[1,4,24,27,31,40,48,49,50,51,55,58,70,75,91,104,109,110,111,112,118,120,122,131],previous:[5,21,70,108],price:12,primari:[21,27,41,102],prime:102,principl:[131,134],print:[1,3,6,47,52,58,68,81,85,86,87,93,95,98,104,105,108,110,111,118,120,122,132],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:110,print_git_statu:46,printenv:132,printfig:1,printfram:[1,67],prior:[53,73,120,122,134],probabl:[12,27,47,56,98],probdata:[120,122],problem:[4,6,14,15,19,23,24,26,27,31,33,34,38,41,50,51,54,58,61,64,68,71,74,75,80,82,83,86,89,91,94,98,102,104,105,107,108,111,113,118,120,121,122,123,128,129,132],problem_data:[75,89,90,93,95],problemat:85,proce:[5,27],procedur:[5,14,41,49,134],proceed:48,process:[24,33,34,41,47,75,80,81,86,92,93,96,102,110],processor:93,procur:[53,73],produc:[1,3,21,26,29,33,34,36,40,47,48,50,52,58,62,66,67,102,117,121,131],product:[29,53,73,96],professorship:4,profil:131,profit:[53,73],program:[4,42,44,55,64,97],programmat:73,progress:[23,27,51,91,108,129,131],prohibit:21,proj:120,project:[23,29,44,47,48,73,77,110,111,116,119,129,131],projection_zon:29,promot:[53,73],prompt:[27,28,58,68,70,80,95,97,131],propag:[4,5,15,24,29,44,47,83,91,110,113],proper:[5,13,40,52,56,58,84,96,104,110,115,119,120,125,126,134],properli:[19,31,33,34,36,44,47,48,50,52,60,78,97,102,104,107,116,118,121,131,132,134],properti:[29,58,75,78,81,90,93,131],propos:[27,137],provid:[0,2,4,6,9,14,19,26,27,29,37,41,42,43,44,47,48,52,53,55,61,63,67,73,76,78,79,85,86,88,90,91,95,96,97,100,102,109,113,118,126,128,129,131,134],proximity_radiu:131,pseudo:[47,58],psi:[88,134,137],psystem:80,pth:[51,116],pts:[119,120],pub:29,publicli:123,publish:[4,15,48,83],pull:[23,25,28,48,49,80,88,102,107,110,111,113],pull_al:[27,49],pure:[70,83,86,91,97,102],purpos:[31,41,44,50,53,58,63,73,81,97,100,102,112],push:[27,48,49],put:[1,10,14,27,37,50,52,58,75,80,88,110,116],pyclaw:[1,3,4,11,15,16,22,23,26,27,40,49,63,64,70,71,82,86,88,94,97,98,113,116],pyflak:83,pykml:47,pylab:[0,68],pylint:83,pypa:71,pyplot:[52,131],pyramid:47,python3:111,python:[3,4,6,7,10,12,15,18,21,22,24,26,27,29,31,33,34,35,36,38,40,41,42,43,46,47,49,50,51,52,61,63,64,67,68,69,73,74,76,80,83,86,87,88,89,91,94,95,96,102,105,106,108,110,111,113,116,129,131,132,135],python_io:63,pythonpath:[50,51],pyweno:[73,91],q0000:[58,118],q0001:[58,59],q000n:[1,7],q0_vs_radiu:3,q1d:134,q_i:[113,137],q_l:[89,113],q_out_field:40,q_r:[89,113],q_t:[88,91,95,134,137],q_x:[95,137],qbc:[88,91,93],qcor:76,qinit:[19,21,41,54,55,76,114,134],qinitdata:121,qinitfil:121,qquad:137,qtrue:68,quad2kml:52,quad:52,quadrat:29,quadrilater:[31,52],qualiti:47,quantiti:[13,31,52,58,78,82,83,89,93,115,121],queri:[76,81,96],question:[23,27,90],quezada:[15,73,83],quick:[12,24,34,41,42,71,97,102,127],quicker:12,quickli:[40,52,77,110,131],quit:[28,58,68,70],quot:52,radial:[3,43,134],radian:43,radio:52,radio_styl:52,radiu:[3,121,131],rai:131,rais:[23,29,50,51,90,92,96,131],rake:[29,61],ran:[34,127],randal:[4,15,83],randi:[29,79],rang:[3,12,29,40,43,47,104,109],rare:[61,110],raster:[47,129],rate:12,rather:[5,19,21,27,28,31,48,49,54,55,56,60,86,88,91,99,108,109,110,112,117,118,119,129,131,134,137],ratio:[5,13,21,45,58,61,79,91,115,118,119,120],raw:118,rcl:47,reachabl:90,reaction:88,read:[1,4,13,27,29,31,33,34,40,44,45,50,51,52,55,58,63,67,76,78,85,90,96,99,109,110,115,120,121,122,125,126,129,131,134,135],read_:[84,90],read_aux:90,read_data_lin:96,read_head:131,read_netcdf:131,read_output:31,reader:135,readi:[75,76,78,92],readm:[48,49,113,116,134],real:[44,56,96,113,133],realist:47,realiti:44,realli:[5,102,134],reason:[44,47,52,61,62,64,86,88,101,118],rebas:27,rebuild:48,recal:[1,11],recalcul:105,receiv:[47,102],recent:[4,12,21,24,26,28,29,46,48,49,50,51,54,56,62,68,70,71,72,109,113,129],recip:50,recogn:[42,129],recomil:31,recommend:[4,29,31,33,34,51,62,67,77,86,87,91,92,94,95,118,120,121,122,135],recompil:[27,36,37,54,62,96,134],recomput:[70,75,105],reconstruct:[83,91],record:[31,40,93,133],recov:27,recreat:[27,36,54],rect:29,rectangl:[5,29,101,131],rectangular:[5,6,14,15,29,31,42,52,61,81,101,119,121,129],recurs:[48,60,104],red:[2,3,27,40,52,68,102,117],redhat:97,redirect:48,redistribut:[53,73],redraw:[58,70],reduc:[5,14,47,109,111,137],refactor:[104,105,106,108,110,111],refer:[6,19,24,29,33,34,41,42,47,54,55,58,75,79,80,81,85,89,91,93,98,112,113,129,131,133,134],referenc:[47,114],refin:[3,4,6,7,15,21,41,44,47,58,63,64,75,110,117,118,119,120,128,129,134],refinement_data:121,refinement_ratios_i:[7,119,120],refinement_ratios_t:[119,120,121],refinement_ratios_x:[119,120],refinementdata:107,reflect:[4,14,27,48,118,120,122],refresh:[12,40],regard:[4,109],regardless:[12,101,118,121],regener:54,region00:52,region:[3,5,6,12,14,21,31,41,44,45,47,52,56,64,114,119,120,129,131],regiondata:[101,120],regions2kml:52,regist:[50,51],registr:131,regress:[21,24,27,46,86,110,111,127],regression_test:[34,127],regrid:[9,101,104,105,110,119,120,128],regrid_buffer_width:[101,119,120],regrid_interv:[101,119,120],regular:[31,131],reiniti:110,reject:[85,91,118],rel:[12,19,29,36,42,44,47,48,61,62,68,96,102,105,106,107,108,109,110,111,114,119,121,123,129,133],relat:[3,21,48,64,89,111,114],releas:[17,21,24,39,47,48,50,51,72,77,91,92],release_5_x_x:49,relev:[21,26,37,41,47,48,102],reli:[64,76,87,110],relief:[114,133],reload:131,reltol:96,remain:[31,47,51,88,96,98,104,125,126],remak:48,rememb:[13,26,62,68,86,115,125,126],remot:[12,47,49,131],remote_directori:131,remote_topo_url:131,remov:[1,3,19,36,51,52,54,59,70,86,98,104,107,108,131,132],renam:[19,21,33,34,54,88,91],render:[21,47,52,135],reorder:[19,21],reorgan:[21,76,103],repeat:[70,112],repeatedli:[3,86,92],replac:[5,12,40,44,49,54,67,76,80,86,87,88,89,93,96,102,104,110,112,113,131,132,133],replace_no_data_valu:131,replace_valu:131,replot:70,repo:49,report:[23,29,31,46,102,109,116,118,120],repositori:[21,23,24,25,28,31,34,35,38,41,48,51,54,55,91,98,100,102,107,110,124],repres:[29,75,81,88,89,91,93,101,131,137],represent:[81,90,96,131],reprint:73,reproduc:[15,53,73],request:[23,25,29,48,63,75,80,81,85,88,90,102,110,113,131],requir:[3,4,14,19,21,24,26,33,34,36,41,43,44,49,51,58,61,64,67,70,71,75,76,81,84,87,88,91,92,93,95,96,101,102,104,105,108,110,113,117,118,119,120,121,122,129,132,135,137],rerun:[37,40,49,51],rescal:29,research:[4,15,41,44,73,91,100],reserv:[53,73],reset:[37,96],reset_count:96,resetplot:[68,70],resid:[48,50,54,81],resolut:[4,5,15,29,40,81,91,95,96,104,108,113,114,121,129,131,133,134],resolution_limit:131,resolv:[4,31,47,48],resourc:[15,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,52,83,84,89,131],respons:[12,44,75,90],respos:49,rest:[21,70,114,125,126,129,131],restart:[12,24,40,70,83,109,110,111,118,120,122],restart_fil:[112,118,120,122],restor:5,restrict:[47,121,129],restructur:[10,48],result:[1,3,4,6,8,11,15,24,25,29,31,32,33,34,35,40,41,43,44,48,49,51,52,54,56,58,61,67,68,69,70,74,78,80,83,85,89,92,96,101,102,104,108,110,111,118,119,120,121,122,127,131,133],retain:[53,73],retak:[118,120,122],retriev:[12,43,70,76,91,131,133],return_topo:131,return_xarrai:131,reutil:76,reveal:[40,95],revers:48,revert:47,review:[15,79],revis:[5,110],rewritten:29,rgb:68,rho:[58,95,120],rhou:58,rhov:58,richardson:[21,119,120],rid:27,ridg:47,riemann:[4,7,19,21,22,27,41,49,55,64,73,75,82,91,92,93,95,116,118,120,122,125,126,137],riemann_aug_jcp:111,riemann_interact:109,riemann_solv:91,riemann_tool:108,right:[31,53,56,61,73,81,86,88,89,93,95,112,113,137],rigid:29,rigin:29,rigoutsi:5,rigoutso:15,rise:[29,114],rise_fract:29,rise_shap:29,rise_tim:29,rise_time_start:29,rjl:[5,15,98],rjlevequ:[4,27],rjlkei:12,robust:[41,131],rock:61,roe:[79,113],roman:50,root:[28,51,84,85,90],rossbi:80,rossmanith:15,rotat:45,rough:56,roughli:128,round:47,roundoff:81,routin:[4,5,14,19,24,26,29,31,33,34,40,41,42,47,54,58,59,62,63,64,67,70,73,76,78,84,87,88,91,93,94,97,101,104,105,108,110,113,118,120,122,131,132,134,135,137],row:[29,79,101,129,131],rp1:[113,137],rp1_advect:55,rp1_ptwise:113,rp_:89,rp_sourc:88,rpn2:113,rpn2_ptwise:113,rpn2_vc_advect:106,rprint:[119,120],rpt2_ptwise:113,rsphere:[43,76],rst:[48,49],rsync:48,rsync_clawpack:48,rule:[12,52,76],run1:54,run:[1,5,6,11,12,14,19,21,23,24,27,31,36,38,40,41,46,47,48,49,51,52,54,56,58,59,63,64,67,68,70,71,74,76,78,81,82,83,85,88,92,94,95,96,98,101,104,105,109,110,111,112,113,120,121,122,127,128,131,134],run_app_from_main:96,run_data:78,run_exampl:131,run_seri:96,runclaw:[46,105,113],rundata:[21,31,40,52,101,104,112,118,119,120,121,122],rundir:78,rung:[83,91],runmak:78,runnabl:96,runtest:[34,86,127],runtim:96,runup:56,ruptur:29,rupture_tim:29,rupture_typ:29,safe:62,safer:54,safeti:79,sagemath:77,sagemathcloud:77,sai:[12,14,27,52,94,101],same:[3,5,7,12,14,21,24,27,30,31,37,40,42,43,44,47,49,51,52,54,56,59,64,67,68,69,70,75,79,81,83,85,88,89,91,96,97,104,105,109,110,112,113,118,119,120,121,125,129,131,134],sampl:[6,7,15,24,31,37,41,47,102,112,118,119,131,134],san:50,sanromd:50,santiago:47,satisfi:[91,101,137],save:[12,24,25,46,50,52,63,78,82,91,109,110,112,131],savecod:78,savefig:52,scalabl:[15,83],scalar:[26,29,85,93,113,118,137],scale:[4,29,45,47,58,64,83,104,110,121],scan:37,scatter:[3,21,58],scenario:[44,114],scheme:[79,89],schlieren:[3,58],sci:15,scienc:[4,15,73],scientif:[4,15,83,86,97],scipi:[12,76,97,131],scp:12,scratch:[43,95],screen:[12,27,47,52,78,85,86,109,120,122],screenshot:[12,47],script:[10,18,19,27,29,36,40,47,48,50,54,58,64,67,73,76,80,82,83,85,86,91,96,97,98,102,113,117,121,122,131],scroll:12,sea:[29,40,41,42,44,47,61,99,108,114,121,129,131,133],sea_level:[31,44,52,121,129,131],seab:56,seafloor:[29,44,61,133],sealevel:[24,41,121],search:[1,12,51,67,83,96,98,110,116],sec:29,second:[3,14,29,31,34,40,43,47,52,58,75,85,91,101,104,110,112,118,127,128,131,134,137],section:[5,12,14,33,34,37,42,44,49,50,55,58,67,70,102,112,118,121,131],secur:12,see:[0,1,2,3,4,5,6,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,53,54,55,56,58,59,60,61,62,63,66,67,68,69,70,71,72,73,76,78,80,81,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,131,132,133,134,135,136,137],seem:[93,98,117,129],seen:[11,21,31,33,34,35,44,48,62,88,118,123],segement:131,segmentedplanefault:29,seism:[15,29],seismic:29,select:[12,14,27,31,85,91,104,111,118,121,133],self:[29,91,131],semi:91,send:[12,23,88,113],sens:[26,47,137],sensit:[44,56],sent:[85,93],separ:[1,27,47,48,50,52,55,83,91,131],seper:96,sept:49,sequenc:[19,21,55,86,92,95,96,102,104,111,113,134],serial:[86,90,96,128],server:[12,28,47,48],servic:[24,53,73],session:[1,33,34,35,83,87,92],set:[0,1,2,3,5,7,12,13,14,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,48,50,51,52,54,55,60,61,62,63,64,66,67,75,76,78,80,81,82,83,85,86,90,91,92,93,94,95,96,98,99,101,102,104,105,108,109,110,112,113,115,117,118,119,120,121,122,123,129,131,133,134,137],set_all_st:90,set_aspect:45,set_aux_from_auxbc:93,set_corn:29,set_count:96,set_cparam:[75,93],set_dynamic_slip:29,set_num_ghost:93,set_printopt:81,set_q_from_qbc:93,set_subfault:29,set_xyz:131,setaux:[19,21,55,76,104,105,113,118,120,122],setaux_default:48,setenv:86,setgaug:[40,109],setlevel:85,setplot1:58,setplot2:58,setplot3:58,setplot:[0,1,2,3,6,18,19,21,24,38,40,59,66,67,87,88,96,110,132,135],setplot_fil:47,setplot_kml:47,setprob:[55,120,122,134],setrun:[5,6,7,14,18,19,24,31,33,34,36,38,41,42,44,49,52,54,56,63,64,68,99,101,104,108,109,110,112,113,114,129,132,134],setrun_setgeo:121,setup:[27,35,50,75,76,80,83,86,88,91,92,93,98,100,116,132],setup_gauge_fil:81,sever:[0,1,2,9,14,19,21,22,29,33,34,36,40,42,44,47,49,51,58,67,92,101,102,103,104,105,108,109,110,111,117,121,127,129,131,134],sftp:12,shaheen:85,shall:[53,73],shallow:[13,14,15,31,41,44,64,76,80,83,99,105,106,108,110,113,115,121,125,126,129,134],shallow_spher:[76,102],shallow_water_riemann_solv:24,shallowest:61,shape:[29,43,52,76,81,86,93,131],shapshot:12,share:[24,25,47,51,62,64,81,86],sharp:52,sharpclaw:[4,22,24,64,73,80,82,83,88,104,113],sharpclawnd:91,sharpclawsolv:91,sharpclawsolver1d:91,sharpclawsolver2d:91,sharpen:79,sharper:[47,52],shear:[15,29],shell:[27,50,51,62,68,70,86,92,95,97,98,110,116],shg:58,shift:[29,44],ship:31,shock:[5,15,44,80,91,101],shock_bubble_interact:[33,35,80,83,92],shockbubbl:88,shoot:[67,83],shore:[31,41,121],shorelin:[47,131],shoreline_xi:131,shorter:[3,101,131],shortli:[27,102],shot:12,should:[0,1,2,3,4,5,11,12,14,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,48,49,50,51,52,54,56,58,59,60,62,67,68,70,76,84,85,86,88,90,91,92,93,94,95,96,98,99,101,102,104,105,108,110,111,112,113,114,116,117,118,119,120,121,122,123,127,129,131,132,134,136,137],shouldn:80,show:[0,2,3,8,9,27,29,33,34,40,47,48,49,52,54,58,70,81,95,98,102,108,131,132,134],showcolor:68,showgridlin:58,showitem:1,shown:[3,12,48,52,55,56,58,64,85,105,106,107,108,109,110,111,131,134],showpatchbord:58,shrink:131,shu:91,siam:[15,23,83],side:[5,14,31,47,56,61,102,113,137],sidebar:47,sift:29,sift_slip:29,siftfault:29,sigma:75,sign:[12,23,68],signatur:[3,76,79,82,84,89],signific:[16,56,114,131],signitur:90,silenc:85,silo:135,similar:[4,12,14,27,31,34,40,47,75,76,88,91,95,127,129],similarli:[36,80,86,88,128],simpl:[31,33,34,76,83,88,91,96,100,102,131],simplest:[50,60,95],simpli:[12,31,33,34,35,40,47,50,54,55,75,77,78,80,85,86,92,102,113,123,129,131,134,135],simplifi:[67,68,102,111,134],simul:[33,34,35,42,44,47,58,78,81,83,85,86,88,92,95,110,111,121],simultan:[47,110],sin:[43,68],sinc:[0,3,4,5,14,16,19,21,27,31,37,43,44,47,48,49,51,52,54,55,61,62,63,67,68,75,76,77,85,97,101,102,104,108,109,110,111,112,113,114,118,119,121,129,132,133],singl:[0,1,2,3,5,14,18,21,22,26,27,29,40,42,47,52,54,58,62,63,75,81,85,90,96,102,107,108,110,113,118,119,120,121,129,131,133,134],sisc:[15,83],sit:12,site:[27,47,50,51,98,116],situat:[47,58],size:[19,29,40,47,52,62,63,67,81,86,91,110,120,122,129,131],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,58,113],slide:97,slider:[47,52],slightli:[14,110,111],slip:[24,29,41,100,129,133],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,91],slope_i:47,slope_x:47,slow:[12,47,85,94],slowli:[52,129],small:[14,40,56,101,102,104,109,112,118,120,121,129,131,133],smaller:[12,47,56,64,81,85,104,118,120,121,122,131],smallest:101,smear:52,smooth:[29,91,101,134],smooth_data:131,snapshot:[27,85],soc:[15,29],softwar:[5,12,24,28,41,44,53,59,73,83,85,123,129],sol:75,sole:113,solid:[3,14,47,61,88,117,118,120,122],solitari:15,sollut:61,solut:[1,3,4,14,21,24,26,34,40,43,58,61,63,67,70,76,78,81,83,84,85,88,91,93,94,95,101,102,108,109,112,113,117,118,119,120,122,127,134,137],solv:[4,7,14,15,19,25,33,34,44,51,74,76,78,81,83,88,89,92,113,118,129,134,137],solver:[4,5,19,21,22,24,27,41,51,55,73,74,78,82,85,93,106,108,110,111,118,120,122,125,126,137],solver_nam:113,solver_typ:[80,91],some:[3,4,5,6,7,9,11,14,15,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,55,61,62,63,67,69,70,73,76,77,79,85,87,88,90,92,93,94,95,97,98,100,101,102,104,105,106,107,108,109,110,111,113,114,117,118,119,120,121,122,123,128,129,131,134],someon:[27,54],someth:[12,26,27,54,60,67,85,90,91,98,129,132,134],sometim:[31,51,54,68,75,85,114,133],somewhat:[62,67,101,102,110,118],somewher:[59,108],sonel:133,soon:91,sorin:4,sort:[12,117,132],sound:[75,95],sourc:[4,15,22,24,27,29,37,41,47,48,49,51,52,53,55,56,67,73,76,80,82,91,92,94,95,96,98,100,102,110,111,114,118,120,121,122,124,125,126,129],source_list:96,source_split:[91,118,120,122,134],space:[5,6,14,15,29,31,40,47,61,81,85,88,101,108,112,118,119,120,121,122,129,131,134],spacial:121,span:[43,47,52],spatial:[5,15,29,56,88,101,104,108,113,120,122,137],spawn:102,specfi:131,special:[4,6,14,41,42,47,53,64,73,97,101,131],specif:[3,21,27,29,40,41,43,47,51,53,55,56,73,74,76,78,84,85,90,96,110,111,117,118,119,120,121,122],specifi:[0,1,2,3,4,5,6,13,14,19,21,24,26,27,29,31,32,36,37,38,40,41,42,43,44,46,47,51,52,54,55,56,58,61,62,63,64,66,67,69,75,78,81,85,88,90,91,94,96,98,99,102,104,107,108,109,110,111,112,113,114,115,120,122,123,125,126,128,129,131,132,133,135,137],speed:[31,75,79,89,95,110,113,118,121,131,134,137],spell:68,spend:109,spent:128,sphere:[43,76,105,121],spheric:[15,47],sphinx:[10,22,24,49,111],sphinx_web:48,sphinxcontrib:48,spite:55,split:[5,62,91,108,109,118,120,122,128,134,137],spot:68,sprint:[119,120],spuriou:[14,102],sqrt:[3,31,56,75,88,95,120],src1:[55,126,134,137],src1d:126,src2:[76,126,134],src3:[126,134],src:[5,10,13,14,18,19,27,29,31,36,37,43,46,49,51,52,54,55,58,61,62,69,87,88,96,98,99,101,102,105,108,109,111,113,115,118,120,122,125,131,132,137],src_split:[118,120,122],srcn:[118,134],ssh:[12,27],ssp104:91,ssp33:91,ssplmm32:91,ssplmm43:91,ssplmm:91,ssprk22:91,stabil:[91,118],stabl:71,stack:[62,108],stage:[91,114,129,131],stai:25,stand:4,standard:[5,14,29,47,58,63,76,79,91,97,98,102,120,121,122,123,129,134,137],start:[1,2,4,5,6,8,12,23,26,27,28,29,31,33,34,35,36,40,41,43,47,50,51,52,54,60,68,70,71,75,86,90,91,97,98,102,109,112,113,121,127,129,134],start_fram:90,start_max:31,state:[12,15,24,27,48,61,68,75,76,78,83,85,86,88,89,90,91,94,95,102,113,118,129,137],statement:[33,34,58,63,97,98,110,120],station:[43,114,133],stationari:129,statist:[24,109],statu:[12,27,46,78,95],stdout:102,steadi:[61,129],steep:137,stegoton:80,stencil:93,stencil_width:93,step1:55,step2:76,step2i:108,step2qcor:76,step2x:108,step3i:108,step3x:108,step3z:108,step:[5,9,14,18,27,31,33,34,35,40,47,48,49,58,67,70,73,74,75,76,78,85,88,91,93,95,101,104,109,110,112,113,116,118,119,120,121,122,129,137],step_hyperbol:91,step_index:91,step_interv:120,step_sourc:[88,91],stepgrid:128,stepgrid_dimsplit:108,steps_max:[118,120,122],stiff:118,still:[1,6,7,12,14,21,23,25,31,32,47,50,55,58,63,67,73,91,101,102,108,109,110,111,112,113,121],stnd:43,stommel_storm_modul:108,stop:[62,68,104,120,122,131],storag:109,store:[0,1,12,31,36,47,58,63,85,88,93,94,95,102,104,110,117,119,121,128,129,131],storm:[15,23,108,111],storm_modul:108,str:[0,1,3,29,52,118,119,131],strang:[91,118,120,122,134],strategi:5,stream:68,stress:[75,85],stretch:131,strict:[53,73],stride:[21,131],strike:[29,61],strike_direct:29,string:[0,1,3,6,29,40,43,47,52,68,76,78,79,81,84,85,90,96,98,118,121,129,131],strip:[52,131],strip_archive_extens:52,stripe:47,strong:91,strongli:58,structur:[6,9,21,31,51,54,64,90,91,110,117,131],student:4,studi:[44,56],style:[5,21,27,29,45,47,63,68,73,78],sub:[29,102,131],subclass:29,subdirectori:[19,21,22,33,34,48,50,51,54,60,70,80,85,98,102,117,121,123,127,131],subdivid:29,subdividedplanefault:29,subdivis:29,subduct:[44,61],subfault:[29,61,133],subject:[47,101,119,121],submodul:[25,49],subplot:[0,29,70],subrepo:49,subrepositori:[27,49],subroutin:[4,5,8,14,21,31,55,101,108,113,118,119,128,134,137],subsequ:[3,9,58],subset:[29,131],substanti:[27,73,108],substitut:[53,73],subsurfac:129,succeed:91,succesfulli:76,success:[58,90,131,134],successfulli:[54,90],suffici:[12,14,19,62,104,121],suffix:[54,131],suggest:[4,23,28,43,51,70,71,113,121,136],suit:[27,47,102],suitabl:[7,14,19,41,44,47,90,100,113,114,131],sum:[40,85,93,128],sum_:137,sum_p:137,summar:[3,27,30,101,103,134],summari:[23,49,118,119,120,121],superbe:[79,118,120,122],superbee_limit:79,superclass:91,supercomput:[83,85,86],superpack:97,superposit:61,superpow:79,superpower_limit:79,supplement:123,supplementari:102,suppli:[101,134,137],support:[4,7,12,21,37,44,47,48,50,51,73,75,76,84,85,87,91,108,110,111,113,118,129,132,135],suppos:[14,55,58,68,98,101],suppress:[0,2,3,27,47,52,109,111,118,119],sure:[1,19,27,36,48,49,58,64,75,86,88,90,94,96,114,131,132,133],surfac:[15,21,29,31,40,42,44,47,61,67,69,76,83,95,99,108,121,129],surface_or_depth:[47,69],surg:[15,23,108,111],surround:[101,131],surviv:73,swap:131,swaphead:131,sweep:[7,113],symbol:[3,50,58,98],symlink:[50,98],symmetr:[3,43,134],symmetri:14,syntax:10,sys:[78,120,122],system:[4,14,15,22,47,51,52,55,62,63,73,83,85,86,88,89,92,95,98,102,113,118,120,122,134,137],systemat:21,t0000:58,t0001:[58,59],t0002:58,t_end:91,tab:12,tabl:[52,56,67],tackl:[23,27],tag:[47,48,49,119,120],take:[5,21,26,27,29,43,48,56,58,68,75,88,91,95,96,101,102,107,118,119,120,121,131,134,137],take_one_step:91,taken:[5,31,61,85,91,101,118,134],tall:0,tan:68,tank:[14,44],tar:[12,50,52],tarbal:132,tarfil:[17,111,116],target:[51,68,76,88],task:67,tchknnnnn:112,tck00100:109,tck:109,tckaaaaa:109,tckbbbbb:109,tcp:12,tcsh:86,teach:[41,44,100],team:[4,23,53,83],techniqu:[15,25],technolog:73,tell:[59,63,68,75,98,102],templat:76,temporari:93,temporarili:58,ten:[4,64],tend:91,tend_max:31,tensil:15,tensor:29,tensorproductfault:29,tent:23,term:[4,24,41,44,53,76,82,91,101,111,118,120,121,122,125,126],termin:[50,77,116,118,119],terrain:56,terrel:4,test:[21,24,29,33,37,46,47,49,50,51,56,67,73,74,76,82,83,96,101,105,109,110,111,113,122,128,131],test_acoust:102,test_app:[96,102],test_dtopotool:29,test_shallow_spher:102,test_topotool:[105,131],teton:47,tex:1,text:[10,48,49,52,63,78,91,108],tfinal:[75,78,95,112,118,120,122],tfluct:91,tfluct_solv:91,than:[3,5,12,14,19,21,27,28,29,31,40,47,48,49,52,54,55,56,60,63,67,70,75,76,78,81,85,86,88,89,91,96,97,98,101,102,104,107,108,109,110,111,112,114,117,118,119,121,128,129,131,134,137],thank:[4,83],thei:[3,5,12,14,26,27,29,31,40,44,47,49,51,52,55,58,63,67,81,88,91,96,101,102,110,117,121,129,131,134],them:[12,17,21,27,29,31,40,47,48,58,59,64,73,75,80,84,85,86,88,96,101,102,105,124,131,134],theori:[53,73,137],therefor:[76,86,129],thereof:12,thesi:91,theta:79,theta_limit:79,thi:[0,1,2,3,5,7,9,10,11,12,14,15,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,49,50,51,52,53,54,55,56,58,59,61,62,63,67,68,70,72,73,75,76,78,79,80,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,104,105,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,135,136,137],thing:[0,12,14,21,27,44,52,70,80,97,98,102,111,112],think:[51,56],third:[14,31,79,128,131],thn:118,thoroughli:84,those:[4,5,9,11,21,23,44,47,49,50,51,64,75,76,78,85,88,93,102,104,112,123,127,131,134],though:[3,64,129],thought:114,thousand:[4,64],thread:[37,62,128],three:[3,12,15,21,29,31,44,47,55,58,86,90,96,102,118,121,129,131,134],threshold:56,through:[4,12,27,33,34,40,44,47,58,64,67,76,88,93,95,96,98,100,101],throughout:110,thu:[5,43,85,88],tick:47,ticklabel:107,ticklabel_format:45,tidal:[85,114],tide:[40,41,43,114,131],tidesandcurr:43,tier:12,tild:137,time:[0,1,5,6,9,14,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,52,58,59,62,63,64,68,73,75,78,79,83,85,91,93,95,101,102,104,107,109,110,112,113,116,117,120,122,129,132,133,137],time_files_scanf:135,time_integr:91,time_zon:43,timer:111,timespan:52,timestep:[78,85,109,111,118,120,122],timezon:52,tip:[23,41,51,67,82,83,88,97],tipe:95,titl:[0,1,4,15,40,47,52,67,83,110,131],title_with_t:[0,68],toctre:[6,24,41,80,83],todo:[14,31,101,113,131,137],togeth:[14,27,29,48,61,101],toggl:120,toler:[31,96,101,102,110,119,120,121],too:[5,43,47,49,109,120,122],tool:[6,7,15,21,22,27,29,33,34,41,42,43,44,47,51,52,58,61,66,67,68,69,71,83,98,100,105,106,110,111,123,129,131,133,135],toolkit:[86,135],top:[0,1,3,10,22,29,47,48,49,50,51,61,68,88,89,98,102,112,116],topgraphi:131,topic:58,topo1writ:131,topo2kml:52,topo2kmz:52,topo2writ:131,topo3writ:131,topo:[24,41,44,47,52,69,98,104,106,114,121,129,131],topo_data:121,topo_fil:131,topo_file_nam:52,topo_fnam:131,topo_func:131,topo_typ:[52,108,109,131],topo_upd:104,topo_xlim:47,topo_ylim:47,topofil:[52,121,131],topograph:47,topographi:[14,15,24,31,40,41,44,52,56,61,69,100,104,105,106,108,109,114,125,126,130],topograpi:129,topoplotdata:108,topotool:[41,43,52,105,106,107,108,109,129,130],topotools_exampl:[41,100,131],topotyp:[121,129],topotype1:131,topotypein:129,topotypeout:129,torrilhon:79,tort:[53,73],total:[5,29,47,85,91,118,119,120,122,128],total_energi:85,total_step:[118,120,122],tout:122,toward:[4,29],tprint:[119,120],trace:85,traceback:68,track:[23,24,27,47,48,50,51,62,75,96,102,104,121],tracker:27,tradeoff:101,tradit:[78,84],traffic:[113,134],trail:52,tran:15,tranpsort:118,transect:[31,121],transform:37,translat:[61,114,133],transmiss:91,transmit:118,transon:110,transpar:[47,52],transport:[118,120,122],transvers:[7,110,113,118,134,137],transverse_wav:[118,120,122],trap:37,travel:119,travi:21,tree:[28,50,51,88,116],triangular:29,trigger:121,troubl:[33,34,67,83],troubleshoot:[24,50,83],truli:90,truncat:14,tscale:52,tstart:91,tstart_max:31,tsunami:[14,15,24,31,41,42,56,61,85,104,107,114,121,129],tt3:131,tulan:23,tune:25,tupl:[3,29,43,52,68,81,85,131],turbul:[44,91],turn:[40,42,44,52,65,68,85,102,109],tutori:[12,70,74,78,83,92,98,100],tvd:[75,91,137],twice:[47,118],twitter:23,two:[0,3,4,6,7,13,15,21,27,29,31,40,43,47,48,50,52,58,63,68,75,81,84,85,88,91,94,96,100,101,102,104,108,109,112,113,115,116,120,121,129,131,134,137],two_d_classic_sourc:76,txt:[27,40,46,49,73,85,110,111,112],type:[3,4,6,12,19,27,29,33,34,36,40,47,54,58,68,69,70,75,76,77,79,81,86,87,91,92,95,96,97,119,120,121,129,131,137],typic:[3,19,54,55,58,61,63,64,70,76,86,88,91,93,101,119,120,128,133,134,137],u_t:95,u_x:95,ubuntu:[12,50,97],ucar:59,ucsb:[29,133],ucsbfault:29,ulimit:62,ultrabe:79,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,56],unchang:58,uncommit:[27,46,49],undefin:94,under:[4,6,21,35,47,50,53,55,67,73,81,102,110],underflow:104,underli:[3,47,110],underlin:27,understand:[8,24,33,34,44,67,83,95,113],understood:44,underwat:[41,47],undesir:112,undivid:101,unexpect:[43,47,52,54,98,99,103,104,105,106,107,108,109],unfortun:50,unidata:59,uniform:[29,61,64,76,129],uniformli:129,unind:[52,98,99,103,104,105,106,107,108,109],union:129,uniqu:[1,63,109],unit:[29,42,43,81,110],univers:[4,15,23,48,53,73,90],unix:[36,60,97],unknown:[29,93],unkown:93,unless:[5,36,37,52,114,118,131],unlik:[27,49,63],unlimit:62,unmap:81,unnecessarili:105,unneed:109,unpredict:58,unrecogn:96,unsplit:[118,120,122],unstabl:109,unstructur:131,unsuccess:90,unsur:118,untar:50,unterweg:73,until:12,unus:2,unzip:47,upbnd:[119,120],updat:[5,12,21,22,24,31,45,50,51,70,91,93,94,104,108,110,111,113,119,120,122,124,128,134],update_saved_valu:91,updip:29,upgrad:71,upload:49,upon:93,upper:[21,31,79,81,88,118,120,122,129,131],upper_bound_limit:79,upper_glob:81,uprint:[119,120],upstream:49,upstrik:29,upward:44,upwind:118,url:[4,15,47,83,131],usag:[0,1,2,3,12,47,50,51,84,131],use:[3,4,11,12,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,49,50,51,53,54,55,56,58,59,62,63,66,67,68,70,71,73,75,76,77,78,79,80,81,83,84,85,86,88,91,92,93,94,95,96,97,98,102,105,107,108,109,110,111,113,114,116,118,119,120,121,122,129,131,132,133,134,135,136,137],use_for_kml:47,use_fwav:[113,118,120,122],use_petsc:[80,86],used:[0,1,2,3,4,5,6,7,10,12,14,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,51,52,53,54,55,56,58,59,61,62,63,64,67,68,70,73,75,76,78,79,80,81,83,86,88,89,90,91,93,95,96,98,99,101,102,105,109,110,111,112,113,114,116,117,118,119,120,121,122,125,128,129,131,134,135,137],useful:[0,3,9,18,26,27,28,31,33,34,37,40,42,45,46,47,50,51,52,62,63,69,73,76,85,97,98,101,102,113,116,118,119,121,129,131,132,137],useoffset:45,user:[0,2,3,4,5,11,12,18,19,21,22,24,25,26,27,31,37,44,47,51,52,56,58,68,76,77,80,86,94,96,97,98,101,108,110,113,118,120,121,122,124,131,137],user_bc_low:88,usernam:27,uservari:58,uservariablefil:58,uses:[29,31,33,34,41,47,48,58,64,76,78,81,86,96,102,110,113,128,131,137],usg:[4,29,133],using:[0,1,3,4,5,6,8,10,11,12,14,15,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,52,54,55,56,59,60,61,62,63,64,67,68,69,70,71,75,76,77,78,79,81,83,86,87,88,91,93,94,95,97,98,101,102,108,111,113,116,118,120,121,126,128,129,131,132,133,135,137],usr:59,usual:[0,2,3,5,29,40,42,47,52,54,59,61,63,80,81,86,88,89,91,96,101,110,113,118,119,120,121,122,132,134],utah:23,utc:[47,52],util:[22,24,27,41,47,63,67,70,83,102,117,130,131,132],uwamath:12,valid:[3,44,61,78,85,90,93,110,121,131],valout:[59,63,128],valout_geo:59,valout_nc:59,valout_nc_geo:59,valu:[3,5,6,14,19,21,26,29,32,33,34,37,40,41,43,45,46,47,52,54,56,58,62,63,68,76,81,83,85,88,89,90,91,93,95,96,101,102,104,105,107,108,110,112,113,114,118,119,120,121,122,129,131,132,134,137],valueerror:[29,131],valuemax:31,van:[79,91,118,120,122],van_leer_klein_sharpening_limit:79,vanleer:[75,91,118,120,122],vari:[3,13,15,29,41,56,88,90,108,113,114,115,129,137],variabl:[0,3,12,21,24,26,27,29,31,33,34,36,40,41,46,47,48,50,51,58,60,62,64,68,75,76,86,90,91,93,94,96,98,108,109,110,112,113,118,119,120,122,129,131,132,134],variable_dt_refinement_ratio:[119,121],variant:[19,96,102],varieti:[40,78,97],variou:[19,21,28,29,44,58,68,70,81,95,97,98,101,110,113,117,121],vastli:114,vector:[21,75,79,85,93,113],veloc:[14,31,43,58,70,88,95,110,114,118,119,120,122,134],verbatim:48,verbos:[27,29,43,52,78,85,91,102,118,120,122,131],verbosity_regrid:[119,120],veri:[3,14,21,31,44,47,50,51,52,61,68,73,76,85,86,87,88,91,102,105,109,118],verifi:[43,96,102,133],verifyerror:96,version:[0,1,4,5,6,7,8,10,12,13,14,16,19,21,22,27,31,32,37,40,41,42,44,47,49,51,52,55,56,58,59,62,67,68,70,71,76,79,83,86,91,92,94,97,101,102,104,105,108,109,110,111,113,115,116,118,119,120,121,122,125,126,129,131,134,137],versu:131,vertic:[29,44,47,52,114,121,131,133],via:[12,21,22,27,28,29,33,34,37,38,40,42,44,47,48,50,54,58,62,64,68,71,75,81,87,90,92,94,98,101,102,113,116,123,125,126,129,131,134],view:[3,4,21,33,34,40,41,47,48,52,63,67,69,70,75,86,92,108,123,124],viewabl:[47,78],viewable_attribut:78,vim:27,violat:[91,131],virtual:[4,12,24,26,93,97],vis:78,visclaw:[1,6,12,21,22,23,27,40,42,45,47,50,51,54,58,64,68,69,70,71,83,87,92,98,116,117,123],visibl:[12,47,100,123],visit:[21,24,67],visual:[22,23,27,33,34,40,41,51,58,63,64,67,83,87,88,98,108,135],vogl:4,volcano:4,volum:[4,15,31,38,52,58,83,119,128,129,134],vrt:47,wai:[5,12,14,25,27,33,34,40,47,51,52,53,54,68,70,71,73,75,78,80,81,86,88,90,92,95,97,98,100,104,110,111,113,117,118,124,129,134,136,137],wait:12,wall:[14,37,88,95,109,118,120,122,128],wang:29,want:[0,3,9,12,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,48,49,50,51,52,54,55,56,62,68,70,75,76,77,78,85,86,98,100,102,109,113,116,117,120,121,124,129,131,132],warm:79,warn:[27,84,85,91,118,132],warp:47,warranti:[53,73],washington:[4,23,48,53,131],water:[14,15,40,41,42,43,44,52,64,67,76,83,105,106,110,113,114,121,129,131,133,134],water_level:43,wave:[4,5,14,15,24,31,44,47,79,83,88,89,91,101,108,110,111,114,118,119,120,121,122,134],wave_toler:121,wavelength:44,web:[22,24,27,33,34,47,48,49,123,131],webpag:[21,33,34,38,42,47,49,54,114],webserv:12,websit:[14,47,48,123,131],week:28,weight:47,welcom:[23,51,73],well:[4,5,27,41,47,51,52,61,62,63,64,67,70,71,90,91,111,118,119,125,126,129,134,137],wendroff:[91,118,120,122,137],weno:[64,83,91],weno_ord:91,went:[50,51],were:[4,5,19,40,50,55,58,59,76,101,104,110],west:129,western:131,wet:[31,41],what:[5,8,12,21,27,29,30,44,46,47,48,49,50,51,52,54,55,58,59,63,67,75,78,82,90,93,95,97,98,100,101,102,109,114,117,118,120,121,122,123,129,131,133,134],whatev:[59,75,90,113],when:[13,14,19,27,29,31,36,37,40,45,46,47,48,49,50,51,56,58,61,62,63,64,67,68,70,75,82,86,87,91,94,98,102,104,105,107,109,110,111,113,114,115,116,117,118,119,120,121,122,123,129,131,132,133,134,135,137],whenc:85,whenev:[27,109,134],where:[1,3,5,12,14,21,26,29,31,33,34,36,40,41,44,47,48,50,51,52,54,56,58,59,63,64,70,78,81,82,84,86,89,98,101,104,105,108,109,110,112,114,116,117,118,120,121,122,128,129,131,134,137],wherea:[40,47,67,86],wherev:132,whether:[3,5,12,14,21,43,53,54,58,73,84,85,90,91,101,102,110,113,118,119,121,131],which:[0,1,3,4,5,6,10,12,14,19,21,24,27,29,31,33,34,35,40,42,44,47,48,49,51,52,54,56,58,61,62,63,68,70,71,75,76,78,79,80,81,84,85,86,87,88,89,90,91,92,94,95,96,97,101,102,104,105,108,110,112,113,114,118,119,120,121,129,131,133,134,136,137],whichclaw:132,white:52,whith:76,who:[9,18,21,23,31,37,44,50,51],whole:[27,47,85,86],whose:[3,68,76,88,89,118,119,131],wide:[51,97,98],wider:68,width:[29,47,52,61,63,81,88,93,101,120,122],wiki:92,wind:131,window:[12,29,58,70,97,116],wisdom:52,wise:[27,91],wish:[4,12,13,21,28,33,34,44,47,51,58,66,67,83,88,91,92,94,110,115,123,125,126,132],within:[5,14,27,51,64,68,87,96,98,101,113,117,123,131],without:[14,21,36,40,44,48,52,53,54,55,58,68,70,71,73,79,84,85,96,98,99,102,103,104,105,106,107,108,109,116,120,122,132,134],wkt:47,won:[12,76,131],woodward:111,word:85,work:[3,7,12,14,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,50,51,52,58,60,61,62,68,71,72,73,74,75,77,78,79,83,84,85,86,89,91,92,97,98,100,101,102,106,107,108,109,110,111,113,117,118,119,121,123,129,132,136],workflow:123,workspac:[58,93],world:[44,56,83,86],worst:114,worth:93,worthwhil:88,would:[2,3,12,14,26,27,31,37,47,49,54,55,63,68,73,75,78,81,85,96,98,102,110,114,117,118,129,134],wouldn:55,wpalg:15,wrap:[52,73,76,91,96],wrapper:131,write:[27,29,40,46,56,63,64,67,75,78,81,82,85,86,90,110,120,122,129,131],write_:84,write_aux:[84,90],write_aux_alwai:[75,78,85],write_aux_init:[75,78],write_aux_int:85,write_input_data:31,write_p:90,written:[5,10,24,29,36,40,52,53,63,64,68,73,82,84,88,97,110,113,118,119,120,121,122,131,134],wrong:[50,51,55,58,85,98,101],www:[4,12,15,29,39,41,48,53,59,73,76,83,86,111,131],x_cell:52,x_edg:52,x_i:[113,134,137],x_inch:52,x_mask:131,xarr:81,xarrai:131,xarray_d:131,xclaw:[33,34,78],xclawcmd:78,xclawerr:78,xclawout:78,xcode:71,xdir:78,xiaom:29,xleft:[119,120],xlf:92,xlimit:[0,40,47],xllcorner:129,xlow:63,xlower:[0,3,14,21,26,76,120,122,129,131,134],xlowerg:76,xmax:0,xmin:0,xpoint:121,xrang:88,xtick:45,xupper:[0,21,120,122,131],xxdiff:102,xxxx:58,xylim:29,xzvf:50,y_cell:52,y_edg:52,y_inch:52,year:[4,15,21,47,52,83,103],yellow:[52,68],yellow_red_blu:68,yes:58,yet:[1,12,19,44,48,52,67,91,110,111,113,118,120,136],yianni:[4,15,73],yield:3,yleft:[119,120],ylimit:[0,40,47,117],yllcorner:129,ylow:63,ylower:[3,21,26,76,120,129,131],ylowerg:76,ymax:0,ymin:0,yml:102,yong:15,you:[0,3,4,12,13,14,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,54,55,58,59,60,61,62,63,64,66,67,68,70,71,73,75,76,77,78,80,83,84,85,86,87,88,91,92,93,94,95,97,98,100,102,104,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,126,127,129,132,133,134,136],your:[5,13,14,18,19,23,24,25,31,33,35,37,40,48,49,50,51,59,62,67,68,70,73,74,75,76,77,80,82,83,85,94,95,97,98,99,101,102,104,113,115,116,125,126,129,132,134],yourself:[37,40],ypoint:121,yupper:[21,120,131],z_format:131,zenodo:[4,16,72],zero:[3,14,29,37,52,58,75,88,93,95,114],zip:[11,47,49],zipinfo:47,zlim:52,zlower:21,zone:[44,47,52,119,120],zoom:47,zsh:86,zupper:21,zvar:131},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.4.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Guide for updating this documentation","Guide for doing a Clawpack release","Installation options","Installation instructions (pip)","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Release 5.4.0","Release 5.4.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[75,78],"default":[13,99,115,125,126],"final":49,"function":[43,52,57,70,85,91,137],"import":98,"new":[42,60,80,102],"switch":58,"true":68,Adding:[27,47,80,88,113],For:5,Going:82,One:[113,137],The:[47,57,58,95],Use:94,Using:[12,24,55,59,62,85,88,91,113,117,134],about:[4,73],access:70,acoust:[89,95],adapt:[5,14,24],add:68,addit:[47,119,121],advect:89,after:112,afterfram:58,algorithm:[5,15,64,137],alias:47,all:[3,51],amazon:12,ami:12,amr:[3,5,21,62,101,119,121],amrclaw:[6,7,8,9,17,24,103,104,105,106,107,108,109,110,111,119,120,134],anoth:68,app:49,applic:[10,11,15,24,25,54,60,86],approach:7,arrai:[63,94],arriv:121,artifact:47,ascii:[63,84],attribut:[0,1,2,3,26,47,68],author:4,auto:[29,43,52,131],aux:[63,75],auxiliari:88,avail:38,axes:45,b4step:[13,134],background:68,base:54,basic:[47,74,87],bathymetri:133,befor:134,between:68,bibliographi:[15,24],binari:63,book:38,boundari:[5,14,88,134,137],branch:27,bug:27,built:[48,80],buoi:133,burger:89,candid:49,capac:137,cautionari:44,cell:5,cfl:79,chang:[16,17,21,68,91,103,104,105,106,107,108,109,110,111],chardiff:102,check:[27,102],checkpoint:112,chile:47,choic:31,choos:5,cite:[4,83],clamshel:14,classic:[17,24,33,34,91,103,104,105,106,107,108,109,110,111,118,122,127],claw:[65,116],clawcode2html:10,clawpack:[11,12,15,16,17,18,19,20,21,22,23,24,28,48,49,50,54,64,65,72,76,91,92,111,122,136],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,68],clawutil:[17,104,105,106,107,108,109,110,111],clinic:23,clone:27,cloud:77,code:[10,24,27,42,65,102,134],color:68,colorbar:47,colormap:68,command:[35,58,70,80],commit:27,commun:[23,27,65],comparison:102,compil:[37,50,54,59,94,124,132],compon:[22,68],comput:[64,112],conda:50,condit:[5,14,88,95,134,137],contain:28,content:[24,27,68,75,85,91,97,102],continu:102,contourf:68,contribut:[25,27],contributor:73,control:[75,78,95],convers:19,convert:[10,18,19],coordin:[45,47],copi:60,correctli:86,coverag:27,creat:[12,28,31,47,49,58,60,75],creation:75,criteria:101,current_data:[26,70],curv:68,custom:[91,113],dart:133,data:[47,63,117,121,129,131,132,133,134],debug:[68,119],defin:14,depend:[79,92],deprec:7,depth:45,deriv:[75,85],describ:15,desir:117,detail:5,dev:65,develop:[23,24,27,50,65],diff:102,differ:[47,55,64,68],dimens:[81,137],dimension:113,directli:12,directori:[54,60,68],displac:129,docker:28,dockerfil:49,docstr:[29,43,52,131],doctest:102,document:[8,10,29,43,48,49,52,83,111,124,131],doe:50,doing:49,domain:[81,95],done:134,download:129,doxygen:8,dtopo:130,dtopotool:29,duplic:54,each:[27,134],earth:47,earthquak:[61,133],easi:98,ec2:12,elev:45,environ:[37,116],equat:[89,95],error:[27,94],euler:89,event:[23,47],exampl:[11,24,25,33,34,35,38,40,42,47,58,60,66,80,86],exe:132,exist:60,extra:48,extrapol:101,f2py:132,faq:68,faster:47,fault:61,fflag:37,fgmax:31,figur:[47,68],file:[12,30,31,47,48,49,55,58,68,70,102,112,121,129,134],find:[12,68],finer:5,fix:[27,31,32,62,121],flag2refin:101,flag:[5,54,101,119],flow:[24,75],flowchart:9,fly:67,fork:27,format:[31,63],formul:137,fort:[63,68],fortran:[21,24,30,34,36,37,50,71,94,102,132,134],found:58,frame:85,friction:56,from:[12,18,19,21,24,27,29,35,38,43,50,52,70,76,80,87,131],full:24,fund:[4,73],further:82,fvmhp:38,galleri:[48,58],gaug:[40,47,85,133],gdal:47,gener:[21,29,43,48,52,121,131],geo:121,geoclaw:[13,14,17,21,24,41,42,43,44,45,47,62,65,69,99,101,103,104,105,106,107,108,109,110,111,115,121,125,126],geometri:81,geophys:24,get:[24,42,58],gfortran:[37,92],ghost:5,git:[27,46,71],github:[27,49],global:110,godunov:137,googl:47,grid:[5,14,31,32,62,81,121],guid:[27,48,49,100],guidelin:27,hack:65,hazard:44,hdf5:84,help:58,high:137,hint:[44,68,97],how:[68,70,85],hpc3:65,html:[10,70],imag:[28,47],imagediff:102,includ:11,independ:79,indic:83,initi:[5,88,95,134],input:[21,31,84,118,119],instal:[27,34,35,50,51,59,64,71,86,92,94,97,98,127,132],instanc:12,instruct:[27,51],integr:102,intel:37,interact:[70,80],interfac:64,interpol:31,interpret:35,iplotclaw:70,ipython:[35,80,123],issu:27,item:68,jupyt:[28,35],kaust:65,keep:46,kml:47,kmltool:52,kmz:47,latest:[27,50],latex:70,latitud:[45,47],launch:12,level:27,lflag:37,librari:[47,55],licens:[4,53,73],limit:79,line:[35,70,80,102],link:20,list:80,load:47,local:124,locat:40,log:[12,85],longitud:[45,47],machin:136,make:[68,86,123,132],makefil:[36,54,55,88,112],man:56,map:47,mapc2p:57,master:[17,27],math:77,matlab:58,matplotlib:92,maxfram:58,maximum:121,mesh:[5,24],method:[0,1,2,3,137],migrat:24,model:[44,61,100,133],modifi:[27,55,112],modul:[29,43,52,83,96,97,120,122,131],monitor:[31,121],more:[5,28,34,36],most:27,move:29,multipl:47,name:[54,55],need:47,netcdf:[59,63,84],never:27,next:[50,51,92],nose:92,note:[16,51],notebook:[28,35,97,123],numpi:92,object:[81,117],obtain:92,okada:61,old:[7,48],older:24,onli:[50,51],openmp:62,oper:71,option:[47,50,70,86,88],order:94,other:[15,17,22,23,50,68,111],out:27,outdir:68,output:[31,32,54,58,59,62,63,75,84,85,102,112,118,119,121,132],overlai:47,overview:[24,117],own:[12,28,88],packag:[21,50,51,84,89],page:48,paper:15,parallel:[50,64,81,86,87,93],paramet:[21,40,68,70,95,118,119,121],pass:86,patch:81,path:[58,98],pcolor:68,petclaw:[81,93],petsc:86,photo:65,pip:[50,51,71,132],pixel:102,plot:[3,12,21,24,31,40,42,45,47,54,58,59,66,67,68,69,70,80,86,87,102,117,123,132,135],plot_typ:3,plotax:47,plotclaw:58,plotdata:47,plotfigur:47,plotitem:47,pointwis:113,port:76,post:67,ppflag:37,pre:37,prepar:49,prerequisit:71,previou:[23,72],print:119,printfram:70,problem:[7,76,88,95,134],procedur:31,process:[31,67],processor:37,produc:70,propag:137,provid:68,pth:98,publish:47,pull:27,pyclaw:[17,21,24,33,35,50,51,73,74,75,76,77,78,79,80,81,83,84,85,87,90,91,92,93,95,96,102,103,104,105,106,107,108,109,110,111,127],pyflak:27,pylint:27,python:[19,70,71,92,97,98,130],pythonpath:[98,116],q0002:63,qinit:[99,121,129],quantiti:[75,85],quick:[51,100],raw:63,readm:10,recent:[16,23,27],refer:[15,83,97],refin:[5,14,24,101,121],region:[101,121],regress:102,releas:[16,49,103,104,105,106,107,108,109,110,111],remot:27,remov:47,replac:55,report:27,repositori:[11,17,22,27,46,49,111,113],request:27,requir:[47,50,97,134],resolut:[47,137],resourc:[24,28],restart:[28,75,112],result:[12,42,47,59,87,123],richardson:101,riemann:[17,24,83,88,89,103,104,105,106,107,108,109,110,111,113,134],routin:[13,21,55,69,99,115,125,126],rst:10,run:[28,33,34,35,42,50,75,77,80,86,87,102,118,119,132],sage:77,same:55,sampl:[120,122],save:[85,123],script:88,sealevel:114,search:58,serial:[81,93,102],servic:12,session:23,set:[42,58,68,70,88,114,116,132],setaux:[115,134],setplot:[58,68,70,117],setrun:[21,40,118,119,120,121,122],shallow:89,share:123,sharpclaw:91,shoot:[27,58],should:64,signatur:91,simul:75,simultan:102,sinc:17,size:68,slip:61,softwar:[4,15],solut:[68,75,90],solv:95,solver:[64,75,83,88,89,91,95,113,134],some:[68,133],someth:68,sourc:[54,61,88,133,134,137],space:137,spatial:134,special:[3,119],specif:[31,95,102,134],specifi:[68,70,101,117,118,119,121,134],sphere:14,sphinx:[48,124],sprint:[23,65],src1d:[125,134],src:[126,134],start:[24,42,100],state:93,statist:128,step:[50,51,92,134],stop:12,surfac:45,sys:98,system:71,t0002:63,tabl:[24,83],tar:49,tarfil:50,term:[56,88,134,137],test:[27,34,35,86,92,102,127],than:68,thi:[4,48],tide:133,tile:47,time:[118,119,121,128,134],tip:[27,36,45,47,86],titl:68,tool:[19,24,31,40,45,102,130],top:27,topo:130,topographi:[29,42,47,121,129,131,133],topotool:131,track:46,transfer:12,travi:102,troubl:[27,58,132],troubleshoot:[51,94,132],tsunami:[44,47,100,133],tutori:[23,95,97],tvd:79,understand:75,univers:65,upcom:23,updat:[27,48,49],use:64,used:132,user:[14,23,64,134],using:[44,50,51,58,134],utah:65,util:[43,52,96],valu:[31,75],vari:134,variabl:[37,54,88,116],version:[24,36,46,48,50,72,98],view:12,virtual:136,visclaw:[17,24,67,103,104,105,106,107,108,109,110,111],visit:135,visual:[24,47],washington:65,water:[45,89],wave:[113,137],web:12,webpag:[12,48,123],what:[68,70,85],when:85,where:85,which:[64,98],whichclaw:98,without:50,work:[4,80,130,131,134],workflow:27,workshop:[23,65],write:[88,102],written:85,your:[12,27,28,34,47,86,88,92,123,127],zenodo:49}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","howto_doc","howto_release","installing","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[52,1,0,"-"],topotools:[131,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[52,3,1,""],deg2dms:[52,3,1,""],dtopo2kml:[52,3,1,""],f2s:[52,3,1,""],fgmax2kml:[52,3,1,""],fgout2kml:[52,3,1,""],gauges2kml:[52,3,1,""],kml_build_colorbar:[52,3,1,""],kml_cb:[52,3,1,""],kml_png:[52,3,1,""],kml_timespan:[52,3,1,""],line2kml:[52,3,1,""],make_input_data_kmls:[52,3,1,""],pcolorcells_for_kml:[52,3,1,""],png2kml:[52,3,1,""],poly2kml:[52,3,1,""],quad2kml:[52,3,1,""],regions2kml:[52,3,1,""],topo2kml:[52,3,1,""],topo2kmz:[52,3,1,""]},"clawpack.geoclaw.topotools":{Topography:[131,0,1,""],create_topo_func:[131,3,1,""],determine_topo_type:[131,3,1,""],fetch_topo_url:[131,3,1,""],get_topo:[131,3,1,""],read_netcdf:[131,3,1,""],swapheader:[131,3,1,""],topo1writer:[131,3,1,""],topo2writer:[131,3,1,""],topo3writer:[131,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[131,2,1,""],Y:[131,2,1,""],Z:[131,2,1,""],crop:[131,2,1,""],delta:[131,2,1,""],extent:[131,2,1,""],generate_2d_coordinates:[131,2,1,""],generate_2d_topo:[131,2,1,""],in_poly:[131,2,1,""],interp_unstructured:[131,2,1,""],make_shoreline_xy:[131,2,1,""],plot:[131,2,1,""],read:[131,2,1,""],read_header:[131,2,1,""],replace_no_data_values:[131,2,1,""],replace_values:[131,2,1,""],set_xyZ:[131,2,1,""],smooth_data:[131,2,1,""],write:[131,2,1,""],x:[131,2,1,""],y:[131,2,1,""],z:[131,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.pyclaw.classic.solver":{ClawSolver:[91,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[91,4,1,""],kernel_language:[91,4,1,""],mthlim:[91,4,1,""],order:[91,4,1,""],setup:[91,2,1,""],source_split:[91,4,1,""],step:[91,2,1,""],step_hyperbolic:[91,2,1,""],step_source:[91,4,1,""],verbosity:[91,4,1,""]},"clawpack.riemann":{acoustics_1D_py:[89,1,0,"-"],advection_1D_py:[89,1,0,"-"],burgers_1D_py:[89,1,0,"-"],euler_1D_py:[89,1,0,"-"],shallow_1D_py:[89,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[89,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[89,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[89,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[89,3,1,""],euler_hll_1D:[89,3,1,""],euler_hllc_1D:[89,3,1,""],euler_roe_1D:[89,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[89,3,1,""],shallow_fwave_1d:[89,3,1,""],shallow_hll_1D:[89,3,1,""],shallow_roe_1D:[89,3,1,""]},"petclaw.geometry":{Domain:[81,0,1,""],Patch:[81,0,1,""]},"petclaw.geometry.Domain":{dimensional_split:[81,4,1,""],fwave:[81,4,1,""],kernel_language:[81,4,1,""],mthlim:[81,4,1,""],order:[81,4,1,""],source_split:[81,4,1,""],step_source:[81,4,1,""],transverse_waves:[81,4,1,""],verbosity:[81,4,1,""]},"petclaw.state":{State:[93,0,1,""]},"petclaw.state.State":{F:[93,2,1,""],aux:[93,2,1,""],fset:[93,2,1,""],gauge_data:[93,4,1,""],get_aux_global:[93,2,1,""],get_auxbc_from_aux:[93,2,1,""],get_q_global:[93,2,1,""],get_qbc_from_q:[93,2,1,""],keep_gauges:[93,4,1,""],mF:[93,2,1,""],mp:[93,2,1,""],num_aux:[93,2,1,""],num_eqn:[93,2,1,""],p:[93,2,1,""],problem_data:[93,4,1,""],q:[93,2,1,""],set_num_ghost:[93,2,1,""],t:[93,4,1,""]},"pyclaw.controller":{Controller:[78,0,1,""]},"pyclaw.controller.Controller":{F_file_name:[78,4,1,""],F_path:[78,2,1,""],check_validity:[78,2,1,""],compute_F:[78,4,1,""],compute_p:[78,4,1,""],file_prefix_p:[78,4,1,""],frames:[78,4,1,""],keep_copy:[78,4,1,""],nstepout:[78,4,1,""],num_output_times:[78,4,1,""],out_times:[78,4,1,""],outdir:[78,4,1,""],outdir_p:[78,2,1,""],output_file_prefix:[78,4,1,""],output_format:[78,4,1,""],output_options:[78,4,1,""],output_style:[78,4,1,""],overwrite:[78,4,1,""],plot:[78,2,1,""],plotdata:[78,4,1,""],run:[78,2,1,""],rundir:[78,4,1,""],runmake:[78,4,1,""],savecode:[78,4,1,""],solver:[78,4,1,""],tfinal:[78,4,1,""],verbosity:[78,2,1,""],viewable_attributes:[78,4,1,""],write_aux_always:[78,4,1,""],write_aux_init:[78,4,1,""],xclawcmd:[78,4,1,""],xclawerr:[78,4,1,""],xclawout:[78,4,1,""],xdir:[78,4,1,""]},"pyclaw.geometry":{Dimension:[81,0,1,""],Domain:[81,0,1,""],Grid:[81,0,1,""],Patch:[81,0,1,""]},"pyclaw.geometry.Dimension":{centers:[81,2,1,""],centers_with_ghost:[81,2,1,""],delta:[81,2,1,""],nodes:[81,2,1,""],nodes_with_ghost:[81,2,1,""]},"pyclaw.geometry.Domain":{grid:[81,2,1,""],num_dim:[81,2,1,""],patch:[81,2,1,""]},"pyclaw.geometry.Grid":{add_dimension:[81,2,1,""],add_gauges:[81,2,1,""],c_center:[81,2,1,""],c_centers:[81,2,1,""],c_centers_with_ghost:[81,2,1,""],c_nodes:[81,2,1,""],c_nodes_with_ghost:[81,2,1,""],dimensions:[81,2,1,""],gauge_dir_name:[81,4,1,""],gauge_file_names:[81,4,1,""],gauge_files:[81,4,1,""],gauges:[81,4,1,""],get_dim_attribute:[81,2,1,""],num_dim:[81,2,1,""],p_center:[81,2,1,""],p_centers:[81,2,1,""],p_nodes:[81,2,1,""],plot:[81,2,1,""],setup_gauge_files:[81,2,1,""]},"pyclaw.geometry.Patch":{add_dimension:[81,2,1,""],delta:[81,2,1,""],dimensions:[81,2,1,""],get_dim_attribute:[81,2,1,""],level:[81,4,1,""],lower_global:[81,2,1,""],name:[81,2,1,""],num_cells_global:[81,2,1,""],num_dim:[81,2,1,""],patch_index:[81,4,1,""],upper_global:[81,2,1,""]},"pyclaw.limiters":{tvd:[79,1,0,"-"]},"pyclaw.limiters.tvd":{arora_roe:[79,3,1,""],beta_limiter:[79,3,1,""],cada_torrilhon_limiter:[79,3,1,""],cada_torrilhon_limiter_nonlinear:[79,3,1,""],cfl_superbee:[79,3,1,""],cfl_superbee_theta:[79,3,1,""],hyperbee_limiter:[79,3,1,""],limit:[79,3,1,""],mc_limiter:[79,3,1,""],minmod_limiter:[79,3,1,""],superbee_limiter:[79,3,1,""],superpower_limiter:[79,3,1,""],theta_limiter:[79,3,1,""],upper_bound_limiter:[79,3,1,""],van_leer_klein_sharpening_limiter:[79,3,1,""]},"pyclaw.sharpclaw.solver":{SharpClawSolver:[91,0,1,""]},"pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[91,2,1,""],aux_time_dep:[91,4,1,""],call_before_step_each_stage:[91,4,1,""],cfl_desired:[91,4,1,""],cfl_max:[91,4,1,""],char_decomp:[91,4,1,""],check_3rd_ord_cond:[91,2,1,""],dq:[91,2,1,""],dq_src:[91,4,1,""],dqdt:[91,2,1,""],fwave:[91,4,1,""],get_dt_new:[91,2,1,""],kernel_language:[91,4,1,""],lim_type:[91,4,1,""],num_ghost:[91,4,1,""],setup:[91,2,1,""],step:[91,2,1,""],tfluct:[91,4,1,""],tfluct_solver:[91,4,1,""],time_integrator:[91,4,1,""],update_saved_values:[91,2,1,""],weno_order:[91,4,1,""]},"pyclaw.solution":{Solution:[90,0,1,""]},"pyclaw.solution.Solution":{is_valid:[90,2,1,""],patch:[90,2,1,""],plot:[90,2,1,""],read:[90,2,1,""],set_all_states:[90,2,1,""],start_frame:[90,2,1,""],state:[90,2,1,""],write:[90,2,1,""]},"pyclaw.state":{State:[93,0,1,""]},"pyclaw.state.State":{F:[93,4,1,""],gauge_data:[93,4,1,""],get_aux_global:[93,2,1,""],get_auxbc_from_aux:[93,2,1,""],get_q_global:[93,2,1,""],get_qbc_from_q:[93,2,1,""],is_valid:[93,2,1,""],keep_gauges:[93,4,1,""],mF:[93,2,1,""],mp:[93,2,1,""],num_aux:[93,2,1,""],num_eqn:[93,2,1,""],p:[93,4,1,""],problem_data:[93,4,1,""],set_aux_from_auxbc:[93,2,1,""],set_cparam:[93,2,1,""],set_num_ghost:[93,2,1,""],set_q_from_qbc:[93,2,1,""],t:[93,4,1,""]},"pyclaw.util":{FrameCounter:[96,0,1,""],VerifyError:[96,5,1,""],add_parent_doc:[96,3,1,""],check_diff:[96,3,1,""],compile_library:[96,3,1,""],construct_function_handle:[96,3,1,""],convert_fort_double_to_float:[96,3,1,""],gen_variants:[96,3,1,""],read_data_line:[96,3,1,""],run_app_from_main:[96,3,1,""],run_serialized:[96,3,1,""],test_app:[96,3,1,""]},"pyclaw.util.FrameCounter":{get_counter:[96,2,1,""],increment:[96,2,1,""],reset_counter:[96,2,1,""],set_counter:[96,2,1,""]},pyclaw:{util:[96,1,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":63,"000000e":120,"00000e":120,"0000ff":[3,52],"001000e":120,"00er2592":4,"00ff00":52,"00ffff":52,"01er25474":4,"020204mag_polici":29,"04d":135,"0d0":96,"1200x1680":47,"1440l":47,"1440p":47,"15e":131,"16m":62,"17th":91,"1_contain":28,"1_dockerimag":28,"1d_plot":[40,68,70,117],"1drad":134,"1rc":49,"1st":[79,91,118,120,122,134],"2013it":15,"25000000e":63,"260e":128,"27t06":52,"27t07":52,"288e":128,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[83,88,91,118,120,122,134],"301e":128,"30x30":47,"360x360":47,"373e":128,"3rd":[88,91],"40000000e":63,"4th":91,"5_x_x":49,"5d0":134,"5e3":121,"5r01ar53652":4,"639s":[34,127],"8888ff":52,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,84,89,118,119],"break":[27,29,44,47,52,102,109,121,131],"case":[5,7,12,14,18,21,29,31,37,40,44,47,51,52,55,58,68,75,81,86,88,90,96,98,101,102,105,108,109,110,111,112,114,121,129,131,132,134,137],"catch":[36,83],"class":[0,1,2,3,24,29,31,47,52,68,70,76,81,83,88,90,91,93,95,96,97,112,117,118,119,120,122,131],"default":[0,1,2,3,12,21,27,29,31,37,40,43,45,46,47,52,54,55,58,62,68,70,75,78,80,81,85,86,87,90,91,93,94,96,101,104,110,112,114,119,120,121,129,131,134],"export":[37,47,48,51,58,62,86,94,116],"final":[29,37,48,58,75,78,85,95,104,112,118,120,122,131],"float":[3,29,31,40,43,52,78,81,89,93,96,118,119,121,122,131],"function":[0,1,2,3,6,13,15,21,22,24,26,27,29,31,40,41,46,47,54,55,56,59,61,67,68,69,75,76,78,79,80,81,82,87,88,89,90,93,96,101,102,104,105,108,109,110,111,113,115,117,118,119,120,121,122,129,130,131,132,134],"import":[0,3,21,27,35,40,44,47,50,51,52,55,56,64,68,70,75,76,78,80,81,83,85,86,87,88,90,91,92,93,95,97,102,110,113,114,118,119,120,121,122,129,131,133,135],"int":[1,2,3,29,52,78,79,81,84,85,90,93,118,119,121,131],"long":[27,29,43,44,47,60,109,131],"new":[1,2,4,5,7,12,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,51,52,54,55,56,58,62,68,70,71,74,75,76,77,78,84,86,88,91,93,101,104,107,108,109,110,111,112,113,116,118,119,121,129,131,134],"ond\u0159ej":4,"public":[4,12,20],"return":[0,1,2,3,29,35,43,47,52,55,58,68,70,78,79,81,85,88,89,90,91,93,96,102,111,113,118,120,122,127,131,134,137],"short":[44,79,88],"static":29,"super":[22,27,131],"switch":[31,47,51,88,98,102,111,114,133],"throw":27,"true":[0,1,2,3,5,13,14,26,29,40,43,46,47,48,52,67,75,78,81,85,86,90,91,93,101,110,112,113,115,118,119,120,121,122,131],"try":[1,27,33,34,35,40,47,51,52,68,77,80,84,90,92,94,95,96,97,98,102,118,127,129,131,132],"var":[0,3,12,13,26,99,115,125,126],"while":[12,14,47,58,68,70,76,81,85,86,91,96,113,121,133],AND:[53,73],ARE:[53,73],AWS:12,Added:[79,104,106,108,109,111],Adding:[24,74,82],And:[5,19,48],Are:103,Axes:117,BCs:[120,122],BUT:[53,73],But:[12,47,48,68,94,105],CMS:4,DAs:93,DMS:4,DNS:12,EBS:12,FOR:[53,73],For:[0,1,2,3,6,7,8,9,12,13,14,16,17,18,21,25,26,27,29,31,33,35,37,40,43,44,45,47,48,49,51,54,55,58,59,61,62,67,68,70,71,75,76,80,81,83,84,85,86,88,91,92,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,117,118,119,120,121,122,124,125,126,128,129,131,133,134,137],GIS:[47,110,129],Going:[12,24,83],Into:97,NOT:[52,53,68,73],Not:[29,47,81,110],OPS:43,One:[22,24,25,29,47,58,76,96,101,108,131],Res:15,SUCH:[53,73],Such:58,Sys:15,THE:[53,73],That:[33,35,95],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,50,51,52,53,54,55,56,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,81,83,85,86,88,89,90,91,92,93,94,96,98,101,102,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,134,135,136,137],Their:73,Then:[12,14,27,28,29,40,48,49,50,55,62,70,75,78,86,92,93,94,113,131,132],There:[3,5,12,21,28,31,34,36,47,54,63,70,85,92,111,117,118,127,134,136],These:[1,4,11,14,17,22,27,29,31,38,40,44,47,48,51,52,55,58,68,70,75,80,85,87,93,95,98,99,100,101,102,104,110,111,112,119,123,129,133,137],USE:[53,73],Use:[29,47,83,89,91,118,120,122,131],Useful:[1,3,118],Uses:[29,131],Using:[0,1,2,3,6,21,37,38,47,66,67,68,70,81,82,83,116,118,125,126,128,131,132,137],WCS:133,Will:90,With:[5,21,27,40,45,47,64,97,101,109,113,118],__________________o:131,__file__:98,__future__:110,__init__:[88,98],__main__:[120,122],__name__:[120,122],_build:48,_compute_c_cent:81,_compute_c_nod:81,_compute_p_cent:81,_compute_p_nod:81,_googleearth:47,_outdir:85,_output2:[68,70],_output:[12,33,34,40,46,58,68,70,80,85,87,90,109,132],_output_from_previous_run:40,_output_new:102,_output_old:102,_plot:[12,33,34,40,58,70,117,123],_plotindex:[1,40],_plots_new:102,_plots_old:102,_ptwise:113,_pyclaw_io:78,a351:[15,83],a377:[15,83],aabbggrr:52,abdullah:73,abil:[37,108,110,131],abl:[12,50,98],abort:54,about:[3,6,12,14,21,24,33,34,36,43,44,52,54,56,58,63,69,71,75,83,86,91,102,109,113,116,117,120,121,132,134,137],aboutu:29,abov:[3,12,14,19,27,28,31,33,34,36,37,40,44,47,48,49,50,51,53,55,61,63,68,71,73,76,85,87,92,95,96,97,101,110,113,116,117,118,120,121,122,128,129,131,134],abs:[29,88,96,131],absolut:[85,102,119,120],absolute_import:110,abstol:96,academ:[94,97],acceler:89,accept:[40,75,85,91,118],accept_reject_step:91,access:[0,15,26,51,80,81,83,91,93,96],accid:27,accident:[27,68],accompani:20,accomplish:54,accord:5,accordingli:[47,129],account:[12,23,27,77,86],accumul:[40,110,112],accur:[44,61,83,91,118,134,137],accuraci:[40,56,64,120,122],achiev:[19,76,125,126],acou:68,acoust:[14,33,34,44,74,75,78,80,83,91,92,108,113,120,134],acoustics1dheterogeneoustest:[34,127],acoustics3dheterogeneoustest:[34,127],acoustics_1d:[75,89,95],acoustics_1d_example1:[33,34,60],acoustics_1d_heterogen:[34,127,134],acoustics_1d_homogen:[80,102],acoustics_1d_pi:89,acoustics_2d:91,acoustics_2d_radi:[120,134],acoustics_3d_heterogen:[34,127],acoustics_3d_vari:102,acquaint:95,acquir:68,across:[110,129,131],acsza1:29,acszb1:29,act:[79,131],acta:15,actanum2011:15,action:[12,76],activ:[31,32,91,121],actual:[5,26,29,52,58,61,68,79,96,98,114,121],adapt:[4,6,15,29,58,64,75,113,117,118,134],add:[0,10,12,14,15,26,27,29,31,40,43,47,48,49,51,55,58,59,67,75,80,81,85,86,88,96,105,108,110,111,122,129,131,135],add_colorbar:[29,131],add_colormap:109,add_dimens:81,add_gaug:[81,85],add_label:40,add_param:[120,122],add_parent_doc:96,add_titl:68,add_true_solut:68,added:[3,14,19,21,27,31,32,43,49,51,52,56,58,68,81,85,98,101,104,105,107,108,109,110,111,112,118,119,128,130,131,135],addgaug:40,adding:[21,26,27,31,37,40,52,61,86,99,109,111],addit:[6,12,14,22,27,28,31,34,35,41,42,52,61,63,64,68,69,76,79,81,83,85,91,92,93,101,108,110,111,113,118,122,128,129,134,135],addition:86,address:[47,48,50,110],adequ:44,adjac:[5,14,31,41,101,118],adjust:[12,19,31,48,52,81,85,114,118,134],adopt:[29,91],adv:[15,80],advanc:[5,15,62,95,109,118,134],advantag:[67,102],advect:[15,68,83,86,113,122,134],advection2dannulustest:[34,127],advection_1d:89,advection_1d_example1:55,advection_1d_pi:89,advection_2d_annulu:[34,127],advection_2d_inflow:108,advection_2d_swirl:134,advection_3d_swirl:[108,128],advis:[32,50,53,73],affect:[21,54,110,111,118,132],afosr:4,after:[0,1,3,5,12,18,22,26,27,28,31,33,34,40,44,48,49,52,54,55,58,59,63,68,76,77,78,80,85,91,93,98,102,104,108,109,118,119,120,122,134],afterax:[0,26,40,47,68],afterfram:[1,26,67],aftergrid:58,afteritem:[3,26],afterpatch:[3,26],again:[21,36,54,68,70,75,76,85,89,94,98,129,132],against:[96,102,109,127],agenc:[4,50,51],agre:[11,27,113,128,131,134],agreement:44,ahmadia:[4,15,73,83],aht:114,aid:76,aim:27,albada:79,alg:120,alghamdi:[4,15,73,83],algorithm:[4,6,24,31,75,81,83,91,95,101,113,118,120,122,131],align:[31,47,52,121],all:[0,1,4,5,10,12,14,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,48,49,50,52,53,54,55,58,60,62,63,64,67,68,70,71,73,75,78,79,81,85,86,88,89,90,91,93,96,97,98,100,101,102,104,105,108,109,110,112,113,117,118,120,121,122,123,127,128,129,131,133,134],alloc:[19,91,108],allocat:108,allot:52,allow:[4,5,12,21,26,27,28,31,40,41,43,46,47,48,51,56,58,62,64,67,68,78,84,85,91,93,96,97,98,102,104,105,108,109,110,111,113,118,120,121,122,123,129,131],almost:97,alon:[14,47],along:[5,14,26,29,31,40,47,59,61,101,108,112,121,133],alpha:[47,49,91],alphabet:73,alreadi:[0,1,5,12,27,37,49,50,51,52,70,71,86,90,92,95,97,105,131],also:[3,4,5,6,7,8,10,14,15,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,54,55,58,59,61,62,63,64,67,68,70,72,75,77,78,81,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,104,109,110,111,112,113,114,116,118,120,121,122,123,125,126,127,128,129,131,132,133,134,136,137],alter:47,altern:[29,31,33,34,40,43,47,50,54,58,67,86,97,98,108,109,110],although:[29,47,55,58,87,88,90,131],alwai:[14,21,25,26,27,31,37,51,58,75,100,101,104,105,120,121,122,129,134],amal:[4,15,73,83],amazon:24,amazonaw:12,amdq:[89,113],ami:24,amount:[40,44,48],amplitud:110,amr:[4,6,7,14,19,22,24,26,27,31,32,40,41,52,58,63,64,67,73,81,109,111,117,118,120,122,128,129,134],amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:109,amr_level:63,amr_level_max:120,amr_levels_max:[31,101,119,120],amr_modul:[62,108],amrclaw:[4,5,11,13,14,18,19,21,22,23,27,34,37,40,41,42,49,50,51,58,59,62,63,64,92,99,101,102,112,113,115,116,118,121,125,126,127,128],amrclaw_advection_2d_squar:6,amrdata:[21,101,119,120,121],amrlib:108,amrnez:101,an11:48,anaconda:[47,71,92,97],anal:15,analog:[118,119],andi:4,angl:[14,29,43,61],ani:[3,4,5,7,12,14,18,19,21,26,27,31,33,34,35,41,44,46,47,48,49,51,53,54,56,58,60,62,63,64,68,73,79,80,81,83,85,86,88,90,92,96,100,101,102,108,112,114,116,117,118,119,121,134,137],anim:[14,47,108,123],anisotrop:[5,21],anl:86,annot:[26,52],annual:23,anoth:[3,21,40,47,50,51,52,63,67,71,80,91,94,102,134],answer:23,anyth:[3,5,27,50,51,55,102],apach:12,apdq:[89,113],api:43,app:[11,12,17,22,25,27,28,31,38,100,107,111],appar:[29,62],appeal:47,appear:[0,1,3,7,12,17,22,31,40,41,47,48,52,54,57,68,85,90,93,110,121,123,129],append:[19,40,47,68,78,90,101,109,110,112,113,120],appl:15,appli:[3,4,5,12,14,24,29,44,47,56,61,68,70,79,81,91,101,112,118,121,134],applic:[4,5,13,14,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,49,51,55,59,62,70,80,81,82,85,91,96,99,100,101,102,104,107,108,110,111,113,115,118,121,125,126,129,131,134,135],appreci:73,approach:[6,12,27,40,48,50,51,60,67,76,86,88,96,101,108,110,111,113,117,121,134,137],appropri:[4,5,12,14,23,27,41,44,45,47,49,52,56,58,59,60,62,75,78,79,80,84,86,87,88,89,90,102,113,114,118,134,137],approv:44,approxim:[5,14,44,47,61],april:23,apt:[12,97],arbitrari:[31,52,91,104,121],arc:114,arcgi:131,architectur:86,archiv:[11,20,34,47,49,102,123,127,131,133],area:[13,21,91,110,115],arg:[81,90],argument:[0,1,2,3,26,29,43,46,47,68,75,76,80,81,84,88,90,91,93,96,102,113,117,118,119,131,134],argv:[120,122],aris:[53,73],arithmet:56,aron:[4,15,73,83],arora:79,arora_ro:79,around:[5,29,31,52,102,119,120,131,134],arrai:[0,3,5,13,19,21,26,29,31,40,43,45,52,68,75,76,78,79,81,83,84,85,88,89,90,91,93,95,96,97,104,105,106,110,113,115,118,119,120,121,122,131,134],arrang:131,arriv:[21,31,32,41,110,114],arrival_tol:31,articl:[4,15,83,123],artifici:14,asc:131,ascii:[40,58,75,78,85,90,110,112,118,120,122,129,135],ascii_output_format:59,ask:23,ask_us:131,aspect:[44,45,58,131],assembl:50,assert:[120,122],assess:[44,114],assign:[29,31,75,78,90],assist:[21,31],associ:[0,1,2,5,21,47,51,62,81,84,85,102],assum:[3,19,21,29,34,43,44,47,48,49,50,52,58,61,67,85,87,88,89,95,96,101,108,114,118,121,129,131,133,137],assumpt:47,astronom:114,aterrel:4,atmospher:4,attach:[49,93],attempt:[7,10,19,33,34,54,90,96,102,104,131,132],attirbut:21,attr:[81,90],attribut:[6,21,29,40,67,69,70,75,78,81,86,88,90,91,101,104,109,112,117,118,119,121,131],attributeerror:68,aug:15,aug_glob:89,august:23,austin:4,author:[15,24,41,44,79,83,89,100],auto:[0,40,76],autom:[76,102],automat:[0,2,3,7,10,14,29,33,34,37,47,49,54,67,68,70,75,80,84,86,92,93,94,96,102,104,118,119,121,129],autumn:23,aux1:31,aux1d:134,aux:[5,13,19,21,26,31,40,76,83,85,88,90,91,93,94,104,105,110,113,115,118,119,120,122,134],aux_bc_low:88,aux_bc_upp:88,aux_l:[89,113],aux_out_field:40,aux_r:[89,113],aux_time_dep:91,aux_typ:[119,120],auxbc:[88,91,93],auxiliari:[21,76,78,84,89,91,93,113,118,120,122,134],auxillari:90,auxl:113,auxr:113,auxtyp:120,avail:[0,4,9,14,21,22,23,39,40,42,44,47,50,51,54,58,67,69,70,75,78,83,84,85,87,89,91,94,95,96,97,98,111,113,114,118,120,121,123,129],averag:[4,5,13,15,41,44,45,58,89,93,105,113,115,129,131,134],avoid:[31,47,52,54,58,81,85,104,105,109,110,112,118,121,137],awai:[27,114],awar:[44,86],awr11:15,axes1:[2,70],axes:[0,1,2,26,29,40,47,58,67,68,70,117,131],axescmd:[0,70],axesnam:[1,70],axessubplot:29,axi:[0,29,45,47,58,68,81],azv:48,b0002:63,b4step1:[13,55,134],b4step2:[13,134],b4step3:13,b4stepn:134,back:[12,26,31,48,49,50,111],backend:47,background:[2,67,117],backward:[27,29,43,52,97,105,106,131],bad:102,bai:[114,133],balanc:[5,15,64,111,125,126],bale:15,balelevmitross02:[4,15,118,137],ball:131,band1:131,band:[47,131],bar:[12,48],barrier:96,base:[5,12,19,20,21,27,29,41,43,47,48,52,55,56,58,64,76,78,79,81,83,89,90,91,93,95,96,101,103,108,111,114,118,119,120,121,122,131,134,137],base_subfault:29,baselin:47,bash:[37,47,51,58,62,86,98,116],bash_profil:[94,116],bashrc:[12,37,94,116],basi:[40,58],basic:[5,9,11,24,29,33,35,41,58,75,81,83,85,89,91,102,137],bathymetri:[13,31,41,44,47,52,89,110,114,115,121,129,131],bc1:[55,96],bc1_inflow:55,bc2amr:14,bc_arrai:91,bc_lower:[14,75,88,95,118,120,122],bc_upper:[14,75,88,95,118,120,122],bcn:[5,14,122,134],bcnamr:[5,14,118,120,134],beam:79,bear:[29,43],bearing_unit:43,becaus:[21,26,31,47,85,86,104,113,114,118],becom:[44,94,137],been:[0,1,4,7,8,12,14,17,19,20,21,23,26,27,31,32,33,34,38,41,44,47,48,49,54,56,58,64,68,70,73,76,78,85,89,90,93,94,95,96,98,101,103,104,105,107,110,111,112,113,118,119,121,129,131,134],befor:[1,3,4,5,27,29,31,33,34,36,37,40,48,49,50,51,52,54,55,58,62,70,75,78,86,91,93,98,101,102,104,105,113,114,116,118,119,121,129,131,132],before_step:91,beforefram:[1,26],begin:[43,52,81,85,89,95],begin_d:43,behav:40,behavior:[48,101,102,109],behaviour:75,being:[1,3,4,7,12,40,44,70,78,89,90,91,96,98,101,109,111,113,118,129,132,134],believ:[44,110],belki:65,belong:[68,81,86,90,93],below:[3,5,12,13,14,17,21,23,29,31,47,48,49,50,51,52,56,58,61,70,73,75,77,85,89,95,97,98,99,101,102,105,106,107,108,109,110,111,113,115,117,118,119,120,121,122,125,126,129,131,134],benchmark:44,beowulf:50,berger:[4,5,15],bergercalhounhelzellevequ:14,bergercolella89:[5,15],bergergeorgelevequemandli11:[4,15],bergerleveque98:[4,5,6,15],bergeroliger84:[5,15],bergerrigoutsis91:[5,15],berkelei:[4,53,73],best:[3,14,21,25,27,37,47,49,54,60,62,67,68,88,100,101,102,113,121,124,129,134],beta:[43,79,91,122],beta_limit:79,better:[0,5,21,31,40,58,62,63,67,91,109,110,111,121,129],between:[3,4,5,12,14,22,27,29,30,43,47,49,52,58,61,62,64,67,78,81,85,91,93,94,96,101,109,110,113,114,118,119,120,121,122,123,128,129,131,133,134],bewar:131,beyond:[5,29],bgr:52,bibliographi:4,bibtex:4,big_earthquak:29,biggest:83,bilinear:[5,31,40,104,105,129],bin:86,binari:[37,49,50,53,59,73,85,87,109,112,118,120,131,135],bind:[27,47,67,76,86],bisect:[119,120],bit:[14,21,29,86,94],bitbucket:86,black:[3,40],blank:[3,52,98,99,103,104,105,106,107,108,109],blast:[80,111],bleed:50,blob:109,block:[6,29,52,61,63,64,75,93,96,102,134],blossei:4,blue:[3,10,40,52,68,131],boe:4,boisest:47,bomb:[54,62],book:[4,11,15,24,71,90,97],bool:[0,1,2,3,43,52,78,84,89,90,91,93,96,121,131],border:[58,134],bore:44,both:[3,14,27,29,33,34,40,44,48,55,58,63,76,84,85,86,91,92,101,102,108,109,113,118,120,122,125,129,134],bottom:[11,12,13,29,33,34,41,44,48,56,75,88,89,110,111,115,125,126,129],boulder:23,bound:[76,79,86,118,131],boundari:[6,19,24,47,52,55,62,76,81,89,91,95,105,108,118,120,122],boussinesq:44,bowl_radial_fgmax:31,box2kml:52,box:[29,47,52,131],branch:[17,28,37,46,48,49,51,102,111],brief:[4,49,121],briefli:137,bring:[12,47,48,58],brisa:4,brisadavi:4,broad:131,broken:[18,19,27,59,102],brought:27,brown:[73,131],brows:[10,23,28,38,47,58,123,134],browser:[12,27,28,33,34,47,48,123],bsd:[4,53,73],buffer:[29,40,101,109,110,119,120,131],buffer_length:131,buffer_s:29,bug:[4,7,21,23,31,37,47,56,62,68,73,107,108,109,110],build:[4,15,27,48,49,58,76,83,86,96,111],buildsystem:86,built:[27,56,64,74,83,86,88,90,101,102,125,126],bulk:[18,75,89,95,113,120,134],bull:[15,29],buoi:41,burg:80,burger:[83,113,134],burgers_1d:89,burgers_1d_pi:89,busi:[53,73],butcher:91,button:[11,12,27,47,52,111],c210:[15,83],c231:[15,83],c_center:81,c_centers_with_ghost:81,c_l:89,c_node:81,c_nodes_with_ghost:81,c_r:89,cach:[21,43,70,73],cache_dir:43,cada:79,cada_torrilhon_limit:79,cada_torrilhon_limiter_nonlinear:79,cake:65,cal:[113,134,137],calcul:[3,5,26,29,41,43,58,68,81,89,91,105,110,131],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:15,calhoun:[4,15,47],calhounhelzellevequ:14,call:[1,5,8,19,21,26,29,37,40,46,47,55,58,63,68,70,75,76,78,79,84,85,88,90,91,93,95,96,102,104,108,109,111,113,116,118,120,121,122,131,134],call_before_step_each_stag:91,call_setplot:68,callabl:96,calucl:89,cambridg:15,camera:47,can:[0,2,3,4,5,6,7,8,10,11,12,14,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,54,55,56,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,79,80,81,84,85,86,87,88,90,91,92,93,94,95,96,97,98,101,102,104,105,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,127,129,131,132,133,134,135,137],cannot:51,canopi:92,capa:90,capa_index:[118,120,122],capab:131,capabilit:110,capabl:[6,11,21,31,32,44,64,76,104,109,110,131,133],capac:[13,89,115,118,119,120,122],captur:[44,129],care:[31,41,86],carefulli:[19,21,56],cartesian:[31,42,52,76,121],cascad:4,cast:131,caus:[21,44,47,48,53,54,70,73,94,102,109,110,111,117,119,131],caut:79,caution:[44,129],cautionari:[24,41,55,121],cautiou:44,caxi:58,cb_file:52,cb_filenam:52,cb_kwarg:131,cb_name:52,cb_xfrac:52,cb_yfrac:52,cbar:[89,131],cdot:[56,88],cell:[3,4,6,7,13,14,19,21,26,31,40,41,47,52,58,62,63,64,75,81,86,89,91,93,95,101,104,105,109,110,111,113,114,115,118,119,120,121,122,128,129,134,137],celledg:3,celledges_show:[3,21],cellgridintegr:104,cellgridintegrate2:104,cellsiz:[108,129],center:[4,26,29,31,40,47,52,61,75,81,88,89,95,101,119,120,134],centerlin:29,centers_with_ghost:81,central:118,centroid:[29,61],certain:[31,41,85,101,109,118],certainli:[86,97],certik:[4,73],cf2py:76,cfl:[5,81,85,91,95,104,109,118,120,121,122],cfl_desir:[91,118,120,122],cfl_max:[91,118,120,122],cfl_superbe:79,cfl_superbee_theta:79,challeng:111,chanc:73,chang:[1,5,7,12,13,14,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,52,54,55,56,58,59,62,63,64,67,70,75,76,82,85,93,96,100,101,102,113,115,118,119,120,121,122,125,126,132,134],changelog:[16,17,21,103,104,105,106,107,108,109,110,111],changes_to_mast:49,chapter:[14,113,118,134],char_decomp:91,charact:43,characterist:91,charg:12,cheaper:12,check:[5,14,19,31,33,34,36,37,46,47,48,49,50,51,54,58,68,75,76,78,83,86,90,91,93,95,96,98,105,119,120,131,132,133,134],check_3rd_ord_cond:91,check_diff:[96,102],check_lmm_cond:91,check_valid:78,check_valu:[96,102],checkout:[27,48,49],checkpoint:[24,40,109,110,118,120,122],checkpt_interv:[118,120],checkpt_styl:[109,112,118,120],checkpt_tim:[118,120],chen:[29,133],chile2010:[47,100,104,107,129],chile2010_fgmax:31,chile2010a:100,chile2010b:100,chile:[41,52],chile_2010:47,chk00006:[120,122],chk00100:109,chk:109,chkaaaaa:109,chkbbbbb:109,chknnnnn:[112,118,120,122],choic:[14,41,67,91,118,120,121,122,134],choos:[0,6,52,88,118,121],chose:56,chosen:[3,47,95,101,114,119],chri:4,circl:[3,43,68],circular:15,cise:15,citat:4,cite:[24,50,72],cjvogl:4,clamshel:105,clarifi:21,clash:58,classic4:122,classic:[4,5,11,13,14,18,19,21,22,23,27,37,38,42,49,50,51,55,60,62,63,64,73,75,78,80,81,82,83,88,99,102,112,113,115,116,119,121,126,132,134],classic_1d:55,claw1:[55,96],claw1ez:55,claw:[5,7,10,11,12,13,14,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,48,49,50,51,52,54,55,58,60,61,62,69,75,78,80,83,85,86,92,94,98,99,100,101,102,104,105,107,108,111,113,115,120,121,122,124,125,126,127,128,129,131,132,134,135],claw_1dnoncon:137,claw_git_diff:[27,46,49],claw_git_statu:[27,46,49],claw_lib:59,claw_outdir:[54,68],claw_packag:91,claw_pkg:[118,119,120,121,122],claw_topo_download:131,claw_vers:51,clawdata2pyclaw:76,clawdata:[104,108,112,118,119,120,121,122],clawdev2013:48,clawgraph:58,clawpack:[1,4,5,6,10,14,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,51,52,53,55,58,60,62,66,67,68,69,70,71,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,97,98,100,102,103,104,105,106,107,108,109,110,112,113,116,118,119,120,123,124,127,129,130,131,132,134,135,137],clawpack_src:[51,98],clawplotax:[1,2,3,26,68,117],clawplotdata:[2,3,26,40,47,68,70,78,117],clawplotfigur:[0,1,47,68,117],clawplotitem:[0,1,6,21,26,67,69,109,117],clawrundata:[40,52,112,118,119,120,122],clawsolut:1,clawsolv:[91,113],clawsolver1d:[75,78,81,91,95,113],clawsolver2d:[81,91],clawutil:[10,18,19,22,27,36,37,46,49,54,98,102,116,118,119,120,122,131,132],clawvi:49,clean:[21,49,96,108],cleaner:[27,110],cleanup:111,clear:[1,2,5,58,70],clearfigur:1,clearfram:[1,70],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,11,12,27,47,102,111],clint:15,clobber:109,clockwis:[31,43,61,131],clone:[11,17,22,23,38,48,49,50,51,71,72,86,92,100,116,132],close:[12,47,48,52,58,101,119],close_fig:52,closer:[61,120],cloud:12,cluster:[5,15,50,101,119,120],clustering_cutoff:[101,119,120],cmap:[47,52,68,131],cmap_slip:29,cmax:[47,52],cmax_dz:29,cmax_slip:29,cmin:[47,52],cmin_slip:29,cname:48,coars:[3,31,47,101,110,118,129,134],coarsen:[101,119,131],coarser:[3,14,110,118,119,134],coarsest:[5,47,63,104,112,118],coast:131,coastal:[44,114,121],coastlin:[31,47,121,133],code:[4,5,6,7,14,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,50,51,53,54,55,56,59,60,62,63,64,66,68,70,73,75,76,81,83,85,86,88,91,92,95,98,100,103,104,105,108,109,110,111,112,113,116,118,120,121,122,123,127,128,129,132],coeffici:[56,88,89,91,93,94,95,113,121],colella:[5,15],collabor:[47,123],collect:[11,24,25,27,29,31,61,67,75,91,123],collela:111,color:[3,29,47,52,58,67,117,131],colorbar:[3,52,131],colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,58,67,69,109,131],column:[9,29,31,40,44,85,89,108,131],column_list:29,column_map:29,com:[11,12,22,23,25,27,28,48,49,50,51,72,86,88,92,107,109,110,111],combin:[19,48,52,109,133],combinatori:102,come:[3,27,48,68,70,80,86,91,108,129,134],comfort:[51,88],comm_world:96,command:[0,1,2,3,10,12,27,28,36,46,47,49,50,51,54,60,67,68,71,75,76,78,86,87,91,95,96,97,98,102,113,116,117,118,119,129,131,132],commenc:112,comment:[10,23,45,49,111,112],commit:[29,46,48,49,102],common:[3,22,27,33,34,36,37,54,55,64,67,75,89,91,93,94,110,132,134],common_sourc:55,commonli:[3,58,68,70],commun:[24,47,73,93,96],comot:4,compact:129,compar:[21,34,40,44,47,49,68,85,101,102,114,119,121,127,133,137],compare_gaug:108,compat:[27,29,43,47,52,67,86,94,97,105,106,110,111,131],compens:131,compil:[12,24,33,34,36,42,51,55,62,64,70,71,76,83,88,92,96,104,113,116],compile_librari:96,complet:[19,21,27,43,54,70,75,76,86,96,97,102],complex:[11,81],compliant:37,complic:[14,68,76,117],compon:[3,14,19,21,24,31,34,40,50,51,58,63,67,88,90,92,93,101,108,118,119,120,129,134],compos:[29,75],comprehens:102,compress:[29,131],compris:[21,83,131],comput:[3,4,5,12,14,15,26,28,29,31,40,43,47,51,52,54,59,67,68,70,76,78,81,83,85,86,91,95,97,98,101,104,105,109,110,113,118,120,121,122,129,134,137],computation:[76,91],compute_f:[78,85],compute_gauge_valu:85,compute_p:[75,78],concern:[21,41],conclus:[4,47],conda:[47,71],condit:[6,19,24,53,55,64,73,74,75,76,78,85,91,99,104,105,108,114,118,120,121,122],conf:[48,49],confer:23,config:86,config_fc:132,configur:[68,75,86,131],confirm:44,conflict:[5,27,51,54,58,94],conform:[21,27,90,129],confus:[3,51,113],conjunct:101,conlict:54,connect:[31,48,52],consequenti:[53,73],conserv:[4,5,15,85,91,93,134,137],consid:[5,44,50,51,76,116,123,131],consider:[44,75],consist:[5,31,43,47,49,52,86,110,113,121,129,134],consol:[12,85],consolid:108,constant:[29,31,44,52,56,86,89,113,121,131,134],constant_storm_modul:108,constrain:101,constraint:[40,119,137],construc:52,construct:[21,29,75,81,96,129],construct_function_handl:96,constructor:93,consult:94,contact:[80,83,92],contain:[1,3,6,11,12,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,52,54,55,58,59,63,64,68,70,71,75,76,78,79,80,81,83,84,86,88,89,90,91,93,95,96,98,102,104,105,113,117,118,121,123,129,131,134],containing_rect:29,containt:112,contamin:118,contan:47,content:[47,76,134,135],context:[26,47,134],contigu:[63,93],contingu:21,continu:[12,21,27,29,45,50,73,113,118,137],contour:[3,29,40,47,58,97,117,131],contour_color:3,contour_kwarg:[3,131],contour_level:[3,131],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,67],contract:[53,73],contribut:[4,23,24,73,76,83,88,91,102],contributor:[4,23,53,83],control:[5,6,22,24,37,40,58,70,74,79,81,83,84,85,86,88,101,110,121],conveni:[1,26,33,34,40,47,70,78,80,83,85,87,95,134,137],convens:129,convent:[3,21,29,42,89,129],converg:67,convers:[18,24,76,101,129,133],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,52,54,61,76,88,96,118,119,129,133],convert_fort_double_to_float:96,convert_readm:10,convert_to_standard_unit:29,converttopotyp:129,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,63,67,75,81,85,86,95,101,121,131],coordinate_specif:29,coordinate_system:[13,115,121],coorind:131,copi:[5,13,14,33,34,40,47,48,49,51,58,75,78,88,93,99,100,101,105,109,115,123,125,126,129,134],copyq1:55,copyright:[53,73],core:[4,64,102],corioli:[44,121,125,126],coriolis_forc:[44,121],corner:[3,29,31,63,81,118,120,122,129,131],correct:[19,27,37,49,55,56,58,68,75,81,86,90,96,104,105,109,118,120,122],correctli:[27,31,76,82,108,121],correspond:[3,5,22,26,29,40,43,44,48,52,58,68,75,79,81,85,88,90,93,101,102,113,114,118,119,120,122,129,133,134],cos:[43,45,75,88],cosin:75,cost:[12,91],could:[12,26,31,33,34,40,51,62,68,70,75,81,85,93,94,97,98,108,119,120,121,122,129,131,134],council:4,count:75,count_from_zero:75,counter:[96,131],counterclockwis:61,coupl:[110,137],courant:[4,5,101,111,118,119,120,122],cours:[12,25,31,40,42,61,86,87,95,121,129],cover:[5,26,27,29,31,47,52,101,105,110,120,121,129],coverag:[83,102],covert:10,cparam:[75,93],cpu:[12,109,128],crash:[109,118],creat:[0,1,2,3,5,6,18,23,24,27,29,33,34,36,38,40,41,42,46,48,50,51,52,54,63,67,68,70,76,77,80,81,83,84,87,90,93,94,95,96,102,104,108,109,110,117,118,119,120,123,124,131,133,134,135],create_dtopo_xi:29,create_dtopographi:29,create_topo_func:131,creation:[68,83,104],criteria:[5,6,21,24,93],criterion:[31,101,120],critic:[47,85,113],crop:131,cross:27,crucial:[47,129],csdm:23,cse:23,csh:86,csv:29,csvfault:29,ctrl:[28,68],cube:58,current:[3,12,19,21,26,27,28,29,31,37,40,41,44,48,49,50,52,58,59,63,68,70,81,85,86,91,93,96,98,101,102,109,111,112,114,117,118,120,121,122,129,131,133],current_data:[0,3,24,40,67,68],curv:[3,40,67],custom:[0,12,14,19,21,24,55,58,64,67,76,82,88],custom_bc:88,customari:85,cut:119,cutoff:[5,120],cvs:47,cxx:86,cyber:15,cygwin:78,cython:86,dai:[5,12,47],dalcin:73,dam:[47,80],damag:[5,53,73],damian:50,damiansra:88,darker:47,darryl:15,dart:41,dash:[3,86],daspect:58,dat:29,data:[0,1,3,24,26,29,31,33,34,36,38,40,41,42,43,48,52,53,54,58,67,68,69,70,73,75,78,81,85,87,89,90,91,93,96,99,100,101,104,106,107,109,110,113,114,120,122,128,130,135],data_break:131,data_typ:96,databas:[12,29,96,129],datadir:109,dataset:[131,133],date:[27,36,43,47,48,49,50,54,68,132],date_tim:43,datetim:43,datum:[43,44,89,114,121,133],dave:29,davi:4,david:[4,15,73,83,91],dawson:15,daylight:52,dcp:52,deal:[29,44,67,85,86,93,131],dealt:31,debian:97,debug:[6,37,50,54,63,67,85,93,98,102,116,118,120],debugg:68,decid:[75,91],decim:[43,52],decis:47,declar:[19,21,93,134],decompos:[63,113,137],decomposit:118,decor:96,decoupl:48,decreas:40,deduc:129,deep:121,deep_depth:121,deeper:121,deepli:95,def:[0,1,3,40,47,68,75,81,85,88,91,120,122],default_tfluct:91,defenc:4,defin:[0,1,3,5,21,26,29,31,37,47,52,54,58,61,68,70,75,78,81,87,88,90,91,93,95,96,101,104,113,120,122,131,132,134,137],definit:[29,58,75,101,107],deform:[15,29,61,133],deg2dm:52,degre:[29,43,47,52,61],delet:[19,27],delimit:29,delin:121,delta:[79,81,88,91,113,131,134,137],delta_h:89,delta_hu:89,delta_i:131,delta_limit:131,delta_x:131,dem:[52,131],demo:86,demonstr:[11,80,86],denot:[5,21,40,113,131],densiti:[78,85,89,93,95,119,120,134],depart:4,depdend:79,depend:[3,12,14,27,28,29,31,33,34,36,37,42,44,47,50,54,56,58,68,74,89,90,91,96,98,101,121,131,132,134,137],deprec:[6,29,32,108,121,131],depth:[4,14,15,21,29,31,40,41,44,56,61,67,69,114,121,129],deriv:[53,61,73,78,82,83,93,102],describ:[3,4,5,6,12,14,18,25,27,29,30,31,33,34,40,42,43,44,47,48,49,50,52,54,55,58,61,63,64,67,68,69,81,90,96,101,102,110,113,114,117,118,119,121,129,130,131,133,134,137],descript:[3,4,8,21,52,58,67,96,101,113,121,129,137],design:[4,26,27,47,73,75,95,114,133],desir:[0,1,2,3,5,6,14,21,24,25,29,31,38,40,49,51,52,66,67,68,70,75,76,78,85,90,91,99,110,116,118,120,122,129,131,132],desktop:86,destin:47,detail:[4,6,9,14,21,25,27,29,31,33,34,37,41,42,44,47,48,51,53,54,58,68,73,78,79,80,81,84,85,86,87,88,89,91,100,102,105,110,113,117,118,121,123,132,134,137],detect:[47,54,84,92,96,132],deterimin:131,determin:[3,5,29,31,40,44,46,47,48,52,68,79,81,89,93,101,105,109,110,112,114,117,118,119,121,131,134],determine_topo_typ:131,dev:[23,27,86],develop:[4,5,6,12,17,21,22,44,48,51,53,58,67,71,72,73,76,83,88,91,92,102,113,114,120,129],dict:[29,78,84,89,90,93,131],dictionari:[0,1,2,3,29,40,68,75,78,84,89,90,93,95,131],dicuss:29,didn:[80,107],died:104,diff:[17,46,49,104,105,106,107,108,109,110,111],differ:[1,3,5,6,11,14,21,27,29,30,31,33,34,40,42,44,46,51,52,54,56,58,61,62,67,70,75,76,78,80,81,89,91,96,97,98,101,102,108,109,110,111,113,114,116,118,119,120,121,129,131,132,133,134,137],differenti:[15,29],difficult:40,difficulti:[92,94],diffus:88,digit:[52,68,110,111,131],dim:[88,89,91],dimens:[5,6,14,19,21,40,43,52,58,75,76,78,86,88,89,90,93,95,101,113,118,119,120,122,131,134],dimension:[3,6,7,15,21,24,29,31,33,34,40,44,58,81,88,108,109,111,120,121,122,131,134],dimensional_split:[81,108,118,120,122],dip:[29,61],dir:[28,86,135],direct:[5,7,14,21,29,31,33,34,40,43,47,52,53,54,58,61,62,68,73,78,88,95,111,113,118,119,121,131],directli:[7,18,22,44,58,68,70,75,76,79,93,96,98,131,135],directori:[1,3,5,10,11,12,13,14,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,48,49,50,51,52,55,58,59,62,66,67,70,78,80,81,85,88,95,98,99,101,102,104,109,110,111,112,113,115,116,117,118,119,123,125,126,127,128,129,132,134,135],disabl:[45,92],disable_petsc:96,disappear:133,discard:91,disclaim:[53,73],discontinu:[4,91,137],discov:56,discoveri:102,discret:91,discrib:4,discuss:[23,27,29,44,95,97,98,101,110,113,121,137],disk:[12,40,75,85,102,110],dispers:44,displac:[29,41,44,61,121,133],displai:[1,12,33,34,36,40,47,52,68,85,102],display_format:40,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,61,129,131],distinct:[40,110],distribut:[4,12,28,29,48,53,61,64,71,73,91,97],disturb:47,distutil:76,dive:97,divid:[101,118],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,129],doc:[17,22,23,27,29,47,48,49,79,96,111,124],docker:[17,24,49,50,111,136],dockerhub:[28,49],dockeril:28,docstr:[76,80,102],doctest:81,document:[0,1,2,3,5,6,16,20,21,22,23,24,27,31,41,44,51,53,61,67,68,69,70,73,79,80,81,84,85,86,87,91,93,96,98,105,117,120,135,136],doe:[4,10,14,19,26,27,31,36,44,47,58,64,68,71,81,90,93,96,102,105,110,112,113,129,131,132,134],doesn:[27,50,55,93],doi:[4,15,16,49,72],doing:[5,10,18,24,27,31,40,44,46,48,50,51,55,68,70,81,102,109,110,111],domain:[5,14,15,44,47,48,52,63,74,75,76,78,86,88,90,93,101,119,120,122,129],don:[12,26,27,48,49,68,85,86,92,102,120,132],done:[1,5,6,7,10,12,14,18,19,27,33,34,40,42,47,48,50,51,52,54,58,61,67,68,70,75,79,80,96,101,105,109,110,112,113,117,119,121,128,131,133],donna:[4,15],donnabois:4,donor:[118,120,122],dot:[36,40,47,52,54,132],doubl:[58,76,81,96,113,119],down:[12,29,85,109,129,131],download:[11,12,27,28,29,34,35,41,47,49,50,59,80,86,92,127,131,132],downward:61,doxygen:[5,6,24,111],dpc:52,dpi:[47,52],dpng:58,dprint:[119,120],dq_src:[88,91],dqdt:91,draft:49,draw:3,drawcontourlin:58,drawn:[29,47,117],driver:[19,55],drop:[12,118],dry:[14,15,31,41,89],dry_toler:89,dst:52,dt_check:31,dt_initi:[104,118,120,121,122],dt_max:[118,120,122],dt_max_dtopo:[104,121],dt_variabl:[118,120,122],dtdtopo:107,dtdx1d:106,dtdx:79,dtdy1d:106,dtfe:91,dtopo2kml:52,dtopo:[24,29,41,44,52,61,98,104,106,107,121,129,133],dtopo_data:[104,121],dtopo_file_nam:52,dtopo_modul:104,dtopo_typ:[29,52],dtopofil:[52,61,121],dtopographi:29,dtopotool:[41,61,106,107,109,130],dtopotools_exampl:[29,41,100],dtopotyp:[121,129],dual:116,due:[15,29,43,102,111],dummi:[76,91,134],dump:[63,118],dumpgaug:108,duplic:[68,107,112],durat:[29,114],dure:[21,31,40,52,64,104,114,120,121,122,129],dx0xgftn3_x04rdx0_w5nq7w0000gn:[13,99,115,125,126],dxc:76,dyc:76,dylib:47,dynam:[5,19,29,44,64],dynamic_slip:29,dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,15],e_l:89,e_r:89,each:[1,2,3,5,6,14,17,21,29,31,32,40,43,47,49,52,55,58,61,62,63,66,67,68,70,75,76,79,81,84,85,86,88,89,90,91,93,95,101,102,104,105,109,110,112,113,117,118,119,120,121,122,128,129,131,133,137],each_fram:40,each_gaug:40,ear:4,earli:[5,19],earlier:[19,21,31,51,75,88,104,111,131],earth:[24,41,52,61,108,110,121],earth_radiu:121,earthquak:[24,29,41,44,100,121,129],eas:52,easi:[4,5,10,28,51,58,71,76,85,86,87,116,123,134],easier:[51,67,110,134],easiest:[18,27,37,64,68,70,97,101,134],easili:[3,12,27,31,47,58,68,76,81,92,96,97,102,123],east:[12,129],easy_instal:86,ec2:24,echo:98,ecosystem:[4,15],edebug:[119,120],edg:[3,5,13,14,26,29,31,50,52,61,81,89,113,115,119,120,122,134],edit:[47,49,51,70],editabl:27,editor:63,edu:[29,47,59],effect:[40,47,56,58,81,85,97,101,102,114,121,131],effici:[44,73,83,85,93,101],efix:89,egg:51,eigenvector:[113,137],either:[11,14,19,29,41,42,47,50,54,58,61,68,70,75,81,85,91,96,98,101,102,108,109,110,113,129,131,134,137],elast:[12,61],element:[0,3,21,52,89,91,93,118,119,120,121],elementwis:85,elev:[21,31,42,44,47,52,67,99,121,129,131,133],elif:[120,122],elimin:[7,21,76],ell:113,els:[26,27,93,122],elsewher:23,emmett:[15,73,83],empir:[44,56],empti:[40,90,93,96,98,118,131],empyclaw:88,enabl:[81,85,92,96,110],encapsul:44,encount:[36,47,68,92,94],encourag:58,end:[12,29,31,40,43,47,49,52,78,85,89,95,98,99,101,103,104,105,106,107,108,109,110,112,120,122,128],end_dat:43,enddo:134,endors:[53,73],energi:[85,89],enforc:121,engin:[15,47],enhanc:[56,73],enlarg:110,enough:[128,129],ensur:[33,34,58],enter:[58,86,92],enthought:[92,94,97],entir:[5,44,47,52,62,64,75,85,90,105,131],entireti:78,entri:[47,75,85,96],entropi:89,enumer:[81,91],environ:[24,27,33,34,36,46,47,48,50,51,58,60,62,64,87,94,96,98,110,131,132],envis:14,epd:94,eprint:[119,120],epsg:47,epsilon:79,eqn:137,eqnarrai:95,equal:[14,29,31,47,86,88,101,112,118,120,122,129,131],equat:[4,14,15,33,34,41,44,56,68,74,75,76,78,83,85,88,91,92,93,105,108,110,113,118,120,121,122,129,134,137],equiv:137,equival:[5,40,52],err:120,error:[14,19,33,34,36,47,50,51,58,62,68,78,83,85,96,101,102,119,120,132],escap:[101,120],escienc:12,especi:[27,47,76,88],esri:129,essenti:[58,91,121,129],est:120,establish:4,estim:[56,101,119,121],estimat:120,eta:[29,31,40,108],eta_tild:31,etc:[0,2,14,18,19,23,26,27,31,44,47,48,52,55,63,67,76,113,117,118,121,134],etopo1:[114,131,133],etopo:133,etopo_sample_2min:131,euler:[83,91,106,108,111,113,134],euler_1d_pi:89,euler_2d:[33,35,88],euler_exact_1d:89,euler_hll_1d:89,euler_hllc_1d:89,euler_roe_1d:89,evalu:[26,29,56,75,81,91,131,134],even:[44,47,51,53,61,73,96,101,119,120,129,132,134],evenli:[47,85],event:[41,44,52,53,73,114,118],event_tim:52,eventu:[12,41],ever:[117,121],everi:[5,27,31,40,54,55,75,78,80,85,93,101,102,110,111,113,116,118,120,122,131,134],everyth:[31,49,50,62,86,95,96,102],everywher:[43,56,93],evolv:[21,75,78,91],evolve_to_tim:[75,91],exact:89,exactli:[27,46,93,118],exam:68,examin:[14,33,34,40,98],exampl:[0,1,2,3,4,5,6,7,8,12,14,19,21,23,26,27,29,31,36,37,41,43,48,49,50,51,52,54,55,56,59,61,62,63,67,68,70,73,74,75,76,78,81,82,83,84,85,88,89,90,91,92,95,96,98,100,101,102,104,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,127,128,129,131,132,133,134],exce:[31,47,101,119],exceed:101,except:[21,26,29,89,96,118,121,129],excerpt:86,exclud:[31,55],exclude_modul:55,exclude_sourc:55,exe:[33,34,78],exec:[0,1,3,68],execut:[0,1,3,14,18,26,33,34,40,52,58,68,70,78,80,86,102,113,116,132],exemplari:[53,73],exercis:[41,100,102],exist:[1,20,29,30,32,33,34,47,54,58,68,81,85,88,90,93,96,97,105,111,116,131],exit:[28,68,86,92],exp:[75,85,95],expand:[25,47,52],expect:[89,95,96,102,120,121,122],expens:[91,101,105,110],experi:[23,44,51,91],experiment:73,expert:44,explain:[12,44,50,101,118,123],explan:[27,79],explicit:[96,119],explicitli:[55,58,98,118,137],explor:[4,52,68,70],expon:56,expos:12,express:[4,29,53,73,92],extend:[7,14,21,52,58,81,121,129,131,137],extens:[4,15,21,23,27,29,44,47,48,50,51,55,58,76,83,84,96,110,111,118,127,131,137],extent:[44,50,51,52,56,58,75,81,93,104,121,131],extra:[3,47],extra_fil:48,extract:[47,131,133],extran:108,extrap:[14,88,95,118,120],extrapol:[14,21,31,88,95,118,119,120,122],extrem:[47,94],extropl:14,f2py:[50,51,76,88,96,113],f2py_flag:96,f2s:52,f49620:4,f77:[37,132],f90:[8,13,19,30,31,40,54,55,62,71,88,99,101,104,108,110,113,115,125,126,129,132,134],f95:96,f_file_nam:[78,85],f_path:78,facecolor:[2,68,117],facilit:[40,102,108,110,123],fact:[47,93],factor:[5,47,119,121,128,131],faculti:29,fade:68,fail:[13,27,86,96,99,102,108,115,125,126],failur:102,fairli:[14,44,110],fall:114,fals:[0,1,2,3,29,44,45,46,47,48,52,78,81,89,90,91,93,96,101,109,110,112,118,119,120,121,122,131],famili:[81,91,120,122],familiar:71,faq:[12,24,67,97],far:[14,38,67],fashion:112,faster:131,fastest:92,fault:[15,24,29,41,100,129,133],fault_plan:29,favor:[108,131],favorit:67,fbound:37,fc02:4,fcompil:132,fdefault:96,featur:[21,27,31,47,58,68,76,83,101,102,107,109,110,121,129],februari:[17,23,111],feet:[114,133],fellowship:4,fetch:[12,43],fetch_noaa_tide_data:43,fetch_topo_url:131,few:[5,11,12,21,25,34,44,48,58,76,91,95,101,102,114,127,134],fewer:[101,131],ff0000:[3,52],ff9999:117,ffff00:68,fflag:[27,36,54,59,62,76,96,129],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:52,fgmax:[41,52,62,105,107,110,111,121],fgmax_data:[31,121],fgmax_fil:[31,121],fgmax_grid:52,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,107],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,fgout2kml:52,fgout:52,fgout_grid:52,field:[40,52,88,90,93,98,99,103,104,105,106,107,108,109,110],fig:52,fig_kwarg:[29,131],fignam:[1,70],figno:[1,2,40,47,68,70,117],figsiz:[2,68,117],figur:[0,1,2,4,12,29,33,34,38,40,52,58,67,70,90,98,113,117,131],file1info:121,file2info:121,file:[1,5,7,8,10,13,17,18,19,21,22,24,26,27,28,29,33,34,36,37,38,40,41,42,44,46,50,51,52,54,59,61,63,64,67,69,73,76,78,80,81,84,85,86,87,88,90,93,94,96,98,99,104,105,107,108,109,110,111,114,115,116,117,118,119,120,122,124,125,126,128,131,132,133,135],file_format:[40,90],file_prefix:[84,90],file_prefix_p:78,filenam:[30,47,108,131],fill:[0,3,4,5,14,47,81,83,93,110,118,128,131,134],fill_between:3,fill_topo:131,fill_valu:131,fill_var2:3,fill_wher:3,filpatch:[8,110],filter:131,filter_region:131,find:[1,3,4,5,23,26,27,28,29,43,47,51,54,59,61,64,67,73,80,88,93,94,96,97,98,132],fine:[3,31,48,60,64,88,101,110,118,121,129,134],finer:[3,6,47,101,104,105,118,119],finest:[3,40,128,131],finish:[12,68,75],finit:[4,15,31,38,52,58,61,91,128,129,134],finlin:96,first:[1,3,12,18,19,21,27,29,31,33,34,47,48,49,50,51,52,54,58,68,70,75,76,81,85,86,88,91,92,93,95,96,98,101,104,108,113,118,120,121,127,129,131,137],first_test:33,fit:[53,73],five:31,fix:[5,18,19,21,24,41,49,52,54,73,89,104,105,106,107,108,109,110,111,118,120,122,129,131],fixedgrid:121,flag2refin:[21,119,120],flag2refine_tol:[101,119,120],flag:[6,12,21,27,36,37,51,59,62,76,94,96,98,108,120,121],flag_richardson:[101,109,119,120],flag_richardson_tol:[101,119,120],flat:[61,129],flavor:[11,20,50],flexibl:[21,29,52,76,108,111,113],flood:47,floor:[29,41,61],flow:[4,14,15,22,31,41,42,44,83,113,118,121,129,134],flowchart:[5,6,24],fluctuat:[89,91,137],fluid:[44,114],flush:109,flux2:76,flux2_dimsplit:108,flux3_dimsplit:108,flux:[15,31,81,89,91,113,118,137],fly:24,fmt:3,fname:[52,120,121,122],focu:[4,41],fold:14,folder:[13,47,99,115,125,126],follow:[0,2,3,4,5,12,14,17,18,22,23,27,29,31,33,34,35,40,42,47,48,49,50,51,53,58,59,61,63,68,69,71,73,75,76,77,80,81,84,85,86,88,89,90,92,93,95,96,98,101,102,112,113,117,118,119,121,127,128,129,132,134,136],fontsiz:68,foot:61,fopenmp:[37,62,96],forc:[21,36,54,96,131,132],force_dri:52,forestclaw:108,forg:50,forget:132,fork:[23,48,49],form:[0,2,3,4,5,7,18,19,21,27,28,29,31,33,34,38,40,43,47,48,49,53,56,61,63,73,76,85,89,91,95,96,101,105,112,113,118,119,120,121,125,129,131,134,137],format:[1,3,12,24,29,33,34,40,41,42,44,45,47,52,54,58,59,67,68,75,78,84,85,87,88,90,96,109,110,118,121,129,131,135],format_str:40,former:[68,134],formerli:108,formul:[4,44,56,113,118],formula:56,fort:[1,7,26,31,40,58,59,67,90,105,109,110,111,112,118,119,120,122,128,135],fortfil:[33,34],fortran:[5,8,10,12,19,22,26,27,29,31,33,40,42,51,54,55,56,62,63,64,67,70,73,75,76,78,81,83,86,88,89,91,92,93,96,108,109,110,113,116,120,122,127,128,129],fortran_modul:93,fortran_src_wrapp:76,forward:[91,134],found:[1,4,5,10,11,12,13,14,21,26,31,33,34,36,38,40,43,44,46,51,52,54,55,66,68,69,70,72,75,79,86,90,94,96,98,99,102,109,112,114,115,116,117,125,126,131,132],founder:4,four:[81,101,102],fourth:31,fpe0:37,frac:[56,89,95,137],fraction:[5,12,29,101,118,134,137],fragil:93,fragment:3,frame0000:58,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,58,59,63,67,68,70,75,78,82,84,86,90,92,96,110,112,117,120,122,123],framecount:96,framenam:58,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,70],framework:[4,49,73,76,109,110],free:[12,47,54,61,73,77,88,92,94,97],frequenc:91,frequent:[19,26,94,109],friction:[24,41,44,121,125,126],friction_depth:[56,121],friction_forc:121,friction_modul:108,friedemann:79,from:[0,1,3,4,5,6,11,14,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,51,53,54,55,58,60,61,63,67,68,72,73,74,75,77,78,81,82,83,85,86,88,89,90,91,92,93,94,95,96,98,101,102,104,105,108,109,110,112,113,114,116,118,119,120,121,122,127,129,132,133,134,135],frommm:79,front:[58,90,96,116],fset:93,fstr:58,ftrapuv:37,full:[5,49,52,68,78,85,91,95,116,129,134],fulli:[5,44,47,111,113],fun:96,func:96,function_nam:96,fund:[24,50,51,83],funrol:96,further:[5,14,24,37,44,52,54,58,83,101,102],furthermor:[47,95],futur:[12,21,25,33,34,44,52,56,75,91,109,110,129],fvmbook:[11,38],fvmhp:[4,11,14,15,24,64,113,118,134,137],fwave:[81,89,91,113],g77:94,galerkin:91,galleri:[11,33,34,35,39,49,66,67,80,83,97,102,107,111,123,127,134],gallery_al:83,gallery_classic_amrclaw:[7,33,34],gallery_fvmbook:[15,38],gallery_geoclaw:[31,41],gamma1:89,gamma:[56,89],gap:131,gas:[5,89],gaug:[6,24,41,52,81,82,93,104,108,109,110,111,112,114,120],gauge00001:[40,110],gauge_coord:81,gauge_data:93,gauge_dir_nam:81,gauge_fil:81,gauge_file_nam:81,gauge_id:40,gaugedata:[40,120],gaugeno:[40,120],gauges2kml:52,gauges_modul:[40,108,110],gaugesolut:40,gaugetool:[40,108],gaugexxxxx:[40,110,112],gauss_pt:29,gaussian:[75,95,122],gca:45,gcc:[86,92],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:12,gen_vari:[96,102],gener:[0,1,2,3,4,5,6,8,10,12,14,15,18,19,23,24,27,31,36,37,41,44,47,49,54,55,56,61,62,63,67,68,69,70,73,76,77,79,81,86,87,88,90,91,92,95,96,97,98,101,104,108,110,112,114,116,118,119,123,128,129,134,135],generate_2d_coordin:131,generate_2d_topo:131,geo:[41,56],geo_data:121,geoclaw:[4,6,11,15,22,23,27,29,31,32,34,37,40,49,50,51,52,56,59,61,64,67,92,98,100,102,112,113,114,116,118,119,127,128,129,130,131,133,134],geoclaw_modul:108,geoclaw_riemann_util:111,geoda:[114,133],geograph:47,geohack:28,geohazard:44,geol:29,geolib:[59,104,108],geom:[81,93],geometr:134,geometri:[24,29,83,88,90,93,108],geophys:[4,14,15,22,41,44,64,118],geoplot:[45,47,69],georefer:47,georeferenc:47,georg:[4,15,29],geoscientist:44,geospati:47,get:[0,9,12,23,27,36,41,47,50,51,54,55,67,71,75,76,81,85,86,92,94,95,96,97,100,102,111,113,131,132],get_aux_glob:93,get_auxbc_from_aux:93,get_cmap:68,get_count:96,get_dim_attribut:81,get_dt:91,get_dt_new:91,get_q_glob:93,get_qbc_from_q:93,get_remote_fil:131,get_topo:131,getax:1,getcwd:68,getfigur:1,getfram:[1,3,70],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:85,getsitepackag:98,getusersitepackag:98,gfortran:[12,51,62,71,74,94,116,132],gfortranbinari:92,ghamdi:4,ghost:[6,14,62,63,81,91,93,110,118,120,122,128,134,137],gica2937:29,gist:50,git:[11,12,22,23,24,25,48,49,51,92,102,116],git_statu:46,github:[11,21,22,23,25,28,48,50,51,72,80,88,92,102,107,109,110,111,113,132],gitter:23,give:[3,5,8,9,12,14,23,27,29,31,33,34,40,51,52,62,63,68,70,86,87,91,102,105,109,110,118,121,129,131,133],given:[29,43,47,52,56,58,61,79,86,90,91,93,96,101,114,121,129,131,134],glitch:107,glob:80,global:[5,81,93,96,114,133,134],gloss:133,glu:14,gmt:43,gnu:92,gnufcompil:132,goal:5,godaddi:48,godunov:[4,81,91,118,120,122,134],goe:[29,41],going:[14,21,49,75,78,80,89,97,103,123,129,137],gone:85,good:[14,27,44,47,53,62,73,95,102,110,113],googl:[23,24,27,41,52,80,86,94,108,110,113],googlecod:86,googleearth:[47,52],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:9,gov:[29,43,86],govern:121,gprint:[119,120],gradi:[4,15,73],gradient:[111,137],gradylemoin:4,grant:[4,73],graph:8,graphic:[22,27,58,67],grav:89,gravit:[56,89,121,134],graviti:121,great:[43,80],greater:[31,52,56,92,97,101,112,118,119],greatest:101,greatli:[25,73,114],green:[52,61,68,102,131],grid1d:81,grid1info:121,grid2info:121,grid:[4,6,15,18,19,21,22,24,26,27,40,41,42,44,47,52,58,63,64,67,73,75,83,85,86,88,89,90,91,93,95,101,102,104,105,107,108,110,111,113,114,118,119,120,122,128,129,131,133,134,137],grid_files_scanf:135,grid_numb:63,grid_registr:131,griddata:131,grideges_show:21,gridlin:58,gridlines_show:21,ground:31,groundoverlai:47,group:[3,12,23,27,29,44,80,86,94,109,113],guarante:[41,44,91,100],guard:109,gui:[21,135],guid:[12,17,22,23,24,41,42,72,83,97,111,124],guidelin:83,gzip:49,h_l:89,h_r:89,hack:93,had:[40,110,111],hadjimichael:[4,15,73],half:[0,14,15,61,91,118,134],halfspac:61,hand:[3,18,19,56,75,102],handi:[27,54],handl:[0,2,3,5,31,37,41,52,62,64,67,81,88,90,91,93,94,95,96,98,104,105,107,108,110,121,131],hang:61,happen:[30,47,54,75,90,93,132],har:113,harbor:31,hard:[45,50,62,68,131],hardcopi:[1,68,70,117],harder:118,hardest:[59,97],hardwir:62,has:[0,4,5,7,12,14,16,19,20,21,22,26,27,31,32,33,34,46,47,49,52,54,56,58,61,63,64,68,73,76,78,81,85,88,89,90,93,94,96,97,98,99,101,102,103,104,105,110,111,113,114,118,119,121,128,129,131,133,134,135,137],hash:[46,48,102],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,21,22,23,26,27,28,29,31,33,34,37,38,40,41,44,47,48,49,50,51,54,55,56,58,59,62,63,67,68,70,71,73,75,76,79,80,81,83,85,86,87,88,89,90,91,92,93,94,95,96,98,101,102,104,105,107,108,109,110,111,112,113,114,116,118,119,121,123,129,131,132,134],haven:95,haversin:43,hazard:[31,41,56,114],hdf5:85,head:[27,29],header:[10,29,40,63,90,108,110,129,131],header_styl:131,heat:89,heavili:76,height:[47,89,131],held:44,hello:86,help:[6,8,22,23,24,27,36,45,50,51,54,67,70,83,86,92,96,102,109,113,123,132],helzel:15,henc:[48,51,55,91,101],here:[4,12,14,31,44,48,51,52,64,68,70,72,75,78,79,83,86,88,89,94,95,98,108,113,131,137],heterogen:134,hex:[52,68],hidden:[3,54,68],hide:[47,58],hierarchi:[47,81,98],high:[4,15,44,47,64,76,83,91,113,114,121,133,134],higher:[3,5,47,81,91,92,113,114],highlight:[10,12],hilo:[114,133],hint:[14,24,41,67,70,71,98,121,132],histor:[44,61,133],histori:[27,49,70,97],hit:[14,58,70,85,118],hll:89,hllc:89,hmin:31,hoc:76,hold:[3,70,95,101],holder:[53,73],holland_storm_modul:108,home:[12,29,51,116],homebrew:47,homepag:20,homogen:[61,91,134,137],hood:67,hope:[25,102],horizont:[47,131],host:47,hour:[12,47,52],how:[1,5,6,11,14,21,23,27,29,31,33,34,37,40,42,47,49,52,54,61,62,63,67,78,80,82,83,84,88,91,95,96,98,100,101,102,105,110,112,113,117,118,121,123,131,135],howev:[5,12,14,21,33,34,37,42,44,47,51,53,55,61,62,63,73,76,101,102,110,114,117,121,128],hpc:23,html:[1,12,15,22,27,29,33,34,36,39,40,47,48,67,68,80,86,87,102],html_plot:87,htmlplot:80,htpp:27,http:[4,11,12,15,23,25,27,28,29,39,43,47,48,49,50,51,53,59,71,72,73,76,77,83,86,88,107,109,110,111,131],hurt:55,hydrodynam:15,hyperbe:79,hyperbee_limit:79,hyperbol:[4,5,15,38,64,76,83,88,89,95,113,118,121,134,137],hyperol:118,ibm:92,idea:[9,23,29,58,64,75,95,105,131,137],ideal:[49,89,114],ident:[55,81,86,102,131],identifi:[33,34,47,76,101],idl:12,ids:40,ieee:15,ifort:37,igetsp:108,ignor:[14,47,52,108,114,129,131],iinstal:86,illustr:[29,33,34,47,58,61,100,107,108,113,123,131],imag:[12,33,34,49,52,102],immedi:[44,58,75,77,78,85],impati:88,imped:[75,89,95],implement:[1,4,6,14,29,52,55,60,73,88,89,91,95,96,101,102,107,110,113,118,131,134,137],impli:[53,73],implicit:[73,91],importantli:86,impos:[14,76,101,121,125,126,137],imposs:[44,118],improv:[4,12,21,23,31,32,47,104,105,107,108,109,110,111,118],imshow:131,in_poli:131,inaccur:44,inaccuraci:44,inadequaci:56,inadvertantli:68,inbound:12,inc:[4,15,58],incept:4,inch:[2,47,52,68,117],incident:[53,73],includ:[4,5,12,13,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,48,49,50,51,52,53,55,56,58,59,62,64,67,68,70,73,75,76,80,81,83,85,86,87,88,89,90,91,92,93,95,97,99,102,104,110,111,113,115,118,120,121,123,124,125,126,128,129,131,134],incom:14,incompat:[27,47],incompress:15,inconsist:109,incorpor:[21,44,48,73,91,104,111,131],incorrectli:109,increas:[47,52,62,121],increasingli:27,increment:[31,40,47,81,96,118,120,122],ind:81,inde:[76,86],indent:[43,52],independ:[22,29],index:[1,5,12,21,22,26,31,39,40,48,68,81,83,86,88,89,96,118,120,122],indic:[6,14,19,21,24,28,29,37,40,47,49,51,55,58,66,70,81,85,86,89,91,95,98,101,102,110,113,118,120,121,122,129,131,134],indirect:[53,73],individu:[4,21,22,47,52,54,55,58,81,101,102],inf:131,infer:131,infinit:118,inflat:14,info:[29,40,52,58,78,81,85,91,110,119,120],info_sz:29,inform:[12,21,24,33,34,42,43,44,45,46,50,51,55,63,68,69,70,71,72,75,76,81,85,86,87,89,90,96,98,109,112,113,118,119,121,128,129,132,133,134,135],inhabit:75,inherit:[68,81,91],initi:[4,6,12,21,29,31,40,43,44,47,55,58,61,64,70,73,74,75,76,78,79,81,82,85,89,90,91,93,94,96,99,101,109,113,114,118,120,121,122,129,131],initialize_sourc:76,inlinelimit:55,input:[6,14,19,22,24,26,29,36,41,47,52,55,58,75,78,79,81,83,89,90,91,96,109,113,120,121,122,129,131,134],input_filenam:76,input_unit:29,inputfil:[96,129,131],ins:21,insert:[10,14,61],insid:[81,86,90,113,131],insidi:110,inspect:[18,19,47],instabl:110,instal:[11,12,17,22,24,28,33,47,48,49,70,73,74,77,82,83,84,95,102,103,104,105,106,107,108,109,110,111,116,136],install_fortran:34,install_prerequisit:[33,34],installing_pip:49,instanc:[3,27,47,64,70,75,76,78,81,85,88],instantan:[91,129],instanti:[78,86,88,91,93,120,122],instati:131,instead:[3,12,31,33,34,40,49,50,51,54,55,59,92,93,96,109,110,112,113,129,131],institut:4,instruct:[12,17,23,24,33,34,47,48,49,50,59,75,77,83,86,92,95,98,111,112,116,132],insur:[46,54,70,101,104,108,119,121,129],intact:[60,109],integ:[3,31,40,47,52,56,68,76,90,101,111,113,118,121,131],integr:[21,73,83,85,91,104,105,109,120,122,128,129,134],intend:[44,76],intens:76,intent:[76,113],inter:[27,111],interac:85,interact:[1,12,21,33,34,36,40,42,54,64,67,68,76,86,87,92,95,98,109,110],interactive_plot:[87,95],interactive_test:109,interdepend:93,interest:[11,14,17,22,26,31,45,58,76,93,102,111,118],interfac:[4,18,21,58,73,76,79,83,89,91,96,113,134,135,137],interface_funct:96,interior:[5,14,63,93],interleav:[73,89],intermedi:[18,31,134],intermit:[40,110],intern:[5,29,40,52,110,129,131,137],interp_unstructur:131,interpol:[5,14,29,32,40,41,52,58,68,110,114,121,131],interpret:[31,97],interrupt:[53,73],intersect:31,intersphinx:48,intersphinx_map:48,interv:[40,43,75,95,101,118,121],introduc:[14,18,31,68,137],introduct:28,introductori:97,intuit:83,inund:[31,41,47,56,114,133],inundataion:[114,133],inv_haversin:43,invalid:[37,90],invert:43,invest:44,investig:102,invis:[36,108],invok:[10,62,132],involv:[23,88,91],ioerror:90,ioexcept:96,iout:122,ioutarrivaltim:121,ioutsurfacemax:121,ipdb:68,iplot:[33,35,80,86],iplotclaw:[1,12,21,33,34,40,42,67,68,87,98],iplotclaw_:68,iplotclaw_figno:1,ipynb:[29,100,109,131],ipynotebook:109,ipython:[12,64,68,70,76,77,83,85,92,95,97,98,108,109],ipython_displai:104,iqinit:[121,129],is_valid:[90,93],isn:[54,62,63,132],isosurfac:58,isotrop:61,issu:[21,23,25,48,49,50,51,58,75,80,81,83,91,92,94,102,104,109,110,111,113,121,132],item1:[0,70],item:[0,1,3,58,67,70,96,117],itemnam:[1,70],iter:[29,89],ith:89,its:[4,5,12,21,28,32,44,47,50,53,55,63,73,78,79,80,81,83,88,90,91,93,96,101,120,131,137],itself:[4,67,113,121,131],ixi:113,jacobian:[113,137],jan:[4,49],januari:[16,103,110],japan:[47,52],javascript:123,jed:73,jet:[29,58],job:12,join:[23,68],journal:[4,15,83,123],jpg:58,jsanim:[104,108],jsanimation_frametool:106,juli:[16,105,106],jump:[4,48,50,58,70,81,91,110,118,137],junction:[31,121],june:[16,111],jupyt:[61,100,108,109],just:[0,5,27,36,49,75,76,78,80,85,86,87,88,93,96,97,105,118,134],justifi:61,kappa:[95,137],kappa_i:137,karg:90,kaust:[4,23],keep:[24,27,33,34,62,75,78,93,96,102,105,121],keep_copi:[75,78,85],keep_gaug:93,kei:[0,1,2,12,27,29,40,91,95,96,131],kemm:79,kemm_2009:79,kentzo:49,kernel:96,kernel_languag:[81,91,96,102],ketch:4,ketcheson:[4,15,65,73,83,91],ketchesonmandliet:[4,15],ketparlev13:[4,15,64,83,113],keyboard:58,keypair:12,keyword:[2,3,68,75,80,81,90,96,102,117,131],kind:[78,80,85,113],kinemat:29,king:73,klein:79,kml:[52,108,110,111],kml_build_colorbar:[47,52],kml_cb:52,kml_colorbar:47,kml_dpi:[47,52],kml_figsiz:47,kml_footer:52,kml_gaug:52,kml_header:52,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:52,kml_publish:47,kml_region:52,kml_starttim:47,kml_tile_imag:47,kml_timespan:52,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,130],kmz:[52,110],kneplei:[15,73,83],know:[44,50,51,54,73,111,113,114,131,132,133],knowledg:44,known:[37,58,61,62,68,92,94,102,111,118],kpp:80,kristof:73,kutta:[83,91],kwarg:[2,29,52,68,96,102,117],kyle:[4,15,73,79,83,89],label:[29,45,47,52,108,129,131],lack:3,lake:[41,129],lambda:[81,131],lambda_roe_1:89,lambda_roe_2:89,land:[14,41,42,47,48,52,69,131],landslid:44,langseth:[4,15],langsethleveque00:[4,15],langtangen:97,languag:[10,67,96,97],lapack:104,laptop:83,larg:[5,19,31,33,34,44,47,48,58,62,67,85,86,101,102,109,112,118,131],larger:[12,19,31,47,52,62,63,68,81,104,110,121,129],largest:[101,114],last:[3,17,26,31,49,68,75,76,88,95,109,118],lat:[29,43,47,131],later:[12,46,47,51,70,91,112],latest:[22,39,47,49,51,77,86,92,105,109],latex:[1,47,67,87],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[13,29,31,42,43,61,67,108,115,121,131],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[13,88,115,118,134],launch:[35,80,83,86,87,92],law:[4,15,52,137],lax:[81,91,118,120,122,137],layer:[15,40,52,81,104,106,109,110],lbla:94,lead:[5,12,21,44,47,56,58,61,100,119],learn:[44,80,97],least:[4,5,12,47,52,58,94,101,102,109,110,118,120,129,131],leav:[12,14,40,119,131],led:19,leer:[79,91,118,120,122],left:[3,9,12,14,26,31,63,70,81,88,89,95,111,112,113,114,119,129,131,133,137],legaci:22,legend:111,legend_tool:111,lemoin:[4,15,73],len:[29,81,120,122,131],lenght:118,length:[13,29,44,52,61,88,93,110,115,118,119,120,121,134],less:[44,47,56,62,91,101,102,118],let:[14,41,50,51,73,111,113],level:[3,5,6,14,22,26,31,40,42,43,44,47,49,50,51,58,62,63,76,78,81,85,91,98,99,101,102,104,105,109,110,112,114,116,118,119,120,121,122,128,129,131,133,134],levequ:[4,14,15,29,64,79,81,83,91,97,113,118,134,137],leveque09:15,leveque1996:15,leveque1997:83,leveque96:15,leveque97:[4,15],leveque_book_2002:89,levequegeorgeberg:[4,15],levyon03:15,lgomp:96,liabil:[41,44,53,73,100],liabl:[53,73],lib:55,libgdal:47,liblzma:47,librari:[5,12,13,14,19,21,24,26,27,31,33,34,37,40,52,54,59,62,63,64,73,79,84,86,91,96,99,101,110,115,119,125,126,132,134],library_path:96,licens:[24,41,44,83,100],lie:[5,31],lies:[5,14,31,101,121],light:[47,58,101],lighter:47,like:[12,27,28,37,47,48,49,52,58,59,70,76,78,81,85,86,89,90,91,93,97,98,102,109,113,117,128,129,132],lim_typ:91,limit:[0,4,5,24,29,44,47,52,53,58,62,67,73,75,76,81,83,91,101,106,118,120,121,122,129,131,137],line2kml:52,line:[1,3,4,14,27,29,31,37,40,41,42,43,46,47,52,54,55,58,59,63,67,68,86,91,95,96,98,99,103,104,105,106,107,108,109,110,117,118,120,129,131],linear:[4,29,31,47,61,68,75,79,91,113],liner:[0,29],linestyl:131,linewidth:68,link:[4,10,12,15,17,18,19,23,27,37,38,41,47,48,49,50,52,59,97,98,111,113,114,122,129,133],linspac:[58,78,95],linux:[12,50,60,71,94,97,102,116],lisandro:73,list:[1,3,4,6,7,8,10,12,21,27,29,31,33,34,35,36,40,47,48,50,51,52,53,54,55,56,58,62,68,70,73,74,75,78,79,81,85,87,88,89,90,91,93,94,96,98,99,101,103,104,105,106,107,108,109,110,112,116,118,119,120,121,122,128,131],literalinclud:48,literatur:[44,113],littl:[44,114],live:93,llapack:94,llcenter:131,llcorner:131,lmm:91,lnetcdf:[37,59],lnetcdff:59,load:[12,52,85,87,90,96,97,102,131,135],load_sift_unit_sourc:29,loc:131,local:[12,15,19,24,27,47,48,52,54,55,58,79,81,88,93,110,131,134],local_fnam:131,local_path:96,localhost:28,locat:[5,6,12,29,42,43,47,51,58,63,81,85,87,89,90,96,98,109,111,114,131],log:[27,81,82,83,90,91],logger:[85,93],logic:[5,14,15,31],logo:111,long_lat:131,longer:[19,27,40,48,52,110,112,113],longitud:[29,31,42,43,61,67,108,121,131],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[12,21,24,27,29,47,49,52,58,59,68,70,76,81,86,90,91,95,96,97,98,102,105,118,119,121,128,131,132],loop:[40,58,67,96,101,113,117,118,134],lose:109,loss:[53,73],lot:[27,50],love:[80,113],low:[47,76,131,133],lower:[3,21,29,31,63,81,86,118,120,122,129,131,133],lower_glob:81,lowerg:86,luna:[15,73,83],lxml:47,lying:5,m_w:137,mac:[50,62,71,94,97,102,116],machin:[12,24,50,62,64,97,102,110,116],macport:47,made:[4,17,21,27,29,51,90,93,104,105,110,121,131,134],magic:52,magnitud:29,mai:[0,1,2,3,4,5,12,16,17,18,19,21,22,23,24,26,27,29,31,33,34,36,42,43,44,45,47,48,50,51,53,54,56,58,59,61,62,67,68,70,71,73,76,77,80,81,83,85,88,90,91,94,96,97,98,101,102,106,108,109,110,111,112,113,114,116,117,118,119,120,121,129,131,132,134],mail:[88,94],main:[10,18,27,48,49,58,64,76,78,84,88,95,96,102,111],mainli:86,maintain:[27,119,129,134],mainten:73,major:[4,21,49,73,76,103,104,105,106,111],make:[1,10,12,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,48,49,52,54,55,56,58,62,64,67,70,71,75,76,78,81,82,83,88,90,96,100,102,104,108,109,110,111,113,118,129,131,133,134],make_colormap:68,make_input_data_kml:52,make_lib:12,make_shoreline_xi:131,makefil:[5,10,13,14,18,19,22,24,27,31,33,34,37,59,62,64,68,70,76,82,101,104,108,110,115,118,120,121,122,123,125,126,129,132,134],makefile_kml:108,maketopo:129,man:[15,24,41,44,121,125,126],manag:[12,47,50,85],mandli13a:15,mandli13b:15,mandli2016clawpack:[4,15],mandli:[4,15,73,79,83,89],mandlietal2016:15,mani:[1,3,4,5,11,12,19,20,21,27,31,33,34,35,37,38,42,47,52,54,55,61,62,63,68,70,73,75,80,83,88,90,95,96,97,101,103,104,110,113,117,118,119,121,129,134],manifold:58,manipul:[40,131],manner:[40,47,67,118,125,126],manning_break:121,manning_coeffici:121,manual:[35,76,85,92,94,102,127],manuel:[15,73,83],maojr:109,map2d_to_1d:26,map:[3,14,29,52,58,68,73,76,81,83,88,101,108,131,137],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,58,76,81],mappedgrid:[3,58],march:[16,23,104,105],margin:[31,41],mark:[14,47,102],mark_cent:81,mark_nod:81,marker:52,markup:10,marsha:[4,5,15],mask:[45,131],mask_outside_zlim:52,maskedarrai:131,mass:[5,85],massiv:83,master:[12,16,28,48,49,51,88,109,110,111],match:[29,47,52,80,84,90,102,131],materi:[4,53,61,73],math:[15,47,95],mathemat:4,mathwork:58,matlab:[6,21,24,33,34,66,67,68,87,97],matlabpath:58,matplotlib:[0,2,3,12,29,45,47,67,68,71,74,77,97,117,131,132],matric:[113,137],matrix:89,matteo:[4,15,73,83],matter:[55,108],matthew:[15,73,83],maux:[21,113,134],max1d:62,max:[0,29,58,89,101,105,120,122,131,137],max_buff:[40,110],max_inch:52,max_level_deep:121,max_step:91,max_vertices_in_descript:52,maxima:[31,62,121],maximum:[3,21,29,31,32,41,58,91,95,101,104,105,118,119,120,122],maxlevel:[58,101,119,120,121],maxm:113,maxmi:[19,76],maxmx:[19,76],maxmz:19,maxwell_1d_homogen:88,mayb:131,mbc:134,mc_limit:79,mcs:86,mean:[3,12,21,27,40,44,58,85,86,101,113,114,118,120,122,133],mean_latitud:45,meant:[37,81,91],measur:[29,40,43,61],mechan:93,media:15,medium:[120,134],meet:23,member:[47,88,90,95],memori:[19,21,62,63,64,75,78,85,93,119,120],mention:[118,119],menu:[12,52,111,114,133],meqn:[40,63,113,134],merchant:[53,73],mercuri:86,merg:[5,12,27,48,49,51,108],mesh:[4,6,15,58,64,67,75,101,117,118,134],meshgrid:[75,88,131],messag:[27,36,43,48,51,58,62,78,81,85,87,90,91,93,94,118,120,122,132],met:[31,53,73],metadata:[63,129,131],meter:[29,43,47,114,121,131,133],method:[4,15,38,40,68,70,75,78,79,81,86,90,91,96,101,102,108,113,117,118,119,120,122,128,129,131,134],metric:43,mhhw:114,mhw:[44,114,133],micro:12,mid:68,middl:[89,109],midpoint:81,might:[9,12,14,21,27,28,33,34,35,43,47,48,50,51,55,58,62,68,75,85,89,97,100,101,104,116,118,119,129,131,133,134],migrat:18,millimet:131,min:[0,89,131,137],min_level_check:31,min_time_incr:40,mind:27,minim:[5,51,119,131],minimum:[3,31,40,47,61,95,110,121,131],minisymposterium:23,minlevel:[101,119,120,121],minmod:[79,81,91,118,120,122],minmod_limit:79,minor:[10,47,85,104,105,106,107,108,109,110,111],minut:[43,47,48,52,114,131,133],mis:68,misc:[4,83],miscellan:89,miss:[21,129,131,132],mitig:44,mitran:[4,15],mix:[29,47],mjb:[5,15],mjberger:4,mllw:133,mode:[1,12,27,96,128],model:[14,15,23,24,29,31,37,41,42,56,85,109,114,121,129],modern:[92,113],modif:[27,36,53,58,68,73,79,121],modifi:[5,8,13,14,19,21,26,31,33,34,40,41,49,51,54,58,60,68,76,79,81,83,88,98,99,100,101,107,109,110,111,115,118,120,121,122,125,126,129,131,134],modul:[0,6,7,24,27,31,37,41,45,47,50,51,55,61,62,67,68,69,70,71,75,76,79,80,84,88,89,90,93,98,102,105,106,108,111,112,118,119,121,129,130],module_nam:96,modulu:[29,89,95,120,134],molsolv:91,moment:[26,29],momentum:[14,31,44,56,85,121,129],monitor:[21,24,32,41,62,105,107,110],monoton:[118,121],monster:9,month:[15,47,83],more:[1,2,3,4,6,9,11,12,14,15,19,21,25,27,29,31,33,40,41,42,44,47,48,49,50,51,52,53,54,58,61,67,68,69,70,71,73,76,78,79,81,85,86,87,88,89,91,92,93,95,96,98,100,101,102,104,105,108,110,111,113,114,116,117,118,119,120,121,123,127,128,129,131,132,134,137],most:[3,19,21,26,31,33,34,36,37,40,44,46,47,48,50,52,54,58,62,64,67,68,70,73,81,85,86,91,94,95,101,102,109,111,112,113,114,117,118,119,121,124,134],mostli:[3,67],motion:129,movabl:29,move:[14,33,34,41,48,50,61,88,101,104,106,111,121,129,130],movement:29,movetopo:104,mparsani:4,mpi:[64,86],mpich:86,mpiexec:86,mpirun:[86,92,102],msl:[114,133],mthlim:[81,91],much:[12,27,31,37,47,48,63,64,67,97,104,108,118,121,128,131],muct:91,multi:[15,47,75,104,106,109,134],multicor:[62,110],multidimension:[76,83],multilay:[40,105,108,111],multipl:[5,12,22,27,40,67,75,81,85,96,98,102,104,110,112,113],multistep:91,must:[5,12,14,19,21,27,29,31,42,47,48,53,54,55,58,61,62,63,73,76,84,85,88,90,91,93,94,95,96,98,104,108,113,114,118,120,121,122,131,132,133,134,137],mwave:113,mx1d:134,mxnest:21,my_acoustics_rp:75,my_custom_bc:91,my_initial_solut:78,my_riemann_solv:113,my_rp_modul:75,my_setplot_fil:70,my_solv:78,n00014:4,n12:31,n23:31,name:[0,1,2,3,6,10,12,19,21,27,28,29,31,33,34,36,40,47,49,52,53,58,59,68,70,73,76,78,80,81,84,85,89,90,95,96,98,109,112,113,117,118,119,120,121,122,131,134,135],namespac:76,nan:[43,131],nation:[4,44],natur:[31,48,113,137],naux:63,navig:[11,123],nbtool:108,nbviewer:109,nc_param:131,ncar:4,ncol:108,nctr:29,ndarrai:[43,79,81,89,93,131],ndarrari:81,ndim:[21,63,70,118,119],ndip:29,nearbi:114,nearest:[40,131],nearli:[81,129],nearshor:44,necessari:[5,12,31,33,34,42,44,47,49,51,52,58,61,63,64,70,75,76,81,108,110,112,113,116,117,118,129,132,134],necessarili:[4,102],necessit:27,need:[0,4,5,12,13,14,17,18,19,21,26,27,31,33,34,36,37,44,45,48,49,51,52,54,55,58,59,61,62,63,64,70,71,75,76,78,79,83,84,85,86,88,91,95,97,98,101,102,105,109,110,112,113,115,116,118,119,120,121,122,125,126,129,131,133,134,137],neg:[21,129,131],negat:[43,129],neglig:[53,62,73,121],neighbor:[4,31,101,110,119,120,131],neither:[47,52,53,73,110],nest:[104,110,119,120],netcdf3:84,netcdf4:[84,129,131],netcdf4_dir:37,netcdf:[12,37,109,118,120,122,129,131],never:[31,88,93,99,101,118,120,122,132],nevertheless:47,new_featur:27,new_frame_num:96,new_plotax:[0,2,40,47,68,117],new_plotfgur:68,new_plotfigur:[1,2,40,47,68,117],new_plotitem:[0,3,40,47,68,117],new_userdata:[120,122],newdir:60,newer:[27,51,62,79],newton:89,next:[2,3,5,12,17,31,33,35,40,48,58,63,68,70,74,75,86,91,95,101,102,118,119,121],nfr:4,ngdc:[114,133],nghost:63,ngrid:63,nhtmp:44,nice:[27,52,76,88,105],nicer:[70,97],nih:4,nnnnn:[112,118],no_data_valu:131,no_tran:81,noaa:[29,43,114,133],nodata_valu:[129,131],nodatav:129,nodatavalu:129,node:81,nodes_with_ghost:81,nohup:105,non:[14,31,64,76,88,95,118,120,122,137],nonconserv:137,none:[0,1,2,3,14,26,29,40,43,47,52,78,81,85,90,91,93,96,102,104,110,112,118,120,122,129,131],nonexist:[6,24,41,80,83],nonlinear:[4,15,44,79,113,118,137],nonoverlap:5,nonphys:40,nonuniform:58,nor:[53,73],norm:[52,101,131],normal:[14,68,88,98,113,118,119,120,122],north:[43,61],northernmost:129,norwegian:4,nose:[27,74,86,102],nosetest:[27,34,35,86,92,102,127],notat:[29,43,52,113],note:[1,3,4,12,14,19,21,23,24,27,29,36,37,40,43,47,48,49,50,52,54,55,61,62,68,70,76,79,80,81,83,84,86,88,89,92,93,96,97,101,108,110,112,113,114,116,117,118,119,120,121,122,128,129,131,133,134],notebook:[29,61,77,85,100,108,109],noth:[13,93,115,125,126,131,134],notic:[47,53,73,95,102],nout:122,nov:[15,83],novemb:[16,109,110],now:[5,6,12,17,19,21,25,27,28,29,31,37,46,48,50,56,63,68,71,75,76,81,83,85,86,87,88,90,91,92,95,102,104,105,108,109,110,111,117,121,123,129,136],nprint:[119,120],npt:31,npy:131,nrm:52,nsf:4,nstepout:[78,85],nstrike:29,nthmp:44,ntime:120,ntot:122,num_aux:[76,86,88,89,93,113,118,119,120,122,134],num_cel:[7,21,81,113,118,119,120,122],num_cells_glob:81,num_digit:52,num_dim:[21,81,88,118,119,120,122],num_entri:96,num_eqn:[63,75,76,79,86,88,89,90,93,95,113,118,120,122,134],num_fgmax_v:[31,121],num_ghost:[76,81,88,89,91,93,113,118,120,122],num_output_tim:[75,78,85,112,118,120,122],num_proc:110,num_wav:[79,89,113,118,120,122],number:[1,2,3,4,5,7,14,15,18,21,26,27,28,29,31,33,34,40,47,49,52,54,58,62,63,64,70,75,76,78,79,80,81,83,84,85,86,88,90,91,93,95,96,101,102,104,105,107,108,109,110,111,112,113,118,119,120,121,122,127,131,134],numer:[4,15,47,97],numerica:15,numpi:[3,12,29,43,71,74,75,76,78,81,88,93,94,95,97,102,120,131,132],nxpoint:131,nypoint:131,nyu:4,object:[0,1,2,3,21,26,29,31,40,47,52,67,68,70,75,76,78,84,85,86,88,90,93,94,95,96,97,104,112,113,118,119,120,122,131],obliqu:14,obscur:21,observ:[31,44,104,114,118,121,129,133],observatori:4,obtain:[5,11,31,40,42,44,50,52,84,85,86,101,113,121,123,129,137],obviou:[7,47],occasion:[102,110],occupi:47,occur:[54,61,129],ocean:[14,15,44,47,121,125,126,129,133],octob:[16,106,107,108],off:[12,31,40,44,47,52,58,70,78,85,119,131],offer:[36,47,102],offici:49,offset:[45,47,52,131],offshor:[52,56],oft:89,often:[5,10,12,14,19,26,31,33,34,36,37,40,41,44,45,46,52,56,61,63,85,97,102,112,113,114,117,118,121,129,133,134,137],okada85:[15,29,61],okada:[15,24,29,41,100,129,133],okadamap:29,olav:4,old:[1,6,19,21,24,49,70,78,86,87,88,91,102,109,111,113],older:[21,91,121],olig:[5,15],omega:75,omit:[51,102,110,112,121],omp_num_thread:[37,62,110,128],omp_stacks:62,on_lower_boundari:81,on_upper_boundari:81,onc:[1,12,21,27,33,34,47,49,50,51,58,70,75,85,86,87,88,93,96,110],ondrej:73,one:[0,1,2,3,4,5,7,12,13,14,19,21,23,26,27,28,29,31,33,34,40,42,47,49,50,51,52,56,58,59,60,61,63,64,67,68,75,81,85,86,88,90,91,92,95,96,98,101,102,109,110,112,113,115,117,118,119,120,121,122,123,125,126,129,131,134,135],ones:[75,76,93,118,119],onli:[1,3,5,7,12,14,18,21,26,27,29,31,39,40,44,47,48,49,52,55,56,58,61,62,63,64,68,75,78,81,85,86,88,90,91,92,93,95,96,98,101,104,109,110,111,112,113,114,116,117,118,119,120,121,122,129,131,132,134,137],onlin:[100,124],onr:4,onshor:[31,52,56],onto:[27,29,47,131],open:[4,12,15,27,28,29,47,52,67,73,77,81,96,116,135],opendatafil:55,opendiff:102,openli:22,openmp:[21,24,37,64,96,109,128],opensourc:[53,73],oper:[45,102,110],opinion:4,oppos:27,opposit:[5,14],optim:[37,73,96],option:[2,12,14,19,21,24,27,29,31,33,34,36,37,43,46,51,54,58,59,67,68,75,76,78,80,81,82,84,85,87,90,91,92,95,96,99,101,102,103,104,105,106,107,108,109,110,111,117,118,120,122,123,131,136],order:[4,5,12,14,15,29,31,44,48,51,55,58,63,64,68,70,71,73,75,78,79,81,83,84,85,87,88,91,95,96,98,108,113,116,117,118,119,120,122,129,131,132,134,137],ordinari:113,ordinarili:94,org:[4,15,39,41,48,49,53,73,76,77,81,83,86,109,111,131],organ:[21,22,33,34,78],orient:[61,76,97],origin:[3,5,12,14,19,27,29,32,40,48,62,63,76,91,96,104,110,112,119,120,122,131],oscil:[40,137],oscillatori:131,osher:91,osx:[47,71,97],other:[3,4,5,8,12,14,19,21,26,28,29,31,33,34,40,42,44,47,48,49,51,53,54,56,58,59,61,62,63,67,70,71,73,75,76,78,81,83,85,87,88,89,92,95,98,101,102,104,105,107,108,110,113,114,116,117,118,121,123,129,131,133,134,135],otherwis:[29,48,53,73,85,89,90,91,92,93,96,118,131],ought:91,ouput:78,our:[55,75],out1:55,out:[3,14,25,29,33,34,40,46,48,49,50,51,52,53,54,58,68,73,75,76,78,84,85,86,87,90,95,97,98,102,110,113,120,122,131,132],out_tim:78,outaux:26,outdir:[1,3,33,34,40,46,54,67,70,78,80,81,85,109,120,122,132],outdir_p:78,outfil:131,outflow:[14,118,120,122],outgo:14,outlin:[52,58,70,113,117],outn:26,output:[1,6,7,12,14,24,26,27,29,33,34,36,37,40,41,42,43,45,46,47,49,50,67,68,70,76,78,79,80,81,82,83,86,87,89,90,91,92,93,95,96,104,108,109,110,111,113,117,120,122,127,128,131,134,135],output_aux_compon:[118,120,122],output_aux_onlyonc:[118,120,122],output_file_prefix:[78,85],output_filenam:76,output_format:[78,85,118,120,122],output_opt:78,output_q_compon:[118,120,122],output_step_interv:[118,120,122],output_styl:[63,75,78,85,112,118,120,122],output_t0:[112,118,120,122],output_tim:[85,112,118,120],output_unit:29,outputdir:58,outputfil:[129,131],outsid:[5,14,52,129,131],outsiz:52,over:[1,3,5,12,14,15,21,27,29,31,40,41,42,44,47,52,58,61,67,85,91,101,104,105,113,117,120,121,128,129,134,137],overal:[9,75],overflow:[37,111],overhead:[5,62,101,128],overlai:52,overlaid:[47,52],overland:47,overlap:[101,104,105,129],overrid:[27,37,47,75,76,96],overridden:[58,91,93],overrul:3,overview:[41,47,67,103,106],overwrit:[1,78,85,90],overwritten:[40,85,110,112,134],own:[14,19,23,27,51,75,76,82,83,92,93,113,123],p_center:[81,95],p_function:85,p_l:89,p_node:81,p_r:89,p_t:95,p_x:95,packag:[4,24,27,33,34,47,55,64,67,71,73,75,81,83,85,87,88,90,92,95,97,98,116,135],page:[1,4,8,10,11,12,15,21,23,24,27,44,49,50,51,80,83,86,87,94,97,102,111,114,117,123,133,134],pair:[12,102,131],panel:47,paper:[4,5,14,29,41,48,79,83],paragraph:[31,50],parallel:[4,21,22,40,62,74,80,82,83,85,88,90,92,96,102,110],paramet:[1,5,6,8,14,19,24,26,29,31,32,33,34,36,38,41,42,44,47,54,55,56,58,61,62,63,67,74,75,78,79,85,87,89,90,93,96,99,101,104,110,112,113,114,120,122,129,131,132,134],paramt:31,parent:[3,26,81,93,96],pars:[40,96],parsani:[4,15,73,83],part:[4,21,29,41,44,52,59,73,76,86,92,93,95,97,100,102,121,134],partial:[15,64],particular:[5,11,19,21,27,29,31,37,40,41,42,44,47,53,54,55,58,68,69,71,73,75,89,90,91,93,95,100,102,105,108,109,110,111,117,121,137],particularli:[14,26,46,47,50,61,63,105,108],partit:86,pascal:29,pass:[14,18,19,27,29,40,47,52,62,68,75,78,80,82,88,91,93,94,96,102,113,120,131,134],password:27,past:[16,20,48,90,110,114],patch:[3,5,6,14,21,26,31,47,58,61,62,63,67,68,86,90,93,110,117,119,121,128,134],patch_index:81,patchedges_show:[3,21],patchno:[3,26],path:[1,12,29,37,40,43,47,50,51,54,60,67,68,78,84,86,90,96,111,116,131,132],pathtool:58,pattern:[19,42,47,80,114],pcolor:[3,40,67,97,131],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:52,pcolormesh:52,pdb:68,pde:[4,15,64,83,95,118,134],pdf:[1,29],pdflatex:1,peanoclaw:73,pedant:37,peerj:[4,15],pem:12,pend:3,peopl:[4,12,73,97],pep8:27,per:[12,29,40,47,52,58,62,119],perfect:14,perfectli:14,perfom:102,perform:[5,21,26,44,47,62,64,67,68,78,81,88,91,96,102,112,113,116,121,127],perhap:[5,31,40,68,93,96],perimet:31,period:[5,14,31,54,75,88,101,118,120,122],perman:[58,72],permiss:[49,51,53,73],permit:[53,73],permut:19,perturb:[99,121,129],petclaw:[73,86,87,88,90,96,102],peter:4,petsc4pi:[86,92,93,102],petsc:[21,22,64,73,75,82,85,92,93,94,96],petsc_arch:86,petsc_dir:86,petsc_hello_world:86,phase:[86,109],philim:76,phoni:68,photo:[23,24],php:[29,53,73],phy:15,physic:[14,31,40,47,76,81,83,95,101,137],pick:[75,91],piec:[14,44,81],piecewis:[29,31,105,113,129],pink:[52,68,117],pinkfig:68,pip:[17,24,27,47,48,49,77,83,86,92,94,98,111,116],pixel:[47,52],pkg:122,place:[14,19,27,33,34,47,48,49,51,54,55,60,85,86,88,92,98,104,110,116,134],placemark:47,plaid:47,plain:45,plan:[23,27,44,50,56,91],planar:[61,113],plane:[29,61,109,133],platform:[12,47,78,86,97,102],pleas:[4,16,23,27,39,50,51,72,73,75,78,80,83,84,86,88,90,91,92,94,113],plot:[0,1,2,4,6,7,11,26,29,33,34,35,36,37,38,41,49,52,63,74,75,77,78,81,82,83,85,90,92,94,95,97,98,107,108,109,110,111,127,131],plot_box:[29,131],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_topo_fil:[69,108],plot_typ:[0,21,40,47,68,70,117],plot_var2:3,plot_var:[3,26,40,47,68,69],plotax:[3,40,68,117],plotclaw1:58,plotclaw2:58,plotclaw3:58,plotclaw:[40,67,68,70,117],plotdata:[26,40,59,68,70,78,109,110,117],plotdir:[1,70,117],plotexampl:68,plotfigur:[40,68,117],plotfram:1,plotgaug:40,plotitem:[3,26,40,68,117],plotloop:[68,70],plotstyl:[3,40,68,117],plotter:[1,3,26,70],plotting_makeplot:[33,34],plottyp:58,plt:52,plu:[68,104,120,122,131],pmel:29,png2kml:52,png:[1,12,33,34,36,47,52,58,110],png_extent:52,png_file:52,png_filenam:52,png_name:52,point:[3,5,12,13,14,15,19,27,29,31,33,34,37,40,42,43,44,47,48,49,51,52,58,59,61,75,85,86,90,96,101,111,112,113,114,115,116,118,119,120,121,125,126,129,131,132,134],point_styl:[31,107],pointer:[4,14,61,67,70,91,96,108],pointwis:[24,93,108],poisson:61,poli:52,poly2kml:52,polygon:[3,47,52,131],polynomi:113,poor:27,popup:12,port:[12,28,82,83,88,119],portion:[5,47,76,128],posit:[47,61,64,96,129,131],possibl:[5,12,21,25,27,29,31,40,43,44,47,53,54,61,68,73,75,81,86,87,91,96,101,109,113,114,118,119,129,134],post:[23,24,25,27,47,86,123],poster:15,posteriori:91,postprocess:[63,85],potenti:[58,110,114],power:[47,67,97],pprint:[119,120],practic:27,pre:[3,12,49,77,97],preced:68,preceed:[31,63,134],precis:[37,52,76,81,113,131],predefin:68,predict:43,prefer:[52,86,88,97,116],prefix:[49,78,84,85,90],preliminari:[43,133],prepar:27,prepend:78,preprocess:108,prerequisit:[50,51],present:[5,52,81,89,90,91,96,123,134,137],preserv:[64,91],press:[15,86,92],pressur:[40,58,70,85,89,95,111],presum:114,pretti:12,prevent:47,previou:[1,4,24,27,31,40,48,49,50,51,55,58,70,75,91,104,109,110,111,112,118,120,122,131],previous:[5,21,70,108],price:12,primari:[21,27,41,102],prime:102,principl:[131,134],print:[1,3,6,47,52,58,68,81,85,86,87,93,95,98,104,105,108,110,111,118,120,122,132],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:110,print_git_statu:46,printenv:132,printfig:1,printfram:[1,67],prior:[53,73,120,122,134],probabl:[12,27,47,56,98],probdata:[120,122],problem:[4,6,14,15,19,23,24,26,27,31,33,34,38,41,50,51,54,58,61,64,68,71,74,75,80,82,83,86,89,91,94,98,102,104,105,107,108,111,113,118,120,121,122,123,128,129,132],problem_data:[75,89,90,93,95],problemat:85,proce:[5,27],procedur:[5,14,41,49,134],proceed:48,process:[24,33,34,41,47,75,80,81,86,92,93,96,102,110],processor:93,procur:[53,73],produc:[1,3,21,26,29,33,34,36,40,47,48,50,52,58,62,66,67,102,117,121,131],product:[29,53,73,96],professorship:4,profil:131,profit:[53,73],program:[4,42,44,55,64,97],programmat:73,progress:[23,27,51,91,108,129,131],prohibit:21,proj:120,project:[23,29,44,47,48,73,77,110,111,116,119,129,131],projection_zon:29,promot:[53,73],prompt:[27,28,58,68,70,80,95,97,131],propag:[4,5,15,24,29,44,47,81,83,91,110,113],proper:[5,13,40,52,56,58,84,96,104,110,115,119,120,125,126,134],properli:[19,31,33,34,36,44,47,48,50,52,60,78,97,102,104,107,116,118,121,131,132,134],properti:[29,58,75,78,81,90,93,131],propos:[27,137],provid:[0,2,4,6,9,14,19,26,27,29,37,41,42,43,44,47,48,52,53,55,61,63,67,73,76,78,79,85,86,88,90,91,95,96,97,100,102,109,113,118,126,128,129,131,134],proximity_radiu:131,pseudo:[47,58],psi:[88,134,137],psystem:80,pth:[51,116],pts:[119,120],pub:29,publicli:123,publish:[4,15,48,83],pull:[23,25,28,48,49,80,88,102,107,110,111,113],pull_al:[27,49],pure:[70,81,83,86,91,97,102],purpos:[31,41,44,50,53,58,63,73,81,97,100,102,112],push:[27,48,49],put:[1,10,14,27,37,50,52,58,75,80,88,110,116],pyclaw:[1,3,4,11,15,16,22,23,26,27,40,49,63,64,70,71,82,86,88,94,97,98,113,116],pyflak:83,pykml:47,pylab:[0,68],pylint:83,pypa:71,pyplot:[52,131],pyramid:47,python3:111,python:[3,4,6,7,10,12,15,18,21,22,24,26,27,29,31,33,34,35,36,38,40,41,42,43,46,47,49,50,51,52,61,63,64,67,68,69,73,74,76,80,81,83,86,87,88,89,91,94,95,96,102,105,106,108,110,111,113,116,129,131,132,135],python_io:63,pythonpath:[50,51],pyweno:[73,91],q0000:[58,118],q0001:[58,59],q000n:[1,7],q0_vs_radiu:3,q1d:134,q_hat:89,q_hat_l:89,q_hat_r:89,q_i:[113,137],q_l:[89,113],q_out_field:40,q_r:[89,113],q_t:[88,89,91,95,134,137],q_x:[89,95,137],qbc:[88,91,93],qcor:76,qinit:[19,21,41,54,55,76,114,134],qinitdata:121,qinitfil:121,qquad:137,qtrue:68,quad2kml:52,quad:52,quadrat:29,quadrilater:[31,52],qualiti:47,quantiti:[13,31,52,58,78,82,83,89,93,115,121],queri:[76,81,96],question:[23,27,90],quezada:[15,73,83],quick:[12,24,34,41,42,71,97,102,127],quicker:12,quickli:[40,52,77,110,131],quit:[28,58,68,70],quot:52,radial:[3,43,134],radian:43,radio:52,radio_styl:52,radiu:[3,121,131],rai:131,rais:[23,29,50,51,90,92,96,131],rake:[29,61],ran:[34,127],randal:[4,15,83],randi:[29,79,81],rang:[3,12,29,40,43,47,104,109],rare:[61,110],raster:[47,129],rate:12,rather:[5,19,21,27,28,31,48,49,54,55,56,60,81,86,88,91,99,108,109,110,112,117,118,119,129,131,134,137],ratio:[5,13,21,45,58,61,79,89,91,115,118,119,120],raw:118,rcl:47,reachabl:90,reaction:88,read:[1,4,13,27,29,31,33,34,40,44,45,50,51,52,55,58,63,67,76,78,85,90,96,99,109,110,115,120,121,122,125,126,129,131,134,135],read_:[84,90],read_aux:90,read_data_lin:96,read_head:131,read_netcdf:131,read_output:31,reader:135,readi:[75,76,78,92],readm:[48,49,113,116,134],real:[44,56,96,113,133],realist:47,realiti:44,realli:[5,102,134],reason:[44,47,52,61,62,64,86,88,101,118],rebas:27,rebuild:48,recal:[1,11],recalcul:105,receiv:[47,102],recent:[4,12,21,24,26,28,29,46,48,49,50,51,54,56,62,68,70,71,72,109,113,129],recip:50,recogn:[42,129],recomil:31,recommend:[4,29,31,33,34,51,62,67,77,81,86,87,91,92,94,95,118,120,121,122,135],recompil:[27,36,37,54,62,96,134],recomput:[70,75,105],reconstruct:[83,91],record:[31,40,93,133],recov:27,recreat:[27,36,54],rect:29,rectangl:[5,29,101,131],rectangular:[5,6,14,15,29,31,42,52,61,81,101,119,121,129],recurs:[48,60,104],red:[2,3,27,40,52,68,102,117],redhat:97,redirect:48,redistribut:[53,73],redraw:[58,70],reduc:[5,14,47,109,111,137],refactor:[104,105,106,108,110,111],refer:[6,19,24,29,33,34,41,42,47,54,55,58,75,79,80,81,85,89,91,93,98,112,113,129,131,133,134],referenc:[47,114],refin:[3,4,6,7,15,21,41,44,47,58,63,64,75,110,117,118,119,120,128,129,134],refinement_data:121,refinement_ratios_i:[7,119,120],refinement_ratios_t:[119,120,121],refinement_ratios_x:[119,120],refinementdata:107,reflect:[4,14,27,48,118,120,122],refresh:[12,40],regard:[4,109],regardless:[12,101,118,121],regener:54,region00:52,region:[3,5,6,12,14,21,31,41,44,45,47,52,56,64,114,119,120,129,131],regiondata:[101,120],regions2kml:52,regist:[50,51],registr:131,regress:[21,24,27,46,86,110,111,127],regression_test:[34,127],regrid:[9,101,104,105,110,119,120,128],regrid_buffer_width:[101,119,120],regrid_interv:[101,119,120],regular:[31,131],reiniti:110,reject:[85,91,118],rel:[12,19,29,36,42,44,47,48,61,62,68,96,102,105,106,107,108,109,110,111,114,119,121,123,129,133],relat:[3,21,48,64,89,111,114],releas:[17,21,24,39,47,48,50,51,72,77,91,92],release_5_x_x:49,relev:[21,26,37,41,47,48,102],reli:[64,76,87,110],relief:[114,133],reload:131,reltol:96,remain:[31,47,51,88,96,98,104,125,126],remak:48,rememb:[13,26,62,68,86,115,125,126],remot:[12,47,49,131],remote_directori:131,remote_topo_url:131,remov:[1,3,19,36,51,52,54,59,70,86,98,104,107,108,131,132],renam:[19,21,33,34,54,88,91],render:[21,47,52,135],reorder:[19,21],reorgan:[21,76,103],repeat:[70,112],repeatedli:[3,86,92],replac:[5,12,40,44,49,54,67,76,80,86,87,88,89,93,96,102,104,110,112,113,131,132,133],replace_no_data_valu:131,replace_valu:131,replot:70,repo:49,report:[23,29,31,46,102,109,116,118,120],repositori:[21,23,24,25,28,31,34,35,38,41,48,51,54,55,91,98,100,102,107,110,124],repres:[29,75,81,88,89,91,93,101,131,137],represent:[81,90,96,131],reprint:73,reproduc:[15,53,73],request:[23,25,29,48,63,75,80,81,85,88,90,102,110,113,131],requir:[3,4,14,19,21,24,26,33,34,36,41,43,44,49,51,58,61,64,67,70,71,75,76,81,84,87,88,91,92,93,95,96,101,102,104,105,108,110,113,117,118,119,120,121,122,129,132,135,137],rerun:[37,40,49,51],rescal:29,research:[4,15,41,44,73,91,100],reserv:[53,73],reset:[37,96],reset_count:96,resetplot:[68,70],resid:[48,50,54,81],resolut:[4,5,15,29,40,81,91,95,96,104,108,113,114,121,129,131,133,134],resolution_limit:131,resolv:[4,31,47,48],resourc:[15,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,52,83,84,89,131],respons:[12,44,75,90],respos:49,rest:[21,70,114,125,126,129,131],restart:[12,24,40,70,83,109,110,111,118,120,122],restart_fil:[112,118,120,122],restor:5,restrict:[47,121,129],restructur:[10,48],result:[1,3,4,6,8,11,15,24,25,29,31,32,33,34,35,40,41,43,44,48,49,51,52,54,56,58,61,67,68,69,70,74,78,80,83,85,89,92,96,101,102,104,108,110,111,118,119,120,121,122,127,131,133],retain:[53,73],retak:[118,120,122],retriev:[12,43,70,76,91,131,133],return_topo:131,return_xarrai:131,reutil:76,reveal:[40,95],revers:48,revert:47,review:[15,79],revis:[5,110],rewritten:29,rgb:68,rho:[58,89,95,120],rho_l:89,rho_r:89,rhou:58,rhov:58,richardson:[21,119,120],rid:27,ridg:47,riemann:[4,7,19,21,22,27,41,49,55,64,73,75,81,82,91,92,93,95,116,118,120,122,125,126,137],riemann_aug_jcp:111,riemann_interact:109,riemann_solv:91,riemann_tool:108,right:[31,53,56,61,73,81,86,88,89,93,95,112,113,137],rigid:29,rigin:29,rigoutsi:5,rigoutso:15,rise:[29,114],rise_fract:29,rise_shap:29,rise_tim:29,rise_time_start:29,rjl:[5,15,98],rjlevequ:[4,27],rjlkei:12,robust:[41,131],rock:61,roe:[79,89,113],roman:50,root:[28,51,84,85,90],rossbi:80,rossmanith:15,rotat:45,rough:56,roughli:128,round:47,roundoff:81,routin:[4,5,14,19,24,26,29,31,33,34,40,41,42,47,54,58,59,62,63,64,67,70,73,76,78,81,84,87,88,91,93,94,97,101,104,105,108,110,113,118,120,122,131,132,134,135,137],row:[29,79,101,129,131],rp1:[113,137],rp1_advect:55,rp1_ptwise:113,rp_:89,rp_sourc:88,rpn2:113,rpn2_ptwise:113,rpn2_vc_advect:106,rprint:[119,120],rpt2_ptwise:113,rsphere:[43,76],rst:[48,49],rsync:48,rsync_clawpack:48,rule:[12,52,76],run1:54,run:[1,5,6,11,12,14,19,21,23,24,27,31,36,38,40,41,46,47,48,49,51,52,54,56,58,59,63,64,67,68,70,71,74,76,78,81,82,83,85,88,92,94,95,96,98,101,104,105,109,110,111,112,113,120,121,122,127,128,131,134],run_app_from_main:96,run_data:78,run_exampl:131,run_seri:96,runclaw:[46,105,113],rundata:[21,31,40,52,101,104,112,118,119,120,121,122],rundir:78,rung:[83,91],runmak:78,runnabl:96,runtest:[34,86,127],runtim:96,runup:56,ruptur:29,rupture_tim:29,rupture_typ:29,s_1:89,s_2:89,s_3:89,s_l:89,s_m:89,s_r:89,safe:62,safer:54,safeti:79,sagemath:77,sagemathcloud:77,sai:[12,14,27,52,94,101],same:[3,5,7,12,14,21,24,27,30,31,37,40,42,43,44,47,49,51,52,54,56,59,64,67,68,69,70,75,79,81,83,85,88,89,91,96,97,104,105,109,110,112,113,118,119,120,121,125,129,131,134],sampl:[6,7,15,24,31,37,41,47,102,112,118,119,131,134],san:50,sanromd:50,santiago:47,satisfi:[91,101,137],save:[12,24,25,46,50,52,63,78,82,91,109,110,112,131],savecod:78,savefig:52,scalabl:[15,83],scalar:[26,29,85,93,113,118,137],scale:[4,29,45,47,58,64,83,104,110,121],scan:37,scatter:[3,21,58],scenario:[44,114],scheme:[79,89],schlieren:[3,58],sci:15,scienc:[4,15,73],scientif:[4,15,83,86,97],scipi:[12,76,97,131],scp:12,scratch:[43,95],screen:[12,27,47,52,78,85,86,109,120,122],screenshot:[12,47],script:[10,18,19,27,29,36,40,47,48,50,54,58,64,67,73,76,80,82,83,85,86,91,96,97,98,102,113,117,121,122,131],scroll:12,sea:[29,40,41,42,44,47,61,99,108,114,121,129,131,133],sea_level:[31,44,52,89,121,129,131],seab:56,seafloor:[29,44,61,133],sealevel:[24,41,121],search:[1,12,51,67,83,96,98,110,116],sec:29,second:[3,14,29,31,34,40,43,47,52,58,75,81,85,91,101,104,110,112,118,127,128,131,134,137],section:[5,12,14,33,34,37,42,44,49,50,55,58,67,70,102,112,118,121,131],secur:12,see:[0,1,2,3,4,5,6,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,53,54,55,56,58,59,60,61,62,63,66,67,68,69,70,71,72,73,76,78,80,81,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,131,132,133,134,135,136,137],seem:[93,98,117,129],seen:[11,21,31,33,34,35,44,48,62,88,118,123],segement:131,segmentedplanefault:29,seism:[15,29],seismic:29,select:[12,14,27,31,85,91,104,111,118,121,133],self:[29,91,131],semi:91,send:[12,23,88,113],sens:[26,47,137],sensit:[44,56],sent:[85,93],separ:[1,27,47,48,50,52,55,83,91,131],seper:96,sept:49,sequenc:[19,21,55,86,92,95,96,102,104,111,113,134],serial:[86,90,96,128],server:[12,28,47,48],servic:[24,53,73],session:[1,33,34,35,83,87,92],set:[0,1,2,3,5,7,12,13,14,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,48,50,51,52,54,55,60,61,62,63,64,66,67,75,76,78,80,81,82,83,85,86,89,90,91,92,93,94,95,96,98,99,101,102,104,105,108,109,110,112,113,115,117,118,119,120,121,122,123,129,131,133,134,137],set_all_st:90,set_aspect:45,set_aux_from_auxbc:93,set_corn:29,set_count:96,set_cparam:[75,93],set_dynamic_slip:29,set_num_ghost:93,set_printopt:81,set_q_from_qbc:93,set_subfault:29,set_xyz:131,setaux:[19,21,55,76,104,105,113,118,120,122],setaux_default:48,setenv:86,setgaug:[40,109],setlevel:85,setplot1:58,setplot2:58,setplot3:58,setplot:[0,1,2,3,6,18,19,21,24,38,40,59,66,67,87,88,96,110,132,135],setplot_fil:47,setplot_kml:47,setprob:[55,120,122,134],setrun:[5,6,7,14,18,19,24,31,33,34,36,38,41,42,44,49,52,54,56,63,64,68,99,101,104,108,109,110,112,113,114,129,132,134],setrun_setgeo:121,setup:[27,35,50,75,76,80,83,86,88,91,92,93,98,100,116,132],setup_gauge_fil:81,sever:[0,1,2,9,14,19,21,22,29,33,34,36,40,42,44,47,49,51,58,67,92,101,102,103,104,105,108,109,110,111,117,121,127,129,131,134],sftp:12,shaheen:85,shall:[53,73],shallow:[13,14,15,31,41,44,64,76,80,83,99,105,106,108,110,113,115,121,125,126,129,134],shallow_1d_pi:89,shallow_exact_1d:89,shallow_fwave_1d:89,shallow_hll_1d:89,shallow_roe_1d:89,shallow_spher:[76,102],shallow_water_riemann_solv:24,shallowest:61,shape:[29,43,52,76,81,86,93,131],shapshot:12,share:[24,25,47,51,62,64,81,86],sharp:52,sharpclaw:[4,22,24,64,73,80,82,83,88,104,113],sharpclawnd:91,sharpclawsolv:91,sharpclawsolver1d:91,sharpclawsolver2d:91,sharpen:79,sharper:[47,52],shear:[15,29],shell:[27,50,51,62,68,70,86,92,95,97,98,110,116],shg:58,shift:[29,44],ship:31,shock:[5,15,44,80,91,101],shock_bubble_interact:[33,35,80,83,92],shockbubbl:88,shoot:[67,83],shore:[31,41,121],shorelin:[47,131],shoreline_xi:131,shorter:[3,101,131],shortli:[27,102],shot:12,should:[0,1,2,3,4,5,11,12,14,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,48,49,50,51,52,54,56,58,59,60,62,67,68,70,76,81,84,85,86,88,89,90,91,92,93,94,95,96,98,99,101,102,104,105,108,110,111,112,113,114,116,117,118,119,120,121,122,123,127,129,131,132,134,136,137],shouldn:80,show:[0,2,3,8,9,27,29,33,34,40,47,48,49,52,54,58,70,81,95,98,102,108,131,132,134],showcolor:68,showgridlin:58,showitem:1,shown:[3,12,48,52,55,56,58,64,85,105,106,107,108,109,110,111,131,134],showpatchbord:58,shrink:131,shu:91,siam:[15,23,83],side:[5,14,31,47,56,61,102,113,137],sidebar:47,sift:29,sift_slip:29,siftfault:29,sigma:75,sign:[12,23,68],signatur:[3,76,79,81,82,84,89],signific:[16,56,114,131],signitur:90,silenc:85,silo:135,similar:[4,12,14,27,31,34,40,47,75,76,88,91,95,127,129],similarli:[36,80,86,88,128],simpl:[31,33,34,76,83,88,89,91,96,100,102,131],simplest:[50,60,95],simpli:[12,31,33,34,35,40,47,50,54,55,75,77,78,80,85,86,92,102,113,123,129,131,134,135],simplifi:[67,68,102,111,134],simul:[33,34,35,42,44,47,58,78,81,83,85,86,88,92,95,110,111,121],simultan:[47,110],sin:[43,68],sinc:[0,3,4,5,14,16,19,21,27,31,37,43,44,47,48,49,51,52,54,55,61,62,63,67,68,75,76,77,85,97,101,102,104,108,109,110,111,112,113,114,118,119,121,129,132,133],singl:[0,1,2,3,5,14,18,21,22,26,27,29,40,42,47,52,54,58,62,63,75,81,85,90,96,102,107,108,110,113,118,119,120,121,129,131,133,134],sisc:[15,83],sit:12,site:[27,47,50,51,98,116],situat:[47,58],size:[19,29,40,47,52,62,63,67,81,86,91,110,120,122,129,131],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,58,113],slide:97,slider:[47,52],slightli:[14,110,111],slip:[24,29,41,100,129,133],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,91],slope_i:47,slope_x:47,slow:[12,47,85,94],slowli:[52,129],small:[14,40,56,101,102,104,109,112,118,120,121,129,131,133],smaller:[12,47,56,64,81,85,104,118,120,121,122,131],smallest:101,smear:52,smooth:[29,91,101,134],smooth_data:131,snapshot:[27,85],soc:[15,29],softwar:[5,12,24,28,41,44,53,59,73,83,85,123,129],sol:75,sole:113,solid:[3,14,47,61,88,117,118,120,122],solitari:15,sollut:61,solut:[1,3,4,14,21,24,26,34,40,43,58,61,63,67,70,76,78,81,83,84,85,88,89,91,93,94,95,101,102,108,109,112,113,117,118,119,120,122,127,134,137],solv:[4,7,14,15,19,25,33,34,44,51,74,76,78,81,83,88,89,92,113,118,129,134,137],solver:[4,5,19,21,22,24,27,41,51,55,73,74,78,81,82,85,93,106,108,110,111,118,120,122,125,126,137],solver_nam:113,solver_typ:[80,91],some:[3,4,5,6,7,9,11,14,15,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,55,61,62,63,67,69,70,73,76,77,79,85,87,88,90,92,93,94,95,97,98,100,101,102,104,105,106,107,108,109,110,111,113,114,117,118,119,120,121,122,123,128,129,131,134],someon:[27,54],someth:[12,26,27,54,60,67,85,90,91,98,129,132,134],sometim:[31,51,54,68,75,85,114,133],somewhat:[62,67,101,102,110,118],somewher:[59,108],sonel:133,soon:91,sorin:4,sort:[12,117,132],sound:[75,89,95],sourc:[4,15,22,24,27,29,37,41,47,48,49,51,52,53,55,56,67,73,76,80,81,82,91,92,94,95,96,98,100,102,110,111,114,118,120,121,122,124,125,126,129],source_list:96,source_split:[81,91,118,120,122,134],space:[5,6,14,15,29,31,40,47,61,81,85,88,101,108,112,118,119,120,121,122,129,131,134],spacial:121,span:[43,47,52],spatial:[5,15,29,56,88,101,104,108,113,120,122,137],spawn:102,specfi:131,special:[4,6,14,41,42,47,53,64,73,97,101,131],specif:[3,21,27,29,40,41,43,47,51,53,55,56,73,74,76,78,84,85,89,90,96,110,111,117,118,119,120,121,122],specifi:[0,1,2,3,4,5,6,13,14,19,21,24,26,27,29,31,32,36,37,38,40,41,42,43,44,46,47,51,52,54,55,56,58,61,62,63,64,66,67,69,75,78,81,85,88,90,91,94,96,98,99,102,104,107,108,109,110,111,112,113,114,115,120,122,123,125,126,128,129,131,132,133,135,137],speed:[31,75,79,89,95,110,113,118,121,131,134,137],spell:68,spend:109,spent:128,sphere:[43,76,105,121],spheric:[15,47],sphinx:[10,22,24,49,111],sphinx_web:48,sphinxcontrib:48,spite:55,split:[5,62,81,91,108,109,118,120,122,128,134,137],spot:68,sprint:[119,120],spuriou:[14,102],sqrt:[3,31,56,75,88,89,95,120],src1:[55,126,134,137],src1d:126,src2:[76,126,134],src3:[126,134],src:[5,10,13,14,18,19,27,29,31,36,37,43,46,49,51,52,54,55,58,61,62,69,87,88,96,98,99,101,102,105,108,109,111,113,115,118,120,122,125,131,132,137],src_split:[118,120,122],srcn:[118,134],ssh:[12,27],ssp104:91,ssp33:91,ssplmm32:91,ssplmm43:91,ssplmm:91,ssprk22:91,stabil:[91,118],stabl:[71,81],stack:[62,108],stage:[91,114,129,131],stai:25,stand:4,standard:[5,14,29,47,58,63,76,79,91,97,98,102,120,121,122,123,129,134,137],start:[1,2,4,5,6,8,12,23,26,27,28,29,31,33,34,35,36,40,41,43,47,50,51,52,54,60,68,70,71,75,86,90,91,97,98,102,109,112,113,121,127,129,134],start_fram:90,start_max:31,state:[12,15,24,27,48,61,68,75,76,78,81,83,85,86,88,89,90,91,94,95,102,113,118,129,137],statement:[33,34,58,63,97,98,110,120],station:[43,114,133],stationari:129,statist:[24,109],statu:[12,27,46,78,95],stdout:102,steadi:[61,129],steep:137,stegoton:80,stencil:93,stencil_width:93,step1:55,step2:76,step2i:108,step2qcor:76,step2x:108,step3i:108,step3x:108,step3z:108,step:[5,9,14,18,27,31,33,34,35,40,47,48,49,58,67,70,73,74,75,76,78,85,88,91,93,95,101,104,109,110,112,113,116,118,119,120,121,122,129,137],step_hyperbol:91,step_index:91,step_interv:120,step_sourc:[81,88,91],stepgrid:128,stepgrid_dimsplit:108,steps_max:[118,120,122],stiff:118,still:[1,6,7,12,14,21,23,25,31,32,47,50,55,58,63,67,73,91,101,102,108,109,110,111,112,113,121],stnd:43,stommel_storm_modul:108,stop:[62,68,104,120,122,131],storag:109,store:[0,1,12,31,36,47,58,63,85,88,93,94,95,102,104,110,117,119,121,128,129,131],storm:[15,23,108,111],storm_modul:108,str:[0,1,3,29,52,118,119,131],strang:[81,91,118,120,122,134],strategi:5,stream:68,stress:[75,85],stretch:131,strict:[53,73],stride:[21,131],strike:[29,61],strike_direct:29,string:[0,1,3,6,29,40,43,47,52,68,76,78,79,81,84,85,90,96,98,118,121,129,131],strip:[52,131],strip_archive_extens:52,stripe:47,strong:91,strongli:58,structur:[6,9,21,31,51,54,64,90,91,110,117,131],student:4,studi:[44,56],style:[5,21,27,29,45,47,63,68,73,78],sub:[29,102,131],subclass:29,subdirectori:[19,21,22,33,34,48,50,51,54,60,70,80,85,98,102,117,121,123,127,131],subdivid:29,subdividedplanefault:29,subdivis:29,subduct:[44,61],subfault:[29,61,133],subject:[47,101,119,121],submodul:[25,49],subplot:[0,29,70],subrepo:49,subrepositori:[27,49],subroutin:[4,5,8,14,21,31,55,101,108,113,118,119,128,134,137],subsequ:[3,9,58],subset:[29,131],substanti:[27,73,108],substitut:[53,73],subsurfac:129,succeed:91,succesfulli:76,success:[58,90,131,134],successfulli:[54,90],suffici:[12,14,19,62,104,121],suffix:[54,131],suggest:[4,23,28,43,51,70,71,113,121,136],suit:[27,47,102],suitabl:[7,14,19,41,44,47,90,100,113,114,131],sum:[40,85,93,128],sum_:137,sum_p:137,summar:[3,27,30,101,103,134],summari:[23,49,118,119,120,121],superbe:[79,118,120,122],superbee_limit:79,superclass:91,supercomput:[83,85,86],superpack:97,superposit:61,superpow:79,superpower_limit:79,supplement:123,supplementari:102,suppli:[101,134,137],support:[4,7,12,21,37,44,47,48,50,51,73,75,76,81,84,85,87,89,91,108,110,111,113,118,129,132,135],suppos:[14,55,58,68,98,101],suppress:[0,2,3,27,47,52,109,111,118,119],sure:[1,19,27,36,48,49,58,64,75,86,88,90,94,96,114,131,132,133],surfac:[15,21,29,31,40,42,44,47,61,67,69,76,83,95,99,108,121,129],surface_or_depth:[47,69],surg:[15,23,108,111],surround:[101,131],surviv:73,swap:131,swaphead:131,sweep:[7,113],symbol:[3,50,58,98],symlink:[50,98],symmetr:[3,43,134],symmetri:14,syntax:10,sys:[78,120,122],system:[4,14,15,22,47,51,52,55,62,63,73,83,85,86,88,89,92,95,98,102,113,118,120,122,134,137],systemat:21,t0000:58,t0001:[58,59],t0002:58,t_end:91,tab:12,tabl:[52,56,67],tackl:[23,27],tag:[47,48,49,119,120],take:[5,21,26,27,29,43,48,56,58,68,75,81,88,91,95,96,101,102,107,118,119,120,121,131,134,137],take_one_step:91,taken:[5,31,61,85,91,101,118,134],tall:0,tan:68,tank:[14,44],tar:[12,50,52],tarbal:132,tarfil:[17,111,116],target:[51,68,76,88],task:67,tchknnnnn:112,tck00100:109,tck:109,tckaaaaa:109,tckbbbbb:109,tcp:12,tcsh:86,teach:[41,44,100],team:[4,23,53,83],techniqu:[15,25],technolog:73,tell:[59,63,68,75,98,102],templat:76,temporari:93,temporarili:58,ten:[4,64],tend:91,tend_max:31,tensil:15,tensor:29,tensorproductfault:29,tent:23,term:[4,24,41,44,53,76,81,82,91,101,111,118,120,121,122,125,126],termin:[50,77,116,118,119],terrain:56,terrel:4,test:[21,24,29,33,37,46,47,49,50,51,56,67,73,74,76,82,83,89,96,101,105,109,110,111,113,122,128,131],test_acoust:102,test_app:[96,102],test_dtopotool:29,test_shallow_spher:102,test_topotool:[105,131],teton:47,tex:1,text:[10,48,49,52,63,78,91,108],tfinal:[75,78,95,112,118,120,122],tfluct:91,tfluct_solv:91,than:[3,5,12,14,19,21,27,28,29,31,40,47,48,49,52,54,55,56,60,63,67,70,75,76,78,81,85,86,88,89,91,96,97,98,101,102,104,107,108,109,110,111,112,114,117,118,119,121,128,129,131,134,137],thank:[4,83],thei:[3,5,12,14,26,27,29,31,40,44,47,49,51,52,55,58,63,67,81,88,91,96,101,102,110,117,121,129,131,134],them:[12,17,21,27,29,31,40,47,48,58,59,64,73,75,80,84,85,86,88,96,101,102,105,124,131,134],theori:[53,73,137],therefor:[76,86,129],thereof:12,thesi:91,theta:79,theta_limit:79,thi:[0,1,2,3,5,7,9,10,11,12,14,15,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,49,50,51,52,53,54,55,56,58,59,61,62,63,67,68,70,72,73,75,76,78,79,80,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,104,105,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,135,136,137],thing:[0,12,14,21,27,44,52,70,80,97,98,102,111,112],think:[51,56,89],third:[14,31,79,128,131],thn:118,thoroughli:84,those:[4,5,9,11,21,23,44,47,49,50,51,64,75,76,78,85,88,93,102,104,112,123,127,131,134],though:[3,64,129],thought:114,thousand:[4,64],thread:[37,62,128],three:[3,12,15,21,29,31,44,47,55,58,86,90,96,102,118,121,129,131,134],threshold:56,through:[4,12,27,33,34,40,44,47,58,64,67,76,88,93,95,96,98,100,101],throughout:110,thu:[5,43,85,88],tick:47,ticklabel:107,ticklabel_format:45,tidal:[85,114],tide:[40,41,43,114,131],tidesandcurr:43,tier:12,tild:137,time:[0,1,5,6,9,14,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,52,58,59,62,63,64,68,73,75,78,79,83,85,91,93,95,101,102,104,107,109,110,112,113,116,117,120,122,129,132,133,137],time_files_scanf:135,time_integr:91,time_zon:43,timer:111,timespan:52,timestep:[78,85,109,111,118,120,122],timezon:52,tip:[23,41,51,67,82,83,88,97],tipe:95,titl:[0,1,4,15,40,47,52,67,83,110,131],title_with_t:[0,68],toctre:[6,24,41,80,83],todo:[14,31,101,113,131,137],togeth:[14,27,29,48,61,101],toggl:120,toler:[31,89,96,101,102,110,119,120,121],too:[5,43,47,49,109,120,122],tool:[6,7,15,21,22,27,29,33,34,41,42,43,44,47,51,52,58,61,66,67,68,69,71,83,98,100,105,106,110,111,123,129,131,133,135],toolkit:[86,135],top:[0,1,3,10,22,29,47,48,49,50,51,61,68,88,89,98,102,112,116],topgraphi:131,topic:58,topo1writ:131,topo2kml:52,topo2kmz:52,topo2writ:131,topo3writ:131,topo:[24,41,44,47,52,69,98,104,106,114,121,129,131],topo_data:121,topo_fil:131,topo_file_nam:52,topo_fnam:131,topo_func:131,topo_typ:[52,108,109,131],topo_upd:104,topo_xlim:47,topo_ylim:47,topofil:[52,121,131],topograph:47,topographi:[14,15,24,31,40,41,44,52,56,61,69,100,104,105,106,108,109,114,125,126,130],topograpi:129,topoplotdata:108,topotool:[41,43,52,105,106,107,108,109,129,130],topotools_exampl:[41,100,131],topotyp:[121,129],topotype1:131,topotypein:129,topotypeout:129,torrilhon:79,tort:[53,73],total:[5,29,47,85,91,118,119,120,122,128],total_energi:85,total_step:[118,120,122],tout:122,toward:[4,29],tprint:[119,120],trace:85,traceback:68,track:[23,24,27,47,48,50,51,62,75,96,102,104,121],tracker:27,tradeoff:101,tradit:[78,84],traffic:[113,134],trail:52,tran:15,tranpsort:118,trans_cor:81,trans_inc:81,transect:[31,121],transform:37,translat:[61,114,133],transmiss:91,transmit:118,transon:110,transpar:[47,52],transport:[118,120,122],transvers:[7,81,110,113,118,134,137],transverse_wav:[81,118,120,122],trap:37,travel:119,travi:21,tree:[28,50,51,88,116],triangular:29,trigger:121,troubl:[33,34,67,83],troubleshoot:[24,50,83],truli:90,truncat:14,tscale:52,tstart:91,tstart_max:31,tsunami:[14,15,24,31,41,42,56,61,85,104,107,114,121,129],tt3:131,tulan:23,tune:25,tupl:[3,29,43,52,68,81,85,131],turbul:[44,91],turn:[40,42,44,52,65,68,85,102,109],tutori:[12,70,74,78,83,92,98,100],tvd:[75,81,91,137],twice:[47,118],twitter:23,two:[0,3,4,6,7,13,15,21,27,29,31,40,43,47,48,50,52,58,63,68,75,81,84,85,88,91,94,96,100,101,102,104,108,109,112,113,115,116,120,121,129,131,134,137],two_d_classic_sourc:76,txt:[27,40,46,49,73,85,110,111,112],type:[3,4,6,12,19,27,29,33,34,36,40,47,54,58,68,69,70,75,76,77,79,81,86,87,91,92,95,96,97,119,120,121,129,131,137],typic:[3,19,54,55,58,61,63,64,70,76,86,88,91,93,101,119,120,128,133,134,137],u_l:89,u_r:89,u_t:[89,95],u_x:95,ubar:89,ubuntu:[12,50,97],ucar:59,ucsb:[29,133],ucsbfault:29,ulimit:62,ultrabe:79,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,56],unchang:58,uncommit:[27,46,49],undefin:94,under:[4,6,21,35,47,50,53,55,67,73,81,102,110],underflow:104,underli:[3,47,110],underlin:27,understand:[8,24,33,34,44,67,83,95,113],understood:44,underwat:[41,47],undesir:112,undivid:101,unexpect:[43,47,52,54,98,99,103,104,105,106,107,108,109],unfortun:50,unidata:59,uniform:[29,61,64,76,129],uniformli:129,unind:[52,98,99,103,104,105,106,107,108,109],union:129,uniqu:[1,63,109],unit:[29,42,43,81,110],univers:[4,15,23,48,53,73,90],unix:[36,60,97],unknown:[29,93],unkown:93,unless:[5,36,37,52,89,114,118,131],unlik:[27,49,63],unlimit:62,unmap:81,unnecessarili:105,unneed:109,unpredict:58,unrecogn:96,unsplit:[81,118,120,122],unstabl:109,unstructur:131,unsuccess:90,unsur:118,untar:50,unterweg:73,until:12,unus:2,unzip:47,upbnd:[119,120],updat:[5,12,21,22,24,31,45,50,51,70,91,93,94,104,108,110,111,113,119,120,122,124,128,134],update_saved_valu:91,updip:29,upgrad:71,upload:49,upon:93,upper:[21,31,79,81,88,118,120,122,129,131],upper_bound_limit:79,upper_glob:81,uprint:[119,120],upstream:49,upstrik:29,upward:44,upwind:118,url:[4,15,47,83,131],usag:[0,1,2,3,12,47,50,51,84,131],use:[3,4,11,12,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,49,50,51,53,54,55,56,58,59,62,63,66,67,68,70,71,73,75,76,77,78,79,80,81,83,84,85,86,88,89,91,92,93,94,95,96,97,98,102,105,107,108,109,110,111,113,114,116,118,119,120,121,122,129,131,132,133,134,135,136,137],use_for_kml:47,use_fwav:[113,118,120,122],use_petsc:[80,86],used:[0,1,2,3,4,5,6,7,10,12,14,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,51,52,53,54,55,56,58,59,61,62,63,64,67,68,70,73,75,76,78,79,80,81,83,86,88,89,90,91,93,95,96,98,99,101,102,105,109,110,111,112,113,114,116,117,118,119,120,121,122,125,128,129,131,134,135,137],useful:[0,3,9,18,26,27,28,31,33,34,37,40,42,45,46,47,50,51,52,62,63,69,73,76,85,97,98,101,102,113,116,118,119,121,129,131,132,137],useoffset:45,user:[0,2,3,4,5,11,12,18,19,21,22,24,25,26,27,31,37,44,47,51,52,56,58,68,76,77,80,86,94,96,97,98,101,108,110,113,118,120,121,122,124,131,137],user_bc_low:88,usernam:27,uservari:58,uservariablefil:58,uses:[29,31,33,34,41,47,48,58,64,76,78,81,86,96,102,110,113,128,131,137],usg:[4,29,133],using:[0,1,3,4,5,6,8,10,11,12,14,15,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,52,54,55,56,59,60,61,62,63,64,67,68,69,70,71,75,76,77,78,79,81,83,86,87,88,89,91,93,94,95,97,98,101,102,108,111,113,116,118,120,121,126,128,129,131,132,133,135,137],usr:59,usual:[0,2,3,5,29,40,42,47,52,54,59,61,63,80,81,86,88,89,91,96,101,110,113,118,119,120,121,122,132,134],utah:23,utc:[47,52],util:[22,24,27,41,47,63,67,70,83,102,117,130,131,132],uwamath:12,valid:[3,44,61,78,85,90,93,110,121,131],valout:[59,63,128],valout_geo:59,valout_nc:59,valout_nc_geo:59,valu:[3,5,6,14,19,21,26,29,32,33,34,37,40,41,43,45,46,47,52,54,56,58,62,63,68,76,81,83,85,88,89,90,91,93,95,96,101,102,104,105,107,108,110,112,113,114,118,119,120,121,122,129,131,132,134,137],valueerror:[29,131],valuemax:31,van:[79,91,118,120,122],van_leer_klein_sharpening_limit:79,vanleer:[75,91,118,120,122],vari:[3,13,15,29,41,56,88,90,108,113,114,115,129,137],variabl:[0,3,12,21,24,26,27,29,31,33,34,36,40,41,46,47,48,50,51,58,60,62,64,68,75,76,86,90,91,93,94,96,98,108,109,110,112,113,118,119,120,122,129,131,132,134],variable_dt_refinement_ratio:[119,121],variant:[19,96,102],varieti:[40,78,97],variou:[19,21,28,29,44,58,68,70,81,95,97,98,101,110,113,117,121],vastli:114,vector:[21,75,79,85,93,113],veloc:[14,31,43,58,70,88,89,95,110,114,118,119,120,122,134],verbatim:48,verbos:[27,29,43,52,78,81,85,91,102,118,120,122,131],verbosity_regrid:[119,120],veri:[3,14,21,31,44,47,50,51,52,61,68,73,76,85,86,87,88,91,102,105,109,118],verifi:[43,96,102,133],verifyerror:96,version:[0,1,4,5,6,7,8,10,12,13,14,16,19,21,22,27,31,32,37,40,41,42,44,47,49,51,52,55,56,58,59,62,67,68,70,71,76,79,83,86,89,91,92,94,97,101,102,104,105,108,109,110,111,113,115,116,118,119,120,121,122,125,126,129,131,134,137],versu:131,vertic:[29,44,47,52,114,121,131,133],via:[12,21,22,27,28,29,33,34,37,38,40,42,44,47,48,50,54,58,62,64,68,71,75,81,87,90,92,94,98,101,102,113,116,123,125,126,129,131,134],view:[3,4,21,33,34,40,41,47,48,52,63,67,69,70,75,86,92,108,123,124],viewabl:[47,78],viewable_attribut:78,vim:27,violat:[91,131],virtual:[4,12,24,26,93,97],vis:78,visclaw:[1,6,12,21,22,23,27,40,42,45,47,50,51,54,58,64,68,69,70,71,83,87,92,98,116,117,123],visibl:[12,47,100,123],visit:[21,24,67],visual:[22,23,27,33,34,40,41,51,58,63,64,67,83,87,88,98,108,135],vogl:4,volcano:4,volum:[4,15,31,38,52,58,83,119,128,129,134],vrt:47,w_1:89,w_2:89,w_3:89,wai:[5,12,14,25,27,33,34,40,47,51,52,53,54,68,70,71,73,75,78,80,81,86,88,90,92,95,97,98,100,104,110,111,113,117,118,124,129,134,136,137],wait:12,wall:[14,37,88,95,109,118,120,122,128],wang:29,want:[0,3,9,12,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,48,49,50,51,52,54,55,56,62,68,70,75,76,77,78,85,86,98,100,102,109,113,116,117,120,121,124,129,131,132],wari:89,warm:79,warn:[27,84,85,91,118,132],warp:47,warranti:[53,73],washington:[4,23,48,53,131],water:[14,15,40,41,42,43,44,52,64,67,76,83,105,106,110,113,114,121,129,131,133,134],water_level:43,wave:[4,5,14,15,24,31,44,47,79,81,83,88,89,91,101,108,110,111,114,118,119,120,121,122,134],wave_toler:121,wavelength:44,web:[22,24,27,33,34,47,48,49,123,131],webpag:[21,33,34,38,42,47,49,54,114],webserv:12,websit:[14,47,48,123,131],week:28,weight:47,welcom:[23,51,73],well:[4,5,27,41,47,51,52,61,62,63,64,67,70,71,90,91,111,118,119,125,126,129,134,137],wendroff:[81,91,118,120,122,137],weno:[64,83,91],weno_ord:91,went:[50,51],were:[4,5,19,40,50,55,58,59,76,101,104,110],west:129,western:131,wet:[31,41],what:[5,8,12,21,27,29,30,44,46,47,48,49,50,51,52,54,55,58,59,63,67,75,78,82,90,93,95,97,98,100,101,102,109,114,117,118,120,121,122,123,129,131,133,134],whatev:[59,75,90,113],when:[13,14,19,27,29,31,36,37,40,45,46,47,48,49,50,51,56,58,61,62,63,64,67,68,70,75,82,86,87,91,94,98,102,104,105,107,109,110,111,113,114,115,116,117,118,119,120,121,122,123,129,131,132,133,134,135,137],whenc:85,whenev:[27,109,134],where:[1,3,5,12,14,21,26,29,31,33,34,36,40,41,44,47,48,50,51,52,54,56,58,59,63,64,70,78,81,82,84,86,89,98,101,104,105,108,109,110,112,114,116,117,118,120,121,122,128,129,131,134,137],wherea:[40,47,67,86],wherev:132,whether:[3,5,12,14,21,43,53,54,58,73,81,84,85,89,90,91,101,102,110,113,118,119,121,131],which:[0,1,3,4,5,6,10,12,14,19,21,24,27,29,31,33,34,35,40,42,44,47,48,49,51,52,54,56,58,61,62,63,68,70,71,75,76,78,79,80,81,84,85,86,87,88,89,90,91,92,94,95,96,97,101,102,104,105,108,110,112,113,114,118,119,120,121,129,131,133,134,136,137],whichclaw:132,white:52,whith:76,who:[9,18,21,23,31,37,44,50,51],whole:[27,47,85,86],whose:[3,68,76,88,89,118,119,131],wide:[51,97,98],wider:68,width:[29,47,52,61,63,81,88,93,101,120,122],wiki:92,wind:131,window:[12,29,58,70,97,116],wisdom:52,wise:[27,91],wish:[4,12,13,21,28,33,34,44,47,51,58,66,67,83,88,91,92,94,110,115,123,125,126,132],within:[5,14,27,51,64,68,87,96,98,101,113,117,123,131],without:[14,21,36,40,44,48,52,53,54,55,58,68,70,71,73,79,84,85,96,98,99,102,103,104,105,106,107,108,109,116,120,122,132,134],wkt:47,won:[12,76,131],woodward:111,word:85,work:[3,7,12,14,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,50,51,52,58,60,61,62,68,71,72,73,74,75,77,78,79,83,84,85,86,89,91,92,97,98,100,101,102,106,107,108,109,110,111,113,117,118,119,121,123,129,132,136],workflow:123,workspac:[58,93],world:[44,56,83,86],worst:114,worth:93,worthwhil:88,would:[2,3,12,14,26,27,31,37,47,49,54,55,63,68,73,75,78,81,85,96,98,102,110,114,117,118,129,134],wouldn:55,wpalg:15,wrap:[52,73,76,81,91,96],wrapper:131,write:[27,29,40,46,56,63,64,67,75,78,81,82,85,86,90,110,120,122,129,131],write_:84,write_aux:[84,90],write_aux_alwai:[75,78,85],write_aux_init:[75,78],write_aux_int:85,write_input_data:31,write_p:90,written:[5,10,24,29,36,40,52,53,63,64,68,73,82,84,88,97,110,113,118,119,120,121,122,131,134],wrong:[50,51,55,58,85,98,101],www:[4,12,15,29,39,41,48,53,59,73,76,81,83,86,111,131],x_cell:52,x_edg:52,x_i:[113,134,137],x_inch:52,x_mask:131,xarr:81,xarrai:131,xarray_d:131,xclaw:[33,34,78],xclawcmd:78,xclawerr:78,xclawout:78,xcode:71,xdir:78,xiaom:29,xleft:[119,120],xlf:92,xlimit:[0,40,47],xllcorner:129,xlow:63,xlower:[0,3,14,21,26,76,120,122,129,131,134],xlowerg:76,xmax:0,xmin:0,xpoint:121,xrang:88,xtick:45,xupper:[0,21,120,122,131],xxdiff:102,xxxx:58,xylim:29,xzvf:50,y_cell:52,y_edg:52,y_inch:52,year:[4,15,21,47,52,83,103],yellow:[52,68],yellow_red_blu:68,yes:58,yet:[1,12,19,44,48,52,67,91,110,111,113,118,120,136],yianni:[4,15,73],yield:3,yleft:[119,120],ylimit:[0,40,47,117],yllcorner:129,ylow:63,ylower:[3,21,26,76,120,129,131],ylowerg:76,ymax:0,ymin:0,yml:102,yong:15,you:[0,3,4,12,13,14,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,54,55,58,59,60,61,62,63,64,66,67,68,70,71,73,75,76,77,78,80,83,84,85,86,87,88,89,91,92,93,94,95,97,98,100,102,104,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,126,127,129,132,133,134,136],your:[5,13,14,18,19,23,24,25,31,33,35,37,40,48,49,50,51,59,62,67,68,70,73,74,75,76,77,80,82,83,85,94,95,97,98,99,101,102,104,113,115,116,125,126,129,132,134],yourself:[37,40],ypoint:121,yupper:[21,120,131],z_format:131,zenodo:[4,16,72],zero:[3,14,29,37,52,58,75,88,89,93,95,114],zip:[11,47,49],zipinfo:47,zlim:52,zlower:21,zone:[44,47,52,119,120],zoom:47,zsh:86,zupper:21,zvar:131},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.4.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Guide for updating this documentation","Guide for doing a Clawpack release","Installation options","Installation instructions (pip)","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Release 5.4.0","Release 5.4.1","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[75,78],"default":[13,99,115,125,126],"final":49,"function":[43,52,57,70,85,91,137],"import":98,"new":[42,60,80,102],"switch":58,"true":68,Adding:[27,47,80,88,113],For:5,Going:82,One:[113,137],The:[47,57,58,95],Use:94,Using:[12,24,55,59,62,85,88,91,113,117,134],about:[4,73],access:70,acoust:[89,95],adapt:[5,14,24],add:68,addit:[47,119,121],advect:89,after:112,afterfram:58,algorithm:[5,15,64,137],alias:47,all:[3,51],amazon:12,ami:12,amr:[3,5,21,62,101,119,121],amrclaw:[6,7,8,9,17,24,103,104,105,106,107,108,109,110,111,119,120,134],anoth:68,app:49,applic:[10,11,15,24,25,54,60,86],approach:7,arrai:[63,94],arriv:121,artifact:47,ascii:[63,84],attribut:[0,1,2,3,26,47,68],author:4,auto:[29,43,52,131],aux:[63,75],auxiliari:88,avail:38,axes:45,b4step:[13,134],background:68,base:54,basic:[47,74,87],bathymetri:133,befor:134,between:68,bibliographi:[15,24],binari:63,book:38,boundari:[5,14,88,134,137],branch:27,bug:27,built:[48,80],buoi:133,burger:89,candid:49,capac:137,cautionari:44,cell:5,cfl:79,chang:[16,17,21,68,91,103,104,105,106,107,108,109,110,111],chardiff:102,check:[27,102],checkpoint:112,chile:47,choic:31,choos:5,cite:[4,83],clamshel:14,classic:[17,24,33,34,91,103,104,105,106,107,108,109,110,111,118,122,127],claw:[65,116],clawcode2html:10,clawpack:[11,12,15,16,17,18,19,20,21,22,23,24,28,48,49,50,54,64,65,72,76,91,92,111,122,136],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,68],clawutil:[17,104,105,106,107,108,109,110,111],clinic:23,clone:27,cloud:77,code:[10,24,27,42,65,102,134],color:68,colorbar:47,colormap:68,command:[35,58,70,80],commit:27,commun:[23,27,65],comparison:102,compil:[37,50,54,59,94,124,132],compon:[22,68],comput:[64,112],conda:50,condit:[5,14,88,95,134,137],contain:28,content:[24,27,68,75,85,91,97,102],continu:102,contourf:68,contribut:[25,27],contributor:73,control:[75,78,95],convers:19,convert:[10,18,19],coordin:[45,47],copi:60,correctli:86,coverag:27,creat:[12,28,31,47,49,58,60,75],creation:75,criteria:101,current_data:[26,70],curv:68,custom:[91,113],dart:133,data:[47,63,117,121,129,131,132,133,134],debug:[68,119],defin:14,depend:[79,92],deprec:7,depth:45,deriv:[75,85],describ:15,desir:117,detail:5,dev:65,develop:[23,24,27,50,65],diff:102,differ:[47,55,64,68],dimens:[81,137],dimension:113,directli:12,directori:[54,60,68],displac:129,docker:28,dockerfil:49,docstr:[29,43,52,131],doctest:102,document:[8,10,29,43,48,49,52,83,111,124,131],doe:50,doing:49,domain:[81,95],done:134,download:129,doxygen:8,dtopo:130,dtopotool:29,duplic:54,each:[27,134],earth:47,earthquak:[61,133],easi:98,ec2:12,elev:45,environ:[37,116],equat:[89,95],error:[27,94],euler:89,event:[23,47],exampl:[11,24,25,33,34,35,38,40,42,47,58,60,66,80,86],exe:132,exist:60,extra:48,extrapol:101,f2py:132,faq:68,faster:47,fault:61,fflag:37,fgmax:31,figur:[47,68],file:[12,30,31,47,48,49,55,58,68,70,102,112,121,129,134],find:[12,68],finer:5,fix:[27,31,32,62,121],flag2refin:101,flag:[5,54,101,119],flow:[24,75],flowchart:9,fly:67,fork:27,format:[31,63],formul:137,fort:[63,68],fortran:[21,24,30,34,36,37,50,71,94,102,132,134],found:58,frame:85,friction:56,from:[12,18,19,21,24,27,29,35,38,43,50,52,70,76,80,87,131],full:24,fund:[4,73],further:82,fvmhp:38,galleri:[48,58],gaug:[40,47,85,133],gdal:47,gener:[21,29,43,48,52,121,131],geo:121,geoclaw:[13,14,17,21,24,41,42,43,44,45,47,62,65,69,99,101,103,104,105,106,107,108,109,110,111,115,121,125,126],geometri:81,geophys:24,get:[24,42,58],gfortran:[37,92],ghost:5,git:[27,46,71],github:[27,49],global:110,godunov:137,googl:47,grid:[5,14,31,32,62,81,121],guid:[27,48,49,100],guidelin:27,hack:65,hazard:44,hdf5:84,help:58,high:137,hint:[44,68,97],how:[68,70,85],hpc3:65,html:[10,70],imag:[28,47],imagediff:102,includ:11,independ:79,indic:83,initi:[5,88,95,134],input:[21,31,84,118,119],instal:[27,34,35,50,51,59,64,71,86,92,94,97,98,127,132],instanc:12,instruct:[27,51],integr:102,intel:37,interact:[70,80],interfac:64,interpol:31,interpret:35,iplotclaw:70,ipython:[35,80,123],issu:27,item:68,jupyt:[28,35],kaust:65,keep:46,kml:47,kmltool:52,kmz:47,latest:[27,50],latex:70,latitud:[45,47],launch:12,level:27,lflag:37,librari:[47,55],licens:[4,53,73],limit:79,line:[35,70,80,102],link:20,list:80,load:47,local:124,locat:40,log:[12,85],longitud:[45,47],machin:136,make:[68,86,123,132],makefil:[36,54,55,88,112],man:56,map:47,mapc2p:57,master:[17,27],math:77,matlab:58,matplotlib:92,maxfram:58,maximum:121,mesh:[5,24],method:[0,1,2,3,137],migrat:24,model:[44,61,100,133],modifi:[27,55,112],modul:[29,43,52,83,96,97,120,122,131],monitor:[31,121],more:[5,28,34,36],most:27,move:29,multipl:47,name:[54,55],need:47,netcdf:[59,63,84],never:27,next:[50,51,92],nose:92,note:[16,51],notebook:[28,35,97,123],numpi:92,object:[81,117],obtain:92,okada:61,old:[7,48],older:24,onli:[50,51],openmp:62,oper:71,option:[47,50,70,86,88],order:94,other:[15,17,22,23,50,68,111],out:27,outdir:68,output:[31,32,54,58,59,62,63,75,84,85,102,112,118,119,121,132],overlai:47,overview:[24,117],own:[12,28,88],packag:[21,50,51,84,89],page:48,paper:15,parallel:[50,64,81,86,87,93],paramet:[21,40,68,70,95,118,119,121],pass:86,patch:81,path:[58,98],pcolor:68,petclaw:[81,93],petsc:86,photo:65,pip:[50,51,71,132],pixel:102,plot:[3,12,21,24,31,40,42,45,47,54,58,59,66,67,68,69,70,80,86,87,102,117,123,132,135],plot_typ:3,plotax:47,plotclaw:58,plotdata:47,plotfigur:47,plotitem:47,pointwis:113,port:76,post:67,ppflag:37,pre:37,prepar:49,prerequisit:71,previou:[23,72],print:119,printfram:70,problem:[7,76,88,95,134],procedur:31,process:[31,67],processor:37,produc:70,propag:137,provid:68,pth:98,publish:47,pull:27,pyclaw:[17,21,24,33,35,50,51,73,74,75,76,77,78,79,80,81,83,84,85,87,90,91,92,93,95,96,102,103,104,105,106,107,108,109,110,111,127],pyflak:27,pylint:27,python:[19,70,71,92,97,98,130],pythonpath:[98,116],q0002:63,qinit:[99,121,129],quantiti:[75,85],quick:[51,100],raw:63,readm:10,recent:[16,23,27],refer:[15,83,97],refin:[5,14,24,101,121],region:[101,121],regress:102,releas:[16,49,103,104,105,106,107,108,109,110,111],remot:27,remov:47,replac:55,report:27,repositori:[11,17,22,27,46,49,111,113],request:27,requir:[47,50,97,134],resolut:[47,137],resourc:[24,28],restart:[28,75,112],result:[12,42,47,59,87,123],richardson:101,riemann:[17,24,83,88,89,103,104,105,106,107,108,109,110,111,113,134],routin:[13,21,55,69,99,115,125,126],rst:10,run:[28,33,34,35,42,50,75,77,80,86,87,102,118,119,132],sage:77,same:55,sampl:[120,122],save:[85,123],script:88,sealevel:114,search:58,serial:[81,93,102],servic:12,session:23,set:[42,58,68,70,88,114,116,132],setaux:[115,134],setplot:[58,68,70,117],setrun:[21,40,118,119,120,121,122],shallow:89,share:123,sharpclaw:91,shoot:[27,58],should:64,signatur:91,simul:75,simultan:102,sinc:17,size:68,slip:61,softwar:[4,15],solut:[68,75,90],solv:95,solver:[64,75,83,88,89,91,95,113,134],some:[68,133],someth:68,sourc:[54,61,88,133,134,137],space:137,spatial:134,special:[3,119],specif:[31,95,102,134],specifi:[68,70,101,117,118,119,121,134],sphere:14,sphinx:[48,124],sprint:[23,65],src1d:[125,134],src:[126,134],start:[24,42,100],state:93,statist:128,step:[50,51,92,134],stop:12,surfac:45,sys:98,system:71,t0002:63,tabl:[24,83],tar:49,tarfil:50,term:[56,88,134,137],test:[27,34,35,86,92,102,127],than:68,thi:[4,48],tide:133,tile:47,time:[118,119,121,128,134],tip:[27,36,45,47,86],titl:68,tool:[19,24,31,40,45,102,130],top:27,topo:130,topographi:[29,42,47,121,129,131,133],topotool:131,track:46,transfer:12,travi:102,troubl:[27,58,132],troubleshoot:[51,94,132],tsunami:[44,47,100,133],tutori:[23,95,97],tvd:79,understand:75,univers:65,upcom:23,updat:[27,48,49],use:64,used:132,user:[14,23,64,134],using:[44,50,51,58,134],utah:65,util:[43,52,96],valu:[31,75],vari:134,variabl:[37,54,88,116],version:[24,36,46,48,50,72,98],view:12,virtual:136,visclaw:[17,24,67,103,104,105,106,107,108,109,110,111],visit:135,visual:[24,47],washington:65,water:[45,89],wave:[113,137],web:12,webpag:[12,48,123],what:[68,70,85],when:85,where:85,which:[64,98],whichclaw:98,without:50,work:[4,80,130,131,134],workflow:27,workshop:[23,65],write:[88,102],written:85,your:[12,27,28,34,47,86,88,92,123,127],zenodo:49}}) \ No newline at end of file diff --git a/v5.4.x/setaux_defaults.html b/v5.4.x/setaux_defaults.html index a5c6b4b82..458d9ed35 100644 --- a/v5.4.x/setaux_defaults.html +++ b/v5.4.x/setaux_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 19)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 19)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/2d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 25)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 25)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/3d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 31)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 31)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 49)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/setaux_defaults.rst, line 49)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

        diff --git a/v5.4.x/src1d_defaults.html b/v5.4.x/src1d_defaults.html index 485478883..21970a54e 100644 --- a/v5.4.x/src1d_defaults.html +++ b/v5.4.x/src1d_defaults.html @@ -84,12 +84,12 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/amrclaw/src/2d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 22)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 22)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

        $CLAW/amrclaw/src/3d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 29)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 29)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

        @@ -100,7 +100,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src1d_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

        diff --git a/v5.4.x/src_defaults.html b/v5.4.x/src_defaults.html index ecb90be21..3630cf514 100644 --- a/v5.4.x/src_defaults.html +++ b/v5.4.x/src_defaults.html @@ -85,17 +85,17 @@

        Navigation

        see Using src1d for source terms with AMRClaw.

        $CLAW/classic/src/1d/src1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/src3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 36)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

        @@ -106,7 +106,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 53)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/56744eeda50bfc1d8fec79d45060637228943b2f/src_defaults.rst, line 53)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

        diff --git a/v5.5.x/.buildinfo b/v5.5.x/.buildinfo index e8fb63540..a1150ada7 100644 --- a/v5.5.x/.buildinfo +++ b/v5.5.x/.buildinfo @@ -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: 5f9a5552a4a8adbe3c59f24fdea46edb +config: a611c62670c49954a43c4ace116eb3cc tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.5.x/.doctrees/ClawPlotAxes.doctree b/v5.5.x/.doctrees/ClawPlotAxes.doctree index d33858cb7..aa6ca16d2 100644 Binary files a/v5.5.x/.doctrees/ClawPlotAxes.doctree and b/v5.5.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.5.x/.doctrees/ClawPlotData.doctree b/v5.5.x/.doctrees/ClawPlotData.doctree index 59ee37dcc..1e11adf76 100644 Binary files a/v5.5.x/.doctrees/ClawPlotData.doctree and b/v5.5.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.5.x/.doctrees/ClawPlotFigure.doctree b/v5.5.x/.doctrees/ClawPlotFigure.doctree index 605f4e770..28eb46707 100644 Binary files a/v5.5.x/.doctrees/ClawPlotFigure.doctree and b/v5.5.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.5.x/.doctrees/ClawPlotItem.doctree b/v5.5.x/.doctrees/ClawPlotItem.doctree index 96a7982ba..29eeb9cc4 100644 Binary files a/v5.5.x/.doctrees/ClawPlotItem.doctree and b/v5.5.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.5.x/.doctrees/about.doctree b/v5.5.x/.doctrees/about.doctree index 9208e4ea3..86690d193 100644 Binary files a/v5.5.x/.doctrees/about.doctree and b/v5.5.x/.doctrees/about.doctree differ diff --git a/v5.5.x/.doctrees/amr_algorithm.doctree b/v5.5.x/.doctrees/amr_algorithm.doctree index d883c39df..5e65408d1 100644 Binary files a/v5.5.x/.doctrees/amr_algorithm.doctree and b/v5.5.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.5.x/.doctrees/amrclaw.doctree b/v5.5.x/.doctrees/amrclaw.doctree index d373d3e13..44f850fb3 100644 Binary files a/v5.5.x/.doctrees/amrclaw.doctree and b/v5.5.x/.doctrees/amrclaw.doctree differ diff --git a/v5.5.x/.doctrees/amrclaw1d.doctree b/v5.5.x/.doctrees/amrclaw1d.doctree index fcc3ca4e8..591a3d0b6 100644 Binary files a/v5.5.x/.doctrees/amrclaw1d.doctree and b/v5.5.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.5.x/.doctrees/amrclaw_doxygen.doctree b/v5.5.x/.doctrees/amrclaw_doxygen.doctree index 5f5466c21..0abf14ec0 100644 Binary files a/v5.5.x/.doctrees/amrclaw_doxygen.doctree and b/v5.5.x/.doctrees/amrclaw_doxygen.doctree differ diff --git a/v5.5.x/.doctrees/amrclaw_flowcharts.doctree b/v5.5.x/.doctrees/amrclaw_flowcharts.doctree index 9eae35aea..61ffff083 100644 Binary files a/v5.5.x/.doctrees/amrclaw_flowcharts.doctree and b/v5.5.x/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/v5.5.x/.doctrees/application_documentation.doctree b/v5.5.x/.doctrees/application_documentation.doctree index e99519e16..ca9c4f5a0 100644 Binary files a/v5.5.x/.doctrees/application_documentation.doctree and b/v5.5.x/.doctrees/application_documentation.doctree differ diff --git a/v5.5.x/.doctrees/apps.doctree b/v5.5.x/.doctrees/apps.doctree index d283c22e5..ea2df4c0c 100644 Binary files a/v5.5.x/.doctrees/apps.doctree and b/v5.5.x/.doctrees/apps.doctree differ diff --git a/v5.5.x/.doctrees/aws.doctree b/v5.5.x/.doctrees/aws.doctree index 004453686..799a140c5 100644 Binary files a/v5.5.x/.doctrees/aws.doctree and b/v5.5.x/.doctrees/aws.doctree differ diff --git a/v5.5.x/.doctrees/b4step_defaults.doctree b/v5.5.x/.doctrees/b4step_defaults.doctree index 27892859c..5b46d1e1d 100644 Binary files a/v5.5.x/.doctrees/b4step_defaults.doctree and b/v5.5.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.5.x/.doctrees/bc.doctree b/v5.5.x/.doctrees/bc.doctree index 151082950..7f8d57972 100644 Binary files a/v5.5.x/.doctrees/bc.doctree and b/v5.5.x/.doctrees/bc.doctree differ diff --git a/v5.5.x/.doctrees/biblio.doctree b/v5.5.x/.doctrees/biblio.doctree index 2ae1e071b..33ce81778 100644 Binary files a/v5.5.x/.doctrees/biblio.doctree and b/v5.5.x/.doctrees/biblio.doctree differ diff --git a/v5.5.x/.doctrees/changes.doctree b/v5.5.x/.doctrees/changes.doctree index 15abbd49f..bfca9a955 100644 Binary files a/v5.5.x/.doctrees/changes.doctree and b/v5.5.x/.doctrees/changes.doctree differ diff --git a/v5.5.x/.doctrees/changes_to_master.doctree b/v5.5.x/.doctrees/changes_to_master.doctree index 3a627e6ef..8bd90ec1d 100644 Binary files a/v5.5.x/.doctrees/changes_to_master.doctree and b/v5.5.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.5.x/.doctrees/claw43to46.doctree b/v5.5.x/.doctrees/claw43to46.doctree index e6727a84c..41f96f893 100644 Binary files a/v5.5.x/.doctrees/claw43to46.doctree and b/v5.5.x/.doctrees/claw43to46.doctree differ diff --git a/v5.5.x/.doctrees/claw46to50.doctree b/v5.5.x/.doctrees/claw46to50.doctree index c18339832..2a0a9c5b6 100644 Binary files a/v5.5.x/.doctrees/claw46to50.doctree and b/v5.5.x/.doctrees/claw46to50.doctree differ diff --git a/v5.5.x/.doctrees/claw4x.doctree b/v5.5.x/.doctrees/claw4x.doctree index 221dacbb7..b262ab362 100644 Binary files a/v5.5.x/.doctrees/claw4x.doctree and b/v5.5.x/.doctrees/claw4x.doctree differ diff --git a/v5.5.x/.doctrees/clawpack5.doctree b/v5.5.x/.doctrees/clawpack5.doctree index e73ecebae..5632d6bda 100644 Binary files a/v5.5.x/.doctrees/clawpack5.doctree and b/v5.5.x/.doctrees/clawpack5.doctree differ diff --git a/v5.5.x/.doctrees/clawpack_components.doctree b/v5.5.x/.doctrees/clawpack_components.doctree index 96d557a20..463f374e3 100644 Binary files a/v5.5.x/.doctrees/clawpack_components.doctree and b/v5.5.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.5.x/.doctrees/community.doctree b/v5.5.x/.doctrees/community.doctree index 440658027..854f243ed 100644 Binary files a/v5.5.x/.doctrees/community.doctree and b/v5.5.x/.doctrees/community.doctree differ diff --git a/v5.5.x/.doctrees/contents.doctree b/v5.5.x/.doctrees/contents.doctree index 96b66899f..a1a8462d8 100644 Binary files a/v5.5.x/.doctrees/contents.doctree and b/v5.5.x/.doctrees/contents.doctree differ diff --git a/v5.5.x/.doctrees/contribute_apps.doctree b/v5.5.x/.doctrees/contribute_apps.doctree index aeb56a4ab..4a644ae15 100644 Binary files a/v5.5.x/.doctrees/contribute_apps.doctree and b/v5.5.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.5.x/.doctrees/current_data.doctree b/v5.5.x/.doctrees/current_data.doctree index 253cbcbe2..3dc1ff9d8 100644 Binary files a/v5.5.x/.doctrees/current_data.doctree and b/v5.5.x/.doctrees/current_data.doctree differ diff --git a/v5.5.x/.doctrees/developers.doctree b/v5.5.x/.doctrees/developers.doctree index 0fcada62a..c496b971d 100644 Binary files a/v5.5.x/.doctrees/developers.doctree and b/v5.5.x/.doctrees/developers.doctree differ diff --git a/v5.5.x/.doctrees/docker_image.doctree b/v5.5.x/.doctrees/docker_image.doctree index 42f7b7d67..1079e23a7 100644 Binary files a/v5.5.x/.doctrees/docker_image.doctree and b/v5.5.x/.doctrees/docker_image.doctree differ diff --git a/v5.5.x/.doctrees/dtopotools_module.doctree b/v5.5.x/.doctrees/dtopotools_module.doctree index 436ef99f1..3da054a9f 100644 Binary files a/v5.5.x/.doctrees/dtopotools_module.doctree and b/v5.5.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.5.x/.doctrees/environment.pickle b/v5.5.x/.doctrees/environment.pickle index 03766f483..9563b9bb4 100644 Binary files a/v5.5.x/.doctrees/environment.pickle and b/v5.5.x/.doctrees/environment.pickle differ diff --git a/v5.5.x/.doctrees/f77_vs_f90.doctree b/v5.5.x/.doctrees/f77_vs_f90.doctree index c32cf844a..c334c2506 100644 Binary files a/v5.5.x/.doctrees/f77_vs_f90.doctree and b/v5.5.x/.doctrees/f77_vs_f90.doctree differ diff --git a/v5.5.x/.doctrees/fgmax.doctree b/v5.5.x/.doctrees/fgmax.doctree index 7807909fb..c8041eed0 100644 Binary files a/v5.5.x/.doctrees/fgmax.doctree and b/v5.5.x/.doctrees/fgmax.doctree differ diff --git a/v5.5.x/.doctrees/fgout.doctree b/v5.5.x/.doctrees/fgout.doctree index 7fa9a3519..47bebbc93 100644 Binary files a/v5.5.x/.doctrees/fgout.doctree and b/v5.5.x/.doctrees/fgout.doctree differ diff --git a/v5.5.x/.doctrees/first_run.doctree b/v5.5.x/.doctrees/first_run.doctree index 06621973c..841dd53b7 100644 Binary files a/v5.5.x/.doctrees/first_run.doctree and b/v5.5.x/.doctrees/first_run.doctree differ diff --git a/v5.5.x/.doctrees/first_run_fortran.doctree b/v5.5.x/.doctrees/first_run_fortran.doctree index 46ba5a01d..d08f6bebc 100644 Binary files a/v5.5.x/.doctrees/first_run_fortran.doctree and b/v5.5.x/.doctrees/first_run_fortran.doctree differ diff --git a/v5.5.x/.doctrees/first_run_pyclaw.doctree b/v5.5.x/.doctrees/first_run_pyclaw.doctree index aa79096bc..24e8a2dd7 100644 Binary files a/v5.5.x/.doctrees/first_run_pyclaw.doctree and b/v5.5.x/.doctrees/first_run_pyclaw.doctree differ diff --git a/v5.5.x/.doctrees/fortran.doctree b/v5.5.x/.doctrees/fortran.doctree index af4e2f9a3..986cb6e87 100644 Binary files a/v5.5.x/.doctrees/fortran.doctree and b/v5.5.x/.doctrees/fortran.doctree differ diff --git a/v5.5.x/.doctrees/fortran_compilers.doctree b/v5.5.x/.doctrees/fortran_compilers.doctree index 2dc49ed79..0d9fc6658 100644 Binary files a/v5.5.x/.doctrees/fortran_compilers.doctree and b/v5.5.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.5.x/.doctrees/fvmbook.doctree b/v5.5.x/.doctrees/fvmbook.doctree index deae2b4ff..56e851313 100644 Binary files a/v5.5.x/.doctrees/fvmbook.doctree and b/v5.5.x/.doctrees/fvmbook.doctree differ diff --git a/v5.5.x/.doctrees/galleries.doctree b/v5.5.x/.doctrees/galleries.doctree index 72c7121ef..c41eb2547 100644 Binary files a/v5.5.x/.doctrees/galleries.doctree and b/v5.5.x/.doctrees/galleries.doctree differ diff --git a/v5.5.x/.doctrees/gauges.doctree b/v5.5.x/.doctrees/gauges.doctree index 8a328c6bd..91c64b933 100644 Binary files a/v5.5.x/.doctrees/gauges.doctree and b/v5.5.x/.doctrees/gauges.doctree differ diff --git a/v5.5.x/.doctrees/geoclaw.doctree b/v5.5.x/.doctrees/geoclaw.doctree index fa45d657b..e3fef86c6 100644 Binary files a/v5.5.x/.doctrees/geoclaw.doctree and b/v5.5.x/.doctrees/geoclaw.doctree differ diff --git a/v5.5.x/.doctrees/geoclaw_started.doctree b/v5.5.x/.doctrees/geoclaw_started.doctree index d6d1267f2..9c83a05bd 100644 Binary files a/v5.5.x/.doctrees/geoclaw_started.doctree and b/v5.5.x/.doctrees/geoclaw_started.doctree differ diff --git a/v5.5.x/.doctrees/geoclaw_util_module.doctree b/v5.5.x/.doctrees/geoclaw_util_module.doctree index 17b8b6ebb..8e397c554 100644 Binary files a/v5.5.x/.doctrees/geoclaw_util_module.doctree and b/v5.5.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.5.x/.doctrees/geohints.doctree b/v5.5.x/.doctrees/geohints.doctree index 99ee507cf..c61d23eaf 100644 Binary files a/v5.5.x/.doctrees/geohints.doctree and b/v5.5.x/.doctrees/geohints.doctree differ diff --git a/v5.5.x/.doctrees/geoplot.doctree b/v5.5.x/.doctrees/geoplot.doctree index 95674ab61..296ab94af 100644 Binary files a/v5.5.x/.doctrees/geoplot.doctree and b/v5.5.x/.doctrees/geoplot.doctree differ diff --git a/v5.5.x/.doctrees/git_versions.doctree b/v5.5.x/.doctrees/git_versions.doctree index 5906f8771..495652be4 100644 Binary files a/v5.5.x/.doctrees/git_versions.doctree and b/v5.5.x/.doctrees/git_versions.doctree differ diff --git a/v5.5.x/.doctrees/googleearth_plotting.doctree b/v5.5.x/.doctrees/googleearth_plotting.doctree index 1498fd3d7..5eae6267f 100644 Binary files a/v5.5.x/.doctrees/googleearth_plotting.doctree and b/v5.5.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.5.x/.doctrees/grid_registration.doctree b/v5.5.x/.doctrees/grid_registration.doctree index d72498249..b4b096800 100644 Binary files a/v5.5.x/.doctrees/grid_registration.doctree and b/v5.5.x/.doctrees/grid_registration.doctree differ diff --git a/v5.5.x/.doctrees/howto_doc.doctree b/v5.5.x/.doctrees/howto_doc.doctree index 64f85b652..4a9ef564d 100644 Binary files a/v5.5.x/.doctrees/howto_doc.doctree and b/v5.5.x/.doctrees/howto_doc.doctree differ diff --git a/v5.5.x/.doctrees/howto_release.doctree b/v5.5.x/.doctrees/howto_release.doctree index 1defd4a85..e5ba91980 100644 Binary files a/v5.5.x/.doctrees/howto_release.doctree and b/v5.5.x/.doctrees/howto_release.doctree differ diff --git a/v5.5.x/.doctrees/installing.doctree b/v5.5.x/.doctrees/installing.doctree index c71f05c0b..96f5509f2 100644 Binary files a/v5.5.x/.doctrees/installing.doctree and b/v5.5.x/.doctrees/installing.doctree differ diff --git a/v5.5.x/.doctrees/installing_more_options.doctree b/v5.5.x/.doctrees/installing_more_options.doctree index 606c7a24f..706b2f4b9 100644 Binary files a/v5.5.x/.doctrees/installing_more_options.doctree and b/v5.5.x/.doctrees/installing_more_options.doctree differ diff --git a/v5.5.x/.doctrees/installing_pip.doctree b/v5.5.x/.doctrees/installing_pip.doctree index 77be99917..907abbfb3 100644 Binary files a/v5.5.x/.doctrees/installing_pip.doctree and b/v5.5.x/.doctrees/installing_pip.doctree differ diff --git a/v5.5.x/.doctrees/kmltools_module.doctree b/v5.5.x/.doctrees/kmltools_module.doctree index b7ab8bd11..1368773e5 100644 Binary files a/v5.5.x/.doctrees/kmltools_module.doctree and b/v5.5.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.5.x/.doctrees/license.doctree b/v5.5.x/.doctrees/license.doctree index 4120bc676..9ab41d171 100644 Binary files a/v5.5.x/.doctrees/license.doctree and b/v5.5.x/.doctrees/license.doctree differ diff --git a/v5.5.x/.doctrees/makefiles.doctree b/v5.5.x/.doctrees/makefiles.doctree index 79b4bf879..2426f3762 100644 Binary files a/v5.5.x/.doctrees/makefiles.doctree and b/v5.5.x/.doctrees/makefiles.doctree differ diff --git a/v5.5.x/.doctrees/makefiles_library.doctree b/v5.5.x/.doctrees/makefiles_library.doctree index a7f9bf651..e6d1f9511 100644 Binary files a/v5.5.x/.doctrees/makefiles_library.doctree and b/v5.5.x/.doctrees/makefiles_library.doctree differ diff --git a/v5.5.x/.doctrees/manning.doctree b/v5.5.x/.doctrees/manning.doctree index 577bb9525..4e6cfe08b 100644 Binary files a/v5.5.x/.doctrees/manning.doctree and b/v5.5.x/.doctrees/manning.doctree differ diff --git a/v5.5.x/.doctrees/mapc2p.doctree b/v5.5.x/.doctrees/mapc2p.doctree index eee641211..557cd21c9 100644 Binary files a/v5.5.x/.doctrees/mapc2p.doctree and b/v5.5.x/.doctrees/mapc2p.doctree differ diff --git a/v5.5.x/.doctrees/matlab_plotting.doctree b/v5.5.x/.doctrees/matlab_plotting.doctree index 3edc2b9c4..90bb835c9 100644 Binary files a/v5.5.x/.doctrees/matlab_plotting.doctree and b/v5.5.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.5.x/.doctrees/netcdf.doctree b/v5.5.x/.doctrees/netcdf.doctree index 4fd328a50..aa8642495 100644 Binary files a/v5.5.x/.doctrees/netcdf.doctree and b/v5.5.x/.doctrees/netcdf.doctree differ diff --git a/v5.5.x/.doctrees/newapp.doctree b/v5.5.x/.doctrees/newapp.doctree index d0809a2ec..6f2cd2581 100644 Binary files a/v5.5.x/.doctrees/newapp.doctree and b/v5.5.x/.doctrees/newapp.doctree differ diff --git a/v5.5.x/.doctrees/okada.doctree b/v5.5.x/.doctrees/okada.doctree index 59b996fdd..b50b1ed64 100644 Binary files a/v5.5.x/.doctrees/okada.doctree and b/v5.5.x/.doctrees/okada.doctree differ diff --git a/v5.5.x/.doctrees/openmp.doctree b/v5.5.x/.doctrees/openmp.doctree index 33e91b528..436640934 100644 Binary files a/v5.5.x/.doctrees/openmp.doctree and b/v5.5.x/.doctrees/openmp.doctree differ diff --git a/v5.5.x/.doctrees/output_styles.doctree b/v5.5.x/.doctrees/output_styles.doctree index ad1da315e..86f837dd9 100644 Binary files a/v5.5.x/.doctrees/output_styles.doctree and b/v5.5.x/.doctrees/output_styles.doctree differ diff --git a/v5.5.x/.doctrees/packages.doctree b/v5.5.x/.doctrees/packages.doctree index b84c09afb..48cfc4066 100644 Binary files a/v5.5.x/.doctrees/packages.doctree and b/v5.5.x/.doctrees/packages.doctree differ diff --git a/v5.5.x/.doctrees/photos.doctree b/v5.5.x/.doctrees/photos.doctree index f5ff9dd1c..361e7ac9f 100644 Binary files a/v5.5.x/.doctrees/photos.doctree and b/v5.5.x/.doctrees/photos.doctree differ diff --git a/v5.5.x/.doctrees/plotexamples.doctree b/v5.5.x/.doctrees/plotexamples.doctree index ce7f5816d..e581eae14 100644 Binary files a/v5.5.x/.doctrees/plotexamples.doctree and b/v5.5.x/.doctrees/plotexamples.doctree differ diff --git a/v5.5.x/.doctrees/plotting.doctree b/v5.5.x/.doctrees/plotting.doctree index a8356be3c..944d6d135 100644 Binary files a/v5.5.x/.doctrees/plotting.doctree and b/v5.5.x/.doctrees/plotting.doctree differ diff --git a/v5.5.x/.doctrees/plotting_faq.doctree b/v5.5.x/.doctrees/plotting_faq.doctree index 22ec7e3f7..804e2a73b 100644 Binary files a/v5.5.x/.doctrees/plotting_faq.doctree and b/v5.5.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.5.x/.doctrees/plotting_geoclaw.doctree b/v5.5.x/.doctrees/plotting_geoclaw.doctree index b1e1c2ee5..3743b3602 100644 Binary files a/v5.5.x/.doctrees/plotting_geoclaw.doctree and b/v5.5.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.5.x/.doctrees/plotting_python.doctree b/v5.5.x/.doctrees/plotting_python.doctree index d08d84182..a0b7de8f9 100644 Binary files a/v5.5.x/.doctrees/plotting_python.doctree and b/v5.5.x/.doctrees/plotting_python.doctree differ diff --git a/v5.5.x/.doctrees/prereqs.doctree b/v5.5.x/.doctrees/prereqs.doctree index 0f9fc73c0..7790b3462 100644 Binary files a/v5.5.x/.doctrees/prereqs.doctree and b/v5.5.x/.doctrees/prereqs.doctree differ diff --git a/v5.5.x/.doctrees/previous.doctree b/v5.5.x/.doctrees/previous.doctree index 0a24cb6b4..7ccc50a27 100644 Binary files a/v5.5.x/.doctrees/previous.doctree and b/v5.5.x/.doctrees/previous.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/about.doctree b/v5.5.x/.doctrees/pyclaw/about.doctree index c821bb18d..ab37203ca 100644 Binary files a/v5.5.x/.doctrees/pyclaw/about.doctree and b/v5.5.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/basics.doctree b/v5.5.x/.doctrees/pyclaw/basics.doctree index 8ca764447..eaa409b17 100644 Binary files a/v5.5.x/.doctrees/pyclaw/basics.doctree and b/v5.5.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/classes.doctree b/v5.5.x/.doctrees/pyclaw/classes.doctree index 8dd11d899..0d1ab5bce 100644 Binary files a/v5.5.x/.doctrees/pyclaw/classes.doctree and b/v5.5.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.5.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index fde17d52a..21dae78a4 100644 Binary files a/v5.5.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.5.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/cloud.doctree b/v5.5.x/.doctrees/pyclaw/cloud.doctree index e8c1b98c6..1ce9d72b9 100644 Binary files a/v5.5.x/.doctrees/pyclaw/cloud.doctree and b/v5.5.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/controller.doctree b/v5.5.x/.doctrees/pyclaw/controller.doctree index d5e494ed9..f5f5558d5 100644 Binary files a/v5.5.x/.doctrees/pyclaw/controller.doctree and b/v5.5.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.5.x/.doctrees/pyclaw/evolve/limiters.doctree index ee08093d4..421881ff6 100644 Binary files a/v5.5.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.5.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/examples.doctree b/v5.5.x/.doctrees/pyclaw/examples.doctree index 15bd85083..f621c5fe5 100644 Binary files a/v5.5.x/.doctrees/pyclaw/examples.doctree and b/v5.5.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/geometry.doctree b/v5.5.x/.doctrees/pyclaw/geometry.doctree index 7c4d6b49f..dedebc082 100644 Binary files a/v5.5.x/.doctrees/pyclaw/geometry.doctree and b/v5.5.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/going_further.doctree b/v5.5.x/.doctrees/pyclaw/going_further.doctree index ff73417f2..9f6c3209c 100644 Binary files a/v5.5.x/.doctrees/pyclaw/going_further.doctree and b/v5.5.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/index.doctree b/v5.5.x/.doctrees/pyclaw/index.doctree index 9aad85fe5..d1598feb4 100644 Binary files a/v5.5.x/.doctrees/pyclaw/index.doctree and b/v5.5.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/io.doctree b/v5.5.x/.doctrees/pyclaw/io.doctree index 53fc56046..75a3511ed 100644 Binary files a/v5.5.x/.doctrees/pyclaw/io.doctree and b/v5.5.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/output.doctree b/v5.5.x/.doctrees/pyclaw/output.doctree index 00030f926..8bb4be63b 100644 Binary files a/v5.5.x/.doctrees/pyclaw/output.doctree and b/v5.5.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/parallel.doctree b/v5.5.x/.doctrees/pyclaw/parallel.doctree index ee97f60fe..66ad70f09 100644 Binary files a/v5.5.x/.doctrees/pyclaw/parallel.doctree and b/v5.5.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/plotting.doctree b/v5.5.x/.doctrees/pyclaw/plotting.doctree index ab0ee3c66..2958177fa 100644 Binary files a/v5.5.x/.doctrees/pyclaw/plotting.doctree and b/v5.5.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/problem.doctree b/v5.5.x/.doctrees/pyclaw/problem.doctree index ff6403dd7..69df57396 100644 Binary files a/v5.5.x/.doctrees/pyclaw/problem.doctree and b/v5.5.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/rp.doctree b/v5.5.x/.doctrees/pyclaw/rp.doctree index 1b0e1067a..76136b213 100644 Binary files a/v5.5.x/.doctrees/pyclaw/rp.doctree and b/v5.5.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/solution.doctree b/v5.5.x/.doctrees/pyclaw/solution.doctree index c168bc72d..0e429401b 100644 Binary files a/v5.5.x/.doctrees/pyclaw/solution.doctree and b/v5.5.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/solvers.doctree b/v5.5.x/.doctrees/pyclaw/solvers.doctree index d2f239f5b..49e024307 100644 Binary files a/v5.5.x/.doctrees/pyclaw/solvers.doctree and b/v5.5.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/started.doctree b/v5.5.x/.doctrees/pyclaw/started.doctree index e0c9987f8..fa4aa6f02 100644 Binary files a/v5.5.x/.doctrees/pyclaw/started.doctree and b/v5.5.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/state.doctree b/v5.5.x/.doctrees/pyclaw/state.doctree index 978c08090..be212be4f 100644 Binary files a/v5.5.x/.doctrees/pyclaw/state.doctree and b/v5.5.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.5.x/.doctrees/pyclaw/troubleshooting.doctree index d9b93525d..b76b6cbf5 100644 Binary files a/v5.5.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.5.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/tutorial.doctree b/v5.5.x/.doctrees/pyclaw/tutorial.doctree index 2d032ddb7..da9c64b55 100644 Binary files a/v5.5.x/.doctrees/pyclaw/tutorial.doctree and b/v5.5.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.5.x/.doctrees/pyclaw/util.doctree b/v5.5.x/.doctrees/pyclaw/util.doctree index 592dc5490..b9dbaf632 100644 Binary files a/v5.5.x/.doctrees/pyclaw/util.doctree and b/v5.5.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.5.x/.doctrees/python.doctree b/v5.5.x/.doctrees/python.doctree index 5d920fc6a..e55c4b0a8 100644 Binary files a/v5.5.x/.doctrees/python.doctree and b/v5.5.x/.doctrees/python.doctree differ diff --git a/v5.5.x/.doctrees/python_path.doctree b/v5.5.x/.doctrees/python_path.doctree index b925a7cb8..c3c0008a2 100644 Binary files a/v5.5.x/.doctrees/python_path.doctree and b/v5.5.x/.doctrees/python_path.doctree differ diff --git a/v5.5.x/.doctrees/qinit_defaults.doctree b/v5.5.x/.doctrees/qinit_defaults.doctree index 551bc19fc..2e6a1e091 100644 Binary files a/v5.5.x/.doctrees/qinit_defaults.doctree and b/v5.5.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.5.x/.doctrees/quick_surge.doctree b/v5.5.x/.doctrees/quick_surge.doctree index 180da384f..2e2377fdb 100644 Binary files a/v5.5.x/.doctrees/quick_surge.doctree and b/v5.5.x/.doctrees/quick_surge.doctree differ diff --git a/v5.5.x/.doctrees/quick_tsunami.doctree b/v5.5.x/.doctrees/quick_tsunami.doctree index 22bb09c24..c67378fc1 100644 Binary files a/v5.5.x/.doctrees/quick_tsunami.doctree and b/v5.5.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.5.x/.doctrees/refinement.doctree b/v5.5.x/.doctrees/refinement.doctree index 7828d8a10..5f9e8cee5 100644 Binary files a/v5.5.x/.doctrees/refinement.doctree and b/v5.5.x/.doctrees/refinement.doctree differ diff --git a/v5.5.x/.doctrees/regression.doctree b/v5.5.x/.doctrees/regression.doctree index 9eb9da43b..b181bc123 100644 Binary files a/v5.5.x/.doctrees/regression.doctree and b/v5.5.x/.doctrees/regression.doctree differ diff --git a/v5.5.x/.doctrees/release_5_0_0.doctree b/v5.5.x/.doctrees/release_5_0_0.doctree index 9fe9c5d54..1cbeae2e3 100644 Binary files a/v5.5.x/.doctrees/release_5_0_0.doctree and b/v5.5.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.5.x/.doctrees/release_5_1_0.doctree b/v5.5.x/.doctrees/release_5_1_0.doctree index 9a5bc2dac..08b885d78 100644 Binary files a/v5.5.x/.doctrees/release_5_1_0.doctree and b/v5.5.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.5.x/.doctrees/release_5_2_0.doctree b/v5.5.x/.doctrees/release_5_2_0.doctree index d82350954..8a22c1956 100644 Binary files a/v5.5.x/.doctrees/release_5_2_0.doctree and b/v5.5.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.5.x/.doctrees/release_5_2_1.doctree b/v5.5.x/.doctrees/release_5_2_1.doctree index 9928d4531..e8656cba9 100644 Binary files a/v5.5.x/.doctrees/release_5_2_1.doctree and b/v5.5.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.5.x/.doctrees/release_5_2_2.doctree b/v5.5.x/.doctrees/release_5_2_2.doctree index 5de470d88..8b531f2d7 100644 Binary files a/v5.5.x/.doctrees/release_5_2_2.doctree and b/v5.5.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.5.x/.doctrees/release_5_3_0.doctree b/v5.5.x/.doctrees/release_5_3_0.doctree index 5f9554389..6ac30d309 100644 Binary files a/v5.5.x/.doctrees/release_5_3_0.doctree and b/v5.5.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.5.x/.doctrees/release_5_3_1.doctree b/v5.5.x/.doctrees/release_5_3_1.doctree index 03c118f74..c7366ab07 100644 Binary files a/v5.5.x/.doctrees/release_5_3_1.doctree and b/v5.5.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.5.x/.doctrees/release_5_4_0.doctree b/v5.5.x/.doctrees/release_5_4_0.doctree index 8792c729d..c4f2de56b 100644 Binary files a/v5.5.x/.doctrees/release_5_4_0.doctree and b/v5.5.x/.doctrees/release_5_4_0.doctree differ diff --git a/v5.5.x/.doctrees/release_5_4_1.doctree b/v5.5.x/.doctrees/release_5_4_1.doctree index 75311687f..2b3896b51 100644 Binary files a/v5.5.x/.doctrees/release_5_4_1.doctree and b/v5.5.x/.doctrees/release_5_4_1.doctree differ diff --git a/v5.5.x/.doctrees/release_5_5_0.doctree b/v5.5.x/.doctrees/release_5_5_0.doctree index c72a2f3df..2b92dc9a7 100644 Binary files a/v5.5.x/.doctrees/release_5_5_0.doctree and b/v5.5.x/.doctrees/release_5_5_0.doctree differ diff --git a/v5.5.x/.doctrees/restart.doctree b/v5.5.x/.doctrees/restart.doctree index cd0555264..a03f94eb9 100644 Binary files a/v5.5.x/.doctrees/restart.doctree and b/v5.5.x/.doctrees/restart.doctree differ diff --git a/v5.5.x/.doctrees/riemann.doctree b/v5.5.x/.doctrees/riemann.doctree index 2bc3858e9..28524042d 100644 Binary files a/v5.5.x/.doctrees/riemann.doctree and b/v5.5.x/.doctrees/riemann.doctree differ diff --git a/v5.5.x/.doctrees/sealevel.doctree b/v5.5.x/.doctrees/sealevel.doctree index 1a8e47ba5..a292171af 100644 Binary files a/v5.5.x/.doctrees/sealevel.doctree and b/v5.5.x/.doctrees/sealevel.doctree differ diff --git a/v5.5.x/.doctrees/setaux_defaults.doctree b/v5.5.x/.doctrees/setaux_defaults.doctree index ae034f366..44dd6d807 100644 Binary files a/v5.5.x/.doctrees/setaux_defaults.doctree and b/v5.5.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.5.x/.doctrees/setenv.doctree b/v5.5.x/.doctrees/setenv.doctree index 7eb336fec..0899a2f26 100644 Binary files a/v5.5.x/.doctrees/setenv.doctree and b/v5.5.x/.doctrees/setenv.doctree differ diff --git a/v5.5.x/.doctrees/setplot.doctree b/v5.5.x/.doctrees/setplot.doctree index 6f5266465..1d1cc60f7 100644 Binary files a/v5.5.x/.doctrees/setplot.doctree and b/v5.5.x/.doctrees/setplot.doctree differ diff --git a/v5.5.x/.doctrees/setrun.doctree b/v5.5.x/.doctrees/setrun.doctree index 061b500a5..ac4006cc9 100644 Binary files a/v5.5.x/.doctrees/setrun.doctree and b/v5.5.x/.doctrees/setrun.doctree differ diff --git a/v5.5.x/.doctrees/setrun_amrclaw.doctree b/v5.5.x/.doctrees/setrun_amrclaw.doctree index 43dedf3b4..ea821dd5e 100644 Binary files a/v5.5.x/.doctrees/setrun_amrclaw.doctree and b/v5.5.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.5.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.5.x/.doctrees/setrun_amrclaw_sample.doctree index 8be851383..ca493506c 100644 Binary files a/v5.5.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.5.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.5.x/.doctrees/setrun_geoclaw.doctree b/v5.5.x/.doctrees/setrun_geoclaw.doctree index 7a4b6d622..db7f28cca 100644 Binary files a/v5.5.x/.doctrees/setrun_geoclaw.doctree and b/v5.5.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.5.x/.doctrees/setrun_sample.doctree b/v5.5.x/.doctrees/setrun_sample.doctree index d2867d4be..8c2302303 100644 Binary files a/v5.5.x/.doctrees/setrun_sample.doctree and b/v5.5.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.5.x/.doctrees/sharing.doctree b/v5.5.x/.doctrees/sharing.doctree index b3eb2ae14..b3f572d27 100644 Binary files a/v5.5.x/.doctrees/sharing.doctree and b/v5.5.x/.doctrees/sharing.doctree differ diff --git a/v5.5.x/.doctrees/sphinxdoc.doctree b/v5.5.x/.doctrees/sphinxdoc.doctree index 0755bd69a..b7bb9cfe1 100644 Binary files a/v5.5.x/.doctrees/sphinxdoc.doctree and b/v5.5.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.5.x/.doctrees/src1d_defaults.doctree b/v5.5.x/.doctrees/src1d_defaults.doctree index 176b1875e..b2ac5212d 100644 Binary files a/v5.5.x/.doctrees/src1d_defaults.doctree and b/v5.5.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.5.x/.doctrees/src_defaults.doctree b/v5.5.x/.doctrees/src_defaults.doctree index 0937b4b2e..152749b91 100644 Binary files a/v5.5.x/.doctrees/src_defaults.doctree and b/v5.5.x/.doctrees/src_defaults.doctree differ diff --git a/v5.5.x/.doctrees/storm_module.doctree b/v5.5.x/.doctrees/storm_module.doctree index 0d4e32d40..b149a1dc2 100644 Binary files a/v5.5.x/.doctrees/storm_module.doctree and b/v5.5.x/.doctrees/storm_module.doctree differ diff --git a/v5.5.x/.doctrees/surgedata.doctree b/v5.5.x/.doctrees/surgedata.doctree index 328ae0164..f39c14bf0 100644 Binary files a/v5.5.x/.doctrees/surgedata.doctree and b/v5.5.x/.doctrees/surgedata.doctree differ diff --git a/v5.5.x/.doctrees/testing.doctree b/v5.5.x/.doctrees/testing.doctree index 9289d2970..26104dd63 100644 Binary files a/v5.5.x/.doctrees/testing.doctree and b/v5.5.x/.doctrees/testing.doctree differ diff --git a/v5.5.x/.doctrees/timing.doctree b/v5.5.x/.doctrees/timing.doctree index 67945ad52..465a0b498 100644 Binary files a/v5.5.x/.doctrees/timing.doctree and b/v5.5.x/.doctrees/timing.doctree differ diff --git a/v5.5.x/.doctrees/topo.doctree b/v5.5.x/.doctrees/topo.doctree index 5515d1d3b..c53ce910d 100644 Binary files a/v5.5.x/.doctrees/topo.doctree and b/v5.5.x/.doctrees/topo.doctree differ diff --git a/v5.5.x/.doctrees/topotools.doctree b/v5.5.x/.doctrees/topotools.doctree index aadac1b11..7ee97c43a 100644 Binary files a/v5.5.x/.doctrees/topotools.doctree and b/v5.5.x/.doctrees/topotools.doctree differ diff --git a/v5.5.x/.doctrees/topotools_module.doctree b/v5.5.x/.doctrees/topotools_module.doctree index a32f9b30a..130a571dd 100644 Binary files a/v5.5.x/.doctrees/topotools_module.doctree and b/v5.5.x/.doctrees/topotools_module.doctree differ diff --git a/v5.5.x/.doctrees/trouble.doctree b/v5.5.x/.doctrees/trouble.doctree index de0dd801e..402491c11 100644 Binary files a/v5.5.x/.doctrees/trouble.doctree and b/v5.5.x/.doctrees/trouble.doctree differ diff --git a/v5.5.x/.doctrees/tsunamidata.doctree b/v5.5.x/.doctrees/tsunamidata.doctree index 63c5dc869..3d1d5c03a 100644 Binary files a/v5.5.x/.doctrees/tsunamidata.doctree and b/v5.5.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.5.x/.doctrees/user_routines.doctree b/v5.5.x/.doctrees/user_routines.doctree index d2c2ebc3c..0bf5148a7 100644 Binary files a/v5.5.x/.doctrees/user_routines.doctree and b/v5.5.x/.doctrees/user_routines.doctree differ diff --git a/v5.5.x/.doctrees/visit_plotting.doctree b/v5.5.x/.doctrees/visit_plotting.doctree index 0fb49ecc3..72e19ff26 100644 Binary files a/v5.5.x/.doctrees/visit_plotting.doctree and b/v5.5.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.5.x/.doctrees/vm.doctree b/v5.5.x/.doctrees/vm.doctree index 23f198f40..eec85b954 100644 Binary files a/v5.5.x/.doctrees/vm.doctree and b/v5.5.x/.doctrees/vm.doctree differ diff --git a/v5.5.x/.doctrees/wp_algorithms.doctree b/v5.5.x/.doctrees/wp_algorithms.doctree index ce8fc2496..fb9091734 100644 Binary files a/v5.5.x/.doctrees/wp_algorithms.doctree and b/v5.5.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.5.x/amrclaw.html b/v5.5.x/amrclaw.html index 61302cec6..9440da3a6 100644 --- a/v5.5.x/amrclaw.html +++ b/v5.5.x/amrclaw.html @@ -107,7 +107,7 @@

        Navigation

        Matlab tools from Clawpack 4.3 can still be used, see Plotting using Matlab.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/amrclaw.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/amrclaw.rst, line 36)

        toctree contains reference to nonexisting document ‘amrclaw/amrclaw_advection_2d_square’

        diff --git a/v5.5.x/b4step_defaults.html b/v5.5.x/b4step_defaults.html index 49d4c050f..2ef7e95ac 100644 --- a/v5.5.x/b4step_defaults.html +++ b/v5.5.x/b4step_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/b4step1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 19)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 19)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 25)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 25)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/b4step3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 31)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 31)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 49)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/b4step_defaults.rst, line 49)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

        diff --git a/v5.5.x/contents.html b/v5.5.x/contents.html index f9837afa2..0e9b36158 100644 --- a/v5.5.x/contents.html +++ b/v5.5.x/contents.html @@ -278,7 +278,7 @@

        PyClawRiemann

        All Clawpack packages make use of the same collection of Riemann solvers.

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/contents.rst, line 123)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/contents.rst, line 123)

        toctree contains reference to nonexisting document ‘riemann/Shallow_water_Riemann_solvers’

      • clawpack.geoclaw.topotools (module)
      • -
      - +
      • clawpack.pyclaw.limiters.tvd (module)
      • clawpack.pyclaw.util (module) +
      • +
      • clawpack.riemann.acoustics_1D_py (module) +
      • +
      • clawpack.riemann.advection_1D_py (module) +
      • +
      • clawpack.riemann.burgers_1D_py (module) +
      • +
      • clawpack.riemann.euler_1D_py (module) +
      • +
      • clawpack.riemann.shallow_1D_py (module)
      • ClawPlotAxes (built-in class)
      • @@ -330,6 +346,16 @@

        D

        E

        + @@ -353,10 +379,12 @@

        F

      • fetch_noaa_tide_data() (in module clawpack.geoclaw.util)
      • fetch_topo_url() (in module clawpack.geoclaw.topotools) +
      • +
      • fgmax2kml() (in module clawpack.geoclaw.kmltools)
      • + - + + + + + + + + + + + + + + +
      • setup_gauge_files() (clawpack.pyclaw.geometry.Grid method) +
      • +
      • shallow_exact_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_fwave_1d() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_hll_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_roe_1D() (in module clawpack.riemann.shallow_1D_py)
      • SharpClawSolver (class in clawpack.pyclaw.sharpclaw.solver)
      • @@ -906,12 +942,12 @@

        S

      • slip (clawpack.geoclaw.dtopotools.SubFault attribute)
      • +
        • solver (clawpack.pyclaw.controller.Controller attribute)
        • source_split (clawpack.petclaw.geometry.Domain attribute) diff --git a/v5.5.x/geoclaw.html b/v5.5.x/geoclaw.html index 3b3e33ffc..231c2a87c 100644 --- a/v5.5.x/geoclaw.html +++ b/v5.5.x/geoclaw.html @@ -110,15 +110,15 @@

          Navigation

          Some sample calculations can be viewed in the gallery_geoclaw. More will eventually appear in the Clawpack Applications repository.

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          toctree contains reference to nonexisting document ‘geoclaw/topotools_examples’

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          toctree contains reference to nonexisting document ‘geoclaw/dtopotools_examples’

          -

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          +

          System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/geoclaw.rst, line 36)

          toctree contains reference to nonexisting document ‘geoclaw/Okada’

          diff --git a/v5.5.x/geoclaw_util_module.html b/v5.5.x/geoclaw_util_module.html index 5bfcbea8f..5d390540f 100644 --- a/v5.5.x/geoclaw_util_module.html +++ b/v5.5.x/geoclaw_util_module.html @@ -112,7 +112,7 @@

          Navigation

          Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          Unexpected indentation.

          diff --git a/v5.5.x/kmltools_module.html b/v5.5.x/kmltools_module.html index 011e004a3..bfa483b48 100644 --- a/v5.5.x/kmltools_module.html +++ b/v5.5.x/kmltools_module.html @@ -110,6 +110,7 @@

          Navigation

        • topo2kml - create a kml outline for each topo grid specified in setrun

        • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

        • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

        • +
        • fgout2kml - create a kml outline for each fgout grid specified in setrun

        • make_input_data_kmls - make kml files for many things specified in setrun

        • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

        • png2kml - create kml file wrapping a png figure to be viewed on GE

        • @@ -189,6 +190,28 @@

          Navigation

          +
          +
          +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
          +

          Create a KML box for each fgout grid specified for a GeoClaw run.

          +
          +
          Inputs
          +
            +
          • rundata - an object of class ClawRunData or None

            +

            If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

            +
          • +
          • fname (str) - resulting kml file.

          • +
          • verbose (bool) - If True, print out info about each region found

          • +
          • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

          • +
          +
          +
          +
          +
          clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
          @@ -336,7 +359,7 @@

          Navigation

          Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          Unexpected indentation.

          @@ -344,7 +367,7 @@

          Navigation

          dpi * y_inches = dcp * y_cells

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          Block quote ends without a blank line; unexpected unindent.

          where x_cells, y_cells are the number of cells in each direction.

          @@ -354,14 +377,14 @@

          Navigation

          annotate the figure befor saving it as a png file, which should then be done with:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          Unexpected indentation.

          plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          Block quote ends without a blank line; unexpected unindent.

          The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          Field list ends without a blank line; unexpected unindent.

          If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.5.x/objects.inv b/v5.5.x/objects.inv index b118b8f67..3dfac94cb 100644 Binary files a/v5.5.x/objects.inv and b/v5.5.x/objects.inv differ diff --git a/v5.5.x/py-modindex.html b/v5.5.x/py-modindex.html index d4a625db4..7f8a56e9d 100644 --- a/v5.5.x/py-modindex.html +++ b/v5.5.x/py-modindex.html @@ -138,6 +138,31 @@

          Python Module Index

            clawpack.pyclaw.util
            + clawpack.riemann.acoustics_1D_py +
            + clawpack.riemann.advection_1D_py +
            + clawpack.riemann.burgers_1D_py +
            + clawpack.riemann.euler_1D_py +
            + clawpack.riemann.shallow_1D_py +
        diff --git a/v5.5.x/pyclaw/index.html b/v5.5.x/pyclaw/index.html index 5f002a6b9..64fc3cd52 100644 --- a/v5.5.x/pyclaw/index.html +++ b/v5.5.x/pyclaw/index.html @@ -138,7 +138,7 @@

        Features

        PyClaw Documentation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/pyclaw/index.rst, line 68)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/pyclaw/index.rst, line 68)

        toctree contains reference to nonexisting document ‘gallery/pyclaw/gallery/gallery_all’

        diff --git a/v5.5.x/pyclaw/rp.html b/v5.5.x/pyclaw/rp.html index 2bc64300a..b024bc37a 100644 --- a/v5.5.x/pyclaw/rp.html +++ b/v5.5.x/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/v5.5.x/qinit_defaults.html b/v5.5.x/qinit_defaults.html index e034e6ffd..740e7f060 100644 --- a/v5.5.x/qinit_defaults.html +++ b/v5.5.x/qinit_defaults.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        @@ -86,17 +86,17 @@

        Navigation

        the initial conditions as desired.

        $CLAW/classic/src/1d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/2d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/3d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

        @@ -107,7 +107,7 @@

        Navigation

        qinit data file parameters.

        $CLAW/geoclaw/src/2d/shallow/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/qinit_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

        diff --git a/v5.5.x/release_5_0_0.html b/v5.5.x/release_5_0_0.html index b8161854b..af6941808 100644 --- a/v5.5.x/release_5_0_0.html +++ b/v5.5.x/release_5_0_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_0_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_0_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_1_0.html b/v5.5.x/release_5_1_0.html index 3c7ac6eaa..697d84b39 100644 --- a/v5.5.x/release_5_1_0.html +++ b/v5.5.x/release_5_1_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_1_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_1_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_2_0.html b/v5.5.x/release_5_2_0.html index f13f1946d..b15fe002d 100644 --- a/v5.5.x/release_5_2_0.html +++ b/v5.5.x/release_5_2_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_2_1.html b/v5.5.x/release_5_2_1.html index 96a9db135..e06edcc07 100644 --- a/v5.5.x/release_5_2_1.html +++ b/v5.5.x/release_5_2_1.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_1.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_1.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_2_2.html b/v5.5.x/release_5_2_2.html index 7b3fa9adf..2ca1ba7c4 100644 --- a/v5.5.x/release_5_2_2.html +++ b/v5.5.x/release_5_2_2.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_2.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_2_2.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_3_0.html b/v5.5.x/release_5_3_0.html index e59d25b51..d8ba8f85a 100644 --- a/v5.5.x/release_5_3_0.html +++ b/v5.5.x/release_5_3_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_3_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_3_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/release_5_3_1.html b/v5.5.x/release_5_3_1.html index 8578472b8..4e08ed088 100644 --- a/v5.5.x/release_5_3_1.html +++ b/v5.5.x/release_5_3_1.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_3_1.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/release_5_3_1.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.5.x/searchindex.js b/v5.5.x/searchindex.js index d726cc7ce..ce7c0be45 100644 --- a/v5.5.x/searchindex.js +++ b/v5.5.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[54,1,0,"-"],topotools:[137,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[54,3,1,""],deg2dms:[54,3,1,""],dtopo2kml:[54,3,1,""],f2s:[54,3,1,""],fgmax2kml:[54,3,1,""],gauges2kml:[54,3,1,""],kml_build_colorbar:[54,3,1,""],kml_cb:[54,3,1,""],kml_png:[54,3,1,""],kml_timespan:[54,3,1,""],line2kml:[54,3,1,""],make_input_data_kmls:[54,3,1,""],pcolorcells_for_kml:[54,3,1,""],png2kml:[54,3,1,""],poly2kml:[54,3,1,""],quad2kml:[54,3,1,""],regions2kml:[54,3,1,""],topo2kml:[54,3,1,""],topo2kmz:[54,3,1,""]},"clawpack.geoclaw.surge":{storm:[131,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[131,5,1,""],Storm:[131,0,1,""],available_formats:[131,3,1,""],available_models:[131,3,1,""],fill_rad_w_other_source:[131,3,1,""],make_multi_structure:[131,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[131,2,1,""],plot:[131,2,1,""],read:[131,2,1,""],read_atcf:[131,2,1,""],read_geoclaw:[131,2,1,""],read_hurdat:[131,2,1,""],read_ibtracs:[131,2,1,""],read_imd:[131,2,1,""],read_jma:[131,2,1,""],read_tcvitals:[131,2,1,""],write:[131,2,1,""],write_atcf:[131,2,1,""],write_geoclaw:[131,2,1,""],write_hurdat:[131,2,1,""],write_imd:[131,2,1,""],write_jma:[131,2,1,""],write_tcvitals:[131,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[137,0,1,""],create_topo_func:[137,3,1,""],determine_topo_type:[137,3,1,""],fetch_topo_url:[137,3,1,""],get_topo:[137,3,1,""],read_netcdf:[137,3,1,""],swapheader:[137,3,1,""],topo1writer:[137,3,1,""],topo2writer:[137,3,1,""],topo3writer:[137,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[137,2,1,""],Y:[137,2,1,""],Z:[137,2,1,""],crop:[137,2,1,""],delta:[137,2,1,""],extent:[137,2,1,""],generate_2d_coordinates:[137,2,1,""],generate_2d_topo:[137,2,1,""],in_poly:[137,2,1,""],interp_unstructured:[137,2,1,""],make_shoreline_xy:[137,2,1,""],plot:[137,2,1,""],read:[137,2,1,""],read_header:[137,2,1,""],replace_no_data_values:[137,2,1,""],replace_values:[137,2,1,""],set_xyZ:[137,2,1,""],smooth_data:[137,2,1,""],write:[137,2,1,""],x:[137,2,1,""],y:[137,2,1,""],z:[137,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.petclaw.geometry":{Domain:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[83,4,1,""],fwave:[83,4,1,""],kernel_language:[83,4,1,""],mthlim:[83,4,1,""],order:[83,4,1,""],source_split:[83,4,1,""],step_source:[83,4,1,""],transverse_waves:[83,4,1,""],verbosity:[83,4,1,""]},"clawpack.petclaw.state":{State:[95,0,1,""]},"clawpack.petclaw.state.State":{F:[95,2,1,""],aux:[95,2,1,""],fset:[95,2,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,2,1,""],problem_data:[95,4,1,""],q:[95,2,1,""],set_num_ghost:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw":{util:[98,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[93,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[93,4,1,""],kernel_language:[93,4,1,""],mthlim:[93,4,1,""],order:[93,4,1,""],setup:[93,2,1,""],source_split:[93,4,1,""],step:[93,2,1,""],step_hyperbolic:[93,2,1,""],step_source:[93,4,1,""],verbosity:[93,4,1,""]},"clawpack.pyclaw.controller":{Controller:[80,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[80,4,1,""],F_path:[80,2,1,""],check_validity:[80,2,1,""],compute_F:[80,4,1,""],compute_p:[80,4,1,""],file_prefix_p:[80,4,1,""],frames:[80,4,1,""],keep_copy:[80,4,1,""],nstepout:[80,4,1,""],num_output_times:[80,4,1,""],out_times:[80,4,1,""],outdir:[80,4,1,""],outdir_p:[80,2,1,""],output_file_prefix:[80,4,1,""],output_format:[80,4,1,""],output_options:[80,4,1,""],output_style:[80,4,1,""],overwrite:[80,4,1,""],plot:[80,2,1,""],plotdata:[80,4,1,""],run:[80,2,1,""],rundir:[80,4,1,""],runmake:[80,4,1,""],savecode:[80,4,1,""],solver:[80,4,1,""],tfinal:[80,4,1,""],verbosity:[80,2,1,""],viewable_attributes:[80,4,1,""],write_aux_always:[80,4,1,""],write_aux_init:[80,4,1,""],xclawcmd:[80,4,1,""],xclawerr:[80,4,1,""],xclawout:[80,4,1,""],xdir:[80,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[86,1,0,"-"],netcdf:[86,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[86,3,1,""],read_array:[86,3,1,""],read_patch_header:[86,3,1,""],read_t:[86,3,1,""],write:[86,3,1,""],write_array:[86,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[86,3,1,""],write:[86,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[83,0,1,""],Domain:[83,0,1,""],Grid:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[83,2,1,""],centers_with_ghost:[83,2,1,""],delta:[83,2,1,""],nodes:[83,2,1,""],nodes_with_ghost:[83,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[83,2,1,""],num_dim:[83,2,1,""],patch:[83,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[83,2,1,""],add_gauges:[83,2,1,""],c_center:[83,2,1,""],c_centers:[83,2,1,""],c_centers_with_ghost:[83,2,1,""],c_nodes:[83,2,1,""],c_nodes_with_ghost:[83,2,1,""],dimensions:[83,2,1,""],gauge_dir_name:[83,4,1,""],gauge_file_names:[83,4,1,""],gauge_files:[83,4,1,""],gauges:[83,4,1,""],get_dim_attribute:[83,2,1,""],num_dim:[83,2,1,""],p_center:[83,2,1,""],p_centers:[83,2,1,""],p_nodes:[83,2,1,""],plot:[83,2,1,""],setup_gauge_files:[83,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[83,2,1,""],delta:[83,2,1,""],dimensions:[83,2,1,""],get_dim_attribute:[83,2,1,""],level:[83,4,1,""],lower_global:[83,2,1,""],name:[83,2,1,""],num_cells_global:[83,2,1,""],num_dim:[83,2,1,""],patch_index:[83,4,1,""],upper_global:[83,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[81,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[81,3,1,""],beta_limiter:[81,3,1,""],cada_torrilhon_limiter:[81,3,1,""],cada_torrilhon_limiter_nonlinear:[81,3,1,""],cfl_superbee:[81,3,1,""],cfl_superbee_theta:[81,3,1,""],hyperbee_limiter:[81,3,1,""],limit:[81,3,1,""],mc_limiter:[81,3,1,""],minmod_limiter:[81,3,1,""],superbee_limiter:[81,3,1,""],superpower_limiter:[81,3,1,""],theta_limiter:[81,3,1,""],upper_bound_limiter:[81,3,1,""],van_leer_klein_sharpening_limiter:[81,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[93,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[93,2,1,""],aux_time_dep:[93,4,1,""],call_before_step_each_stage:[93,4,1,""],cfl_desired:[93,4,1,""],cfl_max:[93,4,1,""],char_decomp:[93,4,1,""],check_3rd_ord_cond:[93,2,1,""],dq:[93,2,1,""],dq_src:[93,4,1,""],dqdt:[93,2,1,""],fwave:[93,4,1,""],get_dt_new:[93,2,1,""],kernel_language:[93,4,1,""],lim_type:[93,4,1,""],num_ghost:[93,4,1,""],setup:[93,2,1,""],step:[93,2,1,""],tfluct:[93,4,1,""],tfluct_solver:[93,4,1,""],time_integrator:[93,4,1,""],update_saved_values:[93,2,1,""],weno_order:[93,4,1,""]},"clawpack.pyclaw.solution":{Solution:[92,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[92,2,1,""],patch:[92,2,1,""],plot:[92,2,1,""],read:[92,2,1,""],set_all_states:[92,2,1,""],start_frame:[92,2,1,""],state:[92,2,1,""],write:[92,2,1,""]},"clawpack.pyclaw.state":{State:[95,0,1,""]},"clawpack.pyclaw.state.State":{F:[95,4,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],is_valid:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,4,1,""],problem_data:[95,4,1,""],set_aux_from_auxbc:[95,2,1,""],set_cparam:[95,2,1,""],set_num_ghost:[95,2,1,""],set_q_from_qbc:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[98,0,1,""],VerifyError:[98,5,1,""],add_parent_doc:[98,3,1,""],check_diff:[98,3,1,""],compile_library:[98,3,1,""],construct_function_handle:[98,3,1,""],convert_fort_double_to_float:[98,3,1,""],gen_variants:[98,3,1,""],read_data_line:[98,3,1,""],run_app_from_main:[98,3,1,""],run_serialized:[98,3,1,""],test_app:[98,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[98,2,1,""],increment:[98,2,1,""],reset_counter:[98,2,1,""],set_counter:[98,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":65,"000000e":124,"00000e":124,"0000ff":[3,54],"001000e":124,"00er2592":4,"00ff00":54,"00ffff":54,"01er25474":4,"020204mag_polici":29,"04d":141,"0_contain":28,"0_dockerimag":28,"0d0":98,"10k":115,"1200x1680":47,"1440l":47,"1440p":47,"15e":137,"16m":64,"17th":93,"1d_plot":[40,70,72,121],"1drad":140,"1rc":50,"1st":[81,93,122,124,126,140],"2013it":15,"2018300n26315":131,"25000000e":65,"260e":134,"27t06":54,"27t07":54,"288e":134,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[85,90,93,122,124,126,140],"301e":134,"30x30":47,"34kt":131,"360x360":47,"373e":134,"3rd":[90,93],"40000000e":65,"4th":93,"50kt":131,"5_x_x":50,"5d0":140,"5e3":125,"5r01ar53652":4,"639s":[34,133],"64kt":131,"8888ff":54,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,86,122,123,125],"break":[27,29,44,47,54,63,105,112,125,137],"case":[5,7,12,14,18,21,29,31,37,40,44,47,53,54,57,60,63,70,77,83,86,88,90,92,98,100,104,105,108,111,112,113,114,115,116,118,125,131,135,137,138,140,143],"catch":[36,85],"class":[0,1,2,3,24,29,31,47,54,63,70,72,78,83,85,90,92,93,95,97,98,99,116,121,122,123,124,125,126,137],"default":[0,1,2,3,12,21,27,29,31,37,40,43,45,46,47,48,51,53,54,56,57,60,63,64,70,72,77,80,82,83,86,87,88,89,92,93,95,96,98,104,107,113,116,118,123,124,125,131,135,137,140],"export":[37,47,49,51,52,53,60,64,88,96,120],"final":[29,37,49,60,63,77,80,87,97,102,107,116,122,124,126,137],"float":[3,29,31,40,43,54,80,83,95,98,122,123,125,126,131,137],"function":[0,1,2,3,6,13,15,21,22,24,26,27,29,31,40,41,46,47,48,56,57,58,61,63,69,70,71,77,78,80,81,82,83,84,86,89,90,91,92,95,98,104,105,107,108,111,112,113,114,115,117,119,121,122,123,124,125,126,131,135,136,137,138,140],"import":[0,3,21,27,35,40,44,47,48,51,53,54,57,58,63,66,70,72,77,78,80,82,83,85,86,87,88,89,90,92,93,94,95,97,99,105,113,117,118,122,123,124,125,126,135,137,139,141],"int":[1,2,3,29,54,80,81,83,86,87,92,95,122,123,125,131,137],"long":[27,29,43,44,47,62,112,137],"new":[1,2,4,5,7,12,17,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,50,53,54,56,57,58,60,64,70,72,73,76,77,78,79,80,86,88,90,93,95,102,104,107,110,111,112,113,114,115,116,117,120,122,123,125,131,135,137,140],"ond\u0159ej":4,"public":[4,12,16,20],"return":[0,1,2,3,29,35,43,47,54,57,60,70,72,80,81,83,86,87,90,91,92,93,95,98,105,114,117,122,124,126,131,133,137,140,143],"short":[44,90],"static":[29,63,115],"super":[22,27,115,137],"switch":[31,47,51,53,90,100,105,114,118,139],"throw":27,"true":[0,1,2,3,5,13,14,26,29,40,43,46,47,49,54,69,77,80,83,86,87,88,92,93,95,104,113,116,117,119,122,123,124,125,126,131,137],"try":[1,27,33,34,35,40,47,48,53,54,70,79,82,85,86,92,94,96,97,98,99,100,105,122,133,137,138],"var":[0,3,12,13,26,101,119,129,130,131],"while":[12,14,29,47,60,63,70,72,78,83,87,88,93,98,115,117,125,139],AND:[55,75],ARE:[55,75],AWS:[12,51],Added:[81,107,109,111,112,114],Adding:[24,76,84],And:[5,19,49,51],Are:106,Axes:[121,131],BCs:[124,126],BUT:[55,75],But:[12,47,49,70,96,108,115],CMS:4,DAs:95,DMS:4,DNS:12,Doing:63,EBS:12,FOR:[55,75],For:[0,1,2,3,6,7,8,9,12,13,14,16,17,18,21,24,25,26,27,29,31,33,35,37,40,43,44,45,47,48,49,50,51,53,56,57,60,61,63,64,69,70,72,73,77,78,82,83,85,86,87,88,90,93,94,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,121,122,123,124,125,126,128,129,130,131,132,134,135,137,139,140,143],GIS:[47,113,135],Going:[12,24,85],Ike:102,Into:99,NOT:[54,55,70,75],Not:[29,47,83,113],OPS:43,One:[22,24,25,29,47,60,78,98,104,111,137],Res:15,SUCH:[55,75],Such:60,Sys:15,THE:[55,75],That:[33,35,97,135],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,49,51,52,53,54,55,56,57,58,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,80,81,83,85,86,87,88,90,91,92,93,94,95,96,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143],Their:75,Then:[12,14,27,28,29,40,49,50,52,57,63,64,72,77,80,88,94,95,96,100,117,137,138],There:[3,5,12,21,28,31,34,36,47,56,63,65,72,87,94,102,114,115,121,122,132,133,140,142],These:[1,4,11,14,17,22,27,29,31,38,40,44,47,49,51,54,57,60,70,72,77,82,86,87,89,95,97,101,103,104,105,107,113,114,115,116,123,127,131,132,135,139,143],USE:[55,75],Use:[29,47,85,93,115,122,124,126,135,137],Useful:[1,3,122],Uses:[29,137],Using:[0,1,2,3,6,21,37,38,47,48,51,68,69,70,72,73,83,84,85,122,129,130,134,137,138,143],WCS:139,Will:92,With:[5,21,27,40,45,47,66,99,104,112,117,122],__________________o:137,__file__:100,__future__:113,__init__:[50,90,100],__main__:[124,126],__name__:[124,126],_build:49,_compute_c_cent:83,_compute_c_nod:83,_compute_p_cent:83,_compute_p_nod:83,_fillvalu:86,_googleearth:47,_outdir:87,_output2:[70,72],_output:[12,33,34,40,46,60,70,72,82,87,89,92,112,138],_output_from_previous_run:40,_output_new:105,_output_old:105,_plot:[12,33,34,40,60,72,121,127],_plotindex:[1,40],_plots_new:105,_plots_old:105,_ptwise:117,_pyclaw_io:80,_storm_modul:132,_subpackag:100,_surge_modul:102,a351:[15,85],a377:[15,85],aabbggrr:54,abdullah:[4,75],abil:[37,111,113,131,137],abl:[12,100],abort:56,about:[3,6,12,14,21,24,33,34,36,43,44,48,54,56,58,60,65,71,73,77,85,88,93,100,105,112,117,121,124,125,135,138,140,143],aboutu:29,abov:[3,12,14,19,27,28,31,33,34,36,37,40,44,47,48,49,50,51,53,55,57,63,65,70,73,75,78,87,89,94,97,98,99,104,113,115,117,120,121,122,124,125,126,131,134,135,137,140],abs:[29,90,98,137],absolut:[87,105,115,123,124],absolute_import:113,abstol:98,academ:[96,99],accept:[40,77,87,93,122],accept_reject_step:93,access:[0,15,26,51,53,82,83,85,93,95,98],accid:27,accident:[27,70],accompani:[17,20],accomplish:56,accord:[5,48],accordingli:[47,135],account:[12,23,27,50,79,88],accumul:[40,113,116],accur:[44,63,85,93,122,140,143],accuraci:[40,58,66,124,126],achiev:[19,78,129,130],acou:70,acoust:[14,33,34,44,76,77,80,82,85,93,94,111,117,124,140],acoustics1dheterogeneoustest:[34,133],acoustics3dheterogeneoustest:[34,133],acoustics_1d:[77,97],acoustics_1d_example1:[33,34,62],acoustics_1d_heterogen:[34,133,140],acoustics_1d_homogen:[82,105],acoustics_2d:93,acoustics_2d_radi:[124,140],acoustics_3d_heterogen:[34,133],acoustics_3d_vari:105,acquaint:97,acquir:70,across:[113,135,137],acsza1:29,acszb1:29,act:[81,137],acta:15,actanum2011:15,action:[12,78],activ:[31,32,93,102,125],actual:[5,26,29,48,53,54,60,63,70,81,86,98,102,118,125],adapt:[4,6,15,29,48,60,66,77,115,117,121,122,140],add:[0,10,12,14,15,26,27,29,31,40,43,47,49,50,53,57,60,61,63,69,77,82,83,87,88,90,98,108,111,113,114,115,126,131,135,137,141],add_colorbar:[29,137],add_colormap:112,add_dimens:83,add_gaug:[83,87],add_label:40,add_param:[124,126],add_parent_doc:98,add_titl:70,add_true_solut:70,added:[3,14,19,21,27,31,32,43,48,50,53,54,58,60,70,83,87,100,102,104,107,108,110,111,112,113,114,115,116,122,123,125,131,134,137,141],addgaug:40,adding:[21,26,27,31,37,40,54,63,88,101,112,114],addit:[6,12,14,22,24,27,28,31,34,35,41,42,51,53,54,63,65,66,70,71,78,81,83,85,87,93,94,95,102,104,111,113,114,115,117,122,126,131,134,135,140,141],addition:[88,131],address:[47,49,113],adequ:44,adjac:[5,14,31,41,104,122],adjoint:115,adjust:[12,19,31,49,54,83,87,118,122,140],adopt:[29,93],adv:15,advanc:[5,15,64,97,112,122,140],advantag:[69,86,105],advect:[15,70,85,88,117,126,140],advection2dannulustest:[34,133],advection_1d_example1:57,advection_2d_annulu:[34,133],advection_2d_inflow:111,advection_2d_swirl:140,advection_3d_swirl:[111,134],advis:[32,55,75],affect:[21,56,113,114,122,135,138],afosr:4,after:[0,1,3,5,12,18,22,26,27,28,31,33,34,40,44,49,50,52,54,56,57,60,61,65,70,78,79,80,82,87,93,95,100,105,107,111,112,122,123,124,126,131,140],afterax:[0,26,40,47,70],afterfram:[1,26,69],aftergrid:60,afteritem:[3,26],afterpatch:[3,26],again:[21,36,56,63,70,72,77,78,87,91,96,100,115,135,138],against:[98,105,112,133],agenc:[4,53,131,132],agency_pref:131,agre:[11,27,48,117,134,137,140],agreement:44,ahmadia:[4,15,75,85],aht:118,aid:78,aim:27,aks2203:4,albada:81,alg:124,alghamdi:[4,15,75,85],algorithm:[4,6,24,31,77,83,85,86,93,97,104,115,117,122,124,126,137],align:[31,47,54,125],all:[0,1,4,5,10,12,14,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,48,49,50,51,52,54,55,56,57,60,62,63,64,65,66,69,70,72,73,75,77,80,81,83,86,87,88,90,91,92,93,95,98,99,100,103,104,105,107,108,111,112,113,115,116,117,121,122,124,125,126,127,132,133,134,135,137,138,140],alloc:[19,93,111],allocat:111,allot:54,allow:[4,5,12,21,26,27,28,31,40,41,43,46,47,48,49,51,53,58,60,63,64,66,69,70,80,86,87,93,95,98,99,100,105,107,108,111,112,113,114,115,117,122,124,125,126,127,131,135,137,139],almost:99,alon:[14,47],along:[5,14,26,29,31,40,47,61,63,100,104,111,116,125,131,139],alpha:[47,50,93],alphabet:75,alreadi:[0,1,5,12,17,27,37,50,51,52,53,54,72,73,88,92,94,97,99,108,137],also:[3,4,5,6,7,8,10,14,15,16,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,53,54,56,57,60,61,63,64,65,66,69,70,72,74,77,79,80,83,85,86,87,88,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,112,113,114,115,116,117,118,120,122,124,125,126,127,129,130,131,132,133,134,135,137,138,139,140,142,143],alter:47,altern:[29,31,33,34,40,43,47,52,56,60,69,85,88,99,100,111,112,113],although:[29,47,57,60,89,90,92,137],alwai:[14,21,25,26,27,31,37,48,53,60,77,86,103,104,107,108,124,125,126,135,140],amal:[4,15,75,85],amazon:24,amazonaw:12,amdq:[91,117],ami:24,amount:[40,44,49],amplitud:113,amr:[4,6,7,14,19,22,24,26,27,31,32,40,41,54,60,65,66,69,75,83,112,114,115,121,122,124,126,134,140],amr_2d:115,amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:112,amr_level:65,amr_level_max:124,amr_levels_max:[31,104,123,124],amr_modul:[64,111],amrclaw:[4,5,11,13,14,18,19,21,22,23,27,34,37,40,41,42,50,51,52,53,60,61,64,65,66,94,100,101,104,105,116,117,119,120,122,125,129,130,133,134,138],amrclaw_advection_2d_squar:6,amrdata:[21,104,123,124,125],amrlib:111,amrnez:104,an11:49,anaconda:[47,73,85,94,99],anal:15,analog:[122,123],andi:4,angl:[14,29,43,63],ani:[3,4,5,7,12,14,17,18,19,21,26,27,31,33,34,35,41,44,46,47,49,50,51,53,55,56,58,60,62,64,65,66,70,75,81,82,83,85,86,87,88,90,92,94,98,100,103,104,105,111,115,116,118,121,122,123,125,131,140,143],anim:[14,47,111,127],anisotrop:[5,21],anl:88,annot:[26,54],annual:23,anoth:[3,21,40,47,50,52,53,54,65,69,73,82,93,96,105,115,131,140],answer:23,anyth:[3,5,27,51,53,57,105,115],aoml:131,apach:12,apdq:[91,117],api:[43,115],app:[11,12,17,22,25,27,28,31,35,38,63,102,103,110,114,115],appar:[29,64],appeal:47,appear:[0,1,3,7,12,17,22,31,40,41,47,49,52,54,56,59,70,87,92,95,113,125,127,135],append:[19,40,47,70,80,92,104,112,113,116,117,124],appl:15,appli:[3,4,5,12,14,24,29,44,47,48,58,63,70,72,81,83,86,93,104,116,122,125,140],applic:[4,5,13,14,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,50,51,53,57,61,64,72,82,83,84,87,93,98,101,103,104,105,107,110,111,113,114,115,117,119,122,125,129,130,135,137,138,140,141],appreci:75,approach:[6,12,27,40,49,51,62,69,78,88,90,98,104,111,113,114,117,121,125,140,143],appropri:[4,5,12,14,23,27,41,44,45,47,50,51,53,54,58,60,61,62,64,77,80,81,82,86,88,89,90,91,92,105,117,118,120,122,131,140,143],approv:44,approxim:[5,14,44,47,63],april:23,apt:[12,99],arbitrari:[31,54,93,107,125],arc:118,arcgi:137,architectur:88,archiv:[11,20,34,47,50,105,127,133,137,139],arcminut:[63,135],arcsecond:135,area:[13,21,93,102,113,119],arg:[83,92],argument:[0,1,2,3,26,29,43,46,47,48,70,77,78,82,83,86,90,92,93,95,98,105,115,117,121,122,123,131,137,140],argv:[124,126],aris:[55,75],arithmet:58,aron:[4,15,75,85],arora:81,arora_ro:81,around:[5,29,31,54,86,102,105,123,124,131,137,140],arrai:[0,3,5,13,19,21,26,29,31,40,43,45,48,54,70,77,78,80,81,83,85,86,87,90,91,92,93,95,97,98,99,107,108,109,113,115,117,119,122,123,124,125,126,131,135,137,140],arrang:137,arriv:[21,31,32,41,113,118],arrival_tol:31,articl:[4,15,85,127],artifici:14,asc:137,ascii:[40,48,60,77,80,87,92,113,116,122,124,126,135,141],ascii_output_format:61,ask:23,ask_us:137,aspect:[44,45,60,137],assembl:52,assert:[124,126],assess:[44,118],assign:[29,31,77,80,86,92],assist:[21,31],associ:[0,1,2,5,21,47,53,64,83,86,87,105],assum:[3,19,21,29,34,43,44,47,48,49,50,54,60,63,69,86,87,89,90,97,98,104,111,118,122,125,131,132,135,137,139,143],assumpt:47,astronom:118,atcf:[102,115,131,132],aterrel:4,atmospher:4,attach:[50,86,95],attempt:[7,10,19,33,34,56,86,92,98,105,107,131,137,138],attirbut:21,attr:[83,92],attribut:[6,21,29,40,63,69,71,72,77,80,83,86,88,90,92,93,104,107,112,116,121,122,123,125,131,137],attributeerror:70,aug:15,august:[16,17,23,115],austin:4,author:[15,24,41,44,81,85,86,103],auto:[0,40,78],autom:[78,105],automat:[0,2,3,7,10,14,29,33,34,37,47,50,56,69,70,72,77,82,86,88,94,95,96,98,105,107,122,123,125,135],aux1:31,aux1d:140,aux:[5,13,19,21,26,31,40,48,78,85,86,87,90,92,93,95,96,107,108,113,115,117,119,122,123,124,125,126,140],aux_bc_low:90,aux_bc_upp:90,aux_l:[91,117],aux_out_field:40,aux_r:[91,117],aux_time_dep:93,aux_typ:[123,124],auxbc:[90,93,95],auxiliari:[21,78,80,86,91,93,95,117,122,124,126,140],auxillari:[86,92],auxl:117,auxr:117,auxtyp:124,avail:[0,4,9,14,21,22,23,39,40,42,44,47,51,52,53,56,60,69,71,72,77,80,85,86,87,89,91,93,96,97,98,99,100,114,117,118,122,124,125,127,131,132,135],available_format:131,available_model:131,averag:[4,5,13,15,41,44,45,48,60,95,108,117,119,135,137,140],avi:4,avoid:[31,47,54,56,60,83,87,107,108,112,113,116,122,125,143],awai:[27,118],awar:[44,88],awr11:15,axes1:[2,72],axes:[0,1,2,26,29,40,47,60,69,70,72,121,131,137],axescmd:[0,72],axesnam:[1,72],axessubplot:29,axi:[0,29,45,47,60,70,83],axxxx:86,azv:49,b0002:65,b4step1:[13,57,140],b4step2:[13,140],b4step3:13,b4stepn:140,back:[12,26,31,49,50,114],backend:47,background:[2,69,115,121],backward:[27,29,43,54,63,86,99,108,109,137],bad:[100,105],bai:[118,139],balanc:[5,15,66,114,129,130],bale:15,balelevmitross02:[4,15,122,143],ball:137,band1:137,band:[47,137],bar:[12,49,131],barrier:98,base:[5,12,19,20,21,27,29,41,43,47,48,49,54,57,58,60,63,66,78,80,81,83,85,86,91,92,93,95,97,98,104,106,111,114,118,122,123,124,125,126,131,137,140,143],base_subfault:29,baselin:47,basemap:131,bash:[37,47,51,53,60,64,88,100,120],bash_profil:[96,120],bashrc:[12,37,96,120],basi:[40,60],basic:[5,9,11,24,29,33,35,41,52,60,77,83,85,86,87,93,105,131,143],basin:102,bathymetri:[13,31,41,44,47,54,102,113,115,118,119,125,135,137],bc1:[57,98],bc1_inflow:57,bc2amr:[14,115],bc_arrai:93,bc_lower:[14,77,90,97,122,124,126],bc_upper:[14,77,90,97,122,124,126],bcn:[5,14,126,140],bcnamr:[5,14,115,122,124,140],beam:81,bear:[29,43],bearing_unit:43,becaus:[21,26,31,47,50,86,87,88,107,117,118,122],becom:[44,96,143],been:[0,1,4,7,8,12,14,17,19,20,21,23,24,26,27,31,32,33,34,38,41,44,47,48,49,50,56,58,60,63,66,70,72,75,78,80,86,87,92,95,96,97,98,100,102,104,106,107,108,110,113,114,115,116,117,122,123,125,135,137,140],befor:[1,3,4,5,27,29,31,33,34,36,37,40,48,49,50,51,53,54,56,57,60,64,72,77,80,86,88,93,95,100,104,105,107,108,117,118,122,123,125,135,137,138],before_step:93,beforefram:[1,26,115],begin:[43,54,83,87,97,131],begin_d:43,behav:40,behavior:[49,104,105,112],behaviour:77,being:[1,3,4,7,12,40,44,48,53,72,80,86,91,92,93,98,100,102,104,112,114,117,122,125,131,138,140],believ:[44,113],belki:67,belong:[70,83,88,92,95],below:[3,5,12,13,14,16,17,21,23,29,31,47,49,50,51,53,54,58,60,63,72,75,77,79,87,97,99,100,101,104,105,108,109,110,111,112,113,114,115,117,119,121,122,123,124,125,126,129,130,131,135,137,140],benchmark:44,beowulf:52,berger:[4,5,15],bergercalhounhelzellevequ:14,bergercolella89:[5,15],bergergeorgelevequemandli11:[4,15],bergerleveque98:[4,5,6,15],bergeroliger84:[5,15],bergerrigoutsis91:[5,15],berkelei:[4,55,75],best:[3,14,21,25,27,37,47,48,50,56,62,64,69,70,86,90,102,103,104,105,115,117,125,128,131,135,140],besttrack:131,beta:[43,81,93,126],beta_limit:81,better:[0,5,21,31,40,60,64,65,69,93,102,112,113,114,125],between:[3,4,5,12,14,22,24,27,29,30,43,47,50,51,54,60,63,64,66,69,80,83,87,93,95,96,98,100,104,112,113,117,118,122,123,124,125,126,127,131,134,135,137,139,140],bewar:[100,137],beyond:[5,29,115],bgr:54,bibliographi:4,bibtex:4,big:86,big_earthquak:29,biggest:85,bilinear:[5,31,40,48,107,108,135],bin:88,binari:[37,50,52,55,61,75,86,87,89,112,116,122,124,137,141],binary32:86,binary64:86,bind:[27,47,69,78,88],bisect:[123,124],bit:[14,21,29,50,86,88,96],bitbucket:88,black:[3,40],blank:[3,54,101,106,107,108,109,110,111,112,131],blast:114,blob:112,block:[6,29,54,63,65,66,77,86,95,98,105,140],blossei:4,blue:[3,10,40,54,70,131,137],bndlist:115,boe:4,boisest:47,bom:131,bomb:[56,64],book:[4,11,15,24,73,92,99],bool:[0,1,2,3,43,54,80,86,92,93,95,98,125,131,137],border:[60,140],bore:44,both:[3,14,27,29,33,34,40,44,48,49,57,60,63,65,78,86,87,88,93,94,104,105,111,112,115,117,122,124,126,129,135,140],bottom:[11,12,13,29,33,34,41,44,49,58,63,77,90,91,113,114,119,129,130],boulder:23,bound:[78,81,88,122,137],boundari:[6,19,24,47,54,57,63,64,78,83,91,93,97,102,108,111,115,122,124,126],boussinesq:44,bowl_radial_fgmax:31,box2kml:54,box:[29,47,54,137],branch:[17,24,28,37,46,49,50,52,53,105,114,115],brief:[4,50,125],briefli:143,bring:[12,47,49,60],brisa:4,brisadavi:4,broad:137,broken:[18,19,27,61,63,105],brought:27,brown:[75,137],brows:[10,23,28,38,47,60,127,140],browser:[12,27,28,33,34,47,49,127],bsd:[4,55,75,115],buffer:[29,40,104,112,113,123,124,137],buffer_length:137,buffer_s:[29,63],bug:[4,7,21,23,31,37,47,58,64,70,75,110,111,112,113,115],build:[4,15,27,49,50,60,78,88,98,114],buildsystem:88,built:[27,58,66,76,85,88,90,92,104,105,129,130],bulk:[18,77,97,117,124,140],bull:[15,29],buoi:41,burger:[85,117,140],busi:[55,75],butcher:93,button:[11,12,27,47,54,114],c210:[15,85],c231:[15,85],c_center:83,c_centers_with_ghost:83,c_node:83,c_nodes_with_ghost:83,cach:[21,43,50,72,75],cache_dir:43,cada:81,cada_torrilhon_limit:81,cada_torrilhon_limiter_nonlinear:81,cake:67,cal:[117,140,143],calcul:[3,5,26,29,41,43,60,63,70,83,93,108,113,137],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:15,calhoun:[4,15,47],calhounhelzellevequ:14,call:[1,5,8,19,21,26,29,37,40,46,47,57,60,63,65,70,72,77,78,80,81,86,87,90,92,93,95,97,98,105,107,111,112,114,115,117,120,122,124,125,126,131,137,140],call_before_step_each_stag:93,call_setplot:70,callabl:98,cambridg:15,camera:47,can:[0,2,3,4,5,6,7,8,10,11,12,14,16,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,53,54,56,57,58,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,102,104,105,107,108,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,135,137,138,139,140,141,143],cannot:[53,86,131],canopi:94,capa:92,capa_index:[122,124,126],capab:137,capabili:115,capabilit:113,capabilti:115,capabl:[6,11,21,31,32,44,66,78,107,112,113,115,137,139],capac:[13,119,122,123,124,126],captur:[44,135],car_nam:131,care:[31,41,88],carefulli:[19,21,58],cartesian:[31,42,54,78,125],cartopi:131,cascad:4,cast:137,cat_nam:131,categor:131,categori:131,category_color:131,caus:[21,44,47,49,55,56,72,75,96,105,112,113,114,121,123,135,137],caut:81,caution:44,cautionari:[24,41,57,125],cautiou:44,caxi:60,cb_file:54,cb_filenam:54,cb_kwarg:137,cb_name:54,cb_xfrac:54,cb_yfrac:54,cbar:137,cdot:[58,90],cell:[3,4,6,7,13,14,19,21,26,31,40,41,47,48,54,60,64,65,66,77,83,86,88,91,93,95,97,104,107,108,112,113,114,115,117,118,119,122,123,124,125,126,132,134,135,140,143],celledg:3,celledges_show:[3,21],cellgridintegr:107,cellgridintegrate2:107,cellsiz:[48,111,135],center:[4,26,29,31,40,47,48,54,63,77,83,90,91,97,104,115,123,124,125,131,132,135,140],centerlin:29,centers_with_ghost:83,central:[122,131,132],central_pressur:131,centroid:[29,63],certain:[31,41,52,87,104,112,122],certainli:[88,99],certik:[4,75],cf2py:78,cfl:[5,83,87,93,97,107,112,122,124,125,126],cfl_desir:[93,122,124,126],cfl_max:[93,122,124,126],cfl_superbe:81,cfl_superbee_theta:81,challeng:114,chanc:75,chang:[1,5,7,12,13,14,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,53,54,56,57,58,60,61,64,65,66,69,72,77,78,84,86,87,95,98,102,103,104,105,117,119,122,123,124,125,126,129,130,135,138,140],changelog:[16,17,21,106,107,108,109,110,111,112,113,114,115],changes_to_mast:50,chapter:[14,117,122,140],char_decomp:93,charact:43,characterist:93,charg:12,chava:125,cheaper:12,check:[5,14,19,31,33,34,36,37,46,47,49,50,51,53,56,60,70,77,78,80,85,88,92,93,95,97,98,100,108,123,124,131,137,138,139,140],check_3rd_ord_cond:93,check_diff:[98,105],check_lmm_cond:93,check_valid:80,check_valu:[98,105],checkout:[27,49,50],checkpoint:[24,40,112,113,115,122,124,126],checkpt_interv:[122,124],checkpt_styl:[112,116,122,124],checkpt_tim:[122,124],checksum:86,chen:[29,139],chile2010:[47,103,107,110,135],chile2010_fgmax:31,chile2010a:103,chile2010b:103,chile:[41,54,63],chile_2010:47,chile_dtopo:63,chk00006:[124,126],chk00100:112,chk:112,chkaaaaa:112,chkbbbbb:112,chknnnnn:[116,122,124,126],choic:[14,41,69,93,122,124,125,126,140],choos:[0,6,54,63,90,122,125],chose:58,chosen:[3,47,48,97,104,118,123],chri:4,chunk:86,chunksiz:86,circl:[3,43,70],circular:15,cise:15,citat:4,cite:[16,24,52,74],cjvogl:4,clamshel:108,clarifi:21,clash:60,classic4:126,classic:[4,5,11,13,14,18,19,21,22,23,27,37,38,42,50,51,52,53,57,62,64,65,66,75,77,80,82,83,84,85,86,90,100,101,105,116,117,119,120,123,125,130,138,140],classic_1d:57,claw1:[57,98],claw1ez:57,claw:[5,7,10,11,12,13,14,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,49,50,51,52,53,54,56,57,60,62,63,64,71,77,80,82,85,86,87,88,94,96,100,101,102,103,104,105,107,108,110,111,114,115,117,119,124,125,126,128,129,130,133,134,135,137,138,140,141],claw_1dnoncon:143,claw_git_diff:[27,46,50],claw_git_statu:[27,46,50],claw_lib:61,claw_outdir:[56,70],claw_packag:93,claw_pkg:[122,123,124,125,126],claw_topo_download:137,claw_vers:53,clawdata2pyclaw:78,clawdata:[107,111,116,122,123,124,125,126],clawdev2013:49,clawgraph:60,clawpack:[1,4,5,6,10,14,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,53,54,55,57,60,62,63,64,68,69,70,71,72,73,75,76,77,79,80,82,83,84,85,86,87,88,89,90,92,95,96,97,98,99,100,103,105,106,107,108,109,110,111,112,113,116,117,120,122,123,124,127,128,131,133,135,137,138,140,141,143],clawpack_src:[51,53,100],clawplotax:[1,2,3,26,70,115,121],clawplotdata:[2,3,26,40,47,70,72,80,121],clawplotfigur:[0,1,47,70,121],clawplotitem:[0,1,6,21,26,69,71,112,115,121],clawrundata:[40,54,116,122,123,124,126],clawsolut:1,clawsolv:[93,117],clawsolver1d:[77,80,83,93,97,117],clawsolver2d:[83,93],clawutil:[10,18,19,22,27,36,37,46,50,52,56,100,105,120,122,123,124,126,137,138],clean:[21,50,98,111,115],cleaner:[27,113],cleanup:114,clear:[1,2,5,60,72],clearfigur:1,clearfram:[1,72],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,11,12,16,17,27,47,105,114],clifford:23,clint:15,clobber:[86,112],clockwis:[31,43,63,137],clone:[11,17,22,23,38,49,50,51,53,73,74,88,94,103,138],close:[12,47,49,54,60,86,104,123,131],close_fig:54,closer:[63,124],closest:131,cloud:12,cluster:[5,15,52,104,123,124],clustering_cutoff:[104,123,124],cma:131,cmap:[47,54,70,137],cmap_slip:29,cmax:[47,54],cmax_dz:29,cmax_slip:29,cmdline:100,cmin:[47,54],cmin_slip:29,cname:49,coars:[3,31,47,104,113,122,135,140],coarsen:[48,104,115,123,135,137],coarsen_method:48,coarser:[3,14,48,113,122,123,140],coarsest:[5,47,65,107,116,122],coast:137,coastal:[44,118,125,135],coastlin:[31,47,125,139],code:[4,5,6,7,14,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,49,51,52,55,56,57,58,61,62,63,64,65,66,68,70,72,75,77,78,83,85,86,87,88,90,93,94,97,100,103,106,107,108,111,112,113,114,115,116,117,122,124,125,126,127,131,133,134,135],code_of_conduct:115,coeffici:[58,90,93,95,96,97,117,125],colella:[5,15],collabor:[47,127],collect:[11,24,25,27,29,31,63,69,77,93,127],collela:114,color:[3,29,47,54,60,69,121,131,137],colorado:23,colorbar:[3,54,115,137],colorbar_kwarg:115,colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,60,69,71,112,137],column:[9,29,31,40,44,87,111,137],column_list:29,column_map:29,com:[11,12,16,22,23,25,27,28,49,50,51,52,53,74,86,88,90,94,110,112,113,114],combin:[19,49,54,112,139],combinatori:105,come:[3,27,49,70,72,82,88,93,111,135,140],comfort:[53,90],comm_world:98,command:[0,1,2,3,10,12,27,28,36,46,47,50,51,52,53,56,62,69,70,73,77,78,80,85,88,89,93,97,98,99,100,105,117,120,121,122,123,135,137],commenc:116,comment:[10,23,45,50,114,116],commit:[24,29,46,49,50,105],common:[3,22,27,33,34,36,37,56,57,66,69,77,91,93,95,96,113,115,138,140],common_sourc:57,commonli:[3,60,70,72],commun:[24,47,75,95,98,100,115],comot:4,compact:135,compar:[21,34,40,44,47,50,70,87,104,105,118,123,125,133,139,143],compare_gaug:111,compat:[27,29,43,47,54,63,69,86,88,96,99,108,109,113,114,137],compens:137,compil:[12,24,33,34,36,42,51,53,57,64,66,72,73,78,85,86,90,94,98,107,117,120],compile_librari:98,complet:[19,21,27,43,56,72,77,78,88,98,99,105],complevel:86,complex:[11,83],compliant:37,complic:[14,70,78,121],compon:[3,14,19,21,24,31,34,40,51,53,60,65,69,90,92,94,95,104,111,122,123,124,135,140],compos:[29,77],comprehens:105,compress:[29,86,137],compris:[21,85,137],comput:[3,4,5,12,14,15,26,28,29,31,40,43,47,48,51,53,54,56,61,63,69,70,72,78,80,83,85,86,87,88,93,97,99,100,102,104,107,108,112,113,117,122,124,125,126,132,135,140,143],computation:[78,93],compute_f:[80,87],compute_gauge_valu:87,compute_p:[77,80],concentr:102,concern:[21,41],conclus:[4,47],conda:[47,51,73,85],condit:[6,19,24,55,57,66,75,76,77,78,80,87,93,101,107,108,111,115,118,122,124,125,126],conduct:115,conf:[49,50],confer:23,config:88,config_fc:138,configur:[70,77,88,137],confirm:44,conflict:[5,27,53,56,60,96,100],conform:[21,27,92,115,135],confus:[3,48,53,100,117],conjunct:[86,104],conlict:56,connect:[31,49,54],consequenti:[55,75],conserv:[4,5,15,87,93,95,140,143],consid:[5,44,52,53,78,100,120,127,137],consider:[44,77],consist:[5,31,43,47,50,54,88,113,117,125,135,140],consol:[12,87,125],consolid:111,constant:[29,31,44,54,58,88,117,125,137,140],constant_storm_modul:111,constrain:104,constraint:[40,123,143],construc:54,construct:[21,29,48,77,83,98,131,132,135],construct_function_handl:98,constructor:95,consult:96,contact:[82,85,94],contain:[1,3,6,11,12,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,50,52,54,56,57,60,61,65,66,70,72,73,77,78,80,81,83,85,86,88,90,91,92,93,95,97,98,100,105,107,108,115,117,121,122,125,127,131,135,137,138,140],containing_rect:29,containt:116,contamin:122,contan:47,content:[47,78,140,141],context:[26,47,140],contigu:[65,86,95],contingu:21,continu:[12,21,27,29,45,75,117,122,143],contour:[3,29,40,47,48,60,99,121,137],contour_color:3,contour_kwarg:[3,137],contour_level:[3,137],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,69],contract:[55,75],contrast:48,contribut:[4,23,24,52,75,78,85,90,93,102,105],contributor:[4,23,55,85],control:[5,6,22,24,37,40,51,53,60,72,76,81,83,85,86,87,88,90,104,113,125],conveni:[1,26,33,34,40,47,72,80,82,85,87,89,97,140,143],convens:135,convent:[3,21,29,42,48,63,91,135],converg:69,convers:[18,24,78,86,104,135,139],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,51,53,54,56,63,78,90,98,115,122,123,131,135,139],convert_fort_double_to_float:98,convert_readm:10,convert_to_standard_unit:29,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,65,69,77,83,87,88,97,104,125,137],coordinate_specif:[29,63],coordinate_system:[13,119,125],coorind:137,copi:[5,13,14,33,34,40,47,49,50,53,60,77,80,90,95,101,102,103,104,108,112,115,119,127,129,130,135,140],copyq1:57,copyright:[55,75],core:[4,66,105,115],corioli:[44,125,129,130],coriolis_forc:[44,125],corner:[3,29,31,48,63,65,83,122,124,126,135,137],correct:[19,27,37,50,57,58,60,70,77,83,88,92,98,107,108,112,122,124,125,126],correctli:[27,31,78,84,111,125],correspond:[3,5,22,24,26,29,40,43,44,48,49,54,60,63,70,77,81,83,86,87,90,92,95,104,105,117,118,122,123,124,125,126,131,135,139,140],cos:[43,45,77,90],cosin:77,cost:[12,93],could:[12,26,31,33,34,40,48,53,63,64,70,72,77,83,87,95,96,99,100,111,123,124,125,126,137,140],council:4,count:77,count_from_zero:77,counter:[98,137],counterclockwis:63,coupl:[113,143],courant:[4,5,104,114,122,123,124,126],cours:[12,25,31,40,42,63,88,89,97,102,125,135],cover:[5,26,27,29,31,47,54,63,104,108,113,124,125,135],coverag:[85,105],covert:10,cparam:[77,95],cpu:[12,112,115,134],crash:[112,122],creat:[0,1,2,3,5,6,18,23,24,27,29,33,34,36,38,40,41,42,46,49,52,53,54,56,63,65,69,70,72,78,79,82,83,85,86,89,92,95,96,97,98,105,107,111,112,113,115,121,122,123,124,127,128,131,137,139,140,141],create_dtopo_xi:[29,63],create_dtopographi:[29,63],create_topo_func:137,creation:[70,85,107],criteria:[5,6,21,24,95],criterion:[31,104,124],critic:[47,87,117],crop:[48,137],cross:27,crucial:[47,135],csdm:23,cse:23,csh:88,csv:[29,63,115],csvfault:[29,63],ctrl:[28,70],cube:60,cumul:115,current:[3,12,19,21,23,26,27,28,29,31,37,40,41,44,48,49,50,51,53,54,60,61,65,70,72,83,86,87,88,93,95,98,100,104,105,112,114,115,116,118,121,122,124,125,126,131,132,135,137,139],current_data:[0,3,24,40,69,70],curv:[3,40,69],custom:[0,12,14,19,21,24,57,60,66,69,78,84,90],custom_bc:90,customari:87,cut:123,cutoff:[5,124],cvf:50,cvs:47,cxx:88,cyber:15,cygwin:80,cython:88,dai:[5,12,47,125],dalcin:75,dam:47,damag:[5,55,75],damian:52,damiansra:90,darker:47,darryl:15,dart:41,dash:[3,88],daspect:60,dat:[29,131],data:[0,1,3,24,26,29,31,33,34,36,38,40,41,42,43,48,49,54,55,56,60,69,70,71,72,75,77,80,83,86,87,89,91,92,93,95,98,101,102,103,104,107,109,110,112,113,115,117,118,124,126,131,134,136,141],data_break:137,data_storm:131,data_typ:98,databas:[12,29,63,98,102,115,135],datadir:112,dataset:[135,137,139],date:[27,36,43,47,49,50,56,70,131,138],date_tim:43,datetiem:131,datetim:[43,131],datum:[43,44,118,125,139],dave:29,davi:4,david:[4,15,75,85,93],dawson:15,daylight:54,dcp:54,deal:[29,44,69,87,88,95,131,137],dealt:31,debian:99,debug:[6,37,56,65,69,87,95,100,105,122,124],debugg:70,decid:[77,93],decim:[43,54],decimc:131,decis:47,declar:[19,21,95,140],decompos:[65,117,143],decomposit:122,decor:98,decoupl:49,decreas:[40,135],deduc:135,deep:125,deep_depth:125,deeper:[125,135],deepli:97,def:[0,1,3,40,47,70,77,83,87,90,93,124,126,131],default_tfluct:93,defenc:4,defin:[0,1,3,5,21,26,29,31,37,47,54,56,60,63,70,72,77,80,83,89,90,92,93,95,97,98,104,107,115,117,124,126,131,135,137,138,140,143],definit:[29,60,77,104,110],deform:[15,29,63,139],deg2dm:54,degre:[29,43,47,54,63],delet:[19,27,51,53],delimit:29,delin:125,delta:[81,83,90,93,117,137,140,143],delta_i:137,delta_limit:137,delta_x:137,dem:[48,54,115,135,137,139],demo:88,demonstr:[11,82,88],denot:[5,21,40,48,117,137],dens:132,densiti:[80,87,95,97,123,124,140],depart:[4,131],depdend:81,depend:[3,12,14,27,28,29,31,33,34,36,37,42,44,47,51,52,56,58,60,63,70,76,85,86,91,92,93,98,100,104,115,125,137,138,140,143],deprec:[6,29,32,111,115,125,135,137],depth:[4,14,15,21,29,31,40,41,44,58,63,69,71,118,125,135],deriv:[55,63,75,80,84,85,95,105],describ:[3,4,5,6,12,14,18,25,27,29,30,31,33,34,40,42,43,44,47,49,50,54,56,57,60,63,65,66,69,70,71,83,86,92,98,102,104,105,113,117,118,121,122,123,125,131,132,135,137,139,140,143],descript:[3,4,8,21,29,54,60,63,69,86,98,102,104,117,125,131,135,143],design:[4,26,27,47,75,77,97,118,139],desir:[0,1,2,3,5,6,14,21,24,25,29,31,38,40,50,51,53,54,63,68,69,70,72,77,78,80,87,92,93,101,113,115,120,122,124,126,131,135,137,138],desktop:88,destin:47,detail:[4,6,9,14,21,25,27,29,31,33,34,37,41,42,44,47,49,51,52,53,55,56,60,63,70,75,80,81,82,83,86,87,88,89,90,91,93,103,105,108,113,115,117,121,122,125,127,131,135,138,139,140,143],detect:[47,56,86,94,98,138],deterimin:[125,137],determin:[3,5,29,31,40,44,46,47,49,54,63,70,81,83,86,95,100,104,108,112,113,116,118,121,122,123,125,137,140],determine_topo_typ:137,dev:[17,23,27,49,88,115],develop:[4,5,6,12,17,21,22,44,49,52,53,55,60,69,73,74,75,78,85,90,93,94,100,105,115,117,118,124],dict:[29,80,86,91,92,95,131,137],dictionari:[0,1,2,3,29,40,70,77,80,86,91,92,95,97,100,131,135,137],dicuss:29,did:[115,135],didn:110,died:107,diff:[17,46,50,107,108,109,110,111,112,113,114,115],differ:[1,3,5,6,11,14,21,27,29,30,31,33,34,40,42,44,46,48,51,54,56,58,60,63,64,69,72,77,78,80,82,83,86,91,93,98,99,100,104,105,111,112,113,114,115,117,118,122,123,124,125,135,137,138,139,140,143],differenti:[15,29],difficult:40,difficulti:[94,96,100],diffus:90,digit:[48,54,70,113,114,115,137],dim:[90,91,93],dimens:[5,6,14,19,21,40,43,48,54,60,77,78,80,86,88,90,91,92,95,97,104,115,117,122,123,124,126,137,140],dimension:[3,6,7,15,21,24,29,31,33,34,40,44,60,83,90,111,112,114,124,125,126,137,140],dimensional_split:[83,111,122,124,126],dip:[29,63],dir:[28,50,88,141],direct:[5,7,14,21,29,31,33,34,40,43,47,50,54,55,56,60,63,64,70,75,80,90,97,114,117,122,123,125,137],directli:[7,18,22,44,51,60,63,70,72,77,78,81,85,95,98,100,115,137,141],directori:[1,3,5,10,11,12,13,14,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,49,50,51,52,54,57,60,61,64,68,69,72,80,82,83,85,86,87,90,97,100,101,102,104,105,107,112,113,114,115,116,117,119,120,121,122,123,127,129,130,133,134,135,138,140,141],directorti:102,disabl:[45,94,125],disable_petsc:98,discard:93,disclaim:[55,75],discontinu:[4,93,143],discov:58,discoveri:105,discret:93,discrib:4,discuss:[23,27,29,44,48,51,63,86,97,99,100,104,113,115,117,125,143],disk:[12,40,77,86,87,105,113],dispers:44,displac:[29,41,44,63,125,139],displai:[1,12,33,34,36,40,47,54,70,87,105,125],display_format:40,display_landfall_tim:125,dist:50,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,63,125,135,137],distant:102,distinct:[40,113],distribut:[4,12,28,29,49,55,63,66,73,75,93,99],disturb:47,distutil:78,dive:99,divid:[104,122],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,135],doc:[17,22,23,27,29,47,49,50,81,98,100,114,115,128],docker:[17,24,50,51,114,115,142],dockerhub:[28,50],dockeril:28,docstr:[78,82,105],doctest:83,document:[0,1,2,3,5,6,16,17,20,21,22,23,24,27,31,41,44,48,53,55,63,69,70,71,72,75,81,83,86,87,88,89,93,95,98,100,108,121,124,141,142],doe:[4,10,14,19,26,27,31,36,44,47,48,51,60,66,70,73,83,85,92,95,98,105,108,113,116,117,131,137,138,140],doesn:[27,53,57,95],doi:[4,15,16,50,52,74],doing:[5,10,18,24,27,31,40,44,46,49,53,57,70,72,83,105,112,113,114,115],domain:[5,14,15,44,47,49,54,63,65,76,77,78,80,88,90,92,95,102,104,123,124,126,135],don:[12,26,27,49,50,70,87,88,94,105,124,138],done:[1,5,6,7,10,12,14,18,19,27,33,34,40,42,47,48,49,53,54,56,60,63,69,70,72,77,81,82,98,104,108,112,113,116,117,121,123,125,134,137,138,139],donna:[4,15],donnabois:4,donor:[122,124,126],dot:[36,40,47,52,53,54,56,138],doubl:[60,78,83,98,117,123],down:[12,29,87,112,131,135,137],download:[11,12,27,28,29,34,35,41,47,50,51,52,53,61,82,88,94,115,133,137,138,139],downward:63,doxygen:[5,6,24,114],dpc:54,dpi:[47,54],dpng:60,dprint:[123,124],dq_src:[90,93],dqdt:93,draft:50,drag:125,drag_law:125,draw:3,drawback:100,drawcontourlin:60,drawn:[29,47,121],driver:[19,57],drop:[12,122],dry:[14,15,31,41],ds824:131,dst:54,dt_check:31,dt_initi:[107,122,124,125,126],dt_max:[122,124,126],dt_max_dtopo:[107,125],dt_variabl:[122,124,126],dtdtopo:110,dtdx1d:109,dtdx:81,dtdy1d:109,dtfe:93,dtopo2kml:54,dtopo:[24,29,41,44,48,54,63,100,107,109,110,125,135,137,139],dtopo_data:[107,125],dtopo_file_nam:54,dtopo_modul:107,dtopo_typ:[29,54,63],dtopofil:[54,63,125],dtopographi:[29,63],dtopotool:[41,63,109,110,112,115,135,136],dtopotools_exampl:[29,41,63,103],dtopotyp:[125,135],due:[15,29,43,63,105,114,115,138],dummi:[78,93,140],dump:[65,122],dumpgaug:111,duplic:[70,110,116],durat:[29,118],dure:[21,31,40,54,63,66,107,118,124,125,126,135],dx0xgftn3_x04rdx0_w5nq7w0000gn:[13,101,119,129,130],dxc:78,dyc:78,dylib:47,dynam:[5,19,29,44,63,66],dynamic_slip:29,dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,15],e_format_bst:131,each:[1,2,3,5,6,14,17,21,29,31,32,40,43,47,48,50,54,57,60,63,64,65,68,69,70,72,77,78,81,83,86,87,88,90,91,92,93,95,97,104,105,107,108,112,113,115,116,117,121,122,123,124,125,126,131,134,135,137,139,143],each_fram:40,each_gaug:40,ear:4,earli:[5,19],earlier:[19,21,29,31,48,63,77,90,107,114,135,137],earth:[24,41,54,63,111,113,125],earth_radiu:125,earthquak:[24,29,41,44,103,125,132,135],eas:54,easi:[4,5,10,28,53,60,73,78,87,88,89,127,140],easier:[53,69,113,115,140],easiest:[18,27,37,66,70,72,99,104,140],easili:[3,12,27,31,47,60,70,78,83,94,98,99,105,127,131],east:[12,135],easy_instal:88,ec2:24,echo:100,ecosystem:[4,15],edebug:[123,124],edg:[3,5,13,14,26,29,31,54,63,83,91,117,119,123,124,126,140],edit:[47,50,51,53,72],editabl:27,editor:65,edu:[29,47,61,86],effect:[40,47,58,60,83,87,99,104,105,118,125,137],effici:[44,75,85,86,87,95,104],effort:86,egg:[51,53],eigenvector:[117,143],either:[11,14,19,29,41,42,47,56,60,63,70,72,77,83,86,87,93,98,100,104,105,111,112,113,115,117,125,131,135,137,140,143],elast:[12,63],element:[0,3,21,54,91,93,95,122,123,124,125],elementwis:87,elev:[21,31,42,44,47,48,54,69,101,125,135,137,139],elif:[124,126],elimin:[7,21,78,100,115,125],ell:117,els:[26,27,51,53,95,115,126],elsewher:23,emmanuel:125,emmett:[15,75,85],empir:[44,58],empti:[40,92,95,98,100,122,131,137],empyclaw:90,enabl:[83,87,94,98,113],encapsul:44,encount:[36,47,70,94,96],encourag:60,end:[12,29,31,40,43,47,50,54,80,87,97,101,102,104,106,107,108,109,110,111,112,113,115,116,124,126,131,134],end_dat:43,enddo:140,endian:86,endors:[55,75],energi:87,enforc:125,eng:131,engin:[15,47],enhanc:[58,75,115],enlarg:113,enough:[132,134,135],ensembl:131,ensur:[33,34,60,102],enter:[60,86,88,94],enthought:[94,96,99],entir:[5,44,47,54,63,64,66,77,87,92,102,108,137],entireti:80,entri:[47,77,87,98,131],enumer:[83,93],environ:[24,27,33,34,36,46,47,49,51,52,53,60,62,64,66,89,96,98,100,113,137,138],envis:14,epd:96,eprint:[123,124],epsg:47,epsilon:81,eqn:143,eqnarrai:97,equal:[14,29,31,47,63,88,90,104,116,122,124,126,135,137],equat:[4,14,15,33,34,41,44,58,70,76,77,78,80,85,86,87,90,93,94,95,108,111,113,115,117,122,124,125,126,135,140,143],equiv:143,equival:[5,40,48,54,135],err:124,erron:[29,63],error:[14,19,33,34,36,47,53,60,64,70,80,85,86,87,98,104,105,123,124,131,138],escap:[104,124],escienc:12,especi:[27,47,78,90],esri:[48,135],essenti:[48,60,93,125,135],est:124,establis:115,establish:4,estim:[58,104,123,125],estimat:124,eta:[29,31,40,111],eta_tild:31,etc:[0,2,14,18,19,23,26,27,31,44,47,49,52,54,57,65,69,78,117,121,122,125,131,140],etopo1:[115,118,135,137,139],etopo_sample_2min:137,etopotool:[115,135],euler:[85,93,109,111,114,117,140],euler_2d:[33,35,85,90],evalu:[26,29,58,77,83,93,137,140],even:[44,47,53,55,63,75,98,104,123,124,135,138,140],evenli:[47,87],event:[41,44,54,55,63,75,118,122],event_tim:54,eventu:[12,41],ever:[121,125],everi:[5,27,31,40,56,57,77,80,82,86,87,95,104,105,113,114,117,120,122,124,126,131,135,137,140],everyth:[31,50,51,52,53,64,88,97,98,105,115],everywher:[43,58,95],evolv:[21,77,80,93],evolve_to_tim:[77,93],exactli:[27,46,95,122],exam:70,examin:[14,33,34,40,100],exampl:[0,1,2,3,4,5,6,7,8,12,14,19,21,23,26,27,29,31,36,37,41,43,48,49,50,51,52,54,56,57,58,61,63,64,65,69,70,72,75,76,77,78,80,83,84,86,87,90,91,92,93,94,97,98,100,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,134,135,137,138,139,140],exce:[31,47,104,123],exceed:[104,115],except:[21,26,29,86,91,98,122,125,131,135],excerpt:88,exclud:[31,57],exclude_modul:57,exclude_sourc:57,exe:[33,34,80],exec:[0,1,3,70],execut:[0,1,3,14,18,26,33,34,40,54,60,70,72,80,82,88,100,105,117,120,138],exemplari:[55,75],exercis:[41,103,105],exist:[1,20,29,30,32,33,34,47,53,56,60,70,83,87,90,92,95,98,99,108,114,115,131,137,139],exit:[28,70,88,94],exp:[77,87,97],expand:[25,47,54],expect:[97,98,105,115,124,125,126,131],expens:[93,104,108,113],experi:[23,44,93],experiment:75,expert:44,explain:[12,44,104,122,127],explan:27,explicit:[98,123],explicitli:[57,60,122,138,143],explor:[4,54,70,72],expon:58,expos:12,express:[4,29,55,75,94],extend:[7,14,21,54,60,83,115,125,135,137,143],extens:[4,15,21,23,27,29,44,47,49,53,57,60,78,85,86,98,113,114,122,133,137,143],extent:[44,53,54,58,60,77,83,95,107,125,135,137],extra:[3,47],extra_fil:49,extract:[47,50,86,131,137,139],extran:111,extrap:[14,90,97,122,124],extrapol:[14,21,31,90,97,115,122,123,124,126],extrem:[47,96],extropl:14,eye:[131,132],eye_loc:131,f2py:[51,53,78,90,98,117],f2py_flag:98,f2s:54,f49620:4,f77:[37,138],f90:[8,13,19,30,31,40,56,57,64,73,90,101,104,107,111,113,115,117,119,129,130,135,138,140],f95:98,f_file_nam:[80,87],f_path:80,facecolor:[2,70,121],facilit:[40,105,111,113,127,131],fact:[47,86,95],factor:[5,47,123,125,134,137],faculti:29,fade:70,fail:[13,27,86,88,98,101,105,111,119,129,130,131],failur:105,fairli:[14,44,113],fall:[118,125],fals:[0,1,2,3,29,44,45,46,47,49,54,80,83,86,92,93,95,98,104,112,113,116,122,123,124,125,126,131,137],famili:[83,93,124,126],familiar:73,faq:[12,24,69,99],far:[14,17,38,69],fashion:116,faster:137,fastest:[86,94],fault:[15,24,29,41,103,115,135,139],fault_plan:29,favor:[111,115,137],favorit:69,fbound:37,fc02:4,fcompil:138,fdefault:98,featur:[17,21,24,27,31,47,60,70,78,104,105,110,112,113,115,125,131,135],februari:[23,114],feet:[118,139],fellowship:4,fetch:[12,43],fetch_noaa_tide_data:43,fetch_topo_url:137,few:[5,11,12,21,25,34,44,49,60,78,93,97,104,105,118,133,135,140],fewer:[104,137],ff0000:[3,54],ff9999:121,ffff00:70,fflag:[27,36,56,61,64,78,98,135],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:54,fgmax:[41,54,64,108,110,113,114,125],fgmax_data:[31,125],fgmax_fil:[31,125],fgmax_grid:54,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,110],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,field:[40,54,90,92,95,101,106,107,108,109,110,111,112,113,115,131,132],fig:54,fig_kwarg:[29,137],fignam:[1,72],figno:[1,2,40,47,70,72,121],figsiz:[2,70,121],figur:[0,1,2,4,12,29,33,34,38,40,48,54,60,69,72,92,100,117,121,137],file1info:125,file2info:125,file:[1,5,7,8,10,13,17,18,19,21,22,24,26,27,28,29,33,34,36,37,38,40,41,42,44,46,51,53,54,56,61,63,65,66,69,71,75,78,80,82,83,86,87,88,89,90,92,95,96,98,100,101,102,107,108,110,111,112,113,114,115,118,119,120,121,122,123,124,126,128,129,130,131,132,134,137,138,139,141],file_format:[40,86,92,131],file_prefix:[86,92],file_prefix_p:80,fileio:65,filenam:[30,47,111,137],fill:[0,3,4,5,14,47,83,86,95,102,113,122,131,134,137,140],fill_between:3,fill_mwr:131,fill_rad_w_other_sourc:131,fill_topo:137,fill_valu:[86,137],fill_var2:3,fill_wher:3,filpatch:[8,113],filter:[86,137],filter_region:137,find:[1,3,4,5,23,26,27,28,29,43,47,51,53,56,61,63,66,69,75,82,90,95,96,98,99,100,102,115,131,138],fine:[3,31,49,62,66,90,104,113,122,125,135,140],finer:[3,6,47,104,107,108,122,123],finest:[3,40,115,134,137],finish:[12,70,77],finit:[4,15,31,38,48,54,60,63,93,134,135,140],finlin:98,first:[1,3,12,18,19,21,27,29,31,33,34,47,49,50,51,52,53,54,56,60,70,72,77,78,83,86,87,88,90,93,94,95,97,98,100,102,104,107,111,117,122,124,125,131,133,135,137,143],first_test:33,fit:[55,75],five:31,fix:[5,18,19,21,24,41,50,54,56,75,86,107,108,109,110,111,112,113,114,122,124,126,137],fixedgrid:125,flag2refin:[21,123,124],flag2refine_tol:[104,123,124],flag:[6,12,21,27,36,37,51,53,61,64,78,96,98,100,111,124,125],flag_richardson:[104,112,123,124],flag_richardson_tol:[104,123,124],flat:63,flavor:[11,20,52,86],fletcher32:86,flexibl:[21,29,54,78,111,114,117],flood:47,floor:[29,41,63],flow:[4,14,15,22,31,41,42,44,85,102,117,122,125,135,140],flowchart:[5,6,24],fluctuat:[91,93,143],fluid:[44,118],flush:112,flux2:78,flux2_dimsplit:111,flux3_dimsplit:111,flux:[15,31,83,93,117,122,143],fly:24,fmt:3,fname:[54,124,125,126],focu:[4,41],fold:14,folder:[13,47,101,119,129,130],follow:[0,2,3,4,5,12,14,17,18,22,23,27,29,31,33,34,35,40,42,47,48,49,50,51,52,53,55,60,61,63,65,70,71,73,75,77,78,79,82,83,86,87,88,90,91,92,94,95,97,98,100,104,105,115,116,117,121,122,123,125,131,133,134,135,138,140,142],fontsiz:70,foot:63,fopenmp:[37,64,98],forc:[21,36,56,98,125,132,137,138],force_dri:54,forecast:131,forestclaw:[100,111],forg:[52,85],forget:138,fork:[23,49,50],form:[0,2,3,4,5,7,18,19,21,27,28,29,31,33,34,38,40,43,47,49,50,55,58,63,65,75,78,87,93,97,98,104,108,115,116,117,122,123,124,125,129,135,137,140,143],format:[1,3,12,24,29,33,34,40,41,42,44,45,47,48,54,56,60,61,63,69,70,77,80,86,87,89,90,92,98,102,112,113,115,122,125,131,132,137,139,141],format_str:40,former:[70,140],formerli:111,formul:[4,44,58,117,122],formula:58,fort:[1,7,26,31,40,60,61,69,86,92,108,112,113,114,116,122,123,124,126,134,141],fortfil:[33,34],fortran:[5,8,10,12,19,22,26,27,29,31,33,40,42,48,51,53,56,57,58,64,65,66,69,72,75,77,78,80,83,85,86,88,90,91,93,94,95,98,111,112,113,115,117,120,124,125,126,131,133,134,135],fortran_modul:95,fortran_src_wrapp:78,forward:[93,140],found:[1,4,5,10,11,12,13,14,16,21,26,31,33,34,36,38,40,43,44,46,54,56,57,68,70,71,72,74,77,81,88,92,96,98,100,101,102,105,112,115,116,118,119,121,129,130,131,137,138],founder:4,four:[83,104,105],fourth:[31,48],fpe0:37,frac:[58,97,143],fraction:[5,12,29,104,122,140,143],fragil:95,fragment:3,frame0000:60,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,60,61,65,69,70,72,77,80,84,86,88,92,94,98,113,116,121,124,126,127],framecount:98,framenam:60,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,72],framework:[4,50,75,78,112,113],free:[12,47,56,63,75,79,90,94,96,99],frequenc:[63,93],frequent:[19,26,96,112],friction:[24,41,44,125,129,130],friction_depth:[58,125],friction_forc:125,friction_modul:111,friedemann:81,from:[0,1,3,4,5,6,11,14,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,50,52,53,55,56,57,60,62,63,65,69,70,74,75,76,77,79,80,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,111,112,113,115,116,117,118,122,123,124,125,126,131,132,133,135,138,139,140,141],frommm:81,front:[60,92,98],fset:95,fstr:60,ftrapuv:37,full:[5,50,52,53,54,70,80,87,93,97,120,135,140],fulli:[5,44,47,114,117,125,131,132],fun:98,func:[98,131],function_nam:98,fund:[24,53,85],funrol:98,further:[5,14,24,37,44,54,56,60,85,104,105],furthermor:[47,97],futur:[12,21,24,25,33,34,44,48,54,58,77,93,112,113,115,131,135],fvmbook:[11,38],fvmhp:[4,11,14,15,24,66,117,122,140,143],fwave:[83,93,117],g77:96,gain:86,galerkin:93,galleri:[11,33,34,35,39,50,68,69,82,85,99,105,110,114,127,133,140],gallery_al:85,gallery_classic_amrclaw:[7,33,34],gallery_fvmbook:[15,38],gallery_geoclaw:[31,41],gamma:58,gap:137,garret:125,gas:5,gaug:[6,24,41,54,83,84,95,102,107,111,112,113,114,115,116,118,124],gauge00001:[40,113],gauge_coord:83,gauge_data:95,gauge_dir_nam:83,gauge_fil:83,gauge_file_nam:83,gauge_id:40,gaugedata:[40,124],gaugeno:[40,124],gauges2kml:54,gauges_modul:[40,111,113],gaugesolut:40,gaugetool:[40,111],gaugexxxxx:[40,113,116],gauss_pt:29,gaussian:[77,97,126],gave:115,gca:45,gcc:[88,94],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:12,gen_vari:[98,105],gener:[0,1,2,3,4,5,6,8,10,12,14,15,18,19,23,24,27,31,36,37,41,44,47,48,50,51,56,57,58,63,64,65,69,70,71,72,75,78,79,81,83,88,89,90,92,93,94,97,98,99,100,102,104,107,111,113,116,118,120,122,123,127,132,134,135,140,141],generate_2d_coordin:137,generate_2d_topo:137,geo:[41,58],geo_data:125,geoclaw:[4,6,11,15,22,23,27,29,31,32,34,37,40,48,50,51,52,53,54,58,61,63,66,69,94,100,102,103,105,116,117,118,120,122,123,131,132,133,134,135,136,137,138,139,140],geoclaw_modul:111,geoclaw_riemann_util:114,geoda:118,geograph:47,geohazard:44,geol:29,geolib:[61,107,111],geom:[83,95],geometr:140,geometri:[24,29,63,85,86,90,92,95,111],geophys:[4,14,15,22,41,44,66,122],geoplot:[45,47,71],georefer:47,georeferenc:47,georg:[4,15,29],geoscientist:44,geospati:47,get:[0,9,12,23,27,36,41,47,48,51,52,53,56,57,69,73,77,78,83,86,87,88,94,96,97,98,99,102,103,105,114,117,131,137,138],get_aux_glob:95,get_auxbc_from_aux:95,get_cmap:70,get_count:98,get_dim_attribut:83,get_dt:93,get_dt_new:93,get_q_glob:95,get_qbc_from_q:95,get_remote_fil:137,get_topo:137,getax:1,getcwd:70,getfigur:1,getfram:[1,3,72],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:87,getsitepackag:100,getusersitepackag:100,gfortran:[12,51,53,64,73,76,96,120,138],gfortranbinari:94,ghamdi:4,ghost:[6,14,64,65,83,86,93,95,113,122,124,126,134,140,143],gica2937:29,gigabyt:135,gist:52,git:[11,12,22,23,24,25,49,50,51,53,94,105],git_statu:46,github:[11,16,21,22,23,24,25,28,49,51,52,53,74,82,90,94,105,110,112,113,114,117,138],gitter:23,give:[3,5,8,9,12,14,23,27,29,31,33,34,40,53,54,63,64,65,70,72,88,89,93,105,108,112,113,122,125,135,137,139],given:[29,43,47,48,54,58,60,63,81,88,92,93,95,98,104,118,125,131,135,137,140],glitch:110,global:[5,83,95,98,118,135,139,140],gloss:139,glu:14,gmt:43,gnu:94,gnufcompil:138,goal:5,godaddi:49,godunov:[4,83,93,122,124,126,140],goe:[29,41],going:[14,21,50,77,80,82,86,91,99,106,127,135,143],gone:87,good:[14,27,44,47,55,64,75,97,102,105,113,117],googl:[23,24,27,41,54,82,86,88,96,111,113,117],googlecod:88,googleearth:[47,54],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:9,gov:[29,43,63,88,131],govern:125,gprint:[123,124],gradi:[4,15,75],gradient:[114,143],gradylemoin:4,grai:131,grant:[4,75],graph:8,graphic:[22,27,60,69],gravit:[58,125,140],graviti:125,great:[43,82],greater:[31,54,58,94,99,104,116,122,123,125],greatest:104,greatli:[25,75,118],green:[54,63,70,105,131,137],grid1d:83,grid1info:125,grid2info:125,grid:[4,6,15,18,19,21,22,24,26,27,40,41,42,44,47,54,60,65,66,69,75,77,85,87,88,90,91,92,93,95,97,104,105,107,108,110,111,113,114,115,117,118,122,123,124,126,132,134,135,137,139,140,143],grid_files_scanf:141,grid_numb:65,grid_registr:[48,137],griddata:137,gride:132,grideges_show:21,gridlin:60,gridlines_show:21,ground:[31,63],groundoverlai:47,group:[3,12,23,27,29,44,82,86,88,96,112,117],guarante:[41,44,93,103],guard:112,gui:[21,141],guid:[12,17,22,23,24,41,42,52,74,85,99,114,128],guidelin:85,gzip:50,hack:95,had:[40,48,113,114,115],hadjimichael:[4,15,75],half:[0,14,15,63,93,122,140],halfspac:63,hand:[3,17,18,19,58,77,105],handi:[27,56],handl:[0,2,3,5,31,37,41,48,54,64,66,69,83,86,90,92,93,95,96,97,98,100,107,108,110,111,113,115,125,131,137],hang:63,happen:[30,47,56,77,92,95,138],har:117,harbor:31,hard:[45,64,70,137],hardcopi:[1,70,72,121],harder:122,hardest:[61,99],hardwir:64,harm:100,has:[0,4,5,7,12,14,16,17,19,20,21,22,26,27,31,32,33,34,46,47,48,50,54,56,58,60,63,65,66,70,75,78,80,83,87,90,91,92,95,96,98,99,100,101,102,104,105,106,107,108,113,114,115,117,118,122,123,125,131,134,135,137,140,141,143],hash:[46,49,105],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,21,22,23,24,26,27,28,29,31,33,34,37,38,40,41,44,47,49,50,51,53,56,57,58,60,61,63,64,65,69,70,72,73,75,77,78,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,122,123,125,127,131,135,137,138,140],haven:97,haversin:43,hazard:[31,41,58,118],hdf5:[85,87],hdf:86,head:[27,29],header:[10,29,40,48,63,65,86,92,111,113,115,131,135,137],header_styl:137,heavili:78,height:[47,137],held:44,hello:88,help:[6,8,22,23,24,27,36,45,53,56,69,72,85,88,94,98,105,112,117,127,138],helzel:15,henc:[48,49,57,93,100,104],here:[4,12,14,31,44,49,50,53,54,66,70,72,74,77,80,85,86,88,90,91,96,97,100,102,111,117,132,137,143],heterogen:140,hex:[54,70],hidden:[3,56,70],hide:[47,60],hierarchi:[47,83,100],high:[4,15,44,47,63,66,78,85,93,117,118,125,139,140],higher:[3,5,47,83,93,94,117,118],highli:115,highlight:[10,12],hilo:[118,139],hint:[14,24,41,51,69,72,73,100,125,138],histor:[44,63,139],histori:[27,50,72,99],hit:[14,60,72,87,122],hko:131,hmin:31,hoc:78,hold:[3,72,97,104],holder:[55,75],holland:[115,125,132],holland_storm_modul:111,home:[12,29,51,53,120],homebrew:47,homepag:20,homogen:[63,93,140,143],hood:69,hope:[25,105],horizont:[47,137],host:47,hour:[12,47,54],how:[1,5,6,11,14,21,23,27,29,31,33,34,37,40,42,47,50,54,56,63,64,65,69,80,82,84,86,90,93,97,98,100,102,103,104,105,108,113,115,116,117,121,122,125,127,135,137,141],howev:[5,12,14,21,33,34,37,42,44,47,53,55,57,63,64,65,75,78,104,105,113,115,118,121,125,134],hpc:23,hrd:131,html:[1,12,15,22,27,29,33,34,36,39,40,47,49,63,69,70,82,88,89,100,105,131],html_plot:89,htmlplot:82,htpp:27,http:[4,11,12,15,16,23,25,27,28,29,39,43,47,49,50,51,52,53,55,61,63,73,74,75,78,79,86,88,90,100,110,112,113,114,131,137],huge:135,human:131,hurdat:[115,131,132],hurrican:[102,131],hurt:57,hwrf:[115,125,132],hydrodynam:15,hyperbe:81,hyperbee_limit:81,hyperbol:[4,5,15,38,66,78,85,90,91,97,117,122,125,140,143],hyperol:122,ibm:94,ibtrac:[115,131],idea:[9,23,29,60,66,77,97,108,137,143],ideal:[50,118],ident:[57,83,86,88,105,137],identifi:[33,34,47,78,104,131],idl:12,ids:40,ieee:15,ifort:37,igetsp:111,ignor:[14,47,54,86,111,118,137],iinstal:88,ike:102,illustr:[29,33,34,47,60,63,103,110,111,115,117,127,137],imag:[12,33,34,50,52,54,105,115],imd:[131,132],immedi:[23,44,60,77,79,80,87],impact:63,impati:90,imped:[77,97],implement:[1,4,6,14,29,54,57,62,75,90,93,97,98,104,105,110,113,117,122,137,140,143],impli:[55,75,125],implicit:[75,93],importantli:88,impos:[14,78,104,125,129,130,143],imposs:[44,122],improv:[4,12,21,23,31,32,47,86,107,108,110,111,112,113,114,122],imshow:137,in_poli:137,inaccur:44,inaccuraci:44,inadequaci:58,inadvertantli:70,inbound:12,inc:[4,15,60],incept:4,inch:[2,47,54,70,121],incident:[55,75],includ:[4,5,12,13,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,48,49,50,51,53,54,55,57,58,60,61,63,64,66,69,70,72,75,77,78,82,83,85,86,87,88,89,90,92,93,94,95,97,99,100,101,102,105,107,113,114,115,117,119,122,124,125,127,128,129,130,131,132,134,135,137,140],incom:14,incompat:[27,47],incompress:15,inconsist:112,incorpor:[21,44,49,75,93,107,114,137],incorrect:[115,131],incorrectli:112,increas:[47,54,64,125],increasingli:27,increment:[31,40,47,83,98,122,124,126],ind:83,inde:[78,88],indent:[43,54],independ:[22,29],index:[1,5,12,21,22,26,31,39,40,49,50,70,83,85,88,90,91,98,115,122,124,125,126],indian:131,indic:[6,14,19,21,24,28,29,37,40,47,48,50,52,53,57,60,68,72,83,87,88,91,93,97,100,104,105,113,117,122,124,125,126,135,137,140],indirect:[55,75],individu:[4,21,22,47,54,56,57,60,83,104,105,131],inf:137,infer:137,infinit:122,inflat:14,info:[29,40,50,54,60,80,83,87,93,113,123,124,131],info_sz:29,inform:[12,21,24,33,34,42,43,44,45,46,51,53,57,65,70,71,72,73,74,77,78,83,87,88,89,91,92,98,100,112,115,116,117,120,122,123,125,131,134,135,138,139,140,141],inhabit:77,inherit:[70,83,93],init:[27,52],initi:[4,6,12,21,29,31,40,43,44,47,57,60,63,66,72,75,76,77,78,80,81,83,84,86,87,92,93,95,96,98,101,104,112,115,117,118,122,124,125,126,131,135,137],initialize_sourc:78,inlinelimit:57,input:[6,14,19,22,24,26,29,36,41,47,54,57,60,77,80,81,83,85,91,92,93,98,102,112,115,117,124,125,126,131,132,135,137,140],input_filenam:78,input_unit:29,inputfil:[98,137],ins:21,insert:[10,14,63,86,135],insid:[83,88,92,117,137],insidi:113,inspect:[18,19,47],instabl:113,instal:[11,12,16,17,22,24,28,33,47,49,50,72,75,76,79,84,86,97,105,106,107,108,109,110,111,112,113,114,115,120,142],install_fortran:34,install_prerequisit:[33,34],installing_pip:50,instanc:[3,27,47,51,63,66,72,77,78,80,83,86,87,90,125],instantan:93,instanti:[80,88,90,93,95,124,126],instati:[63,137],instead:[3,12,31,33,34,37,40,50,52,53,56,57,61,94,95,98,100,112,113,116,117,120,135,137],institut:4,instruct:[12,16,17,23,24,33,34,47,49,50,51,52,61,77,79,85,88,94,97,100,114,116,120,138],insur:[46,56,72,104,107,111,123,125,135],intact:[62,112],integ:[3,31,40,47,54,58,70,78,92,104,114,117,122,125,131,137],integr:[21,48,75,85,87,93,107,108,112,124,126,134,135,140],intend:[44,78,115],intens:[78,131],intent:[78,117],inter:[27,114],interac:87,interact:[1,12,21,33,34,36,40,42,56,66,69,70,78,88,89,94,97,100,112,113],interactive_plot:[89,97],interactive_test:112,interdepend:95,interest:[11,14,17,22,26,31,45,60,78,95,102,105,114,115,122,131],interfac:[4,18,21,60,75,78,81,85,86,91,93,98,117,140,141,143],interface_funct:98,interior:[5,14,65,95],interleav:75,intermedi:[18,31,63,140],intermit:[40,113],intern:[5,29,40,48,54,63,113,135,137,143],interp_kwarg:131,interp_unstructur:137,interpol:[5,14,29,32,40,41,48,54,60,63,70,113,118,125,131,132,137],interpret:[29,31,48,63,99,115,135],interrupt:[55,75],intersect:[31,63],intersphinx:49,intersphinx_map:49,interv:[40,43,77,97,104,122,125],introduc:[14,18,31,70,143],introductori:99,intuit:85,inund:[31,41,47,58,118,139],inundataion:[118,139],inv_haversin:43,invalid:[37,92],invert:43,invest:44,investig:105,invis:[36,111],invok:[10,64,138],involv:[23,90,93,102,132],ioerror:92,ioexcept:98,iout:126,ioutarrivaltim:125,ioutsurfacemax:125,ipdb:70,iplot:[33,35,82,85,88],iplotclaw:[1,12,21,33,34,40,42,69,70,89,100],iplotclaw_:70,iplotclaw_figno:1,ipynb:[29,63,103,112,137],ipynotebook:112,ipython:[12,66,70,72,78,79,85,87,94,97,99,100,111,112],ipython_displai:107,iqinit:[125,135],is_valid:[92,95],isn:[56,64,65,138],iso:131,isosurfac:60,isotrop:63,issu:[21,23,25,49,50,53,60,77,82,83,85,93,94,96,105,107,112,113,114,115,117,125,138],item1:[0,72],item:[0,1,3,60,69,72,98,121],itemnam:[1,72],iter:29,ith:91,its:[4,5,12,21,28,32,44,47,52,55,57,63,65,75,80,81,82,83,85,90,92,93,95,98,104,124,137,143],itself:[4,63,69,117,125,137],ixi:117,jacobian:[117,143],jan:[4,50],januari:[16,106,113],japan:[47,54],japanes:131,javascript:127,jed:75,jet:[29,60],jma:[115,131,132],job:12,join:[23,70],journal:[4,15,85,127],jpg:60,jsanim:[107,111],jsanimation_frametool:109,juli:[16,108,109],jump:[4,49,60,72,83,93,113,122,143],junction:[31,125],june:[16,114,115],jupyt:[63,66,85,103,111,112],just:[0,5,27,36,50,77,78,80,82,85,86,87,88,89,90,95,98,99,108,115,122,140],justifi:63,kappa:[97,143],kappa_i:143,karg:92,katrina:102,kaust:[4,23],keep:[24,27,33,34,64,77,80,95,98,105,108,125],keep_copi:[77,80,87],keep_gaug:95,kei:[0,1,2,12,27,29,40,86,93,97,98,131,137],kemm:81,kemm_2009:81,kentzo:50,kernel:98,kernel_languag:[83,93,98,105],ketch:4,ketcheson:[4,15,67,75,85,93],ketchesonmandliet:[4,15],ketparlev13:[4,15,66,85,117],keyboard:60,keypair:12,keyword:[2,3,70,77,82,83,86,92,98,105,115,121,131,137],kind:[80,82,87,117],kinemat:[29,41],king:[4,75],klein:81,kml:[54,111,113,114,115],kml_build_colorbar:[47,54],kml_cb:54,kml_colorbar:47,kml_dpi:[47,54],kml_figsiz:47,kml_footer:54,kml_gaug:54,kml_header:54,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:54,kml_publish:47,kml_region:54,kml_starttim:47,kml_tile_imag:47,kml_timespan:54,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,136],kmz:[54,113],kneplei:[15,75,85],know:[44,53,56,63,75,102,114,117,118,137,138,139],knowledg:44,known:[37,60,63,64,70,94,96,105,114,122],kristof:75,kutta:[85,93],kwarg:[2,29,54,70,98,105,121,131],kyle:[4,15,75,81,85,86],label:[29,45,47,48,54,111,135,137],lack:3,lake:[41,135],lambda:[83,137],land:[14,41,42,47,49,54,71,125,137],landfal:115,landslid:44,langseth:[4,15],langsethleveque00:[4,15],langtangen:99,languag:[10,69,98,99],lapack:107,laptop:85,larg:[5,19,31,33,34,44,47,48,49,60,64,69,85,87,88,104,105,112,116,122,137,139],larger:[12,19,31,47,54,63,64,65,70,83,107,113,125,135],largest:[104,118],last:[3,17,26,31,50,70,77,78,90,97,112,122,131],lat:[29,43,47,48,135,137],later:[12,46,47,53,72,93,116],latest:[22,39,47,50,52,53,79,88,94,108,112],latex:[1,47,69,89],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[13,29,31,42,43,48,63,69,111,119,125,131,137],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[13,90,119,122,131,140],launch:[35,51,82,88,89,94],law:[4,15,54,125,143],lax:[83,93,122,124,126,143],layer:[15,40,54,83,107,109,112,113,115],lbla:96,lead:[5,12,21,44,47,58,60,63,100,103,123],learn:[44,82,99],least:[4,5,12,47,54,60,96,104,105,112,113,122,124,135,137],least_significant_digit:86,leav:[12,14,40,51,53,123,137],lectur:23,led:19,leer:[81,93,122,124,126],left:[3,9,12,14,17,24,26,31,48,65,72,83,90,91,97,114,116,117,118,123,135,137,139,143],legaci:[22,50],legend:114,legend_tool:114,lemoin:[4,15,75],len:[29,83,124,126,137],lenght:122,length:[13,29,44,54,63,90,95,113,119,122,123,124,125,140],less:[44,47,58,64,93,104,105,122],let:[14,41,53,75,102,114,117],level:[3,5,6,14,22,26,31,40,42,43,44,47,50,51,53,60,64,65,78,80,83,86,87,93,100,101,104,105,107,108,112,113,115,116,118,120,122,123,124,125,126,134,135,137,139,140],levequ:[4,14,15,29,66,81,83,85,93,99,117,122,140,143],leveque09:15,leveque1996:15,leveque1997:85,leveque96:15,leveque97:[4,15],leveque_book_2002:91,levequegeorgeberg:[4,15],levyon03:15,lgomp:98,liabil:[41,44,55,75,103],liabl:[55,75],lib:[57,100],libgdal:47,liblzma:47,librari:[5,12,13,14,19,21,24,26,27,31,33,34,37,40,54,56,61,64,65,66,75,81,86,88,93,98,100,101,104,113,119,123,129,130,138,140],library_path:98,licens:[24,41,44,85,103,115],lie:[5,31],lies:[5,14,31,104,125],light:[47,60,104],lighter:47,like:[12,27,28,37,47,49,50,54,60,61,72,78,80,83,86,87,88,91,92,93,95,99,100,105,112,117,121,134,135,138],lim_typ:93,limit:[0,4,5,24,29,44,47,54,55,60,64,69,75,77,78,83,85,93,104,109,122,124,125,126,131,135,137,143],lin:125,line2kml:54,line:[1,3,4,14,27,29,31,37,40,41,42,43,46,47,48,54,56,57,60,61,65,69,70,85,86,88,93,97,98,100,101,106,107,108,109,110,111,112,113,121,122,124,131,135,137],linear:[4,29,31,47,63,70,77,81,93,117],liner:[0,29],linestyl:137,linewidth:70,link:[4,10,12,15,17,18,19,23,24,27,37,38,41,47,48,49,50,54,61,99,100,114,117,118,126,135,139],linspac:[60,80,97],linux:[12,52,62,73,96,99,105,120],lisandro:75,list:[1,3,4,6,7,8,10,12,16,17,21,24,27,29,31,33,34,35,36,40,47,48,49,51,52,53,54,55,56,57,58,60,63,64,70,72,75,77,80,81,83,86,87,89,90,91,92,93,95,96,98,100,101,104,106,107,108,109,110,111,112,113,115,116,120,122,123,124,125,126,131,132,134,137],listofgrid:115,literalinclud:49,literatur:[44,117],littl:[44,63,86,118],live:95,llapack:96,llcenter:[48,135,137],llcorner:[48,135,137],lmm:93,lnetcdf:[37,61],lnetcdff:61,load:[12,54,87,89,92,98,99,105,137,141],load_sift_unit_sourc:29,loc:137,local:[12,15,19,24,27,47,49,54,56,57,60,81,83,90,95,113,115,135,137,140],local_fnam:137,local_path:98,localhost:28,locat:[5,6,12,29,42,43,47,48,50,53,60,65,83,87,89,91,92,98,100,102,112,114,118,131,132,137],log:[24,27,83,84,85,92,93],logger:[87,95],logic:[5,14,15,31],logo:114,lon:[48,135],long_lat:137,longer:[19,27,40,49,54,113,115,116,117,135,139],longitud:[29,31,42,43,48,63,69,111,125,131,137],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[12,21,24,27,29,47,50,54,60,61,70,72,78,83,88,92,93,97,98,99,100,105,108,115,122,123,125,134,137,138],lookup:115,loop:[40,60,69,98,104,115,117,121,122,140],lose:112,loss:[55,75],lossi:86,lot:27,love:[82,117],low:[47,78,137,139],lower:[3,21,29,31,48,65,83,88,122,124,126,135,137,139],lower_glob:83,lowerg:88,luna:[15,75,85],lxml:47,lying:5,m_w:143,mac:[52,64,73,96,99,105,120],machin:[12,24,52,64,66,99,105,113,120],macport:47,made:[4,17,21,27,29,53,92,95,107,108,113,115,125,132,135,137,140],magic:54,magnitud:[29,115,125],mai:[0,1,2,3,4,5,12,16,17,18,19,21,22,23,24,26,27,29,31,33,34,35,36,37,42,43,44,45,47,48,49,51,52,53,55,56,58,60,61,63,64,69,70,72,73,75,78,79,82,83,85,86,87,90,92,93,96,98,99,100,104,105,109,111,112,113,114,115,116,117,118,120,121,122,123,124,125,131,132,133,135,137,138,140],mail:[90,96],main:[10,18,27,49,50,60,66,78,80,86,90,97,98,105,114],mainli:88,maintain:[27,115,123,135,140],mainten:75,major:[4,21,50,75,78,106,107,108,109,114],make:[1,10,12,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,49,50,51,53,54,56,57,58,60,64,66,69,72,73,77,78,80,83,84,85,86,90,92,98,103,105,107,111,112,113,114,115,117,122,135,137,139,140],make_colormap:70,make_input_data_kml:54,make_lib:12,make_multi_structur:131,make_shoreline_xi:137,makefil:[5,10,13,14,18,19,22,24,27,31,33,34,37,51,53,61,64,66,70,72,78,84,104,107,111,113,115,119,122,124,125,126,127,129,130,135,138,140],makefile_kml:111,maketopo:135,man:[15,24,41,44,125,129,130],manag:[12,47,52,87,131],mandli13a:15,mandli13b:15,mandli2016clawpack:[4,15],mandli:[4,15,75,81,85,86],mandlietal2016:15,mani:[1,3,4,5,11,12,19,20,21,27,31,33,34,35,37,38,42,47,54,56,57,63,64,65,70,72,75,77,82,85,90,92,97,98,99,104,106,107,113,115,117,121,122,123,125,135,140],manifold:60,manipul:[40,137],manner:[40,47,63,69,115,122,129,130,135],manning_break:125,manning_coeffici:125,manual:[35,78,87,94,96,105,133],manuel:[15,75,85],maojr:112,map2d_to_1d:26,map:[3,14,29,54,60,70,75,78,83,85,90,104,111,115,131,137,143],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,60,78,83],mappedgrid:[3,60],march:[16,23,107,108],margin:[31,41],mark:[14,47,105],mark_cent:83,mark_nod:83,marker:54,markup:10,marsha:[4,5,15],mask:[45,137],mask_outside_zlim:54,maskedarrai:137,mass:[5,87],massiv:85,master:[12,16,24,28,49,50,53,90,112,113,114,115],match:[29,47,54,86,92,105,131,137],materi:[4,55,63,75],math:[15,47,97],mathemat:4,mathwork:60,matlab:[6,21,24,33,34,68,69,70,89,99,115],matlabpath:60,matplotlib:[0,2,3,12,29,45,47,69,70,73,76,79,99,121,131,137,138],matric:[117,143],matteo:[4,15,75,85],matter:[57,111],matthew:[15,75,85],maux:[21,117,140],max1d:64,max:[0,29,60,104,108,124,126,131,137,143],max_buff:[40,113],max_inch:54,max_level_deep:125,max_step:93,max_vertices_in_descript:54,max_wind_radiu:131,max_wind_radius_fil:131,max_wind_spe:131,maxgr:115,maxima:[31,64,125],maximum:[3,21,29,31,32,41,60,93,97,104,107,108,115,122,123,124,126,131,132],maxlevel:[60,104,123,124,125],maxm:117,maxmi:[19,78],maxmx:[19,78],maxmz:19,maxwell_1d_homogen:90,mayb:137,mbc:140,mc_limit:81,mcs:88,mean:[3,12,21,27,40,44,53,60,87,88,104,117,118,122,124,126,139],mean_latitud:45,meant:[37,83,93,131],measur:[29,40,43,63],mechan:[51,53,95],media:15,medium:[124,140],meet:23,member:[47,90,92,97],memori:[19,21,64,65,66,77,80,87,95,123,124],mention:[85,122,123],menu:[12,17,24,54,114,118,139],meqn:[40,65,117,140],merchant:[55,75],mercuri:88,merg:[5,12,24,27,49,50,53,111],mesh:[4,6,15,60,66,69,77,104,121,122,140],meshgrid:[77,90,137],messag:[27,36,43,49,53,60,64,80,83,87,89,92,93,95,96,122,124,126,138],met:[31,55,75],metadata:[65,135,137],meteorlog:131,meter:[29,43,47,63,118,125,131,137,139],meterolog:131,method:[4,15,38,40,48,70,72,77,80,81,83,88,92,93,98,104,105,111,117,121,122,123,124,126,131,134,135,137,140],metric:43,mhhw:118,mhw:[44,118,139],micro:12,mid:70,middl:112,midpoint:83,might:[9,12,14,21,27,28,33,34,35,43,47,48,49,51,52,53,57,60,64,70,77,87,99,100,102,103,104,107,122,123,135,137,139,140],migrat:18,millimet:137,mimic:115,min:[0,131,137,143],min_level_check:31,min_time_incr:40,mind:27,minim:[5,53,86,123,137],minimum:[3,31,40,47,63,97,113,125,137],minisymposterium:23,minlevel:[104,123,124,125],minmod:[81,83,93,122,124,126],minmod_limit:81,minor:[10,47,87,107,108,109,110,111,112,113,114,115],minut:[43,47,49,54,118,137,139],mis:70,misc:4,miscellan:91,miss:[21,86,131,135,137,138],mitig:44,mitran:[4,15],mix:[29,47,63],mjb:[5,15],mjberger:4,mlc:131,mllw:139,mode:[1,12,27,98,134],model:[14,15,23,24,29,31,37,41,42,48,58,87,112,118,125,131,132,135],modern:[94,115,117],modif:[27,36,55,60,70,75,81,125],modifi:[5,8,13,14,19,21,26,31,33,34,40,41,50,51,53,56,60,62,70,78,81,83,85,90,100,101,102,103,104,110,112,113,114,115,119,122,124,125,126,129,130,135,137,140],modul:[0,6,7,24,27,31,37,41,45,47,48,53,57,63,64,69,70,71,72,73,77,78,81,82,86,90,91,92,95,100,105,108,109,111,114,115,116,122,123,125,131,135,136],module_nam:98,modulu:[29,97,124,140],molsolv:93,moment:[26,29],momentum:[14,31,44,58,87,125,135],monitor:[21,24,32,41,64,108,110,113],monoton:[122,125],monster:9,month:[15,47,85],more:[1,2,3,4,6,9,11,12,14,15,19,21,25,27,29,31,33,40,41,42,44,47,48,49,50,51,52,53,54,55,56,60,63,69,70,71,72,73,75,78,80,81,83,86,87,88,89,90,91,93,94,95,97,98,100,103,104,105,107,108,111,113,114,115,117,118,120,121,122,123,124,125,127,131,133,134,135,137,138,139,140,143],moreov:63,most:[3,19,21,26,31,33,34,36,37,40,44,46,47,48,49,52,54,56,60,64,66,69,70,72,75,83,87,88,93,96,97,104,105,112,114,116,117,118,121,122,123,125,128,140],mostli:[3,69],motion:[63,135],movabl:29,move:[14,33,34,41,49,51,53,63,90,104,107,109,114,125,135,136],movement:29,movetopo:107,mparsani:4,mpi:[66,88],mpich:88,mpiexec:88,mpirun:[88,94,105],msl:[118,139],mthlim:[83,93],much:[12,27,31,37,47,49,65,66,69,99,107,111,122,125,134,137],muct:93,multi:[15,47,77,107,109,112,115,140],multicor:[64,113],multidimension:[78,85],multilay:[40,108,111,114,115],multipl:[5,12,22,27,40,51,69,77,83,86,87,98,100,105,107,113,116,117,131,132],multistep:93,must:[5,12,14,19,21,27,29,31,42,47,49,55,56,57,60,63,64,65,75,78,86,87,90,92,93,95,96,97,98,100,107,111,117,118,122,124,125,126,131,137,138,139,140,143],mwave:117,mx1d:140,mxnest:21,my_acoustics_rp:77,my_custom_bc:93,my_geoclaw_storm:131,my_initial_solut:80,my_riemann_solv:117,my_rp_modul:77,my_setplot_fil:72,my_solv:80,my_storm:131,n00014:4,n12:31,n23:31,nadi:131,name:[0,1,2,3,6,10,12,19,21,27,28,29,31,33,34,36,40,47,50,54,55,60,61,70,72,75,78,80,82,83,86,87,91,92,97,98,100,112,115,116,117,121,122,123,124,125,126,131,137,140,141],namespac:78,nan:[43,137],nation:[4,44,131],nativ:86,natur:[31,49,117,143],naux:65,navig:[11,127],nbtool:111,nbviewer:112,nc_param:137,ncar:4,ncei:135,ncol:111,nctr:[29,63],ndarrai:[43,81,83,91,95,131,137],ndarrari:83,ndim:[21,65,72,122,123],ndip:29,nearbi:118,nearest:[40,137],nearli:83,nearshor:44,necessari:[5,12,31,33,34,42,44,47,50,51,52,53,54,60,63,65,66,72,77,78,83,86,111,113,115,116,117,121,122,135,138,140],necessarili:[4,86,105],necessit:27,need:[0,4,5,12,13,14,17,18,19,21,26,27,31,33,34,35,36,37,44,45,48,49,50,51,53,54,56,57,60,61,63,64,65,66,72,73,77,78,80,85,86,87,88,90,93,97,99,100,102,104,105,108,112,113,115,116,117,119,120,122,123,124,125,126,129,130,131,132,133,135,137,139,140,143],neg:[21,125,135,137],negat:[43,135],neglig:[55,64,75,125],neighbor:[4,31,104,113,123,124,137],neither:[47,54,55,75,113],ness:86,nest:[107,113,123,124],netcdf3:86,netcdf3_64bit:86,netcdf3_class:86,netcdf4:[86,135,137],netcdf4_class:86,netcdf4_dir:37,netcdf:[12,37,41,112,115,122,124,126,131,137,139],neumann:131,never:[31,90,95,101,104,122,124,126,138],nevertheless:47,new_featur:27,new_frame_num:98,new_plotax:[0,2,40,47,70,121],new_plotfgur:70,new_plotfigur:[1,2,40,47,70,121],new_plotitem:[0,3,40,47,70,121],new_userdata:[124,126],newdelhi:131,newdir:62,newer:[27,64,81,115],next:[2,3,5,12,17,31,33,35,40,49,50,60,65,70,72,76,77,85,86,88,93,97,102,104,105,122,123,125],nfr:4,ngdc:[118,139],nghost:65,ngrid:65,nhc:131,nhtmp:44,nice:[27,54,78,90,108],nicer:[72,99],nih:4,nnnnn:[116,122],no_data_valu:137,no_tran:83,noaa:[29,43,48,63,115,118,131,135,139],nodal:115,nodata_valu:137,nodataerror:131,nodatav:135,nodatavalu:[48,135],node:[83,115],nodes_with_ghost:83,nohup:108,non:[14,31,50,66,78,90,97,122,124,126,131,143],nonconserv:143,none:[0,1,2,3,14,17,23,26,29,40,43,47,54,80,83,86,87,92,93,95,98,105,107,113,115,116,122,124,126,131,137],nonexist:[6,24,41,85],nonlinear:[4,15,44,81,117,122,143],nonoverlap:5,nonphys:40,nonuniform:60,nor:[55,75],norm:[54,104,137],normal:[14,70,90,100,117,122,123,124,126],north:[43,63],northernmost:135,norwegian:4,nose:[27,34,35,76,88,105,133],nosetest:[27,34,35,88,94,105,133],notat:[29,43,54,117],note:[1,3,4,12,14,19,21,23,24,27,29,36,37,40,43,47,48,49,50,51,52,53,54,56,57,63,64,70,72,78,81,82,83,86,88,90,94,95,98,99,104,111,113,115,116,117,118,121,122,123,124,125,126,131,132,134,135,137,139,140],notebook:[29,63,66,79,85,87,103,111,112],noth:[13,95,119,129,130,137,140],notic:[47,55,75,97,105],nout:126,nov:[15,85],novemb:[16,112,113],now:[5,6,12,17,19,21,25,27,28,29,31,37,46,48,49,50,58,63,65,70,73,77,78,83,85,86,87,88,89,90,92,93,94,97,102,105,107,108,111,112,113,114,115,121,125,127,135,142],nprint:[123,124],npt:31,npy:137,nrm:54,nsf:4,nstate:86,nstepout:[80,87],nstrike:29,nthmp:44,ntime:124,ntot:126,num_aux:[78,86,88,90,91,95,117,122,123,124,126,140],num_cel:[7,21,83,117,122,123,124,126],num_cells_glob:83,num_digit:54,num_dim:[21,83,86,90,122,123,124,126],num_entri:98,num_eqn:[65,77,78,81,86,88,90,91,92,95,97,117,122,124,126,140],num_fgmax_v:[31,125],num_ghost:[78,83,86,90,91,93,95,117,122,124,126],num_output_tim:[77,80,87,116,122,124,126],num_proc:113,num_var:86,num_wav:[81,91,117,122,124,126],number:[1,2,3,4,5,7,14,15,18,21,26,27,28,29,31,33,34,40,47,50,54,56,60,64,65,66,72,77,78,80,81,82,83,85,86,87,88,90,92,93,95,97,98,102,104,105,107,108,110,111,112,113,114,115,116,117,122,123,124,125,126,131,132,133,137,140],numer:[4,15,47,99,131],numerica:15,numpi:[3,12,29,43,73,76,77,78,80,83,90,95,96,97,99,105,124,137,138],nxpoint:137,nypoint:137,nyu:4,object:[0,1,2,3,21,26,29,31,40,47,54,63,69,70,72,77,78,80,86,87,88,90,92,95,96,97,98,99,107,116,117,122,123,124,126,131,137],obliqu:14,obscur:21,observ:[31,44,107,118,122,125,132,139],observatori:4,observerd:132,obtain:[5,11,31,40,42,44,53,54,86,87,88,104,117,125,127,135,143],obviou:[7,47],occasion:[105,113],occupi:47,occur:[56,63,131,132],ocean:[14,15,44,47,102,125,129,130,135],octob:[16,109,110,111],off:[12,31,40,44,47,54,60,72,80,87,123,137],offer:[36,47,105],offici:[50,115],offset:[45,47,54,131,137],offshor:[54,58],oft:91,often:[5,10,12,14,19,26,31,33,34,36,37,40,41,44,45,46,54,58,63,65,87,99,100,105,116,117,118,121,122,125,131,135,139,140,143],okada85:[15,29,63],okada:[15,24,29,41,103,135,139],okadamap:29,olav:4,old:[1,6,19,21,24,50,72,80,88,89,90,93,105,112,114,115,117,135],older:[21,37,93,125],olig:[5,15],omega:77,omit:[51,53,105,113,116,125],omp_num_thread:[37,64,113,134],omp_stacks:64,on_lower_boundari:83,on_upper_boundari:83,onc:[1,12,21,27,33,34,47,50,51,52,53,60,63,72,77,87,88,89,90,95,98,113,115],ondrej:75,one:[0,1,2,3,4,5,7,12,13,14,19,21,23,24,26,27,28,29,31,33,34,40,42,47,48,50,51,52,53,54,58,60,61,62,63,65,66,69,70,77,83,86,87,88,90,92,93,94,97,98,100,102,104,105,112,113,115,116,117,119,121,122,123,124,125,126,127,129,130,131,135,137,140,141],ones:[77,78,95,115,122,123],onli:[1,3,5,7,12,14,18,21,26,27,29,31,39,40,44,47,49,50,52,54,57,58,60,63,64,65,66,70,77,80,83,86,87,88,90,92,93,94,95,97,98,102,104,107,112,113,114,115,116,117,118,120,121,122,123,124,125,126,131,135,137,138,139,140,143],onlin:[103,115,128,135],onr:4,onshor:[31,54,58],onto:[27,29,47,137],open:[4,12,15,27,28,29,47,54,69,75,79,83,86,98,120,139,141],opendatafil:57,opendiff:105,openli:22,openmp:[21,24,37,66,98,112,134],opensourc:[55,75],oper:[45,105,113],opinion:4,oppos:[27,132],opposit:[5,14,86],optim:[37,75,98],option:[2,12,14,19,21,24,27,29,31,33,34,36,37,43,46,48,53,56,60,61,69,70,77,78,80,82,83,84,85,86,87,89,92,93,94,97,98,101,104,105,108,111,112,113,121,122,124,125,126,127,131,137],orang:131,order:[4,5,12,14,15,29,31,44,48,49,51,53,57,60,63,65,66,70,72,73,75,77,80,81,83,85,86,87,89,90,93,97,98,100,111,115,117,121,122,123,124,126,131,135,137,138,140,143],ordinari:117,ordinarili:96,org:[4,15,39,41,49,50,55,75,78,79,83,86,88,100,112,114,137],organ:[21,22,33,34,80],orient:[63,78,99],origin:[3,5,12,14,19,27,29,32,40,49,64,65,78,93,98,107,113,116,123,124,126,137],orlean:102,oscil:[40,143],oscillatori:137,osher:93,osx:[47,73,99],other:[3,4,5,8,12,14,19,21,26,28,29,31,33,34,40,42,44,47,48,49,50,52,53,55,56,58,60,61,63,64,65,69,72,73,75,77,78,80,83,85,87,89,90,91,94,97,100,104,105,107,108,110,111,113,117,118,120,121,122,125,127,131,135,137,139,140,141],otherwis:[29,49,51,53,55,75,87,92,93,94,95,98,122,137],ought:93,ouput:80,our:[48,57,77,102],out1:57,out:[3,14,25,29,33,34,40,46,48,49,50,51,53,54,55,56,60,63,70,75,77,78,80,86,87,88,89,92,97,99,100,102,105,113,115,117,124,126,131,137,138],out_path:131,out_tim:80,outaux:26,outdir:[1,3,33,34,40,46,56,69,72,80,82,83,87,112,124,126,138],outdir_p:80,outfil:137,outflow:[14,122,124,126],outgo:14,outlin:[54,60,72,117,121],outn:26,output:[1,6,7,12,14,24,26,27,29,33,34,36,37,40,41,42,43,45,46,47,50,63,69,70,72,78,80,81,82,83,84,85,88,89,91,92,93,94,95,97,98,100,107,111,112,113,114,115,117,121,124,126,131,132,133,134,137,140,141],output_aux_compon:[122,124,126],output_aux_onlyonc:[122,124,126],output_file_prefix:[80,87],output_filenam:78,output_format:[80,87,122,124,126],output_opt:80,output_q_compon:[122,124,126],output_step_interv:[122,124,126],output_styl:[65,77,80,87,116,122,124,126],output_t0:[116,122,124,126],output_tim:[87,116,122,124],output_unit:29,outputdir:60,outputfil:137,outsid:[5,14,54,135,137],outsiz:54,over:[1,3,5,12,14,15,21,27,29,31,40,41,42,44,47,48,54,60,63,69,86,87,93,104,107,108,117,121,124,125,134,135,140,143],overal:[9,77],overflow:[37,114],overhead:[5,64,104,134],overlai:54,overlaid:[47,54],overland:47,overlap:[104,107,108,135],overrid:[27,37,47,77,78,98],overridden:[60,93,95],overrul:3,overview:[41,47,69,106,109],overwrit:[1,80,87,92],overwritten:[40,86,87,113,116,140],own:[14,19,23,27,53,77,78,84,85,94,95,102,115,117,127],owner:115,p_center:[83,97],p_function:87,p_node:83,p_t:97,p_x:97,packag:[4,24,27,33,34,47,50,51,52,57,66,69,73,75,77,83,85,87,89,90,92,94,97,99,100,131,138,141],page:[1,4,8,10,11,12,15,17,21,23,24,27,44,48,50,51,52,53,82,85,88,89,96,99,105,114,118,121,127,139,140],pair:[12,86,105,137],panel:47,paper:[4,5,14,29,41,49,81,85],paragraph:31,parallel:[4,21,22,40,51,64,76,82,84,85,87,90,92,94,98,105,113],paramet:[1,5,6,8,14,19,24,26,29,31,32,33,34,36,38,41,42,44,47,48,56,57,58,60,63,64,65,69,76,77,80,81,86,87,89,92,95,98,101,104,107,113,116,117,118,124,126,132,135,137,138,140],parameter:[102,115,125,131,132],parametr:132,paramt:31,parent:[3,26,83,95,98],pars:[40,98],parsani:[4,15,75,85],part:[4,21,23,29,41,44,51,53,54,61,75,78,88,94,95,97,99,103,105,125,140],partial:[15,66,102],particular:[5,11,19,21,27,29,31,37,40,41,42,44,47,50,51,55,56,57,60,70,71,73,75,77,91,92,93,95,97,102,103,105,108,111,112,113,114,115,121,125,131,132,143],particularli:[14,26,46,47,52,63,65,108,111,115,135],partit:88,pascal:[29,131],pass:[14,18,19,27,29,40,47,54,64,70,77,80,82,84,90,93,95,96,98,105,117,124,131,137,140],password:27,past:[16,20,24,49,92,113,118,125],patch:[3,5,6,14,21,26,31,47,60,63,64,65,69,70,86,88,92,95,113,115,121,123,125,134,135,140],patch_index:83,patchedges_show:[3,21],patchno:[3,26],path:[1,12,29,37,40,43,47,51,52,53,56,62,69,70,80,86,88,92,98,114,115,120,125,131,137,138],path_to_atcf:131,path_to_ibtrac:131,pathtool:60,pattern:[19,42,47,118],pcolor:[3,40,69,99,137],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:54,pcolormesh:54,pdb:70,pde:[4,15,66,85,97,122,140],pdf:[1,29],pdflatex:1,peanoclaw:75,pedant:37,peerj:[4,15],pem:12,pend:3,peopl:[4,12,75,99],pep8:27,per:[12,29,40,47,54,60,64,86,123],perfect:14,perfectli:14,perfom:105,perform:[5,21,26,44,47,48,64,66,69,70,80,83,86,90,93,98,105,116,117,120,125,133],perhap:[5,31,40,70,95,98],perimet:31,period:[5,14,31,56,77,90,104,122,124,126],perman:[16,60,74],permiss:[50,53,55,75],permit:[55,75],permut:19,perturb:[101,125,135],petclaw:[75,88,89,90,92,98,100,105],peter:4,petsc4pi:[88,94,95,105],petsc:[21,22,51,66,75,77,84,85,87,94,95,96,98],petsc_arch:88,petsc_dir:88,petsc_hello_world:88,phase:[88,112],philim:78,phoni:70,photo:[23,24],php:[29,55,75],phy:15,physic:[14,31,40,47,78,83,85,97,104,143],pick:[77,93],piec:[14,44,83],piecewis:[29,31,48,63,108,117,135],pink:[54,70,121],pinkfig:70,pip3:50,pip:[17,24,27,47,49,50,52,79,85,88,94,96,100,114,115,120],pixel:[47,54],pkg:[50,126],place:[14,19,27,33,34,47,49,50,51,53,56,57,62,87,88,90,94,100,107,113,140],placemark:47,plaid:47,plain:45,plan:[23,27,44,51,52,58,86,93,131],planar:[63,117],plane:[29,63,112,139],platform:[12,47,80,88,99,105],pleas:[4,16,23,27,39,53,74,75,77,80,82,85,86,88,90,92,93,94,96,102,115,117,131],plot:[0,1,2,4,6,7,11,26,29,33,34,35,36,37,38,41,48,50,54,65,76,77,79,80,83,84,85,87,92,94,96,97,99,100,102,110,111,112,113,114,115,131,133,137],plot_box:[29,137],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_packag:131,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_timing_stat:115,plot_topo_fil:[71,111],plot_typ:[0,21,40,47,70,72,121],plot_var2:3,plot_var:[3,26,40,47,70,71],plotax:[3,40,70,121],plotclaw1:60,plotclaw2:60,plotclaw3:60,plotclaw:[40,69,70,72,121],plotdata:[26,40,61,70,72,80,112,113,121],plotdir:[1,72,121],plotexampl:70,plotfigur:[40,70,121],plotfram:1,plotgaug:40,plotitem:[3,26,40,70,121],plotloop:[70,72],plotstyl:[3,40,70,121],plotter:[1,3,26,72],plotting_makeplot:[33,34],plottyp:60,plt:54,plu:[70,107,124,126,137],pmel:[29,63],png2kml:54,png:[1,12,33,34,36,47,54,60,113],png_extent:54,png_file:54,png_filenam:54,png_name:54,point:[3,5,12,13,14,15,19,27,29,31,33,34,37,40,42,43,44,47,48,49,50,51,52,53,54,60,61,63,77,87,88,92,98,100,104,114,116,117,118,119,120,122,123,124,125,129,130,131,135,137,138,140],point_styl:[31,110],pointer:[4,14,63,69,72,93,98,111],pointwis:[24,48,95,111,135],poisson:63,poli:54,poly2kml:54,polygon:[3,47,54,137],polynomi:117,poor:27,poorest:86,popup:12,port:[12,28,84,85,90,123],portion:[5,47,78,134],posit:[47,63,66,98,125,135,137],possibl:[5,12,21,25,27,29,31,40,43,44,47,51,53,55,56,63,70,75,77,83,86,88,89,93,98,100,104,112,117,118,122,123,135,139,140],post:[23,24,25,27,47,88,127],poster:15,posteriori:93,postprocess:[65,87],potenti:[60,113,118],powel:125,power:[47,69,99],pprint:[123,124],practic:[27,100,102],pre:[3,12,50,79,86,99],preced:70,preceed:[31,65,140],precis:[37,54,78,83,86,117,137],predefin:70,predict:43,prefer:[54,88,90,99,120,131,139],prefix:[50,80,86,87,92],preliminari:[43,115,139],prepar:27,prepend:80,preprocess:111,prerequisit:[51,52,53],present:[5,54,83,92,93,98,127,140,143],preserv:[66,93],press:[15,88,94],pressur:[40,60,72,87,97,114,115,125,131,132],pressure_forc:125,pressure_index:125,presum:118,pretti:12,prevent:47,previou:[1,4,24,27,31,40,48,49,50,51,52,53,57,60,72,77,93,102,107,112,113,114,115,116,122,124,126,135,137],previous:[5,21,72,111],price:12,primari:[21,27,41,102,105,131],primarili:115,prime:105,principl:[137,140],print:[1,3,6,47,48,54,60,70,83,87,88,89,95,97,100,107,108,111,113,114,115,122,124,126,131,138],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:113,print_git_statu:46,printenv:138,printfig:1,printfram:[1,69],prior:[55,75,124,126,140],probabl:[12,27,47,58,100],probdata:[124,126],problem:[4,6,14,15,19,23,24,26,27,31,33,34,38,41,53,56,60,63,66,70,73,76,77,82,84,85,88,91,93,96,100,105,107,108,110,111,114,117,122,124,125,126,127,134,138],problem_data:[77,91,92,95,97],problemat:87,proce:[5,27],procedur:[5,14,41,50,140],proceed:49,process:[24,33,34,41,47,51,63,77,82,83,88,94,95,98,105,113,138],processor:95,procur:[55,75],produc:[1,3,21,26,29,33,34,36,40,47,48,49,54,60,64,68,69,86,105,121,125,137],product:[29,55,75,98],professorship:4,profil:[132,137],profit:[55,75],program:[4,42,44,57,66,99],programmat:75,progress:[23,27,93,102,111,135,137],prohibit:21,proj:124,project:[23,29,44,47,49,50,63,75,79,113,114,123,137],projection_zon:29,promot:[55,75],prompt:[27,28,60,70,72,82,85,97,99,137],propag:[4,5,15,24,29,44,47,63,83,85,93,113,117],proper:[5,13,40,48,54,58,60,86,98,107,113,119,123,124,129,130,131,140],properli:[19,31,33,34,36,44,47,48,49,53,54,62,80,99,105,107,110,115,120,122,125,135,137,138,140],properti:[29,60,77,80,83,92,95,137],propos:[27,143],provid:[0,2,4,6,9,14,19,26,27,29,37,41,42,43,44,47,48,49,54,55,57,63,65,69,75,78,80,81,87,88,90,92,93,97,98,99,102,103,105,112,117,122,130,131,134,135,137,140],proximity_radiu:137,pseudo:[47,60],psi:[90,140,143],pth:53,pts:[123,124],pub:[29,131],publicli:127,publish:[4,15,49,85],pull:[23,25,28,49,50,52,82,90,105,110,113,114,117],pull_al:[27,50],pupyner:86,pure:[72,83,85,86,88,93,99,105],purpos:[31,41,44,48,55,60,65,75,83,99,103,105,116],push:[27,49,50],put:[1,10,14,27,37,50,51,53,54,60,77,82,90,113,120],pyclaw:[1,3,4,11,15,16,22,23,26,27,40,50,51,65,66,72,73,84,88,90,96,99,100,117,120],pyflak:85,pykml:47,pylab:[0,70],pylint:85,pypa:73,pypi:86,pyplot:[54,131,137],pyramid:47,python3:114,python:[3,4,6,7,10,12,15,18,21,22,24,26,27,29,31,33,34,35,36,38,40,41,42,43,46,47,48,50,51,52,53,54,63,65,66,69,70,71,75,76,78,82,83,85,86,88,89,90,91,93,96,97,98,105,108,109,111,113,114,115,117,120,125,135,137,138,141],python_io:65,pythonpath:[51,53],pyweno:[75,93],q0000:[60,122],q0001:[60,61],q000n:[1,7],q0_vs_radiu:3,q1d:140,q_i:[117,143],q_l:[91,117],q_out_field:40,q_r:[91,117],q_t:[90,93,97,140,143],q_x:[97,143],qbc:[90,93,95],qcor:78,qin:4,qinit:[19,21,41,56,57,78,118,140],qinitdata:125,qinitfil:125,qopenmp:37,qquad:143,qtrue:70,quad2kml:54,quad:54,quadrat:[29,63],quadrilater:[31,54],qualiti:47,quantiti:[13,31,54,60,80,84,85,91,95,119,125],quantiz:86,queri:[78,83,98],question:[23,27,92],quezada:[15,75,85],quick:[12,24,34,41,42,73,99,105,133],quicker:12,quickli:[40,54,79,113,137],quit:[28,60,70,72],quot:54,qxxxx:86,r_refin:125,radial:[3,43,125,140],radian:43,radii:131,radio:54,radio_styl:54,radiu:[3,125,131,132,137],rai:137,rais:[23,29,53,86,92,94,98,131,137],rake:[29,63],ran:[34,133],randal:[4,15,85],randi:[29,81,83],rang:[3,12,29,40,43,47,107,112],rare:[63,113],raster:[47,48,135],rate:12,rather:[5,19,21,27,28,31,49,50,51,53,56,57,58,62,63,83,88,90,93,101,111,112,113,115,116,121,122,123,131,132,135,137,140,143],ratio:[5,13,21,45,60,63,81,93,119,122,123,124],raw:122,rcl:47,reachabl:92,reaction:90,read:[1,4,13,27,29,31,33,34,40,44,45,48,51,53,54,57,60,63,65,69,78,80,86,87,92,98,101,112,113,115,119,124,125,126,129,130,131,135,137,140,141],read_:[86,92],read_arrai:86,read_atcf:131,read_aux:[86,92],read_data_lin:98,read_geoclaw:131,read_head:137,read_hurdat:131,read_ibtrac:131,read_imd:131,read_jma:131,read_netcdf:[115,135,137],read_output:31,read_patch_head:86,read_t:86,read_tcvit:131,readabl:[131,132],reader:141,readi:[77,78,80,94],readm:[49,50,117,120,140],real:[44,50,58,98,117,139],realist:47,realiti:44,realli:[5,105,140],rearrang:115,reason:[44,47,54,63,64,66,88,90,104,122],rebas:27,rebuild:49,recal:[1,11],recalcul:108,recangl:63,receiv:[47,105],recent:[4,12,21,24,26,29,46,49,50,51,52,53,56,58,64,70,72,73,74,112,117],recip:52,recogn:[42,48,135],recomil:31,recommend:[4,29,31,33,34,51,53,64,69,79,83,88,89,93,94,96,97,115,120,122,124,125,126,141],recompil:[27,36,37,56,64,98,140],recomput:[72,77,108],reconstruct:[85,93,131],record:[31,40,95,131,139],recov:27,recreat:[27,36,56],rect:29,rectangl:[5,29,63,104,137],rectangular:[5,6,14,15,29,31,41,42,54,83,104,115,123,125,135],recurs:[49,62,107],red:[2,3,27,40,54,70,105,121,131],redhat:99,redirect:49,redistribut:[55,75],redraw:[60,72],reduc:[5,14,47,112,114,143],redund:131,refactor:[107,108,109,111,113,114],refer:[6,19,24,29,33,34,41,42,47,56,57,60,63,77,81,83,86,87,91,93,95,100,102,115,116,117,125,131,135,137,139,140],referenc:[47,118],refin:[3,4,6,7,15,21,41,44,47,48,60,65,66,77,113,115,121,122,123,124,134,135,140],refinement_data:125,refinement_ratios_i:[7,123,124],refinement_ratios_t:[123,124,125],refinement_ratios_x:[123,124],refinementdata:110,reflect:[4,14,27,49,115,122,124,126],refresh:[12,40],regard:[4,112,131],regardless:[12,104,122,125],regener:56,region00:54,region:[3,5,6,12,14,21,31,41,44,45,47,54,58,63,66,102,115,118,123,124,135,137],regiondata:[104,124],regions2kml:54,regist:53,registr:[24,41,115,135,137],regress:[21,24,27,46,88,113,114,133],regression_test:[34,133],regrid:[9,104,107,108,113,123,124,134],regrid_buffer_width:[104,123,124],regrid_interv:[104,123,124],regular:[31,137],reiniti:113,reject:[87,93,122],rel:[12,19,29,36,42,44,47,49,63,64,70,98,100,105,108,109,110,111,112,113,114,115,118,123,125,127,135,139],relat:[3,21,49,66,91,114,118],releas:[17,21,24,39,47,49,51,52,53,74,79,93,94],release_5_x_x:50,relev:[21,26,37,41,47,49,86,105,131],reli:[66,78,89,113],relief:[118,139],reload:137,reltol:98,remain:[31,47,53,90,98,100,107,129,130,131],remak:49,rememb:[13,26,64,70,88,119,129,130],remot:[12,47,50,115,137,139],remote_directori:137,remote_topo_url:[135,137],remov:[1,3,19,36,53,54,56,61,72,88,100,107,110,111,137,138],renam:[19,21,33,34,56,90,93],render:[21,47,54,141],reorder:[19,21],reorgan:[21,78,106],repack:50,repeat:[72,116],repeatedli:[3,88,94],replac:[5,12,40,44,49,50,56,69,78,82,86,88,89,90,91,95,98,105,107,113,115,116,117,137,138],replace_no_data_valu:137,replace_valu:137,replot:72,repo:50,report:[23,29,31,46,100,105,112,115,120,122,124],repositori:[21,23,24,25,28,31,34,35,38,41,49,51,52,53,56,57,93,100,102,103,105,110,113,128],repres:[29,77,83,86,90,91,93,95,104,137,143],represent:[48,83,86,92,98,137],reprint:75,reproduc:[15,48,55,75],request:[23,25,29,49,52,65,77,82,83,87,90,92,105,113,115,117,125,131,137],requir:[3,4,14,19,21,24,26,29,33,34,36,41,43,44,50,51,53,60,63,66,69,72,73,77,78,83,85,86,89,90,93,94,95,97,98,104,105,107,108,111,113,117,121,122,123,124,125,126,131,132,135,138,141,143],rerun:[37,40,48,50,53],rescal:29,research:[4,15,41,44,75,93,103],reserv:[55,75],reset:[37,51,53,98],reset_count:98,resetplot:[70,72],resid:[49,56,83],resiz:115,resolut:[4,5,15,29,40,63,83,93,97,98,107,111,115,117,118,125,135,137,139,140],resolution_limit:137,resolv:[4,31,47,49,102,115],resourc:[15,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,54,85,86,91,137],respons:[12,44,77,92],respos:50,rest:[21,72,102,115,118,129,130,135,137],restart:[12,24,40,72,85,112,113,114,115,122,124,126],restart_fil:[116,122,124,126],restor:5,restrict:[47,115,125,135],restructur:[10,49],result:[1,3,4,6,8,11,15,24,25,29,31,32,33,34,35,40,41,43,44,48,49,50,53,54,56,58,60,63,69,70,71,72,76,80,82,85,87,91,94,98,104,105,107,111,113,114,115,122,123,124,125,126,133,135,137,139],retain:[55,75,86],retak:[122,124,126],retriev:[12,43,72,78,93,137,139],return_topo:137,return_xarrai:137,reunion:131,reutil:78,reveal:[40,97],revers:49,revert:47,review:[15,81],revis:[5,113],rewritten:29,rgb:70,rho:[60,97,124],rhou:60,rhov:60,richardson:[21,123,124],rid:27,ridg:47,riemann:[4,7,19,21,22,27,41,50,51,53,57,66,75,77,83,84,93,94,95,97,100,120,122,124,126,129,130,143],riemann_aug_jcp:114,riemann_interact:112,riemann_solv:93,riemann_tool:111,right:[31,55,58,63,75,83,88,90,91,95,97,116,117,143],rigid:[29,115],rigin:29,rigoutsi:5,rigoutso:15,rise:[29,63,118],rise_fract:[29,63],rise_shap:29,rise_tim:[29,63],rise_time_end:[29,63],rise_time_start:[29,63],risen:131,rjl:[5,15,100],rjlevequ:[4,27],rjlkei:12,rnode:115,robust:[41,115,137],rock:63,roe:[81,117],roman:52,root:[28,51,53,86,87,92],rossmanith:15,rotat:45,rough:58,roughli:134,round:47,roundoff:83,routin:[4,5,14,19,24,26,29,31,33,34,40,41,42,47,56,60,61,64,65,66,69,72,75,78,80,83,86,89,90,93,95,96,99,104,107,108,111,113,115,117,122,124,126,131,137,138,140,141,143],row:[29,48,81,104,135,137],rp1:[117,143],rp1_advect:57,rp1_ptwise:117,rp_:91,rp_sourc:90,rpn2:117,rpn2_ptwise:117,rpn2_vc_advect:109,rprint:[123,124],rpt2_ptwise:117,rsmc:131,rsphere:[43,78],rst:[49,50],rsync:49,rsync_clawpack:49,rule:[12,54,78],run1:56,run:[1,5,6,11,12,14,19,21,23,24,27,31,36,38,40,41,46,47,49,50,51,52,53,54,56,58,60,61,65,66,69,70,72,73,76,78,80,83,84,85,87,90,94,96,97,98,100,102,104,107,108,112,113,114,115,116,117,124,125,126,131,133,134,137,140],run_app_from_main:98,run_data:80,run_exampl:137,run_seri:98,runclaw:[46,108,117],rundata:[21,31,40,54,104,107,116,122,123,124,125,126],rundir:80,rung:[85,93],runmak:80,runnabl:98,runtest:[34,88,133],runtim:98,runup:58,ruptur:[29,41],rupture_tim:[29,63],rupture_typ:[29,63],safe:64,safer:56,safeti:81,sagemath:79,sagemathcloud:79,sai:[12,14,27,54,96,104],same:[3,5,7,12,14,21,24,27,30,31,37,40,42,43,44,47,48,50,53,54,56,58,61,63,66,69,70,71,72,77,81,83,85,86,87,90,91,93,98,99,107,108,112,113,116,117,122,123,124,125,129,135,137,140],sampl:[6,7,15,24,31,37,41,47,63,100,105,116,122,123,135,137,140],san:52,sanromd:52,santiago:47,satisfi:[93,104,143],save:[12,24,25,46,54,65,80,84,93,112,113,115,116,132,137],savecod:80,savefig:54,scalabl:[15,85],scalar:[26,29,87,95,117,122,143],scale:[4,29,45,47,60,66,85,86,107,113,115,125],scan:37,scatter:[3,21,60],scenario:[44,118],scheme:[81,91],schlieren:[3,60],schwarzschild:4,sci:15,scienc:[4,15,75],scientif:[4,15,85,88,99],scipi:[12,78,99,131,137],scp:12,scratch:[43,97],screen:[12,27,47,54,80,87,88,112,124,126],screenshot:[12,47],script:[10,18,19,27,29,36,40,47,49,52,56,60,66,69,75,78,82,84,85,87,88,93,98,99,100,105,115,117,121,125,126,137],scroll:12,sdist:50,sea:[29,40,41,42,44,47,63,101,111,118,125,135,137,139],sea_level:[31,44,54,125,135,137],seab:58,seafloor:[29,44,63,139],sealevel:[24,41,125],search:[1,12,53,69,85,98,100,113,115],sec:29,second:[3,14,29,31,34,40,43,47,50,54,60,77,83,87,93,104,107,113,116,122,125,131,133,134,137,140,143],section:[5,12,14,33,34,37,42,44,50,57,60,69,72,105,116,122,125,137],secur:12,see:[0,1,2,3,4,5,6,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,55,56,57,58,60,61,62,63,64,65,68,69,70,71,72,73,74,75,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143],seem:[95,100,121],seen:[11,21,31,33,34,35,44,49,64,90,122,127],segement:137,segmentedplanefault:[29,63],seism:[15,29],seismic:[29,63],select:[12,14,27,31,87,93,107,114,122,125,139],self:[29,93,137],semi:93,send:[12,23,90,117],sens:[26,47,115,143],sensit:[44,58],sent:[87,95],separ:[1,27,47,49,52,54,57,85,93,137],seper:98,sept:50,sequenc:[19,21,57,88,94,97,98,105,107,114,117,140],seri:131,serial:[88,92,98,134],server:[12,28,47,49,50,115,135,139],servic:[24,55,75],session:[1,33,34,35,89,94],set:[0,1,2,3,5,7,12,13,14,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,49,51,52,53,54,56,57,62,63,64,65,66,68,69,77,78,80,82,83,84,85,86,87,88,92,93,94,95,96,97,98,100,101,104,105,107,108,111,112,113,115,116,117,119,121,122,123,124,125,126,127,131,132,135,137,139,140,143],set_all_st:92,set_aspect:45,set_aux_from_auxbc:95,set_corn:29,set_count:98,set_cparam:[77,95],set_dynamic_slip:29,set_num_ghost:95,set_printopt:83,set_q_from_qbc:95,set_subfault:29,set_xyz:137,setaux:[19,21,57,78,107,108,117,122,124,126],setaux_default:49,setenv:88,setgaug:[40,112],setlevel:87,setplot1:60,setplot2:60,setplot3:60,setplot:[0,1,2,3,6,18,19,21,24,38,40,61,68,69,89,90,98,113,138,141],setplot_fil:47,setplot_kml:47,setprob:[57,124,126,140],setrun:[5,6,7,14,18,19,24,31,33,34,36,38,41,42,44,54,56,58,65,66,70,101,102,104,107,111,112,113,116,117,118,131,135,138,140],setrun_setgeo:125,setup:[35,50,77,78,82,85,88,90,93,94,95,103,120,138],setup_gauge_fil:83,sever:[0,1,2,9,14,19,21,22,29,33,34,36,40,42,44,47,50,51,53,60,63,69,94,104,105,106,107,108,111,112,113,114,121,125,133,135,137,140],sftp:12,shaheen:87,shall:[55,75],shallow:[13,14,15,31,41,44,66,78,85,101,108,109,111,113,115,117,119,125,129,130,135,140],shallow_spher:[78,105],shallow_water_riemann_solv:24,shallowest:63,shape:[29,43,54,78,83,88,95,137],shapshot:12,share:[24,25,47,51,53,64,66,83,86,88],sharp:54,sharpclaw:[4,22,24,66,75,82,84,85,90,107,117],sharpclawnd:93,sharpclawsolv:93,sharpclawsolver1d:93,sharpclawsolver2d:93,sharpen:81,sharper:[47,54],shear:[15,29],shell:[27,51,52,53,64,70,72,88,94,97,99,100,113,120],shg:60,shift:[29,44,48],ship:31,shock:[5,15,44,93,104],shock_bubble_interact:[33,35,82,85,94],shockbubbl:90,shoot:[69,85],shore:[31,41,125],shorelin:[47,137],shoreline_xi:137,shorter:[3,104,137],shortli:[27,105],shot:12,should:[0,1,2,3,4,5,11,12,14,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,48,49,50,51,53,54,56,58,60,61,62,63,64,69,70,72,78,83,86,87,88,90,92,93,94,95,96,97,98,100,101,104,105,107,108,111,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,135,137,138,140,142,143],shouldn:82,show:[0,2,3,8,9,27,29,33,34,40,47,49,50,54,56,60,72,83,97,100,105,111,137,138,140],showcolor:70,showgridlin:60,showitem:1,shown:[3,12,49,54,57,58,60,66,87,108,109,110,111,112,113,114,115,137,140],showpatchbord:60,shrink:137,shu:93,shuffl:86,siam:[15,23,85],sid:131,side:[5,14,17,31,47,58,63,86,105,117,143],sidebar:47,sift:[29,63,115],sift_slip:29,siftfault:[29,63,115],sigma:77,sign:[12,23,70,131],signatur:[3,78,81,83,84,86,91,131],signific:[16,58,118,137],significantli:[86,115],signitur:92,silenc:87,silent:86,silo:141,similar:[4,12,14,27,31,34,40,47,77,78,86,90,93,97,115,125,131,132,133,135],similarli:[36,82,88,90,134],simpl:[31,33,34,50,63,78,85,90,93,98,103,105,137],simplest:[62,97],simpli:[12,31,33,34,35,40,47,48,51,52,56,57,77,79,80,82,87,88,94,105,117,127,131,137,140,141],simplifi:[63,69,70,86,105,114,115,140],simul:[33,34,35,42,44,47,60,80,83,85,87,88,90,94,97,102,113,114,115,125,131],simultan:[47,113],sin:[43,70],sinc:[0,3,4,5,14,16,19,21,27,31,37,43,44,47,48,49,50,53,54,56,57,63,64,65,69,70,77,78,79,86,87,99,104,105,107,111,112,113,114,116,117,118,122,123,125,135,138,139],singl:[0,1,2,3,5,14,18,21,22,26,27,29,40,42,47,48,54,56,60,63,64,65,77,83,86,87,92,98,105,110,111,113,117,122,123,124,125,135,137,139,140],single_storm:131,sisc:[15,85],sit:12,site:[27,47,51,53,100],situat:[47,60],size:[19,29,40,47,54,64,65,69,83,86,88,93,113,124,126,135,137],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,60,117],slide:99,slider:[47,54],slightli:[14,48,113,114],slip:[24,29,41,103,135,139],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,93],slope_i:47,slope_x:47,slow:[12,47,87,96],slowest:86,slowli:54,small:[14,40,58,104,105,107,112,116,122,124,125,135,137,139],smaller:[12,47,58,66,83,87,107,122,124,125,126,137],smallest:104,smear:54,smooth:[29,93,104,140],smooth_data:137,smoothli:48,snapshot:[27,87],soc:[15,29],softwar:[5,12,24,28,41,44,55,61,75,85,86,87,127,135],sol:77,sole:117,solid:[3,14,47,63,90,121,122,124,126],solitari:15,solut:[1,3,4,14,21,24,26,34,40,43,60,63,65,69,72,78,80,83,85,86,87,90,93,95,96,97,104,105,111,112,116,117,121,122,123,124,126,133,140,143],solv:[4,7,14,15,19,25,33,34,44,53,76,78,80,83,85,90,91,94,117,122,135,140,143],solver:[4,5,19,21,22,24,27,41,51,53,57,75,76,80,83,84,87,95,109,111,113,114,115,122,124,126,129,130,143],solver_nam:117,solver_typ:[82,93],some:[3,4,5,6,7,9,11,14,15,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,53,57,63,64,65,69,71,72,75,78,79,81,86,87,89,90,92,94,95,96,97,99,100,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,121,122,123,124,125,126,127,131,132,134,135,137,140],someon:[27,56],someth:[12,26,27,56,62,69,87,92,93,100,135,138,140],sometim:[31,53,56,70,77,87,115,118,132,139],somewhat:[64,69,104,105,113,122],somewher:[61,111],sonel:139,soon:93,sorin:4,sort:[12,51,115,121,138],sound:[77,97],sourc:[4,15,22,24,27,29,37,41,47,49,50,51,53,54,55,57,58,69,75,78,82,83,84,93,94,96,97,98,102,103,105,113,114,115,118,122,124,125,126,128,129,130,131,135],source_list:98,source_split:[83,93,122,124,126,140],south:135,space:[5,6,14,15,29,31,40,47,48,63,83,87,90,104,111,116,122,123,124,125,126,135,137,140],spacial:125,span:[43,47,54],spatial:[5,15,29,58,90,104,107,111,117,124,126,143],spawn:105,specfi:137,special:[4,6,14,41,42,47,55,66,75,99,104,137],specif:[3,21,27,29,40,41,43,47,53,55,57,58,75,76,78,80,85,86,87,92,98,102,113,114,115,121,122,123,124,126,132,135],specifi:[0,1,2,3,4,5,6,13,14,19,21,24,26,27,29,31,32,36,37,38,40,41,42,43,44,46,47,48,54,56,57,58,60,63,64,65,66,68,69,71,77,80,83,86,87,90,92,93,96,98,100,101,102,105,107,110,111,112,113,114,115,116,117,118,119,124,126,127,129,130,131,132,134,135,137,138,139,141,143],speed:[31,77,81,91,97,113,117,122,125,131,132,137,140,143],speed_toler:125,spell:70,spend:112,spent:134,sphere:[43,78,108,125],spheric:[15,47],sphinx:[10,22,24,50,114],sphinx_web:49,sphinxcontrib:49,spite:[57,100],split:[5,64,83,86,93,111,112,122,124,126,134,140,143],spot:70,sprint:[123,124],spuriou:[14,105],sqrt:[3,31,58,77,90,97,124],src1:[57,130,140,143],src1d:130,src2:[78,130,140],src3:[130,140],src:[5,10,13,14,18,19,27,29,31,36,37,43,46,50,51,53,54,56,57,60,63,64,71,89,90,98,100,101,104,105,108,111,112,114,115,117,119,122,124,126,129,137,138,143],src_split:[122,124,126],srcn:[122,140],ssh:[12,27],ssp104:93,ssp33:93,ssplmm32:93,ssplmm43:93,ssplmm:93,ssprk22:93,stabil:[93,122],stabl:[73,83],stack:[64,111],stage:[93,118,135,137],stai:25,stand:4,standard:[5,14,29,47,48,60,65,78,81,93,99,100,105,124,125,126,127,135,140,143],start:[1,2,4,5,6,8,12,23,26,27,28,29,31,33,34,35,36,40,41,43,47,48,51,52,53,54,56,62,63,70,72,73,77,88,92,93,99,100,105,112,115,116,117,125,131,133,135,140],start_dat:131,start_fram:92,start_max:31,state:[12,15,24,27,49,63,70,77,78,80,83,85,86,87,88,90,91,92,93,96,97,105,117,122,135,143],statement:[33,34,51,53,60,65,99,100,113,124],station:[43,118,139],stationari:135,statist:[24,112],statu:[12,27,46,80,97],stdout:105,steadi:[63,135],steep:143,stencil:95,stencil_width:95,step1:57,step2:78,step2i:111,step2qcor:78,step2x:111,step3i:111,step3x:111,step3z:111,step:[5,9,14,18,27,31,33,34,35,40,47,49,50,60,69,72,75,76,77,78,80,87,90,93,95,97,102,104,107,112,113,116,117,120,122,123,124,125,126,135,143],step_hyperbol:93,step_index:93,step_interv:124,step_sourc:[83,90,93],stepgrid:134,stepgrid_dimsplit:111,steps_max:[122,124,126],stiff:122,still:[1,6,7,12,14,21,23,25,31,32,47,51,57,60,65,69,75,93,104,105,111,112,113,114,115,116,117,125,131],stnd:43,stommel_storm_modul:111,stop:[64,70,107,115,124,126,137],storag:112,store:[0,1,12,31,36,47,48,60,65,86,87,90,95,96,97,105,107,113,121,123,125,131,134,135,137],storm:[15,23,24,41,111,114,115],storm_atcf:131,storm_fil:[125,131],storm_ibtrac:131,storm_modul:111,storm_nam:131,storm_radiu:131,storm_radius_fil:131,storm_specif:125,storm_specification_typ:125,storm_targ:131,str:[0,1,3,29,54,86,122,123,131,137],strang:[83,93,122,124,126,140],strategi:5,stream:70,stress:[77,87],stretch:137,strict:[55,75],stride:[21,137],strike:[29,63],strike_direct:29,string:[0,1,3,6,29,40,43,47,48,54,70,78,80,81,83,86,87,92,98,100,122,125,131,137],strip:[54,137],strip_archive_extens:54,stripe:47,strong:93,strongli:60,structur:[6,9,21,31,50,53,56,66,92,93,113,121,137],stub:115,student:4,studi:[44,58],style:[5,21,27,29,45,47,65,70,75,80,115],sub:[29,105,137],subclass:29,subdirectori:[19,21,22,33,34,49,50,53,56,62,72,82,87,100,105,121,125,127,133,137],subdivid:[29,63],subdividedplanefault:29,subdivis:29,subduct:[44,63],subfault:[29,41,115,139],subject:[47,104,123,125],submodul:[25,27,50,52],subpackag:100,subplot:[0,29,72],subrepo:50,subrepositori:[27,50],subroutin:[4,5,8,14,21,31,57,104,111,117,122,123,134,140,143],subsampl:[48,135,139],subsequ:[3,9,60],subset:[29,115,135,137,139],substanti:[27,75,111],substitut:[55,75],subsurfac:135,succeed:93,succesfulli:78,success:[60,92,137,140],successfulli:[56,92],suffici:[12,14,19,63,64,102,107,125],suffix:[56,137],suggest:[4,16,23,28,43,48,53,72,73,117,125,142],suit:[27,47,105],suitabl:[7,14,19,41,44,47,92,103,117,118,131,137],sum:[40,63,87,95,134],sum_:143,sum_p:143,summar:[3,27,30,51,104,106,140],summari:[23,24,50,115,122,123,124,125],superbe:[81,122,124,126],superbee_limit:81,superclass:93,supercomput:[85,87,88],superpack:99,superposit:63,superpow:81,superpower_limit:81,supplement:127,supplementari:105,suppli:[104,131,140,143],support:[4,7,12,21,37,44,47,49,53,63,75,77,78,83,86,87,89,93,111,113,114,115,117,122,131,132,135,138,141],suppos:[14,57,60,70,100,104],suppress:[0,2,3,27,47,54,112,114,122,123],sure:[1,19,27,36,49,50,60,66,77,86,88,90,92,96,98,118,137,138,139],surfac:[15,21,29,31,40,42,44,47,63,69,71,78,85,97,101,111,125,135],surface_or_depth:[47,71],surg:[15,23,24,41,111,114,115,131],surge_data:125,surround:[104,137],surviv:75,swap:137,swaphead:137,sweep:[7,117],symbol:[3,60,100],symmetr:[3,43,140],symmetri:14,syntax:10,sys:[80,124,126],system:[4,14,15,22,34,35,47,51,53,54,57,64,65,75,85,87,88,90,91,94,97,100,105,117,122,124,126,133,140,143],systemat:21,t0000:60,t0001:[60,61],t0002:60,t_end:93,tab:[12,16],tabl:[54,58,69,86],tackl:[23,27],tag:[47,49,50,123,124],take:[5,21,26,27,29,43,49,58,60,63,70,77,83,90,93,97,98,104,105,110,122,123,124,125,137,140,143],take_one_step:93,taken:[5,31,63,87,93,104,122,140],tall:0,tan:70,tank:[14,44],tar:[12,51,54],tarbal:[50,138],tarfil:[17,51,53,114,115],target:[51,53,70,78,90],task:69,tchknnnnn:116,tck00100:112,tck:112,tckaaaaa:112,tckbbbbb:112,tcp:12,tcsh:88,tcvital:[115,131,132],td9635:131,td9636:131,teach:[41,44,103],team:[4,23,55],techniqu:[15,25],technolog:[4,75],tell:[48,61,65,70,77,86,100,105],templat:78,temporari:95,temporarili:60,ten:[4,66],tend:93,tend_max:31,tensil:15,tensor:29,tensorproductfault:29,term:[4,24,41,44,55,63,78,83,84,93,104,114,115,122,124,125,126,129,130],termin:[52,79,120,122,123],terrain:58,terrel:4,test:[21,24,29,33,37,46,47,50,51,52,53,58,69,75,76,78,84,85,98,104,108,112,113,114,115,117,126,131,134,135,137],test_acoust:105,test_app:[98,105],test_dtopotool:29,test_etopo1:[115,135],test_shallow_spher:105,test_topotool:[108,137],testpypi:50,teton:47,tex:1,text:[10,49,50,54,65,80,86,93,111],tfinal:[77,80,97,116,122,124,126],tfluct:93,tfluct_solv:93,than:[3,5,12,14,19,21,27,28,29,31,40,47,49,50,51,53,54,56,57,58,62,63,65,69,72,77,78,80,83,86,87,88,90,91,93,98,99,100,104,105,107,110,111,112,113,114,115,116,118,121,122,123,125,131,132,134,135,137,140,143],thank:[4,85],thei:[3,5,12,14,26,27,29,31,40,44,47,50,53,54,57,60,65,69,83,90,93,98,104,105,113,121,125,131,135,137,140],them:[12,17,21,27,29,31,40,47,49,51,60,61,66,75,77,82,86,87,88,90,98,102,104,105,108,128,131,137,140],theori:[55,75,143],therefor:[78,88,115,135],thereof:12,thesi:93,theta:81,theta_limit:81,thi:[0,1,2,3,5,7,9,10,11,12,14,15,16,17,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,48,50,51,52,53,54,55,56,57,58,60,61,63,64,65,69,70,72,74,75,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,107,108,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,131,132,133,134,135,137,138,139,140,141,142,143],thing:[0,12,14,21,27,44,54,72,82,99,105,114,116],think:[53,58],third:[14,31,48,81,134,137],thn:122,thoroughli:86,those:[4,5,9,11,21,23,44,47,50,66,77,78,80,87,90,95,105,107,116,127,133,137,140],though:[3,66,131,135],thought:118,thousand:[4,66],thread:[37,64,134],thredd:[135,139],three:[3,12,15,21,29,31,44,47,57,60,63,88,92,98,105,122,125,135,137,140],threshold:58,through:[4,12,27,33,34,40,44,47,60,66,69,78,90,95,97,98,100,103,104],throughout:113,thu:[5,43,87,90,115,131],tick:47,ticklabel:110,ticklabel_format:45,tidal:[87,118],tide:[40,41,43,115,118,137],tidesandcurr:43,tier:12,tild:143,time:[0,1,5,6,9,14,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,48,54,60,61,63,64,65,66,70,75,77,80,81,85,86,87,93,95,97,104,105,107,110,112,113,115,116,117,120,121,124,126,131,135,138,139,143],time_files_scanf:141,time_integr:93,time_offset:131,time_zon:43,timer:114,timespan:54,timestep:[80,87,112,114,122,124,126,131],timezon:54,tip:[23,41,51,53,69,84,85,90,99],tipe:97,titl:[0,1,4,15,40,47,54,69,85,113,137],title_with_t:[0,70],toctre:[6,24,41,85],todo:[14,31,104,117,131,137,143],togeth:[14,27,29,49,63,104],toggl:124,tokyo:131,toler:[31,98,104,105,113,123,124,125],too:[5,43,47,50,112,124,126],tool:[6,7,15,21,22,27,29,33,34,41,42,43,44,47,48,53,54,60,63,68,69,70,71,73,85,100,103,108,109,113,114,125,127,135,137,139,141],toolkit:[88,141],top:[0,1,3,10,22,29,47,49,50,51,53,63,70,90,91,100,105,116,120],topgraphi:137,topic:60,topo1:135,topo1writ:137,topo2kml:54,topo2kmz:54,topo2writ:137,topo3writ:137,topo:[24,41,44,47,48,54,71,100,107,109,115,118,125,135,137],topo_data:125,topo_fil:137,topo_file_nam:54,topo_fnam:137,topo_func:137,topo_typ:[48,54,111,112,115,135,137],topo_upd:107,topo_xlim:47,topo_ylim:47,topofil:[48,54,115,125,135,137],topograph:47,topographi:[14,15,24,31,40,41,44,48,54,58,63,71,102,103,107,108,109,111,112,115,118,129,130,136],topograpi:135,topoplotdata:111,topotool:[41,43,48,54,108,109,110,111,112,115,135,136],topotools_exampl:[41,103,137],topotyp:[125,135],topotype1:137,torrilhon:81,tort:[55,75],total:[5,29,47,63,87,93,122,123,124,126,134],total_energi:87,total_step:[122,124,126],tout:126,toward:[4,29],tprint:[123,124],trace:87,traceback:70,track:[23,24,27,47,49,53,64,77,98,105,107,125,131],track_color:131,tracker:27,tradeoff:104,tradit:[80,86],traffic:[117,140],trail:[52,53,54],tran:15,tranpsort:122,trans_cor:83,trans_inc:83,transect:[31,125],transform:37,translat:[63,118],transmiss:93,transmit:122,transon:113,transpar:[47,54],transport:[122,124,126],transvers:[7,83,113,117,122,140,143],transverse_wav:[83,122,124,126],trap:37,travel:123,travi:21,tree:[28,53,90,120],tri:131,triangl:63,triangular:[29,41,115],trickeri:50,trigger:[86,125],troubl:[33,34,69,85],troubleshoot:[24,51,85],truli:92,truncat:[14,86],tscale:54,tstart:93,tstart_max:31,tsunami:[14,15,24,31,41,42,58,63,87,107,110,118,125,132,135],tt3:[63,137],tulan:23,tune:25,tupl:[3,29,43,54,63,70,83,87,137],turbul:[44,93],turn:[40,42,44,54,67,70,87,105,112],tutori:[12,50,72,76,80,85,94,100,103],tvd:[77,83,93,143],twice:[47,122],twine:50,twitter:23,two:[0,3,4,6,7,13,15,21,27,29,31,40,43,47,49,54,60,65,70,77,83,86,87,90,93,96,98,102,103,104,105,107,111,112,115,116,117,119,120,124,125,135,137,140,143],two_d_classic_sourc:78,txt:[27,40,46,50,75,87,113,114,115,116,131],txxxx:86,type:[3,4,6,12,19,27,29,33,34,36,40,47,56,60,70,71,72,77,78,79,81,83,88,89,93,94,97,98,99,123,124,125,131,132,135,137,143],typic:[3,19,56,57,60,63,65,66,72,78,88,90,93,95,104,123,124,134,135,138,139,140,143],u_t:97,u_x:97,ubuntu:[12,52,99],ucar:[61,86],ucsb:[29,63,139],ucsbfault:[29,63],ulimit:64,ultrabe:81,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,58],unchang:60,uncommit:[27,46,50],undefin:96,under:[4,6,21,35,47,51,55,57,69,75,83,105,113,115],underflow:107,underli:[3,47,113],underlin:27,understand:[8,24,33,34,44,69,85,97,117],understood:44,underwat:[41,47],undesir:116,undivid:104,unexpect:[43,47,54,56,101,106,107,108,109,110,111,112,131],unidata:[61,86],uniform:[29,63,66,78,115,135],uniformli:135,unind:[54,101,106,107,108,109,110,111,112,131],uninstal:[50,53,100],union:135,uniqu:[1,65,112,131],unit:[29,42,43,63,83,113,131],univers:[4,15,23,49,55,75,92],unives:23,unix:[36,62,99],unknown:[29,95],unkown:95,unless:[5,36,37,54,118,122,137],unlik:[27,50,65],unlimit:[64,86],unmap:83,unnam:131,unnecessarili:108,unneed:112,unpack:50,unpredict:60,unrecogn:98,unsplit:[83,122,124,126],unstabl:112,unstructur:137,unsuccess:92,unsur:122,untar:52,unterweg:75,until:12,unus:[2,86],unzip:47,upbnd:[123,124],updat:[5,12,21,22,24,31,45,51,52,53,72,93,95,96,102,107,111,113,114,115,117,123,124,126,128,131,134,140],update_saved_valu:93,updip:[29,63],upgrad:73,upload:50,upon:95,upper:[21,31,81,83,90,122,124,126,135,137],upper_bound_limit:81,upper_glob:83,uprint:[123,124],upstream:50,upstrik:[29,63],upward:44,upwind:122,url:[4,15,47,50,115,135,137],usa:131,usa_ag:131,usag:[0,1,2,3,12,47,53,86,115,131,137],use:[3,4,11,12,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,48,50,51,52,53,55,56,57,58,60,61,63,64,65,68,69,70,72,73,75,77,78,79,80,81,82,83,85,86,87,88,90,93,94,95,96,97,98,99,100,102,105,108,110,111,112,113,114,115,117,118,120,122,123,124,125,126,131,135,137,138,139,140,141,142,143],use_for_kml:47,use_fwav:[117,122,124,126],use_petsc:[82,88],used:[0,1,2,3,4,5,6,7,10,12,14,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,50,53,54,55,56,57,58,60,61,63,64,65,66,69,70,72,75,77,78,80,81,82,83,85,86,88,90,91,92,93,95,97,98,100,101,104,105,108,112,113,114,115,116,117,118,121,122,123,124,125,126,129,131,134,135,137,140,141,143],useful:[0,3,9,18,26,27,28,31,33,34,37,40,42,45,46,47,48,51,52,53,54,64,65,71,75,78,85,87,99,100,104,105,115,117,122,123,125,135,137,138,143],useoffset:45,user:[0,2,3,4,5,11,12,18,19,21,22,24,25,26,27,31,37,44,47,51,52,53,54,58,60,63,70,78,79,82,86,88,96,98,99,100,104,111,113,115,117,122,124,125,126,128,137,143],user_bc_low:90,usernam:27,uservari:60,uservariablefil:60,uses:[29,31,33,34,41,47,48,49,60,66,78,80,83,88,98,105,113,117,125,134,137,143],usg:[4,29,139],using:[0,1,3,4,5,6,8,10,11,12,14,15,16,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,50,51,52,53,54,56,57,58,61,62,63,64,65,66,69,70,71,72,73,77,78,79,80,81,83,85,86,88,89,90,93,95,96,97,99,100,104,105,111,114,115,117,120,122,124,125,130,131,134,135,137,138,139,141,143],usr:61,usual:[0,2,3,5,29,40,42,47,54,56,61,63,65,82,83,88,90,91,93,98,102,104,113,117,122,123,124,125,126,138,140],utah:23,utc:[47,54],util:[22,24,27,41,47,65,69,72,85,100,105,121,136,137,138],uwamath:12,valid:[3,44,63,80,87,92,95,113,125,131,132,137],valout:[61,65,115,134],valout_geo:61,valout_nc:61,valout_nc_geo:61,valu:[3,5,6,14,19,21,26,29,32,33,34,37,40,41,43,45,46,47,48,54,56,58,60,63,64,65,70,78,83,85,86,87,90,91,92,93,95,97,98,104,105,107,108,110,111,113,115,116,117,118,122,123,124,125,126,131,132,135,137,138,140,143],valueerror:[29,131,137],valuemax:31,van:[81,93,122,124,126],van_leer_klein_sharpening_limit:81,vanleer:[77,93,122,124,126],vari:[3,13,15,29,41,48,58,90,92,111,117,118,119,143],variabl:[0,3,12,21,24,26,27,29,31,33,34,36,40,41,46,47,49,51,53,60,62,64,66,70,77,78,86,88,92,93,95,96,98,100,111,112,113,115,116,117,122,123,124,126,131,135,137,138,140],variable_dt_refinement_ratio:[123,125],variant:[19,51,98,105],varieti:[40,80,99],variou:[19,21,28,29,44,60,63,70,72,83,97,99,100,104,113,117,121,125,131],vastli:118,vector:[21,77,81,87,95,115,117],veloc:[14,31,43,60,72,90,97,113,118,122,123,124,125,126,140],verbatim:49,verbos:[27,29,43,54,80,83,87,93,105,122,124,126,131,137],verbosity_regrid:[123,124],veri:[3,14,21,31,44,47,50,53,54,63,70,75,78,86,87,88,89,90,93,105,108,112,122,132,135],verifi:[43,98,105,139],verifyerror:98,version:[0,1,4,5,6,7,8,10,12,13,14,16,19,21,22,27,29,31,32,37,40,41,42,44,47,48,50,51,52,54,57,58,60,61,63,64,69,70,72,73,78,81,86,88,93,94,96,99,104,105,107,108,111,112,113,114,115,117,119,120,122,123,124,125,126,129,130,131,135,137,140,143],versu:137,vertic:[29,44,47,54,118,125,137,139],via:[12,21,22,27,28,29,33,34,37,38,40,42,44,47,49,50,51,52,53,56,60,63,64,66,70,73,77,83,86,89,92,94,96,100,104,105,115,117,120,127,129,130,135,137,140],view:[3,4,21,33,34,40,41,47,48,49,54,65,69,71,72,77,88,94,111,115,127,128],viewabl:[47,80],viewable_attribut:80,vim:27,violat:[93,137],virtual:[4,12,24,26,95,99],vis:80,visclaw:[1,6,12,21,22,23,27,40,42,45,47,50,52,53,56,60,66,70,71,72,73,85,89,94,100,120,121,127],visibl:[12,47,103,127],visit:[16,21,24,69],visual:[22,23,27,33,34,40,41,53,60,65,66,69,85,89,90,100,111,141],vogl:4,volcano:4,volum:[4,15,31,38,48,54,60,85,123,134,135,140],vrt:47,wai:[5,12,14,16,25,27,33,34,40,47,48,53,54,55,56,70,72,73,75,77,80,82,83,88,90,92,94,97,99,100,102,103,107,113,114,115,117,121,122,128,132,135,140,142,143],wait:12,wall:[14,37,90,97,112,115,122,124,126,134],wang:29,want:[0,3,9,12,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,49,50,51,52,53,54,56,57,58,64,70,72,77,78,79,80,86,87,88,100,103,105,112,115,117,121,124,125,128,131,135,137,138],warm:81,warn:[27,86,87,93,122,138],warp:47,warranti:[55,75],washington:[4,23,49,55,137],water:[14,15,40,41,42,43,44,54,66,69,78,85,108,109,113,115,117,118,125,135,137,139,140],water_level:43,wave:[4,5,14,15,24,31,44,47,63,81,83,85,90,91,93,104,111,113,114,118,122,123,124,125,126,140],wave_toler:125,wavelength:44,web:[22,24,27,33,34,47,49,50,115,127,137],webpag:[21,33,34,38,42,47,50,56,118],webserv:12,websit:[14,47,49,127,137],weight:47,welcom:[23,75],well:[4,5,27,41,47,53,54,63,64,65,66,69,72,73,92,93,102,114,115,122,123,129,130,131,140,143],wellington:131,wendroff:[83,93,122,124,126,143],weno:[66,85,93],weno_ord:93,went:53,were:[4,5,19,40,57,60,61,78,104,107,113,135],west:135,western:137,wet:[31,41],what:[5,8,12,21,24,27,29,30,44,46,47,49,50,51,53,54,56,57,60,61,65,69,77,80,84,92,95,97,99,100,103,104,105,112,118,121,122,124,125,126,127,131,135,137,139,140],whatev:[61,77,92,117],when:[13,14,19,27,29,31,36,37,40,45,46,47,48,49,50,51,53,58,60,63,64,65,66,69,70,72,77,84,86,88,89,93,96,100,105,107,108,110,112,113,114,117,118,119,121,122,123,124,125,126,127,131,135,137,138,139,140,141,143],whenc:87,whenev:[27,112,140],where:[1,3,5,12,14,21,26,29,31,33,34,36,40,41,44,47,48,49,51,53,54,56,58,60,61,65,66,72,80,83,84,85,86,88,91,100,104,107,108,111,112,113,116,118,121,122,124,125,126,131,134,135,137,140,143],wherea:[40,47,69,88],wherev:138,whether:[3,5,12,14,21,43,48,55,56,60,75,83,86,87,92,93,104,105,113,117,122,123,125,137],which:[0,1,3,4,5,6,10,12,14,19,21,24,27,29,31,33,34,35,40,42,44,47,48,49,50,51,53,54,56,58,60,63,64,65,70,72,73,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,96,97,98,99,102,104,105,107,108,111,113,115,116,117,118,122,123,124,125,131,132,135,137,139,140,142,143],whichclaw:138,white:54,whith:78,who:[9,18,21,23,31,37,44,53],whole:[27,47,87,88],whose:[3,70,78,90,91,122,123,137],wide:[53,99,100],wider:70,width:[29,47,54,63,65,83,90,95,104,124,126],wiki:94,wikipedia:48,wind:[115,125,131,132,137],wind_forc:125,wind_index:125,wind_refin:125,wind_spe:131,window:[12,29,60,72,99,120],wisdom:54,wise:[27,93],wish:[4,12,13,21,28,33,34,44,47,51,53,60,68,69,85,90,93,94,96,100,102,113,119,127,129,130,138],within:[5,14,27,51,53,66,70,89,98,100,104,117,121,127,137],without:[14,21,36,40,44,49,52,54,55,56,57,60,70,72,73,75,81,86,87,98,100,101,105,106,107,108,109,110,111,112,124,126,131,138,140],wkt:47,wmo:131,wmo_:131,wmo_ag:131,won:[12,78,137],woodward:114,word:[87,115,131],work:[3,7,12,14,16,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,49,50,51,52,53,54,60,62,63,64,70,73,74,75,76,77,79,80,81,85,86,87,88,91,93,94,99,100,102,103,104,105,109,110,111,112,113,114,115,117,121,122,123,125,127,132,135,138,142],workflow:[102,127,131],workspac:[60,95],world:[44,58,85,88,131],worst:118,worth:95,worthwhil:90,would:[2,3,12,14,26,27,31,37,47,48,50,51,53,56,57,63,65,70,75,77,80,83,87,98,105,113,118,121,122,125,131,135,140],wouldn:57,wpalg:15,wrap:[54,75,78,83,93,98,131],wrapper:137,write:[27,29,40,46,48,58,63,65,66,69,77,80,83,84,86,87,88,92,113,115,124,126,131,135,137],write_:86,write_arrai:86,write_atcf:131,write_aux:[86,92],write_aux_alwai:[77,80,87],write_aux_init:[77,80],write_aux_int:87,write_geoclaw:131,write_hurdat:131,write_imd:131,write_input_data:31,write_jma:131,write_p:[86,92],write_tcvit:131,written:[5,10,24,29,36,40,53,54,55,63,65,66,70,75,84,86,90,99,113,117,122,123,124,125,126,131,137,140],wrong:[53,57,60,87,100,104],www:[4,12,15,29,39,41,49,55,61,75,78,83,86,88,114,131,137],x_cell:54,x_edg:54,x_i:[117,140,143],x_inch:54,x_mask:137,xarr:83,xarrai:137,xarray_d:137,xclaw:[33,34,80],xclawcmd:80,xclawerr:80,xclawout:80,xcode:73,xdir:80,xiaom:29,xinsheng:4,xinshengqin:4,xleft:[123,124],xlf:94,xlimit:[0,40,47],xllcenter:[48,115,135],xllcorner:[48,135],xllower:115,xlow:65,xlower:[0,3,14,21,26,78,115,124,126,135,137,140],xlowerg:78,xmax:0,xmin:0,xpoint:125,xrang:90,xtick:45,xupper:[0,21,124,126,137],xxdiff:105,xxx:135,xxxx:60,xylim:29,xzf:52,y_cell:54,y_edg:54,y_inch:54,year:[4,15,21,47,54,85,106,131],yellow:[54,70,131],yellow_red_blu:70,yes:60,yet:[1,12,19,24,44,49,52,54,69,93,113,114,115,117,122,124,142],yianni:[4,15,75],yield:3,yleft:[123,124],ylimit:[0,40,47,121],yllcenter:[48,115,135],yllcorner:[48,135],yllower:115,ylow:65,ylower:[3,21,26,78,115,124,135,137],ylowerg:78,ymax:0,ymin:0,yml:105,yong:15,you:[0,3,4,12,13,14,16,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,53,54,56,57,60,61,62,63,64,65,66,68,69,70,72,73,75,77,78,79,80,82,85,86,87,88,89,90,93,94,95,96,97,99,100,102,103,105,107,112,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130,131,133,135,138,139,140,142],your:[5,13,14,18,19,23,24,25,31,33,35,37,40,48,49,50,51,52,53,61,64,69,70,72,75,76,77,78,79,82,84,85,87,96,97,99,100,101,102,104,105,107,115,117,119,120,129,130,135,138,140],yourself:[37,40,52],ypoint:125,yupper:[21,124,137],z_format:137,zenodo:[4,16,74],zero:[3,14,29,37,54,60,77,90,95,97,118],zip:[11,47,50],zipinfo:47,zlib:86,zlim:54,zlower:21,zone:[44,47,54,123,124],zoom:47,zsh:88,zupper:21,zvar:137},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.5.0","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Release 5.4.0","Release 5.4.1","Release 5.5.0","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[77,80,131],"default":[13,101,119,129,130],"final":50,"function":[43,54,59,72,87,93,143],"import":100,"new":[42,62,82,105],"switch":60,"true":70,AWS:52,Adding:[27,47,82,90,117],For:5,Going:84,One:[117,143],The:[47,59,60,97],Use:96,Using:[12,24,52,53,57,61,64,87,90,93,117,121,140],about:[4,75],access:72,acoust:[91,97],adapt:[5,14,24],add:70,addit:[47,52,123,125],advect:91,after:116,afterfram:60,algorithm:[5,15,66,143],alias:47,all:[3,53],amazon:12,ami:12,amr:[3,5,21,64,104,123,125],amrclaw:[6,7,8,9,17,24,106,107,108,109,110,111,112,113,114,115,123,124,140],anoth:70,app:50,applic:[10,11,15,24,25,56,62,88],approach:7,arrai:[65,96],arriv:125,artifact:47,ascii:[65,86],attribut:[0,1,2,3,26,47,70],author:4,auto:[29,43,54,137],aux:[65,77],auxiliari:90,avail:38,axes:45,b4step:[13,140],background:70,backward:[17,115],base:56,basic:[47,76,89],bathymetri:139,befor:140,between:70,bibliographi:[15,24],binari:65,book:38,boundari:[5,14,90,140,143],branch:27,bug:27,built:[49,82],buoi:139,burger:91,candid:50,capac:143,cautionari:44,cell:5,cfl:81,chang:[16,17,21,70,93,106,107,108,109,110,111,112,113,114,115],chardiff:105,check:[27,105],checkpoint:116,chile:47,choic:31,choos:5,cite:[4,85],clamshel:14,classic:[17,24,33,34,93,106,107,108,109,110,111,112,113,114,115,122,126,133],claw:[67,120],clawcode2html:10,clawpack:[11,12,15,16,17,18,19,20,21,22,23,24,28,49,50,51,52,56,66,67,74,78,81,93,94,114,115,126,142],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,70],clawutil:[17,107,108,109,110,111,112,113,114,115],clinic:23,clone:[27,52],cloud:79,code:[10,24,27,42,53,67,105,138,140],color:70,colorbar:47,colormap:70,command:[35,60,72,82,138],commit:27,commun:[23,27,67],comparison:105,compat:[17,115],compil:[37,52,56,61,96,128,138],compon:[22,70],comput:[66,116],conda:52,condit:[5,14,90,97,140,143],contain:28,content:[24,27,70,77,87,93,99,105],continu:105,contourf:70,contribut:[25,27],contributor:75,control:[77,80,97],convers:19,convert:[10,18,19],coordin:[45,47],copi:62,correctli:88,coverag:27,creat:[12,28,31,47,50,60,62,77],creation:77,criteria:104,current_data:[26,72],curv:70,custom:[93,117],dart:139,data:[47,65,121,125,132,135,137,138,139,140],debug:[70,123],defin:14,depend:[81,94],deprec:7,depth:45,deriv:[77,87],describ:15,desir:121,detail:5,dev:67,develop:[23,24,27,67],diff:105,differ:[47,53,57,66,70],dimens:[83,143],dimension:117,directli:12,directori:[53,56,62,70],displac:135,docker:[28,52],dockerfil:50,docstr:[29,43,54,137],doctest:105,document:[8,10,29,43,49,50,54,85,114,115,128,137],doe:52,doing:50,domain:[83,97],done:140,download:135,doxygen:8,dtopo:136,dtopotool:29,duplic:56,each:[27,140],earth:47,earthquak:[63,139],easi:100,ec2:12,elev:45,environ:[37,120],equat:[91,97],error:[27,96],euler:91,event:[23,47],exampl:[11,24,25,33,34,35,38,40,42,47,53,60,62,68,82,85,88],exe:138,exist:62,experi:53,extra:49,extrapol:104,f2py:138,faq:70,faster:47,fault:63,featur:85,fflag:37,fgmax:31,figur:[47,70],file:[12,30,31,47,48,49,50,52,57,60,70,72,105,116,125,135,140],fileio:86,find:[12,70],finer:5,fix:[27,31,32,64,125],flag2refin:104,flag:[5,56,104,123],flow:[24,77],flowchart:9,fly:69,fork:27,format:[31,65,135],formul:143,fort:[65,70],fortran:[21,24,30,34,36,37,52,73,96,105,138,140],found:60,frame:87,friction:58,from:[12,18,19,21,24,27,29,35,38,43,54,72,78,82,89,137],full:24,fund:[4,75],further:84,fvmhp:38,galleri:[49,60],gaug:[40,47,87,139],gdal:47,gener:[17,21,29,43,49,54,115,125,137],geo:125,geoclaw:[13,14,17,21,24,41,42,43,44,45,47,64,67,71,101,104,106,107,108,109,110,111,112,113,114,115,119,125,129,130],geometri:83,geophys:24,get:[24,42,60],gfortran:[37,94],ghost:5,git:[27,46,52,73],github:[27,50],global:113,godunov:143,googl:47,grid:[5,14,31,32,48,64,83,125],guid:[27,49,50,102,103],guidelin:27,hack:67,hazard:44,hdf5:86,help:60,high:143,hint:[44,70,99],how:[70,72,87],hpc3:67,html:[10,72],imag:[28,47],imagediff:105,includ:11,independ:81,indic:85,initi:[5,90,97,140],input:[21,31,86,122,123],instal:[27,34,35,51,52,53,61,66,73,85,88,94,96,99,100,133,138],instanc:[12,52],instruct:[27,53],integr:105,intel:37,interact:[72,82],interfac:66,interpol:31,interpret:35,iplotclaw:72,ipython:[35,82,127],issu:27,item:70,jupyt:[28,35],kaust:67,keep:46,kinemat:63,kml:47,kmltool:54,kmz:47,latest:27,latex:72,latitud:[45,47],launch:[12,52],level:27,lflag:37,librari:[47,57],licens:[4,55,75],limit:81,line:[35,72,82,105,138],link:20,load:47,local:128,locat:40,log:[12,87],longitud:[45,47],machin:142,make:[70,88,127,138],makefil:[36,56,57,90,116],man:58,map:47,mapc2p:59,master:[17,27],math:79,matlab:60,matplotlib:94,maxfram:60,maximum:125,mesh:[5,24],method:[0,1,2,3,143],migrat:24,model:[44,63,102,103,139],modifi:[27,57,116],modul:[29,43,54,85,98,99,124,126,137],monitor:[31,125],more:[5,34,36],most:27,move:29,multipl:47,name:[56,57],need:47,netcdf:[48,61,65,86,135],never:27,next:[51,52,53,94],nose:94,note:16,notebook:[28,35,99,127],numpi:94,object:[83,121],obtain:94,okada:63,old:[7,49],older:24,onli:53,openmp:64,oper:73,option:[47,51,52,72,88,90],order:96,other:[15,17,22,23,51,70,114,115],out:27,outdir:70,output:[31,32,56,60,61,64,65,77,86,87,105,116,122,123,125,138],overlai:47,overview:[24,121],own:[12,28,90],packag:[21,53,86,91],page:49,paper:15,parallel:[52,66,83,88,89,95],paramet:[21,40,70,72,97,122,123,125],pass:88,patch:83,path:[60,100],pcolor:70,petclaw:[83,95],petsc:[52,88],photo:67,pip:[51,53,73,138],pixel:105,plot:[3,12,21,24,31,40,42,45,47,56,60,61,68,69,70,71,72,82,88,89,105,121,127,138,141],plot_typ:3,plotax:47,plotclaw:60,plotdata:47,plotfigur:47,plotitem:47,pointwis:117,port:78,post:69,ppflag:37,pre:37,prepar:50,prerequisit:73,previou:[23,74],print:123,printfram:72,problem:[7,78,90,97,140],procedur:31,process:[31,52,69],processor:37,produc:72,propag:143,provid:70,pth:100,publish:47,pull:27,pyclaw:[17,21,24,33,35,52,53,75,76,77,78,79,80,81,82,83,85,86,87,89,92,93,94,95,97,98,105,106,107,108,109,110,111,112,113,114,115,133],pyflak:27,pylint:27,pypi:50,python:[19,72,73,94,99,100,136],pythonpath:[100,120],q0002:65,qinit:[101,125,135],quantiti:[77,87],quick:[53,102,103],raw:65,readm:10,recent:[16,23,27],rectangular:63,refer:[15,85,99],refin:[5,14,24,104,125],region:[104,125],registr:48,regress:105,releas:[16,50,106,107,108,109,110,111,112,113,114,115],remot:27,remov:47,replac:57,report:27,repositori:[11,17,22,27,46,50,114,115,117],request:27,requir:[47,52,99,140],resolut:[47,143],resourc:24,restart:[28,77,116],result:[12,42,47,61,89,127],richardson:104,riemann:[17,24,85,90,91,106,107,108,109,110,111,112,113,114,115,117,140],routin:[13,21,57,71,101,119,129,130],rst:10,run:[28,33,34,35,42,77,79,82,88,89,105,122,123,138],ruptur:63,sage:79,same:57,sampl:[124,126],save:[87,127],script:90,sealevel:118,search:60,serial:[83,95,105],servic:12,session:23,set:[42,60,70,72,90,118,120,138],setaux:[119,140],setplot:[60,70,72,121],setrun:[21,40,122,123,124,125,126],shallow:91,share:127,sharpclaw:93,shoot:[27,60],should:66,signatur:93,simul:77,simultan:105,sinc:17,size:70,slip:63,softwar:[4,15],solut:[70,77,92],solv:97,solver:[66,77,85,90,91,93,97,117,140],some:[70,139],someth:70,sourc:[56,63,90,132,139,140,143],space:143,spatial:140,special:[3,123],specif:[31,97,105,125,131,140],specifi:[70,72,104,121,122,123,125,140],sphere:14,sphinx:[49,128],sprint:[23,67],src1d:[129,140],src:[130,140],start:[24,42,102,103],state:95,statist:134,step:[51,52,53,94,140],stop:12,storm:[102,125,131,132],subfault:63,surfac:45,surg:[102,132],sys:100,system:73,t0002:65,tabl:[24,85],tar:[50,52],term:[58,90,140,143],test:[27,34,35,88,94,105,133],than:70,thi:[4,49],tide:139,tile:47,time:[122,123,125,134,140],tip:[27,36,45,47,88],titl:70,tool:[19,24,31,40,45,105,131,136],top:27,topo:136,topographi:[29,42,47,125,135,137,139],topotool:137,track:46,transfer:12,travi:105,triangular:63,troubl:[27,60,138],troubleshoot:[53,96,138],tsunami:[44,47,103,139],tutori:[23,97,99],tvd:81,understand:77,univers:67,upcom:23,updat:[27,49,50],use:66,used:138,user:[14,23,66,140],using:[44,60,140],utah:67,util:[43,54,98],valu:[31,77],vari:140,variabl:[37,56,90,120],version:[24,36,46,49,53,74,100],view:12,virtual:142,visclaw:[17,24,69,106,107,108,109,110,111,112,113,114,115],visit:141,visual:[24,47],washington:67,water:[45,91],wave:[117,143],web:12,webpag:[12,49,127],what:[70,72,87],when:87,where:87,which:[66,100],whichclaw:100,work:[4,82,136,137,140],workflow:27,workshop:[23,67],write:[90,105],written:87,your:[12,27,28,34,47,88,90,94,127,133],zenodo:50}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","previous","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","previous.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[54,1,0,"-"],topotools:[137,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[54,3,1,""],deg2dms:[54,3,1,""],dtopo2kml:[54,3,1,""],f2s:[54,3,1,""],fgmax2kml:[54,3,1,""],fgout2kml:[54,3,1,""],gauges2kml:[54,3,1,""],kml_build_colorbar:[54,3,1,""],kml_cb:[54,3,1,""],kml_png:[54,3,1,""],kml_timespan:[54,3,1,""],line2kml:[54,3,1,""],make_input_data_kmls:[54,3,1,""],pcolorcells_for_kml:[54,3,1,""],png2kml:[54,3,1,""],poly2kml:[54,3,1,""],quad2kml:[54,3,1,""],regions2kml:[54,3,1,""],topo2kml:[54,3,1,""],topo2kmz:[54,3,1,""]},"clawpack.geoclaw.surge":{storm:[131,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[131,5,1,""],Storm:[131,0,1,""],available_formats:[131,3,1,""],available_models:[131,3,1,""],fill_rad_w_other_source:[131,3,1,""],make_multi_structure:[131,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[131,2,1,""],plot:[131,2,1,""],read:[131,2,1,""],read_atcf:[131,2,1,""],read_geoclaw:[131,2,1,""],read_hurdat:[131,2,1,""],read_ibtracs:[131,2,1,""],read_imd:[131,2,1,""],read_jma:[131,2,1,""],read_tcvitals:[131,2,1,""],write:[131,2,1,""],write_atcf:[131,2,1,""],write_geoclaw:[131,2,1,""],write_hurdat:[131,2,1,""],write_imd:[131,2,1,""],write_jma:[131,2,1,""],write_tcvitals:[131,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[137,0,1,""],create_topo_func:[137,3,1,""],determine_topo_type:[137,3,1,""],fetch_topo_url:[137,3,1,""],get_topo:[137,3,1,""],read_netcdf:[137,3,1,""],swapheader:[137,3,1,""],topo1writer:[137,3,1,""],topo2writer:[137,3,1,""],topo3writer:[137,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[137,2,1,""],Y:[137,2,1,""],Z:[137,2,1,""],crop:[137,2,1,""],delta:[137,2,1,""],extent:[137,2,1,""],generate_2d_coordinates:[137,2,1,""],generate_2d_topo:[137,2,1,""],in_poly:[137,2,1,""],interp_unstructured:[137,2,1,""],make_shoreline_xy:[137,2,1,""],plot:[137,2,1,""],read:[137,2,1,""],read_header:[137,2,1,""],replace_no_data_values:[137,2,1,""],replace_values:[137,2,1,""],set_xyZ:[137,2,1,""],smooth_data:[137,2,1,""],write:[137,2,1,""],x:[137,2,1,""],y:[137,2,1,""],z:[137,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.petclaw.geometry":{Domain:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[83,4,1,""],fwave:[83,4,1,""],kernel_language:[83,4,1,""],mthlim:[83,4,1,""],order:[83,4,1,""],source_split:[83,4,1,""],step_source:[83,4,1,""],transverse_waves:[83,4,1,""],verbosity:[83,4,1,""]},"clawpack.petclaw.state":{State:[95,0,1,""]},"clawpack.petclaw.state.State":{F:[95,2,1,""],aux:[95,2,1,""],fset:[95,2,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,2,1,""],problem_data:[95,4,1,""],q:[95,2,1,""],set_num_ghost:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw":{util:[98,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[93,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[93,4,1,""],kernel_language:[93,4,1,""],mthlim:[93,4,1,""],order:[93,4,1,""],setup:[93,2,1,""],source_split:[93,4,1,""],step:[93,2,1,""],step_hyperbolic:[93,2,1,""],step_source:[93,4,1,""],verbosity:[93,4,1,""]},"clawpack.pyclaw.controller":{Controller:[80,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[80,4,1,""],F_path:[80,2,1,""],check_validity:[80,2,1,""],compute_F:[80,4,1,""],compute_p:[80,4,1,""],file_prefix_p:[80,4,1,""],frames:[80,4,1,""],keep_copy:[80,4,1,""],nstepout:[80,4,1,""],num_output_times:[80,4,1,""],out_times:[80,4,1,""],outdir:[80,4,1,""],outdir_p:[80,2,1,""],output_file_prefix:[80,4,1,""],output_format:[80,4,1,""],output_options:[80,4,1,""],output_style:[80,4,1,""],overwrite:[80,4,1,""],plot:[80,2,1,""],plotdata:[80,4,1,""],run:[80,2,1,""],rundir:[80,4,1,""],runmake:[80,4,1,""],savecode:[80,4,1,""],solver:[80,4,1,""],tfinal:[80,4,1,""],verbosity:[80,2,1,""],viewable_attributes:[80,4,1,""],write_aux_always:[80,4,1,""],write_aux_init:[80,4,1,""],xclawcmd:[80,4,1,""],xclawerr:[80,4,1,""],xclawout:[80,4,1,""],xdir:[80,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[86,1,0,"-"],netcdf:[86,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[86,3,1,""],read_array:[86,3,1,""],read_patch_header:[86,3,1,""],read_t:[86,3,1,""],write:[86,3,1,""],write_array:[86,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[86,3,1,""],write:[86,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[83,0,1,""],Domain:[83,0,1,""],Grid:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[83,2,1,""],centers_with_ghost:[83,2,1,""],delta:[83,2,1,""],nodes:[83,2,1,""],nodes_with_ghost:[83,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[83,2,1,""],num_dim:[83,2,1,""],patch:[83,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[83,2,1,""],add_gauges:[83,2,1,""],c_center:[83,2,1,""],c_centers:[83,2,1,""],c_centers_with_ghost:[83,2,1,""],c_nodes:[83,2,1,""],c_nodes_with_ghost:[83,2,1,""],dimensions:[83,2,1,""],gauge_dir_name:[83,4,1,""],gauge_file_names:[83,4,1,""],gauge_files:[83,4,1,""],gauges:[83,4,1,""],get_dim_attribute:[83,2,1,""],num_dim:[83,2,1,""],p_center:[83,2,1,""],p_centers:[83,2,1,""],p_nodes:[83,2,1,""],plot:[83,2,1,""],setup_gauge_files:[83,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[83,2,1,""],delta:[83,2,1,""],dimensions:[83,2,1,""],get_dim_attribute:[83,2,1,""],level:[83,4,1,""],lower_global:[83,2,1,""],name:[83,2,1,""],num_cells_global:[83,2,1,""],num_dim:[83,2,1,""],patch_index:[83,4,1,""],upper_global:[83,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[81,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[81,3,1,""],beta_limiter:[81,3,1,""],cada_torrilhon_limiter:[81,3,1,""],cada_torrilhon_limiter_nonlinear:[81,3,1,""],cfl_superbee:[81,3,1,""],cfl_superbee_theta:[81,3,1,""],hyperbee_limiter:[81,3,1,""],limit:[81,3,1,""],mc_limiter:[81,3,1,""],minmod_limiter:[81,3,1,""],superbee_limiter:[81,3,1,""],superpower_limiter:[81,3,1,""],theta_limiter:[81,3,1,""],upper_bound_limiter:[81,3,1,""],van_leer_klein_sharpening_limiter:[81,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[93,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[93,2,1,""],aux_time_dep:[93,4,1,""],call_before_step_each_stage:[93,4,1,""],cfl_desired:[93,4,1,""],cfl_max:[93,4,1,""],char_decomp:[93,4,1,""],check_3rd_ord_cond:[93,2,1,""],dq:[93,2,1,""],dq_src:[93,4,1,""],dqdt:[93,2,1,""],fwave:[93,4,1,""],get_dt_new:[93,2,1,""],kernel_language:[93,4,1,""],lim_type:[93,4,1,""],num_ghost:[93,4,1,""],setup:[93,2,1,""],step:[93,2,1,""],tfluct:[93,4,1,""],tfluct_solver:[93,4,1,""],time_integrator:[93,4,1,""],update_saved_values:[93,2,1,""],weno_order:[93,4,1,""]},"clawpack.pyclaw.solution":{Solution:[92,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[92,2,1,""],patch:[92,2,1,""],plot:[92,2,1,""],read:[92,2,1,""],set_all_states:[92,2,1,""],start_frame:[92,2,1,""],state:[92,2,1,""],write:[92,2,1,""]},"clawpack.pyclaw.state":{State:[95,0,1,""]},"clawpack.pyclaw.state.State":{F:[95,4,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],is_valid:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,4,1,""],problem_data:[95,4,1,""],set_aux_from_auxbc:[95,2,1,""],set_cparam:[95,2,1,""],set_num_ghost:[95,2,1,""],set_q_from_qbc:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[98,0,1,""],VerifyError:[98,5,1,""],add_parent_doc:[98,3,1,""],check_diff:[98,3,1,""],compile_library:[98,3,1,""],construct_function_handle:[98,3,1,""],convert_fort_double_to_float:[98,3,1,""],gen_variants:[98,3,1,""],read_data_line:[98,3,1,""],run_app_from_main:[98,3,1,""],run_serialized:[98,3,1,""],test_app:[98,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[98,2,1,""],increment:[98,2,1,""],reset_counter:[98,2,1,""],set_counter:[98,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[91,1,0,"-"],advection_1D_py:[91,1,0,"-"],burgers_1D_py:[91,1,0,"-"],euler_1D_py:[91,1,0,"-"],shallow_1D_py:[91,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[91,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[91,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[91,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[91,3,1,""],euler_hll_1D:[91,3,1,""],euler_hllc_1D:[91,3,1,""],euler_roe_1D:[91,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[91,3,1,""],shallow_fwave_1d:[91,3,1,""],shallow_hll_1D:[91,3,1,""],shallow_roe_1D:[91,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":65,"000000e":124,"00000e":124,"0000ff":[3,54],"001000e":124,"00er2592":4,"00ff00":54,"00ffff":54,"01er25474":4,"020204mag_polici":29,"04d":141,"0_contain":28,"0_dockerimag":28,"0d0":98,"10k":115,"1200x1680":47,"1440l":47,"1440p":47,"15e":137,"16m":64,"17th":93,"1d_plot":[40,70,72,121],"1drad":140,"1rc":50,"1st":[81,93,122,124,126,140],"2013it":15,"2018300n26315":131,"25000000e":65,"260e":134,"27t06":54,"27t07":54,"288e":134,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[85,90,93,122,124,126,140],"301e":134,"30x30":47,"34kt":131,"360x360":47,"373e":134,"3rd":[90,93],"40000000e":65,"4th":93,"50kt":131,"5_x_x":50,"5d0":140,"5e3":125,"5r01ar53652":4,"639s":[34,133],"64kt":131,"8888ff":54,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,86,91,122,123,125],"break":[27,29,44,47,54,63,105,112,125,137],"case":[5,7,12,14,18,21,29,31,37,40,44,47,53,54,57,60,63,70,77,83,86,88,90,92,98,100,104,105,108,111,112,113,114,115,116,118,125,131,135,137,138,140,143],"catch":[36,85],"class":[0,1,2,3,24,29,31,47,54,63,70,72,78,83,85,90,92,93,95,97,98,99,116,121,122,123,124,125,126,137],"default":[0,1,2,3,12,21,27,29,31,37,40,43,45,46,47,48,51,53,54,56,57,60,63,64,70,72,77,80,82,83,86,87,88,89,92,93,95,96,98,104,107,113,116,118,123,124,125,131,135,137,140],"export":[37,47,49,51,52,53,60,64,88,96,120],"final":[29,37,49,60,63,77,80,87,97,102,107,116,122,124,126,137],"float":[3,29,31,40,43,54,80,83,91,95,98,122,123,125,126,131,137],"function":[0,1,2,3,6,13,15,21,22,24,26,27,29,31,40,41,46,47,48,56,57,58,61,63,69,70,71,77,78,80,81,82,83,84,86,89,90,91,92,95,98,104,105,107,108,111,112,113,114,115,117,119,121,122,123,124,125,126,131,135,136,137,138,140],"import":[0,3,21,27,35,40,44,47,48,51,53,54,57,58,63,66,70,72,77,78,80,82,83,85,86,87,88,89,90,92,93,94,95,97,99,105,113,117,118,122,123,124,125,126,135,137,139,141],"int":[1,2,3,29,54,80,81,83,86,87,92,95,122,123,125,131,137],"long":[27,29,43,44,47,62,112,137],"new":[1,2,4,5,7,12,17,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,50,53,54,56,57,58,60,64,70,72,73,76,77,78,79,80,86,88,90,93,95,102,104,107,110,111,112,113,114,115,116,117,120,122,123,125,131,135,137,140],"ond\u0159ej":4,"public":[4,12,16,20],"return":[0,1,2,3,29,35,43,47,54,57,60,70,72,80,81,83,86,87,90,91,92,93,95,98,105,114,117,122,124,126,131,133,137,140,143],"short":[44,90],"static":[29,63,115],"super":[22,27,115,137],"switch":[31,47,51,53,90,100,105,114,118,139],"throw":27,"true":[0,1,2,3,5,13,14,26,29,40,43,46,47,49,54,69,77,80,83,86,87,88,92,93,95,104,113,116,117,119,122,123,124,125,126,131,137],"try":[1,27,33,34,35,40,47,48,53,54,70,79,82,85,86,92,94,96,97,98,99,100,105,122,133,137,138],"var":[0,3,12,13,26,101,119,129,130,131],"while":[12,14,29,47,60,63,70,72,78,83,87,88,93,98,115,117,125,139],AND:[55,75],ARE:[55,75],AWS:[12,51],Added:[81,107,109,111,112,114],Adding:[24,76,84],And:[5,19,49,51],Are:106,Axes:[121,131],BCs:[124,126],BUT:[55,75],But:[12,47,49,70,96,108,115],CMS:4,DAs:95,DMS:4,DNS:12,Doing:63,EBS:12,FOR:[55,75],For:[0,1,2,3,6,7,8,9,12,13,14,16,17,18,21,24,25,26,27,29,31,33,35,37,40,43,44,45,47,48,49,50,51,53,56,57,60,61,63,64,69,70,72,73,77,78,82,83,85,86,87,88,90,93,94,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,121,122,123,124,125,126,128,129,130,131,132,134,135,137,139,140,143],GIS:[47,113,135],Going:[12,24,85],Ike:102,Into:99,NOT:[54,55,70,75],Not:[29,47,83,113],OPS:43,One:[22,24,25,29,47,60,78,98,104,111,137],Res:15,SUCH:[55,75],Such:60,Sys:15,THE:[55,75],That:[33,35,97,135],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,49,51,52,53,54,55,56,57,58,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,80,81,83,85,86,87,88,90,91,92,93,94,95,96,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143],Their:75,Then:[12,14,27,28,29,40,49,50,52,57,63,64,72,77,80,88,94,95,96,100,117,137,138],There:[3,5,12,21,28,31,34,36,47,56,63,65,72,87,94,102,114,115,121,122,132,133,140,142],These:[1,4,11,14,17,22,27,29,31,38,40,44,47,49,51,54,57,60,70,72,77,82,86,87,89,95,97,101,103,104,105,107,113,114,115,116,123,127,131,132,135,139,143],USE:[55,75],Use:[29,47,85,91,93,115,122,124,126,135,137],Useful:[1,3,122],Uses:[29,137],Using:[0,1,2,3,6,21,37,38,47,48,51,68,69,70,72,73,83,84,85,122,129,130,134,137,138,143],WCS:139,Will:92,With:[5,21,27,40,45,47,66,99,104,112,117,122],__________________o:137,__file__:100,__future__:113,__init__:[50,90,100],__main__:[124,126],__name__:[124,126],_build:49,_compute_c_cent:83,_compute_c_nod:83,_compute_p_cent:83,_compute_p_nod:83,_fillvalu:86,_googleearth:47,_outdir:87,_output2:[70,72],_output:[12,33,34,40,46,60,70,72,82,87,89,92,112,138],_output_from_previous_run:40,_output_new:105,_output_old:105,_plot:[12,33,34,40,60,72,121,127],_plotindex:[1,40],_plots_new:105,_plots_old:105,_ptwise:117,_pyclaw_io:80,_storm_modul:132,_subpackag:100,_surge_modul:102,a351:[15,85],a377:[15,85],aabbggrr:54,abdullah:[4,75],abil:[37,111,113,131,137],abl:[12,100],abort:56,about:[3,6,12,14,21,24,33,34,36,43,44,48,54,56,58,60,65,71,73,77,85,88,93,100,105,112,117,121,124,125,135,138,140,143],aboutu:29,abov:[3,12,14,19,27,28,31,33,34,36,37,40,44,47,48,49,50,51,53,55,57,63,65,70,73,75,78,87,89,94,97,98,99,104,113,115,117,120,121,122,124,125,126,131,134,135,137,140],abs:[29,90,98,137],absolut:[87,105,115,123,124],absolute_import:113,abstol:98,academ:[96,99],acceler:91,accept:[40,77,87,93,122],accept_reject_step:93,access:[0,15,26,51,53,82,83,85,93,95,98],accid:27,accident:[27,70],accompani:[17,20],accomplish:56,accord:[5,48],accordingli:[47,135],account:[12,23,27,50,79,88],accumul:[40,113,116],accur:[44,63,85,93,122,140,143],accuraci:[40,58,66,124,126],achiev:[19,78,129,130],acou:70,acoust:[14,33,34,44,76,77,80,82,85,93,94,111,117,124,140],acoustics1dheterogeneoustest:[34,133],acoustics3dheterogeneoustest:[34,133],acoustics_1d:[77,91,97],acoustics_1d_example1:[33,34,62],acoustics_1d_heterogen:[34,133,140],acoustics_1d_homogen:[82,105],acoustics_1d_pi:91,acoustics_2d:93,acoustics_2d_radi:[124,140],acoustics_3d_heterogen:[34,133],acoustics_3d_vari:105,acquaint:97,acquir:70,across:[113,135,137],acsza1:29,acszb1:29,act:[81,137],acta:15,actanum2011:15,action:[12,78],activ:[31,32,93,102,125],actual:[5,26,29,48,53,54,60,63,70,81,86,98,102,118,125],adapt:[4,6,15,29,48,60,66,77,115,117,121,122,140],add:[0,10,12,14,15,26,27,29,31,40,43,47,49,50,53,57,60,61,63,69,77,82,83,87,88,90,98,108,111,113,114,115,126,131,135,137,141],add_colorbar:[29,137],add_colormap:112,add_dimens:83,add_gaug:[83,87],add_label:40,add_param:[124,126],add_parent_doc:98,add_titl:70,add_true_solut:70,added:[3,14,19,21,27,31,32,43,48,50,53,54,58,60,70,83,87,100,102,104,107,108,110,111,112,113,114,115,116,122,123,125,131,134,137,141],addgaug:40,adding:[21,26,27,31,37,40,54,63,88,101,112,114],addit:[6,12,14,22,24,27,28,31,34,35,41,42,51,53,54,63,65,66,70,71,78,81,83,85,87,93,94,95,102,104,111,113,114,115,117,122,126,131,134,135,140,141],addition:[88,131],address:[47,49,113],adequ:44,adjac:[5,14,31,41,104,122],adjoint:115,adjust:[12,19,31,49,54,83,87,118,122,140],adopt:[29,93],adv:15,advanc:[5,15,64,97,112,122,140],advantag:[69,86,105],advect:[15,70,85,88,117,126,140],advection2dannulustest:[34,133],advection_1d:91,advection_1d_example1:57,advection_1d_pi:91,advection_2d_annulu:[34,133],advection_2d_inflow:111,advection_2d_swirl:140,advection_3d_swirl:[111,134],advis:[32,55,75],affect:[21,56,113,114,122,135,138],afosr:4,after:[0,1,3,5,12,18,22,26,27,28,31,33,34,40,44,49,50,52,54,56,57,60,61,65,70,78,79,80,82,87,93,95,100,105,107,111,112,122,123,124,126,131,140],afterax:[0,26,40,47,70],afterfram:[1,26,69],aftergrid:60,afteritem:[3,26],afterpatch:[3,26],again:[21,36,56,63,70,72,77,78,87,91,96,100,115,135,138],against:[98,105,112,133],agenc:[4,53,131,132],agency_pref:131,agre:[11,27,48,117,134,137,140],agreement:44,ahmadia:[4,15,75,85],aht:118,aid:78,aim:27,aks2203:4,albada:81,alg:124,alghamdi:[4,15,75,85],algorithm:[4,6,24,31,77,83,85,86,93,97,104,115,117,122,124,126,137],align:[31,47,54,125],all:[0,1,4,5,10,12,14,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,48,49,50,51,52,54,55,56,57,60,62,63,64,65,66,69,70,72,73,75,77,80,81,83,86,87,88,90,91,92,93,95,98,99,100,103,104,105,107,108,111,112,113,115,116,117,121,122,124,125,126,127,132,133,134,135,137,138,140],alloc:[19,93,111],allocat:111,allot:54,allow:[4,5,12,21,26,27,28,31,40,41,43,46,47,48,49,51,53,58,60,63,64,66,69,70,80,86,87,93,95,98,99,100,105,107,108,111,112,113,114,115,117,122,124,125,126,127,131,135,137,139],almost:99,alon:[14,47],along:[5,14,26,29,31,40,47,61,63,100,104,111,116,125,131,139],alpha:[47,50,93],alphabet:75,alreadi:[0,1,5,12,17,27,37,50,51,52,53,54,72,73,88,92,94,97,99,108,137],also:[3,4,5,6,7,8,10,14,15,16,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,53,54,56,57,60,61,63,64,65,66,69,70,72,74,77,79,80,83,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,112,113,114,115,116,117,118,120,122,124,125,126,127,129,130,131,132,133,134,135,137,138,139,140,142,143],alter:47,altern:[29,31,33,34,40,43,47,52,56,60,69,85,88,99,100,111,112,113],although:[29,47,57,60,89,90,92,137],alwai:[14,21,25,26,27,31,37,48,53,60,77,86,103,104,107,108,124,125,126,135,140],amal:[4,15,75,85],amazon:24,amazonaw:12,amdq:[91,117],ami:24,amount:[40,44,49],amplitud:113,amr:[4,6,7,14,19,22,24,26,27,31,32,40,41,54,60,65,66,69,75,83,112,114,115,121,122,124,126,134,140],amr_2d:115,amr_:[3,6],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:112,amr_level:65,amr_level_max:124,amr_levels_max:[31,104,123,124],amr_modul:[64,111],amrclaw:[4,5,11,13,14,18,19,21,22,23,27,34,37,40,41,42,50,51,52,53,60,61,64,65,66,94,100,101,104,105,116,117,119,120,122,125,129,130,133,134,138],amrclaw_advection_2d_squar:6,amrdata:[21,104,123,124,125],amrlib:111,amrnez:104,an11:49,anaconda:[47,73,85,94,99],anal:15,analog:[122,123],andi:4,angl:[14,29,43,63],ani:[3,4,5,7,12,14,17,18,19,21,26,27,31,33,34,35,41,44,46,47,49,50,51,53,55,56,58,60,62,64,65,66,70,75,81,82,83,85,86,87,88,90,92,94,98,100,103,104,105,111,115,116,118,121,122,123,125,131,140,143],anim:[14,47,111,127],anisotrop:[5,21],anl:88,annot:[26,54],annual:23,anoth:[3,21,40,47,50,52,53,54,65,69,73,82,93,96,105,115,131,140],answer:23,anyth:[3,5,27,51,53,57,105,115],aoml:131,apach:12,apdq:[91,117],api:[43,115],app:[11,12,17,22,25,27,28,31,35,38,63,102,103,110,114,115],appar:[29,64],appeal:47,appear:[0,1,3,7,12,17,22,31,40,41,47,49,52,54,56,59,70,87,92,95,113,125,127,135],append:[19,40,47,70,80,92,104,112,113,116,117,124],appl:15,appli:[3,4,5,12,14,24,29,44,47,48,58,63,70,72,81,83,86,93,104,116,122,125,140],applic:[4,5,13,14,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,50,51,53,57,61,64,72,82,83,84,87,93,98,101,103,104,105,107,110,111,113,114,115,117,119,122,125,129,130,135,137,138,140,141],appreci:75,approach:[6,12,27,40,49,51,62,69,78,88,90,98,104,111,113,114,117,121,125,140,143],appropri:[4,5,12,14,23,27,41,44,45,47,50,51,53,54,58,60,61,62,64,77,80,81,82,86,88,89,90,91,92,105,117,118,120,122,131,140,143],approv:44,approxim:[5,14,44,47,63],april:23,apt:[12,99],arbitrari:[31,54,93,107,125],arc:118,arcgi:137,architectur:88,archiv:[11,20,34,47,50,105,127,133,137,139],arcminut:[63,135],arcsecond:135,area:[13,21,93,102,113,119],arg:[83,92],argument:[0,1,2,3,26,29,43,46,47,48,70,77,78,82,83,86,90,92,93,95,98,105,115,117,121,122,123,131,137,140],argv:[124,126],aris:[55,75],arithmet:58,aron:[4,15,75,85],arora:81,arora_ro:81,around:[5,29,31,54,86,102,105,123,124,131,137,140],arrai:[0,3,5,13,19,21,26,29,31,40,43,45,48,54,70,77,78,80,81,83,85,86,87,90,91,92,93,95,97,98,99,107,108,109,113,115,117,119,122,123,124,125,126,131,135,137,140],arrang:137,arriv:[21,31,32,41,113,118],arrival_tol:31,articl:[4,15,85,127],artifici:14,asc:137,ascii:[40,48,60,77,80,87,92,113,116,122,124,126,135,141],ascii_output_format:61,ask:23,ask_us:137,aspect:[44,45,60,137],assembl:52,assert:[124,126],assess:[44,118],assign:[29,31,77,80,86,92],assist:[21,31],associ:[0,1,2,5,21,47,53,64,83,86,87,105],assum:[3,19,21,29,34,43,44,47,48,49,50,54,60,63,69,86,87,89,90,91,97,98,104,111,118,122,125,131,132,135,137,139,143],assumpt:47,astronom:118,atcf:[102,115,131,132],aterrel:4,atmospher:4,attach:[50,86,95],attempt:[7,10,19,33,34,56,86,92,98,105,107,131,137,138],attirbut:21,attr:[83,92],attribut:[6,21,29,40,63,69,71,72,77,80,83,86,88,90,92,93,104,107,112,116,121,122,123,125,131,137],attributeerror:70,aug:15,aug_glob:91,august:[16,17,23,115],austin:4,author:[15,24,41,44,81,85,86,91,103],auto:[0,40,78],autom:[78,105],automat:[0,2,3,7,10,14,29,33,34,37,47,50,56,69,70,72,77,82,86,88,94,95,96,98,105,107,122,123,125,135],aux1:31,aux1d:140,aux:[5,13,19,21,26,31,40,48,78,85,86,87,90,92,93,95,96,107,108,113,115,117,119,122,123,124,125,126,140],aux_bc_low:90,aux_bc_upp:90,aux_l:[91,117],aux_out_field:40,aux_r:[91,117],aux_time_dep:93,aux_typ:[123,124],auxbc:[90,93,95],auxiliari:[21,78,80,86,91,93,95,117,122,124,126,140],auxillari:[86,92],auxl:117,auxr:117,auxtyp:124,avail:[0,4,9,14,21,22,23,39,40,42,44,47,51,52,53,56,60,69,71,72,77,80,85,86,87,89,91,93,96,97,98,99,100,114,117,118,122,124,125,127,131,132,135],available_format:131,available_model:131,averag:[4,5,13,15,41,44,45,48,60,91,95,108,117,119,135,137,140],avi:4,avoid:[31,47,54,56,60,83,87,107,108,112,113,116,122,125,143],awai:[27,118],awar:[44,88],awr11:15,axes1:[2,72],axes:[0,1,2,26,29,40,47,60,69,70,72,121,131,137],axescmd:[0,72],axesnam:[1,72],axessubplot:29,axi:[0,29,45,47,60,70,83],axxxx:86,azv:49,b0002:65,b4step1:[13,57,140],b4step2:[13,140],b4step3:13,b4stepn:140,back:[12,26,31,49,50,114],backend:47,background:[2,69,115,121],backward:[27,29,43,54,63,86,99,108,109,137],bad:[100,105],bai:[118,139],balanc:[5,15,66,114,129,130],bale:15,balelevmitross02:[4,15,122,143],ball:137,band1:137,band:[47,137],bar:[12,49,131],barrier:98,base:[5,12,19,20,21,27,29,41,43,47,48,49,54,57,58,60,63,66,78,80,81,83,85,86,91,92,93,95,97,98,104,106,111,114,118,122,123,124,125,126,131,137,140,143],base_subfault:29,baselin:47,basemap:131,bash:[37,47,51,53,60,64,88,100,120],bash_profil:[96,120],bashrc:[12,37,96,120],basi:[40,60],basic:[5,9,11,24,29,33,35,41,52,60,77,83,85,86,87,91,93,105,131,143],basin:102,bathymetri:[13,31,41,44,47,54,91,102,113,115,118,119,125,135,137],bc1:[57,98],bc1_inflow:57,bc2amr:[14,115],bc_arrai:93,bc_lower:[14,77,90,97,122,124,126],bc_upper:[14,77,90,97,122,124,126],bcn:[5,14,126,140],bcnamr:[5,14,115,122,124,140],beam:81,bear:[29,43],bearing_unit:43,becaus:[21,26,31,47,50,86,87,88,107,117,118,122],becom:[44,96,143],been:[0,1,4,7,8,12,14,17,19,20,21,23,24,26,27,31,32,33,34,38,41,44,47,48,49,50,56,58,60,63,66,70,72,75,78,80,86,87,91,92,95,96,97,98,100,102,104,106,107,108,110,113,114,115,116,117,122,123,125,135,137,140],befor:[1,3,4,5,27,29,31,33,34,36,37,40,48,49,50,51,53,54,56,57,60,64,72,77,80,86,88,93,95,100,104,105,107,108,117,118,122,123,125,135,137,138],before_step:93,beforefram:[1,26,115],begin:[43,54,83,87,91,97,131],begin_d:43,behav:40,behavior:[49,104,105,112],behaviour:77,being:[1,3,4,7,12,40,44,48,53,72,80,86,91,92,93,98,100,102,104,112,114,117,122,125,131,138,140],believ:[44,113],belki:67,belong:[70,83,88,92,95],below:[3,5,12,13,14,16,17,21,23,29,31,47,49,50,51,53,54,58,60,63,72,75,77,79,87,91,97,99,100,101,104,105,108,109,110,111,112,113,114,115,117,119,121,122,123,124,125,126,129,130,131,135,137,140],benchmark:44,beowulf:52,berger:[4,5,15],bergercalhounhelzellevequ:14,bergercolella89:[5,15],bergergeorgelevequemandli11:[4,15],bergerleveque98:[4,5,6,15],bergeroliger84:[5,15],bergerrigoutsis91:[5,15],berkelei:[4,55,75],best:[3,14,21,25,27,37,47,48,50,56,62,64,69,70,86,90,102,103,104,105,115,117,125,128,131,135,140],besttrack:131,beta:[43,81,93,126],beta_limit:81,better:[0,5,21,31,40,60,64,65,69,93,102,112,113,114,125],between:[3,4,5,12,14,22,24,27,29,30,43,47,50,51,54,60,63,64,66,69,80,83,87,93,95,96,98,100,104,112,113,117,118,122,123,124,125,126,127,131,134,135,137,139,140],bewar:[100,137],beyond:[5,29,115],bgr:54,bibliographi:4,bibtex:4,big:86,big_earthquak:29,biggest:85,bilinear:[5,31,40,48,107,108,135],bin:88,binari:[37,50,52,55,61,75,86,87,89,112,116,122,124,137,141],binary32:86,binary64:86,bind:[27,47,69,78,88],bisect:[123,124],bit:[14,21,29,50,86,88,96],bitbucket:88,black:[3,40],blank:[3,54,101,106,107,108,109,110,111,112,131],blast:114,blob:112,block:[6,29,54,63,65,66,77,86,95,98,105,140],blossei:4,blue:[3,10,40,54,70,131,137],bndlist:115,boe:4,boisest:47,bom:131,bomb:[56,64],book:[4,11,15,24,73,92,99],bool:[0,1,2,3,43,54,80,86,91,92,93,95,98,125,131,137],border:[60,140],bore:44,both:[3,14,27,29,33,34,40,44,48,49,57,60,63,65,78,86,87,88,93,94,104,105,111,112,115,117,122,124,126,129,135,140],bottom:[11,12,13,29,33,34,41,44,49,58,63,77,90,91,113,114,119,129,130],boulder:23,bound:[78,81,88,122,137],boundari:[6,19,24,47,54,57,63,64,78,83,91,93,97,102,108,111,115,122,124,126],boussinesq:44,bowl_radial_fgmax:31,box2kml:54,box:[29,47,54,137],branch:[17,24,28,37,46,49,50,52,53,105,114,115],brief:[4,50,125],briefli:143,bring:[12,47,49,60],brisa:4,brisadavi:4,broad:137,broken:[18,19,27,61,63,105],brought:27,brown:[75,137],brows:[10,23,28,38,47,60,127,140],browser:[12,27,28,33,34,47,49,127],bsd:[4,55,75,115],buffer:[29,40,104,112,113,123,124,137],buffer_length:137,buffer_s:[29,63],bug:[4,7,21,23,31,37,47,58,64,70,75,110,111,112,113,115],build:[4,15,27,49,50,60,78,88,98,114],buildsystem:88,built:[27,58,66,76,85,88,90,92,104,105,129,130],bulk:[18,77,91,97,117,124,140],bull:[15,29],buoi:41,burger:[85,117,140],burgers_1d:91,burgers_1d_pi:91,busi:[55,75],butcher:93,button:[11,12,27,47,54,114],c210:[15,85],c231:[15,85],c_center:83,c_centers_with_ghost:83,c_l:91,c_node:83,c_nodes_with_ghost:83,c_r:91,cach:[21,43,50,72,75],cache_dir:43,cada:81,cada_torrilhon_limit:81,cada_torrilhon_limiter_nonlinear:81,cake:67,cal:[117,140,143],calcul:[3,5,26,29,41,43,60,63,70,83,91,93,108,113,137],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:15,calhoun:[4,15,47],calhounhelzellevequ:14,call:[1,5,8,19,21,26,29,37,40,46,47,57,60,63,65,70,72,77,78,80,81,86,87,90,92,93,95,97,98,105,107,111,112,114,115,117,120,122,124,125,126,131,137,140],call_before_step_each_stag:93,call_setplot:70,callabl:98,calucl:91,cambridg:15,camera:47,can:[0,2,3,4,5,6,7,8,10,11,12,14,16,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,53,54,56,57,58,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,102,104,105,107,108,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,135,137,138,139,140,141,143],cannot:[53,86,131],canopi:94,capa:92,capa_index:[122,124,126],capab:137,capabili:115,capabilit:113,capabilti:115,capabl:[6,11,21,31,32,44,66,78,107,112,113,115,137,139],capac:[13,91,119,122,123,124,126],captur:[44,135],car_nam:131,care:[31,41,88],carefulli:[19,21,58],cartesian:[31,42,54,78,125],cartopi:131,cascad:4,cast:137,cat_nam:131,categor:131,categori:131,category_color:131,caus:[21,44,47,49,55,56,72,75,96,105,112,113,114,121,123,135,137],caut:81,caution:44,cautionari:[24,41,57,125],cautiou:44,caxi:60,cb_file:54,cb_filenam:54,cb_kwarg:137,cb_name:54,cb_xfrac:54,cb_yfrac:54,cbar:[91,137],cdot:[58,90],cell:[3,4,6,7,13,14,19,21,26,31,40,41,47,48,54,60,64,65,66,77,83,86,88,91,93,95,97,104,107,108,112,113,114,115,117,118,119,122,123,124,125,126,132,134,135,140,143],celledg:3,celledges_show:[3,21],cellgridintegr:107,cellgridintegrate2:107,cellsiz:[48,111,135],center:[4,26,29,31,40,47,48,54,63,77,83,90,91,97,104,115,123,124,125,131,132,135,140],centerlin:29,centers_with_ghost:83,central:[122,131,132],central_pressur:131,centroid:[29,63],certain:[31,41,52,87,104,112,122],certainli:[88,99],certik:[4,75],cf2py:78,cfl:[5,83,87,93,97,107,112,122,124,125,126],cfl_desir:[93,122,124,126],cfl_max:[93,122,124,126],cfl_superbe:81,cfl_superbee_theta:81,challeng:114,chanc:75,chang:[1,5,7,12,13,14,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,53,54,56,57,58,60,61,64,65,66,69,72,77,78,84,86,87,95,98,102,103,104,105,117,119,122,123,124,125,126,129,130,135,138,140],changelog:[16,17,21,106,107,108,109,110,111,112,113,114,115],changes_to_mast:50,chapter:[14,117,122,140],char_decomp:93,charact:43,characterist:93,charg:12,chava:125,cheaper:12,check:[5,14,19,31,33,34,36,37,46,47,49,50,51,53,56,60,70,77,78,80,85,88,92,93,95,97,98,100,108,123,124,131,137,138,139,140],check_3rd_ord_cond:93,check_diff:[98,105],check_lmm_cond:93,check_valid:80,check_valu:[98,105],checkout:[27,49,50],checkpoint:[24,40,112,113,115,122,124,126],checkpt_interv:[122,124],checkpt_styl:[112,116,122,124],checkpt_tim:[122,124],checksum:86,chen:[29,139],chile2010:[47,103,107,110,135],chile2010_fgmax:31,chile2010a:103,chile2010b:103,chile:[41,54,63],chile_2010:47,chile_dtopo:63,chk00006:[124,126],chk00100:112,chk:112,chkaaaaa:112,chkbbbbb:112,chknnnnn:[116,122,124,126],choic:[14,41,69,93,122,124,125,126,140],choos:[0,6,54,63,90,122,125],chose:58,chosen:[3,47,48,97,104,118,123],chri:4,chunk:86,chunksiz:86,circl:[3,43,70],circular:15,cise:15,citat:4,cite:[16,24,52,74],cjvogl:4,clamshel:108,clarifi:21,clash:60,classic4:126,classic:[4,5,11,13,14,18,19,21,22,23,27,37,38,42,50,51,52,53,57,62,64,65,66,75,77,80,82,83,84,85,86,90,100,101,105,116,117,119,120,123,125,130,138,140],classic_1d:57,claw1:[57,98],claw1ez:57,claw:[5,7,10,11,12,13,14,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,49,50,51,52,53,54,56,57,60,62,63,64,71,77,80,82,85,86,87,88,94,96,100,101,102,103,104,105,107,108,110,111,114,115,117,119,124,125,126,128,129,130,133,134,135,137,138,140,141],claw_1dnoncon:143,claw_git_diff:[27,46,50],claw_git_statu:[27,46,50],claw_lib:61,claw_outdir:[56,70],claw_packag:93,claw_pkg:[122,123,124,125,126],claw_topo_download:137,claw_vers:53,clawdata2pyclaw:78,clawdata:[107,111,116,122,123,124,125,126],clawdev2013:49,clawgraph:60,clawpack:[1,4,5,6,10,14,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,53,54,55,57,60,62,63,64,68,69,70,71,72,73,75,76,77,79,80,82,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,100,103,105,106,107,108,109,110,111,112,113,116,117,120,122,123,124,127,128,131,133,135,137,138,140,141,143],clawpack_src:[51,53,100],clawplotax:[1,2,3,26,70,115,121],clawplotdata:[2,3,26,40,47,70,72,80,121],clawplotfigur:[0,1,47,70,121],clawplotitem:[0,1,6,21,26,69,71,112,115,121],clawrundata:[40,54,116,122,123,124,126],clawsolut:1,clawsolv:[93,117],clawsolver1d:[77,80,83,93,97,117],clawsolver2d:[83,93],clawutil:[10,18,19,22,27,36,37,46,50,52,56,100,105,120,122,123,124,126,137,138],clean:[21,50,98,111,115],cleaner:[27,113],cleanup:114,clear:[1,2,5,60,72],clearfigur:1,clearfram:[1,72],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,11,12,16,17,27,47,105,114],clifford:23,clint:15,clobber:[86,112],clockwis:[31,43,63,137],clone:[11,17,22,23,38,49,50,51,53,73,74,88,94,103,138],close:[12,47,49,54,60,86,104,123,131],close_fig:54,closer:[63,124],closest:131,cloud:12,cluster:[5,15,52,104,123,124],clustering_cutoff:[104,123,124],cma:131,cmap:[47,54,70,137],cmap_slip:29,cmax:[47,54],cmax_dz:29,cmax_slip:29,cmdline:100,cmin:[47,54],cmin_slip:29,cname:49,coars:[3,31,47,104,113,122,135,140],coarsen:[48,104,115,123,135,137],coarsen_method:48,coarser:[3,14,48,113,122,123,140],coarsest:[5,47,65,107,116,122],coast:137,coastal:[44,118,125,135],coastlin:[31,47,125,139],code:[4,5,6,7,14,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,49,51,52,55,56,57,58,61,62,63,64,65,66,68,70,72,75,77,78,83,85,86,87,88,90,93,94,97,100,103,106,107,108,111,112,113,114,115,116,117,122,124,125,126,127,131,133,134,135],code_of_conduct:115,coeffici:[58,90,91,93,95,96,97,117,125],colella:[5,15],collabor:[47,127],collect:[11,24,25,27,29,31,63,69,77,93,127],collela:114,color:[3,29,47,54,60,69,121,131,137],colorado:23,colorbar:[3,54,115,137],colorbar_kwarg:115,colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,60,69,71,112,137],column:[9,29,31,40,44,87,91,111,137],column_list:29,column_map:29,com:[11,12,16,22,23,25,27,28,49,50,51,52,53,74,86,88,90,94,110,112,113,114],combin:[19,49,54,112,139],combinatori:105,come:[3,27,49,70,72,82,88,93,111,135,140],comfort:[53,90],comm_world:98,command:[0,1,2,3,10,12,27,28,36,46,47,50,51,52,53,56,62,69,70,73,77,78,80,85,88,89,93,97,98,99,100,105,117,120,121,122,123,135,137],commenc:116,comment:[10,23,45,50,114,116],commit:[24,29,46,49,50,105],common:[3,22,27,33,34,36,37,56,57,66,69,77,91,93,95,96,113,115,138,140],common_sourc:57,commonli:[3,60,70,72],commun:[24,47,75,95,98,100,115],comot:4,compact:135,compar:[21,34,40,44,47,50,70,87,104,105,118,123,125,133,139,143],compare_gaug:111,compat:[27,29,43,47,54,63,69,86,88,96,99,108,109,113,114,137],compens:137,compil:[12,24,33,34,36,42,51,53,57,64,66,72,73,78,85,86,90,94,98,107,117,120],compile_librari:98,complet:[19,21,27,43,56,72,77,78,88,98,99,105],complevel:86,complex:[11,83],compliant:37,complic:[14,70,78,121],compon:[3,14,19,21,24,31,34,40,51,53,60,65,69,90,92,94,95,104,111,122,123,124,135,140],compos:[29,77],comprehens:105,compress:[29,86,137],compris:[21,85,137],comput:[3,4,5,12,14,15,26,28,29,31,40,43,47,48,51,53,54,56,61,63,69,70,72,78,80,83,85,86,87,88,93,97,99,100,102,104,107,108,112,113,117,122,124,125,126,132,135,140,143],computation:[78,93],compute_f:[80,87],compute_gauge_valu:87,compute_p:[77,80],concentr:102,concern:[21,41],conclus:[4,47],conda:[47,51,73,85],condit:[6,19,24,55,57,66,75,76,77,78,80,87,93,101,107,108,111,115,118,122,124,125,126],conduct:115,conf:[49,50],confer:23,config:88,config_fc:138,configur:[70,77,88,137],confirm:44,conflict:[5,27,53,56,60,96,100],conform:[21,27,92,115,135],confus:[3,48,53,100,117],conjunct:[86,104],conlict:56,connect:[31,49,54],consequenti:[55,75],conserv:[4,5,15,87,93,95,140,143],consid:[5,44,52,53,78,100,120,127,137],consider:[44,77],consist:[5,31,43,47,50,54,88,113,117,125,135,140],consol:[12,87,125],consolid:111,constant:[29,31,44,54,58,88,91,117,125,137,140],constant_storm_modul:111,constrain:104,constraint:[40,123,143],construc:54,construct:[21,29,48,77,83,98,131,132,135],construct_function_handl:98,constructor:95,consult:96,contact:[82,85,94],contain:[1,3,6,11,12,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,50,52,54,56,57,60,61,65,66,70,72,73,77,78,80,81,83,85,86,88,90,91,92,93,95,97,98,100,105,107,108,115,117,121,122,125,127,131,135,137,138,140],containing_rect:29,containt:116,contamin:122,contan:47,content:[47,78,140,141],context:[26,47,140],contigu:[65,86,95],contingu:21,continu:[12,21,27,29,45,75,117,122,143],contour:[3,29,40,47,48,60,99,121,137],contour_color:3,contour_kwarg:[3,137],contour_level:[3,137],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,69],contract:[55,75],contrast:48,contribut:[4,23,24,52,75,78,85,90,93,102,105],contributor:[4,23,55,85],control:[5,6,22,24,37,40,51,53,60,72,76,81,83,85,86,87,88,90,104,113,125],conveni:[1,26,33,34,40,47,72,80,82,85,87,89,97,140,143],convens:135,convent:[3,21,29,42,48,63,91,135],converg:69,convers:[18,24,78,86,104,135,139],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,51,53,54,56,63,78,90,98,115,122,123,131,135,139],convert_fort_double_to_float:98,convert_readm:10,convert_to_standard_unit:29,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,65,69,77,83,87,88,97,104,125,137],coordinate_specif:[29,63],coordinate_system:[13,119,125],coorind:137,copi:[5,13,14,33,34,40,47,49,50,53,60,77,80,90,95,101,102,103,104,108,112,115,119,127,129,130,135,140],copyq1:57,copyright:[55,75],core:[4,66,105,115],corioli:[44,125,129,130],coriolis_forc:[44,125],corner:[3,29,31,48,63,65,83,122,124,126,135,137],correct:[19,27,37,50,57,58,60,70,77,83,88,92,98,107,108,112,122,124,125,126],correctli:[27,31,78,84,111,125],correspond:[3,5,22,24,26,29,40,43,44,48,49,54,60,63,70,77,81,83,86,87,90,92,95,104,105,117,118,122,123,124,125,126,131,135,139,140],cos:[43,45,77,90],cosin:77,cost:[12,93],could:[12,26,31,33,34,40,48,53,63,64,70,72,77,83,87,95,96,99,100,111,123,124,125,126,137,140],council:4,count:77,count_from_zero:77,counter:[98,137],counterclockwis:63,coupl:[113,143],courant:[4,5,104,114,122,123,124,126],cours:[12,25,31,40,42,63,88,89,97,102,125,135],cover:[5,26,27,29,31,47,54,63,104,108,113,124,125,135],coverag:[85,105],covert:10,cparam:[77,95],cpu:[12,112,115,134],crash:[112,122],creat:[0,1,2,3,5,6,18,23,24,27,29,33,34,36,38,40,41,42,46,49,52,53,54,56,63,65,69,70,72,78,79,82,83,85,86,89,92,95,96,97,98,105,107,111,112,113,115,121,122,123,124,127,128,131,137,139,140,141],create_dtopo_xi:[29,63],create_dtopographi:[29,63],create_topo_func:137,creation:[70,85,107],criteria:[5,6,21,24,95],criterion:[31,104,124],critic:[47,87,117],crop:[48,137],cross:27,crucial:[47,135],csdm:23,cse:23,csh:88,csv:[29,63,115],csvfault:[29,63],ctrl:[28,70],cube:60,cumul:115,current:[3,12,19,21,23,26,27,28,29,31,37,40,41,44,48,49,50,51,53,54,60,61,65,70,72,83,86,87,88,93,95,98,100,104,105,112,114,115,116,118,121,122,124,125,126,131,132,135,137,139],current_data:[0,3,24,40,69,70],curv:[3,40,69],custom:[0,12,14,19,21,24,57,60,66,69,78,84,90],custom_bc:90,customari:87,cut:123,cutoff:[5,124],cvf:50,cvs:47,cxx:88,cyber:15,cygwin:80,cython:88,dai:[5,12,47,125],dalcin:75,dam:47,damag:[5,55,75],damian:52,damiansra:90,darker:47,darryl:15,dart:41,dash:[3,88],daspect:60,dat:[29,131],data:[0,1,3,24,26,29,31,33,34,36,38,40,41,42,43,48,49,54,55,56,60,69,70,71,72,75,77,80,83,86,87,89,91,92,93,95,98,101,102,103,104,107,109,110,112,113,115,117,118,124,126,131,134,136,141],data_break:137,data_storm:131,data_typ:98,databas:[12,29,63,98,102,115,135],datadir:112,dataset:[135,137,139],date:[27,36,43,47,49,50,56,70,131,138],date_tim:43,datetiem:131,datetim:[43,131],datum:[43,44,91,118,125,139],dave:29,davi:4,david:[4,15,75,85,93],dawson:15,daylight:54,dcp:54,deal:[29,44,69,87,88,95,131,137],dealt:31,debian:99,debug:[6,37,56,65,69,87,95,100,105,122,124],debugg:70,decid:[77,93],decim:[43,54],decimc:131,decis:47,declar:[19,21,95,140],decompos:[65,117,143],decomposit:122,decor:98,decoupl:49,decreas:[40,135],deduc:135,deep:125,deep_depth:125,deeper:[125,135],deepli:97,def:[0,1,3,40,47,70,77,83,87,90,93,124,126,131],default_tfluct:93,defenc:4,defin:[0,1,3,5,21,26,29,31,37,47,54,56,60,63,70,72,77,80,83,89,90,92,93,95,97,98,104,107,115,117,124,126,131,135,137,138,140,143],definit:[29,60,77,104,110],deform:[15,29,63,139],deg2dm:54,degre:[29,43,47,54,63],delet:[19,27,51,53],delimit:29,delin:125,delta:[81,83,90,93,117,137,140,143],delta_h:91,delta_hu:91,delta_i:137,delta_limit:137,delta_x:137,dem:[48,54,115,135,137,139],demo:88,demonstr:[11,82,88],denot:[5,21,40,48,117,137],dens:132,densiti:[80,87,91,95,97,123,124,140],depart:[4,131],depdend:81,depend:[3,12,14,27,28,29,31,33,34,36,37,42,44,47,51,52,56,58,60,63,70,76,85,86,91,92,93,98,100,104,115,125,137,138,140,143],deprec:[6,29,32,111,115,125,135,137],depth:[4,14,15,21,29,31,40,41,44,58,63,69,71,118,125,135],deriv:[55,63,75,80,84,85,95,105],describ:[3,4,5,6,12,14,18,25,27,29,30,31,33,34,40,42,43,44,47,49,50,54,56,57,60,63,65,66,69,70,71,83,86,92,98,102,104,105,113,117,118,121,122,123,125,131,132,135,137,139,140,143],descript:[3,4,8,21,29,54,60,63,69,86,98,102,104,117,125,131,135,143],design:[4,26,27,47,75,77,97,118,139],desir:[0,1,2,3,5,6,14,21,24,25,29,31,38,40,50,51,53,54,63,68,69,70,72,77,78,80,87,92,93,101,113,115,120,122,124,126,131,135,137,138],desktop:88,destin:47,detail:[4,6,9,14,21,25,27,29,31,33,34,37,41,42,44,47,49,51,52,53,55,56,60,63,70,75,80,81,82,83,86,87,88,89,90,91,93,103,105,108,113,115,117,121,122,125,127,131,135,138,139,140,143],detect:[47,56,86,94,98,138],deterimin:[125,137],determin:[3,5,29,31,40,44,46,47,49,54,63,70,81,83,86,91,95,100,104,108,112,113,116,118,121,122,123,125,137,140],determine_topo_typ:137,dev:[17,23,27,49,88,115],develop:[4,5,6,12,17,21,22,44,49,52,53,55,60,69,73,74,75,78,85,90,93,94,100,105,115,117,118,124],dict:[29,80,86,91,92,95,131,137],dictionari:[0,1,2,3,29,40,70,77,80,86,91,92,95,97,100,131,135,137],dicuss:29,did:[115,135],didn:110,died:107,diff:[17,46,50,107,108,109,110,111,112,113,114,115],differ:[1,3,5,6,11,14,21,27,29,30,31,33,34,40,42,44,46,48,51,54,56,58,60,63,64,69,72,77,78,80,82,83,86,91,93,98,99,100,104,105,111,112,113,114,115,117,118,122,123,124,125,135,137,138,139,140,143],differenti:[15,29],difficult:40,difficulti:[94,96,100],diffus:90,digit:[48,54,70,113,114,115,137],dim:[90,91,93],dimens:[5,6,14,19,21,40,43,48,54,60,77,78,80,86,88,90,91,92,95,97,104,115,117,122,123,124,126,137,140],dimension:[3,6,7,15,21,24,29,31,33,34,40,44,60,83,90,111,112,114,124,125,126,137,140],dimensional_split:[83,111,122,124,126],dip:[29,63],dir:[28,50,88,141],direct:[5,7,14,21,29,31,33,34,40,43,47,50,54,55,56,60,63,64,70,75,80,90,97,114,117,122,123,125,137],directli:[7,18,22,44,51,60,63,70,72,77,78,81,85,95,98,100,115,137,141],directori:[1,3,5,10,11,12,13,14,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,49,50,51,52,54,57,60,61,64,68,69,72,80,82,83,85,86,87,90,97,100,101,102,104,105,107,112,113,114,115,116,117,119,120,121,122,123,127,129,130,133,134,135,138,140,141],directorti:102,disabl:[45,94,125],disable_petsc:98,discard:93,disclaim:[55,75],discontinu:[4,93,143],discov:58,discoveri:105,discret:93,discrib:4,discuss:[23,27,29,44,48,51,63,86,97,99,100,104,113,115,117,125,143],disk:[12,40,77,86,87,105,113],dispers:44,displac:[29,41,44,63,125,139],displai:[1,12,33,34,36,40,47,54,70,87,105,125],display_format:40,display_landfall_tim:125,dist:50,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,63,125,135,137],distant:102,distinct:[40,113],distribut:[4,12,28,29,49,55,63,66,73,75,93,99],disturb:47,distutil:78,dive:99,divid:[104,122],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,135],doc:[17,22,23,27,29,47,49,50,81,98,100,114,115,128],docker:[17,24,50,51,114,115,142],dockerhub:[28,50],dockeril:28,docstr:[78,82,105],doctest:83,document:[0,1,2,3,5,6,16,17,20,21,22,23,24,27,31,41,44,48,53,55,63,69,70,71,72,75,81,83,86,87,88,89,93,95,98,100,108,121,124,141,142],doe:[4,10,14,19,26,27,31,36,44,47,48,51,60,66,70,73,83,85,92,95,98,105,108,113,116,117,131,137,138,140],doesn:[27,53,57,95],doi:[4,15,16,50,52,74],doing:[5,10,18,24,27,31,40,44,46,49,53,57,70,72,83,105,112,113,114,115],domain:[5,14,15,44,47,49,54,63,65,76,77,78,80,88,90,92,95,102,104,123,124,126,135],don:[12,26,27,49,50,70,87,88,94,105,124,138],done:[1,5,6,7,10,12,14,18,19,27,33,34,40,42,47,48,49,53,54,56,60,63,69,70,72,77,81,82,98,104,108,112,113,116,117,121,123,125,134,137,138,139],donna:[4,15],donnabois:4,donor:[122,124,126],dot:[36,40,47,52,53,54,56,138],doubl:[60,78,83,98,117,123],down:[12,29,87,112,131,135,137],download:[11,12,27,28,29,34,35,41,47,50,51,52,53,61,82,88,94,115,133,137,138,139],downward:63,doxygen:[5,6,24,114],dpc:54,dpi:[47,54],dpng:60,dprint:[123,124],dq_src:[90,93],dqdt:93,draft:50,drag:125,drag_law:125,draw:3,drawback:100,drawcontourlin:60,drawn:[29,47,121],driver:[19,57],drop:[12,122],dry:[14,15,31,41,91],dry_toler:91,ds824:131,dst:54,dt_check:31,dt_initi:[107,122,124,125,126],dt_max:[122,124,126],dt_max_dtopo:[107,125],dt_variabl:[122,124,126],dtdtopo:110,dtdx1d:109,dtdx:81,dtdy1d:109,dtfe:93,dtopo2kml:54,dtopo:[24,29,41,44,48,54,63,100,107,109,110,125,135,137,139],dtopo_data:[107,125],dtopo_file_nam:54,dtopo_modul:107,dtopo_typ:[29,54,63],dtopofil:[54,63,125],dtopographi:[29,63],dtopotool:[41,63,109,110,112,115,135,136],dtopotools_exampl:[29,41,63,103],dtopotyp:[125,135],due:[15,29,43,63,105,114,115,138],dummi:[78,93,140],dump:[65,122],dumpgaug:111,duplic:[70,110,116],durat:[29,118],dure:[21,31,40,54,63,66,107,118,124,125,126,135],dx0xgftn3_x04rdx0_w5nq7w0000gn:[13,101,119,129,130],dxc:78,dyc:78,dylib:47,dynam:[5,19,29,44,63,66],dynamic_slip:29,dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,15],e_format_bst:131,e_l:91,e_r:91,each:[1,2,3,5,6,14,17,21,29,31,32,40,43,47,48,50,54,57,60,63,64,65,68,69,70,72,77,78,81,83,86,87,88,90,91,92,93,95,97,104,105,107,108,112,113,115,116,117,121,122,123,124,125,126,131,134,135,137,139,143],each_fram:40,each_gaug:40,ear:4,earli:[5,19],earlier:[19,21,29,31,48,63,77,90,107,114,135,137],earth:[24,41,54,63,111,113,125],earth_radiu:125,earthquak:[24,29,41,44,103,125,132,135],eas:54,easi:[4,5,10,28,53,60,73,78,87,88,89,127,140],easier:[53,69,113,115,140],easiest:[18,27,37,66,70,72,99,104,140],easili:[3,12,27,31,47,60,70,78,83,94,98,99,105,127,131],east:[12,135],easy_instal:88,ec2:24,echo:100,ecosystem:[4,15],edebug:[123,124],edg:[3,5,13,14,26,29,31,54,63,83,91,117,119,123,124,126,140],edit:[47,50,51,53,72],editabl:27,editor:65,edu:[29,47,61,86],effect:[40,47,58,60,83,87,99,104,105,118,125,137],effici:[44,75,85,86,87,95,104],effort:86,efix:91,egg:[51,53],eigenvector:[117,143],either:[11,14,19,29,41,42,47,56,60,63,70,72,77,83,86,87,93,98,100,104,105,111,112,113,115,117,125,131,135,137,140,143],elast:[12,63],element:[0,3,21,54,91,93,95,122,123,124,125],elementwis:87,elev:[21,31,42,44,47,48,54,69,101,125,135,137,139],elif:[124,126],elimin:[7,21,78,100,115,125],ell:117,els:[26,27,51,53,95,115,126],elsewher:23,emmanuel:125,emmett:[15,75,85],empir:[44,58],empti:[40,92,95,98,100,122,131,137],empyclaw:90,enabl:[83,87,94,98,113],encapsul:44,encount:[36,47,70,94,96],encourag:60,end:[12,29,31,40,43,47,50,54,80,87,91,97,101,102,104,106,107,108,109,110,111,112,113,115,116,124,126,131,134],end_dat:43,enddo:140,endian:86,endors:[55,75],energi:[87,91],enforc:125,eng:131,engin:[15,47],enhanc:[58,75,115],enlarg:113,enough:[132,134,135],ensembl:131,ensur:[33,34,60,102],enter:[60,86,88,94],enthought:[94,96,99],entir:[5,44,47,54,63,64,66,77,87,92,102,108,137],entireti:80,entri:[47,77,87,98,131],entropi:91,enumer:[83,93],environ:[24,27,33,34,36,46,47,49,51,52,53,60,62,64,66,89,96,98,100,113,137,138],envis:14,epd:96,eprint:[123,124],epsg:47,epsilon:81,eqn:143,eqnarrai:97,equal:[14,29,31,47,63,88,90,104,116,122,124,126,135,137],equat:[4,14,15,33,34,41,44,58,70,76,77,78,80,85,86,87,90,93,94,95,108,111,113,115,117,122,124,125,126,135,140,143],equiv:143,equival:[5,40,48,54,135],err:124,erron:[29,63],error:[14,19,33,34,36,47,53,60,64,70,80,85,86,87,98,104,105,123,124,131,138],escap:[104,124],escienc:12,especi:[27,47,78,90],esri:[48,135],essenti:[48,60,93,125,135],est:124,establis:115,establish:4,estim:[58,104,123,125],estimat:124,eta:[29,31,40,111],eta_tild:31,etc:[0,2,14,18,19,23,26,27,31,44,47,49,52,54,57,65,69,78,117,121,122,125,131,140],etopo1:[115,118,135,137,139],etopo_sample_2min:137,etopotool:[115,135],euler:[85,93,109,111,114,117,140],euler_1d_pi:91,euler_2d:[33,35,85,90],euler_exact_1d:91,euler_hll_1d:91,euler_hllc_1d:91,euler_roe_1d:91,evalu:[26,29,58,77,83,93,137,140],even:[44,47,53,55,63,75,98,104,123,124,135,138,140],evenli:[47,87],event:[41,44,54,55,63,75,118,122],event_tim:54,eventu:[12,41],ever:[121,125],everi:[5,27,31,40,56,57,77,80,82,86,87,95,104,105,113,114,117,120,122,124,126,131,135,137,140],everyth:[31,50,51,52,53,64,88,97,98,105,115],everywher:[43,58,95],evolv:[21,77,80,93],evolve_to_tim:[77,93],exact:91,exactli:[27,46,95,122],exam:70,examin:[14,33,34,40,100],exampl:[0,1,2,3,4,5,6,7,8,12,14,19,21,23,26,27,29,31,36,37,41,43,48,49,50,51,52,54,56,57,58,61,63,64,65,69,70,72,75,76,77,78,80,83,84,86,87,90,91,92,93,94,97,98,100,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,134,135,137,138,139,140],exce:[31,47,104,123],exceed:[104,115],except:[21,26,29,86,91,98,122,125,131,135],excerpt:88,exclud:[31,57],exclude_modul:57,exclude_sourc:57,exe:[33,34,80],exec:[0,1,3,70],execut:[0,1,3,14,18,26,33,34,40,54,60,70,72,80,82,88,100,105,117,120,138],exemplari:[55,75],exercis:[41,103,105],exist:[1,20,29,30,32,33,34,47,53,56,60,70,83,87,90,92,95,98,99,108,114,115,131,137,139],exit:[28,70,88,94],exp:[77,87,97],expand:[25,47,54],expect:[91,97,98,105,115,124,125,126,131],expens:[93,104,108,113],experi:[23,44,93],experiment:75,expert:44,explain:[12,44,104,122,127],explan:27,explicit:[98,123],explicitli:[57,60,122,138,143],explor:[4,54,70,72],expon:58,expos:12,express:[4,29,55,75,94],extend:[7,14,21,54,60,83,115,125,135,137,143],extens:[4,15,21,23,27,29,44,47,49,53,57,60,78,85,86,98,113,114,122,133,137,143],extent:[44,53,54,58,60,77,83,95,107,125,135,137],extra:[3,47],extra_fil:49,extract:[47,50,86,131,137,139],extran:111,extrap:[14,90,97,122,124],extrapol:[14,21,31,90,97,115,122,123,124,126],extrem:[47,96],extropl:14,eye:[131,132],eye_loc:131,f2py:[51,53,78,90,98,117],f2py_flag:98,f2s:54,f49620:4,f77:[37,138],f90:[8,13,19,30,31,40,56,57,64,73,90,101,104,107,111,113,115,117,119,129,130,135,138,140],f95:98,f_file_nam:[80,87],f_path:80,facecolor:[2,70,121],facilit:[40,105,111,113,127,131],fact:[47,86,95],factor:[5,47,123,125,134,137],faculti:29,fade:70,fail:[13,27,86,88,98,101,105,111,119,129,130,131],failur:105,fairli:[14,44,113],fall:[118,125],fals:[0,1,2,3,29,44,45,46,47,49,54,80,83,86,91,92,93,95,98,104,112,113,116,122,123,124,125,126,131,137],famili:[83,93,124,126],familiar:73,faq:[12,24,69,99],far:[14,17,38,69],fashion:116,faster:137,fastest:[86,94],fault:[15,24,29,41,103,115,135,139],fault_plan:29,favor:[111,115,137],favorit:69,fbound:37,fc02:4,fcompil:138,fdefault:98,featur:[17,21,24,27,31,47,60,70,78,104,105,110,112,113,115,125,131,135],februari:[23,114],feet:[118,139],fellowship:4,fetch:[12,43],fetch_noaa_tide_data:43,fetch_topo_url:137,few:[5,11,12,21,25,34,44,49,60,78,93,97,104,105,118,133,135,140],fewer:[104,137],ff0000:[3,54],ff9999:121,ffff00:70,fflag:[27,36,56,61,64,78,98,135],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:54,fgmax:[41,54,64,108,110,113,114,125],fgmax_data:[31,125],fgmax_fil:[31,125],fgmax_grid:54,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,110],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,fgout2kml:54,fgout:54,fgout_grid:54,field:[40,54,90,92,95,101,106,107,108,109,110,111,112,113,115,131,132],fig:54,fig_kwarg:[29,137],fignam:[1,72],figno:[1,2,40,47,70,72,121],figsiz:[2,70,121],figur:[0,1,2,4,12,29,33,34,38,40,48,54,60,69,72,92,100,117,121,137],file1info:125,file2info:125,file:[1,5,7,8,10,13,17,18,19,21,22,24,26,27,28,29,33,34,36,37,38,40,41,42,44,46,51,53,54,56,61,63,65,66,69,71,75,78,80,82,83,86,87,88,89,90,92,95,96,98,100,101,102,107,108,110,111,112,113,114,115,118,119,120,121,122,123,124,126,128,129,130,131,132,134,137,138,139,141],file_format:[40,86,92,131],file_prefix:[86,92],file_prefix_p:80,fileio:65,filenam:[30,47,111,137],fill:[0,3,4,5,14,47,83,86,95,102,113,122,131,134,137,140],fill_between:3,fill_mwr:131,fill_rad_w_other_sourc:131,fill_topo:137,fill_valu:[86,137],fill_var2:3,fill_wher:3,filpatch:[8,113],filter:[86,137],filter_region:137,find:[1,3,4,5,23,26,27,28,29,43,47,51,53,56,61,63,66,69,75,82,90,95,96,98,99,100,102,115,131,138],fine:[3,31,49,62,66,90,104,113,122,125,135,140],finer:[3,6,47,104,107,108,122,123],finest:[3,40,115,134,137],finish:[12,70,77],finit:[4,15,31,38,48,54,60,63,93,134,135,140],finlin:98,first:[1,3,12,18,19,21,27,29,31,33,34,47,49,50,51,52,53,54,56,60,70,72,77,78,83,86,87,88,90,93,94,95,97,98,100,102,104,107,111,117,122,124,125,131,133,135,137,143],first_test:33,fit:[55,75],five:31,fix:[5,18,19,21,24,41,50,54,56,75,86,91,107,108,109,110,111,112,113,114,122,124,126,137],fixedgrid:125,flag2refin:[21,123,124],flag2refine_tol:[104,123,124],flag:[6,12,21,27,36,37,51,53,61,64,78,96,98,100,111,124,125],flag_richardson:[104,112,123,124],flag_richardson_tol:[104,123,124],flat:63,flavor:[11,20,52,86],fletcher32:86,flexibl:[21,29,54,78,111,114,117],flood:47,floor:[29,41,63],flow:[4,14,15,22,31,41,42,44,85,102,117,122,125,135,140],flowchart:[5,6,24],fluctuat:[91,93,143],fluid:[44,118],flush:112,flux2:78,flux2_dimsplit:111,flux3_dimsplit:111,flux:[15,31,83,91,93,117,122,143],fly:24,fmt:3,fname:[54,124,125,126],focu:[4,41],fold:14,folder:[13,47,101,119,129,130],follow:[0,2,3,4,5,12,14,17,18,22,23,27,29,31,33,34,35,40,42,47,48,49,50,51,52,53,55,60,61,63,65,70,71,73,75,77,78,79,82,83,86,87,88,90,91,92,94,95,97,98,100,104,105,115,116,117,121,122,123,125,131,133,134,135,138,140,142],fontsiz:70,foot:63,fopenmp:[37,64,98],forc:[21,36,56,98,125,132,137,138],force_dri:54,forecast:131,forestclaw:[100,111],forg:[52,85],forget:138,fork:[23,49,50],form:[0,2,3,4,5,7,18,19,21,27,28,29,31,33,34,38,40,43,47,49,50,55,58,63,65,75,78,87,91,93,97,98,104,108,115,116,117,122,123,124,125,129,135,137,140,143],format:[1,3,12,24,29,33,34,40,41,42,44,45,47,48,54,56,60,61,63,69,70,77,80,86,87,89,90,92,98,102,112,113,115,122,125,131,132,137,139,141],format_str:40,former:[70,140],formerli:111,formul:[4,44,58,117,122],formula:58,fort:[1,7,26,31,40,60,61,69,86,92,108,112,113,114,116,122,123,124,126,134,141],fortfil:[33,34],fortran:[5,8,10,12,19,22,26,27,29,31,33,40,42,48,51,53,56,57,58,64,65,66,69,72,75,77,78,80,83,85,86,88,90,91,93,94,95,98,111,112,113,115,117,120,124,125,126,131,133,134,135],fortran_modul:95,fortran_src_wrapp:78,forward:[93,140],found:[1,4,5,10,11,12,13,14,16,21,26,31,33,34,36,38,40,43,44,46,54,56,57,68,70,71,72,74,77,81,88,92,96,98,100,101,102,105,112,115,116,118,119,121,129,130,131,137,138],founder:4,four:[83,104,105],fourth:[31,48],fpe0:37,frac:[58,91,97,143],fraction:[5,12,29,104,122,140,143],fragil:95,fragment:3,frame0000:60,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,60,61,65,69,70,72,77,80,84,86,88,92,94,98,113,116,121,124,126,127],framecount:98,framenam:60,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,72],framework:[4,50,75,78,112,113],free:[12,47,56,63,75,79,90,94,96,99],frequenc:[63,93],frequent:[19,26,96,112],friction:[24,41,44,125,129,130],friction_depth:[58,125],friction_forc:125,friction_modul:111,friedemann:81,from:[0,1,3,4,5,6,11,14,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,50,52,53,55,56,57,60,62,63,65,69,70,74,75,76,77,79,80,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,111,112,113,115,116,117,118,122,123,124,125,126,131,132,133,135,138,139,140,141],frommm:81,front:[60,92,98],fset:95,fstr:60,ftrapuv:37,full:[5,50,52,53,54,70,80,87,93,97,120,135,140],fulli:[5,44,47,114,117,125,131,132],fun:98,func:[98,131],function_nam:98,fund:[24,53,85],funrol:98,further:[5,14,24,37,44,54,56,60,85,104,105],furthermor:[47,97],futur:[12,21,24,25,33,34,44,48,54,58,77,93,112,113,115,131,135],fvmbook:[11,38],fvmhp:[4,11,14,15,24,66,117,122,140,143],fwave:[83,91,93,117],g77:96,gain:86,galerkin:93,galleri:[11,33,34,35,39,50,68,69,82,85,99,105,110,114,127,133,140],gallery_al:85,gallery_classic_amrclaw:[7,33,34],gallery_fvmbook:[15,38],gallery_geoclaw:[31,41],gamma1:91,gamma:[58,91],gap:137,garret:125,gas:[5,91],gaug:[6,24,41,54,83,84,95,102,107,111,112,113,114,115,116,118,124],gauge00001:[40,113],gauge_coord:83,gauge_data:95,gauge_dir_nam:83,gauge_fil:83,gauge_file_nam:83,gauge_id:40,gaugedata:[40,124],gaugeno:[40,124],gauges2kml:54,gauges_modul:[40,111,113],gaugesolut:40,gaugetool:[40,111],gaugexxxxx:[40,113,116],gauss_pt:29,gaussian:[77,97,126],gave:115,gca:45,gcc:[88,94],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:12,gen_vari:[98,105],gener:[0,1,2,3,4,5,6,8,10,12,14,15,18,19,23,24,27,31,36,37,41,44,47,48,50,51,56,57,58,63,64,65,69,70,71,72,75,78,79,81,83,88,89,90,92,93,94,97,98,99,100,102,104,107,111,113,116,118,120,122,123,127,132,134,135,140,141],generate_2d_coordin:137,generate_2d_topo:137,geo:[41,58],geo_data:125,geoclaw:[4,6,11,15,22,23,27,29,31,32,34,37,40,48,50,51,52,53,54,58,61,63,66,69,94,100,102,103,105,116,117,118,120,122,123,131,132,133,134,135,136,137,138,139,140],geoclaw_modul:111,geoclaw_riemann_util:114,geoda:118,geograph:47,geohazard:44,geol:29,geolib:[61,107,111],geom:[83,95],geometr:140,geometri:[24,29,63,85,86,90,92,95,111],geophys:[4,14,15,22,41,44,66,122],geoplot:[45,47,71],georefer:47,georeferenc:47,georg:[4,15,29],geoscientist:44,geospati:47,get:[0,9,12,23,27,36,41,47,48,51,52,53,56,57,69,73,77,78,83,86,87,88,94,96,97,98,99,102,103,105,114,117,131,137,138],get_aux_glob:95,get_auxbc_from_aux:95,get_cmap:70,get_count:98,get_dim_attribut:83,get_dt:93,get_dt_new:93,get_q_glob:95,get_qbc_from_q:95,get_remote_fil:137,get_topo:137,getax:1,getcwd:70,getfigur:1,getfram:[1,3,72],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:87,getsitepackag:100,getusersitepackag:100,gfortran:[12,51,53,64,73,76,96,120,138],gfortranbinari:94,ghamdi:4,ghost:[6,14,64,65,83,86,93,95,113,122,124,126,134,140,143],gica2937:29,gigabyt:135,gist:52,git:[11,12,22,23,24,25,49,50,51,53,94,105],git_statu:46,github:[11,16,21,22,23,24,25,28,49,51,52,53,74,82,90,94,105,110,112,113,114,117,138],gitter:23,give:[3,5,8,9,12,14,23,27,29,31,33,34,40,53,54,63,64,65,70,72,88,89,93,105,108,112,113,122,125,135,137,139],given:[29,43,47,48,54,58,60,63,81,88,92,93,95,98,104,118,125,131,135,137,140],glitch:110,global:[5,83,95,98,118,135,139,140],gloss:139,glu:14,gmt:43,gnu:94,gnufcompil:138,goal:5,godaddi:49,godunov:[4,83,93,122,124,126,140],goe:[29,41],going:[14,21,50,77,80,82,86,91,99,106,127,135,143],gone:87,good:[14,27,44,47,55,64,75,97,102,105,113,117],googl:[23,24,27,41,54,82,86,88,96,111,113,117],googlecod:88,googleearth:[47,54],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:9,gov:[29,43,63,88,131],govern:125,gprint:[123,124],gradi:[4,15,75],gradient:[114,143],gradylemoin:4,grai:131,grant:[4,75],graph:8,graphic:[22,27,60,69],grav:91,gravit:[58,91,125,140],graviti:125,great:[43,82],greater:[31,54,58,94,99,104,116,122,123,125],greatest:104,greatli:[25,75,118],green:[54,63,70,105,131,137],grid1d:83,grid1info:125,grid2info:125,grid:[4,6,15,18,19,21,22,24,26,27,40,41,42,44,47,54,60,65,66,69,75,77,85,87,88,90,91,92,93,95,97,104,105,107,108,110,111,113,114,115,117,118,122,123,124,126,132,134,135,137,139,140,143],grid_files_scanf:141,grid_numb:65,grid_registr:[48,137],griddata:137,gride:132,grideges_show:21,gridlin:60,gridlines_show:21,ground:[31,63],groundoverlai:47,group:[3,12,23,27,29,44,82,86,88,96,112,117],guarante:[41,44,93,103],guard:112,gui:[21,141],guid:[12,17,22,23,24,41,42,52,74,85,99,114,128],guidelin:85,gzip:50,h_l:91,h_r:91,hack:95,had:[40,48,113,114,115],hadjimichael:[4,15,75],half:[0,14,15,63,93,122,140],halfspac:63,hand:[3,17,18,19,58,77,105],handi:[27,56],handl:[0,2,3,5,31,37,41,48,54,64,66,69,83,86,90,92,93,95,96,97,98,100,107,108,110,111,113,115,125,131,137],hang:63,happen:[30,47,56,77,92,95,138],har:117,harbor:31,hard:[45,64,70,137],hardcopi:[1,70,72,121],harder:122,hardest:[61,99],hardwir:64,harm:100,has:[0,4,5,7,12,14,16,17,19,20,21,22,26,27,31,32,33,34,46,47,48,50,54,56,58,60,63,65,66,70,75,78,80,83,87,90,91,92,95,96,98,99,100,101,102,104,105,106,107,108,113,114,115,117,118,122,123,125,131,134,135,137,140,141,143],hash:[46,49,105],have:[0,1,2,3,4,5,7,8,10,12,14,17,19,21,22,23,24,26,27,28,29,31,33,34,37,38,40,41,44,47,49,50,51,53,56,57,58,60,61,63,64,65,69,70,72,73,75,77,78,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,122,123,125,127,131,135,137,138,140],haven:97,haversin:43,hazard:[31,41,58,118],hdf5:[85,87],hdf:86,head:[27,29],header:[10,29,40,48,63,65,86,92,111,113,115,131,135,137],header_styl:137,heat:91,heavili:78,height:[47,91,137],held:44,hello:88,help:[6,8,22,23,24,27,36,45,53,56,69,72,85,88,94,98,105,112,117,127,138],helzel:15,henc:[48,49,57,93,100,104],here:[4,12,14,31,44,49,50,53,54,66,70,72,74,77,80,85,86,88,90,91,96,97,100,102,111,117,132,137,143],heterogen:140,hex:[54,70],hidden:[3,56,70],hide:[47,60],hierarchi:[47,83,100],high:[4,15,44,47,63,66,78,85,93,117,118,125,139,140],higher:[3,5,47,83,93,94,117,118],highli:115,highlight:[10,12],hilo:[118,139],hint:[14,24,41,51,69,72,73,100,125,138],histor:[44,63,139],histori:[27,50,72,99],hit:[14,60,72,87,122],hko:131,hll:91,hllc:91,hmin:31,hoc:78,hold:[3,72,97,104],holder:[55,75],holland:[115,125,132],holland_storm_modul:111,home:[12,29,51,53,120],homebrew:47,homepag:20,homogen:[63,93,140,143],hood:69,hope:[25,105],horizont:[47,137],host:47,hour:[12,47,54],how:[1,5,6,11,14,21,23,27,29,31,33,34,37,40,42,47,50,54,56,63,64,65,69,80,82,84,86,90,93,97,98,100,102,103,104,105,108,113,115,116,117,121,122,125,127,135,137,141],howev:[5,12,14,21,33,34,37,42,44,47,53,55,57,63,64,65,75,78,104,105,113,115,118,121,125,134],hpc:23,hrd:131,html:[1,12,15,22,27,29,33,34,36,39,40,47,49,63,69,70,82,88,89,100,105,131],html_plot:89,htmlplot:82,htpp:27,http:[4,11,12,15,16,23,25,27,28,29,39,43,47,49,50,51,52,53,55,61,63,73,74,75,78,79,86,88,90,100,110,112,113,114,131,137],huge:135,human:131,hurdat:[115,131,132],hurrican:[102,131],hurt:57,hwrf:[115,125,132],hydrodynam:15,hyperbe:81,hyperbee_limit:81,hyperbol:[4,5,15,38,66,78,85,90,91,97,117,122,125,140,143],hyperol:122,ibm:94,ibtrac:[115,131],idea:[9,23,29,60,66,77,97,108,137,143],ideal:[50,91,118],ident:[57,83,86,88,105,137],identifi:[33,34,47,78,104,131],idl:12,ids:40,ieee:15,ifort:37,igetsp:111,ignor:[14,47,54,86,111,118,137],iinstal:88,ike:102,illustr:[29,33,34,47,60,63,103,110,111,115,117,127,137],imag:[12,33,34,50,52,54,105,115],imd:[131,132],immedi:[23,44,60,77,79,80,87],impact:63,impati:90,imped:[77,91,97],implement:[1,4,6,14,29,54,57,62,75,90,91,93,97,98,104,105,110,113,117,122,137,140,143],impli:[55,75,125],implicit:[75,93],importantli:88,impos:[14,78,104,125,129,130,143],imposs:[44,122],improv:[4,12,21,23,31,32,47,86,107,108,110,111,112,113,114,122],imshow:137,in_poli:137,inaccur:44,inaccuraci:44,inadequaci:58,inadvertantli:70,inbound:12,inc:[4,15,60],incept:4,inch:[2,47,54,70,121],incident:[55,75],includ:[4,5,12,13,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,48,49,50,51,53,54,55,57,58,60,61,63,64,66,69,70,72,75,77,78,82,83,85,86,87,88,89,90,91,92,93,94,95,97,99,100,101,102,105,107,113,114,115,117,119,122,124,125,127,128,129,130,131,132,134,135,137,140],incom:14,incompat:[27,47],incompress:15,inconsist:112,incorpor:[21,44,49,75,93,107,114,137],incorrect:[115,131],incorrectli:112,increas:[47,54,64,125],increasingli:27,increment:[31,40,47,83,98,122,124,126],ind:83,inde:[78,88],indent:[43,54],independ:[22,29],index:[1,5,12,21,22,26,31,39,40,49,50,70,83,85,88,90,91,98,115,122,124,125,126],indian:131,indic:[6,14,19,21,24,28,29,37,40,47,48,50,52,53,57,60,68,72,83,87,88,91,93,97,100,104,105,113,117,122,124,125,126,135,137,140],indirect:[55,75],individu:[4,21,22,47,54,56,57,60,83,104,105,131],inf:137,infer:137,infinit:122,inflat:14,info:[29,40,50,54,60,80,83,87,93,113,123,124,131],info_sz:29,inform:[12,21,24,33,34,42,43,44,45,46,51,53,57,65,70,71,72,73,74,77,78,83,87,88,89,91,92,98,100,112,115,116,117,120,122,123,125,131,134,135,138,139,140,141],inhabit:77,inherit:[70,83,93],init:[27,52],initi:[4,6,12,21,29,31,40,43,44,47,57,60,63,66,72,75,76,77,78,80,81,83,84,86,87,91,92,93,95,96,98,101,104,112,115,117,118,122,124,125,126,131,135,137],initialize_sourc:78,inlinelimit:57,input:[6,14,19,22,24,26,29,36,41,47,54,57,60,77,80,81,83,85,91,92,93,98,102,112,115,117,124,125,126,131,132,135,137,140],input_filenam:78,input_unit:29,inputfil:[98,137],ins:21,insert:[10,14,63,86,135],insid:[83,88,92,117,137],insidi:113,inspect:[18,19,47],instabl:113,instal:[11,12,16,17,22,24,28,33,47,49,50,72,75,76,79,84,86,97,105,106,107,108,109,110,111,112,113,114,115,120,142],install_fortran:34,install_prerequisit:[33,34],installing_pip:50,instanc:[3,27,47,51,63,66,72,77,78,80,83,86,87,90,125],instantan:93,instanti:[80,88,90,93,95,124,126],instati:[63,137],instead:[3,12,31,33,34,37,40,50,52,53,56,57,61,94,95,98,100,112,113,116,117,120,135,137],institut:4,instruct:[12,16,17,23,24,33,34,47,49,50,51,52,61,77,79,85,88,94,97,100,114,116,120,138],insur:[46,56,72,104,107,111,123,125,135],intact:[62,112],integ:[3,31,40,47,54,58,70,78,92,104,114,117,122,125,131,137],integr:[21,48,75,85,87,93,107,108,112,124,126,134,135,140],intend:[44,78,115],intens:[78,131],intent:[78,117],inter:[27,114],interac:87,interact:[1,12,21,33,34,36,40,42,56,66,69,70,78,88,89,94,97,100,112,113],interactive_plot:[89,97],interactive_test:112,interdepend:95,interest:[11,14,17,22,26,31,45,60,78,95,102,105,114,115,122,131],interfac:[4,18,21,60,75,78,81,85,86,91,93,98,117,140,141,143],interface_funct:98,interior:[5,14,65,95],interleav:[75,91],intermedi:[18,31,63,140],intermit:[40,113],intern:[5,29,40,48,54,63,113,135,137,143],interp_kwarg:131,interp_unstructur:137,interpol:[5,14,29,32,40,41,48,54,60,63,70,113,118,125,131,132,137],interpret:[29,31,48,63,99,115,135],interrupt:[55,75],intersect:[31,63],intersphinx:49,intersphinx_map:49,interv:[40,43,77,97,104,122,125],introduc:[14,18,31,70,143],introductori:99,intuit:85,inund:[31,41,47,58,118,139],inundataion:[118,139],inv_haversin:43,invalid:[37,92],invert:43,invest:44,investig:105,invis:[36,111],invok:[10,64,138],involv:[23,90,93,102,132],ioerror:92,ioexcept:98,iout:126,ioutarrivaltim:125,ioutsurfacemax:125,ipdb:70,iplot:[33,35,82,85,88],iplotclaw:[1,12,21,33,34,40,42,69,70,89,100],iplotclaw_:70,iplotclaw_figno:1,ipynb:[29,63,103,112,137],ipynotebook:112,ipython:[12,66,70,72,78,79,85,87,94,97,99,100,111,112],ipython_displai:107,iqinit:[125,135],is_valid:[92,95],isn:[56,64,65,138],iso:131,isosurfac:60,isotrop:63,issu:[21,23,25,49,50,53,60,77,82,83,85,93,94,96,105,107,112,113,114,115,117,125,138],item1:[0,72],item:[0,1,3,60,69,72,98,121],itemnam:[1,72],iter:[29,91],ith:91,its:[4,5,12,21,28,32,44,47,52,55,57,63,65,75,80,81,82,83,85,90,92,93,95,98,104,124,137,143],itself:[4,63,69,117,125,137],ixi:117,jacobian:[117,143],jan:[4,50],januari:[16,106,113],japan:[47,54],japanes:131,javascript:127,jed:75,jet:[29,60],jma:[115,131,132],job:12,join:[23,70],journal:[4,15,85,127],jpg:60,jsanim:[107,111],jsanimation_frametool:109,juli:[16,108,109],jump:[4,49,60,72,83,93,113,122,143],junction:[31,125],june:[16,114,115],jupyt:[63,66,85,103,111,112],just:[0,5,27,36,50,77,78,80,82,85,86,87,88,89,90,95,98,99,108,115,122,140],justifi:63,kappa:[97,143],kappa_i:143,karg:92,katrina:102,kaust:[4,23],keep:[24,27,33,34,64,77,80,95,98,105,108,125],keep_copi:[77,80,87],keep_gaug:95,kei:[0,1,2,12,27,29,40,86,93,97,98,131,137],kemm:81,kemm_2009:81,kentzo:50,kernel:98,kernel_languag:[83,93,98,105],ketch:4,ketcheson:[4,15,67,75,85,93],ketchesonmandliet:[4,15],ketparlev13:[4,15,66,85,117],keyboard:60,keypair:12,keyword:[2,3,70,77,82,83,86,92,98,105,115,121,131,137],kind:[80,82,87,117],kinemat:[29,41],king:[4,75],klein:81,kml:[54,111,113,114,115],kml_build_colorbar:[47,54],kml_cb:54,kml_colorbar:47,kml_dpi:[47,54],kml_figsiz:47,kml_footer:54,kml_gaug:54,kml_header:54,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:54,kml_publish:47,kml_region:54,kml_starttim:47,kml_tile_imag:47,kml_timespan:54,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,136],kmz:[54,113],kneplei:[15,75,85],know:[44,53,56,63,75,102,114,117,118,137,138,139],knowledg:44,known:[37,60,63,64,70,94,96,105,114,122],kristof:75,kutta:[85,93],kwarg:[2,29,54,70,98,105,121,131],kyle:[4,15,75,81,85,86,91],label:[29,45,47,48,54,111,135,137],lack:3,lake:[41,135],lambda:[83,137],lambda_roe_1:91,lambda_roe_2:91,land:[14,41,42,47,49,54,71,125,137],landfal:115,landslid:44,langseth:[4,15],langsethleveque00:[4,15],langtangen:99,languag:[10,69,98,99],lapack:107,laptop:85,larg:[5,19,31,33,34,44,47,48,49,60,64,69,85,87,88,104,105,112,116,122,137,139],larger:[12,19,31,47,54,63,64,65,70,83,107,113,125,135],largest:[104,118],last:[3,17,26,31,50,70,77,78,90,97,112,122,131],lat:[29,43,47,48,135,137],later:[12,46,47,53,72,93,116],latest:[22,39,47,50,52,53,79,88,94,108,112],latex:[1,47,69,89],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[13,29,31,42,43,48,63,69,111,119,125,131,137],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[13,90,119,122,131,140],launch:[35,51,82,88,89,94],law:[4,15,54,125,143],lax:[83,93,122,124,126,143],layer:[15,40,54,83,107,109,112,113,115],lbla:96,lead:[5,12,21,44,47,58,60,63,100,103,123],learn:[44,82,99],least:[4,5,12,47,54,60,96,104,105,112,113,122,124,135,137],least_significant_digit:86,leav:[12,14,40,51,53,123,137],lectur:23,led:19,leer:[81,93,122,124,126],left:[3,9,12,14,17,24,26,31,48,65,72,83,90,91,97,114,116,117,118,123,135,137,139,143],legaci:[22,50],legend:114,legend_tool:114,lemoin:[4,15,75],len:[29,83,124,126,137],lenght:122,length:[13,29,44,54,63,90,95,113,119,122,123,124,125,140],less:[44,47,58,64,93,104,105,122],let:[14,41,53,75,102,114,117],level:[3,5,6,14,22,26,31,40,42,43,44,47,50,51,53,60,64,65,78,80,83,86,87,93,100,101,104,105,107,108,112,113,115,116,118,120,122,123,124,125,126,134,135,137,139,140],levequ:[4,14,15,29,66,81,83,85,93,99,117,122,140,143],leveque09:15,leveque1996:15,leveque1997:85,leveque96:15,leveque97:[4,15],leveque_book_2002:91,levequegeorgeberg:[4,15],levyon03:15,lgomp:98,liabil:[41,44,55,75,103],liabl:[55,75],lib:[57,100],libgdal:47,liblzma:47,librari:[5,12,13,14,19,21,24,26,27,31,33,34,37,40,54,56,61,64,65,66,75,81,86,88,93,98,100,101,104,113,119,123,129,130,138,140],library_path:98,licens:[24,41,44,85,103,115],lie:[5,31],lies:[5,14,31,104,125],light:[47,60,104],lighter:47,like:[12,27,28,37,47,49,50,54,60,61,72,78,80,83,86,87,88,91,92,93,95,99,100,105,112,117,121,134,135,138],lim_typ:93,limit:[0,4,5,24,29,44,47,54,55,60,64,69,75,77,78,83,85,93,104,109,122,124,125,126,131,135,137,143],lin:125,line2kml:54,line:[1,3,4,14,27,29,31,37,40,41,42,43,46,47,48,54,56,57,60,61,65,69,70,85,86,88,93,97,98,100,101,106,107,108,109,110,111,112,113,121,122,124,131,135,137],linear:[4,29,31,47,63,70,77,81,93,117],liner:[0,29],linestyl:137,linewidth:70,link:[4,10,12,15,17,18,19,23,24,27,37,38,41,47,48,49,50,54,61,99,100,114,117,118,126,135,139],linspac:[60,80,97],linux:[12,52,62,73,96,99,105,120],lisandro:75,list:[1,3,4,6,7,8,10,12,16,17,21,24,27,29,31,33,34,35,36,40,47,48,49,51,52,53,54,55,56,57,58,60,63,64,70,72,75,77,80,81,83,86,87,89,90,91,92,93,95,96,98,100,101,104,106,107,108,109,110,111,112,113,115,116,120,122,123,124,125,126,131,132,134,137],listofgrid:115,literalinclud:49,literatur:[44,117],littl:[44,63,86,118],live:95,llapack:96,llcenter:[48,135,137],llcorner:[48,135,137],lmm:93,lnetcdf:[37,61],lnetcdff:61,load:[12,54,87,89,92,98,99,105,137,141],load_sift_unit_sourc:29,loc:137,local:[12,15,19,24,27,47,49,54,56,57,60,81,83,90,95,113,115,135,137,140],local_fnam:137,local_path:98,localhost:28,locat:[5,6,12,29,42,43,47,48,50,53,60,65,83,87,89,91,92,98,100,102,112,114,118,131,132,137],log:[24,27,83,84,85,92,93],logger:[87,95],logic:[5,14,15,31],logo:114,lon:[48,135],long_lat:137,longer:[19,27,40,49,54,113,115,116,117,135,139],longitud:[29,31,42,43,48,63,69,111,125,131,137],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[12,21,24,27,29,47,50,54,60,61,70,72,78,83,88,92,93,97,98,99,100,105,108,115,122,123,125,134,137,138],lookup:115,loop:[40,60,69,98,104,115,117,121,122,140],lose:112,loss:[55,75],lossi:86,lot:27,love:[82,117],low:[47,78,137,139],lower:[3,21,29,31,48,65,83,88,122,124,126,135,137,139],lower_glob:83,lowerg:88,luna:[15,75,85],lxml:47,lying:5,m_w:143,mac:[52,64,73,96,99,105,120],machin:[12,24,52,64,66,99,105,113,120],macport:47,made:[4,17,21,27,29,53,92,95,107,108,113,115,125,132,135,137,140],magic:54,magnitud:[29,115,125],mai:[0,1,2,3,4,5,12,16,17,18,19,21,22,23,24,26,27,29,31,33,34,35,36,37,42,43,44,45,47,48,49,51,52,53,55,56,58,60,61,63,64,69,70,72,73,75,78,79,82,83,85,86,87,90,92,93,96,98,99,100,104,105,109,111,112,113,114,115,116,117,118,120,121,122,123,124,125,131,132,133,135,137,138,140],mail:[90,96],main:[10,18,27,49,50,60,66,78,80,86,90,97,98,105,114],mainli:88,maintain:[27,115,123,135,140],mainten:75,major:[4,21,50,75,78,106,107,108,109,114],make:[1,10,12,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,49,50,51,53,54,56,57,58,60,64,66,69,72,73,77,78,80,83,84,85,86,90,92,98,103,105,107,111,112,113,114,115,117,122,135,137,139,140],make_colormap:70,make_input_data_kml:54,make_lib:12,make_multi_structur:131,make_shoreline_xi:137,makefil:[5,10,13,14,18,19,22,24,27,31,33,34,37,51,53,61,64,66,70,72,78,84,104,107,111,113,115,119,122,124,125,126,127,129,130,135,138,140],makefile_kml:111,maketopo:135,man:[15,24,41,44,125,129,130],manag:[12,47,52,87,131],mandli13a:15,mandli13b:15,mandli2016clawpack:[4,15],mandli:[4,15,75,81,85,86,91],mandlietal2016:15,mani:[1,3,4,5,11,12,19,20,21,27,31,33,34,35,37,38,42,47,54,56,57,63,64,65,70,72,75,77,82,85,90,92,97,98,99,104,106,107,113,115,117,121,122,123,125,135,140],manifold:60,manipul:[40,137],manner:[40,47,63,69,115,122,129,130,135],manning_break:125,manning_coeffici:125,manual:[35,78,87,94,96,105,133],manuel:[15,75,85],maojr:112,map2d_to_1d:26,map:[3,14,29,54,60,70,75,78,83,85,90,104,111,115,131,137,143],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,60,78,83],mappedgrid:[3,60],march:[16,23,107,108],margin:[31,41],mark:[14,47,105],mark_cent:83,mark_nod:83,marker:54,markup:10,marsha:[4,5,15],mask:[45,137],mask_outside_zlim:54,maskedarrai:137,mass:[5,87],massiv:85,master:[12,16,24,28,49,50,53,90,112,113,114,115],match:[29,47,54,86,92,105,131,137],materi:[4,55,63,75],math:[15,47,97],mathemat:4,mathwork:60,matlab:[6,21,24,33,34,68,69,70,89,99,115],matlabpath:60,matplotlib:[0,2,3,12,29,45,47,69,70,73,76,79,99,121,131,137,138],matric:[117,143],matrix:91,matteo:[4,15,75,85],matter:[57,111],matthew:[15,75,85],maux:[21,117,140],max1d:64,max:[0,29,60,91,104,108,124,126,131,137,143],max_buff:[40,113],max_inch:54,max_level_deep:125,max_step:93,max_vertices_in_descript:54,max_wind_radiu:131,max_wind_radius_fil:131,max_wind_spe:131,maxgr:115,maxima:[31,64,125],maximum:[3,21,29,31,32,41,60,93,97,104,107,108,115,122,123,124,126,131,132],maxlevel:[60,104,123,124,125],maxm:117,maxmi:[19,78],maxmx:[19,78],maxmz:19,maxwell_1d_homogen:90,mayb:137,mbc:140,mc_limit:81,mcs:88,mean:[3,12,21,27,40,44,53,60,87,88,104,117,118,122,124,126,139],mean_latitud:45,meant:[37,83,93,131],measur:[29,40,43,63],mechan:[51,53,95],media:15,medium:[124,140],meet:23,member:[47,90,92,97],memori:[19,21,64,65,66,77,80,87,95,123,124],mention:[85,122,123],menu:[12,17,24,54,114,118,139],meqn:[40,65,117,140],merchant:[55,75],mercuri:88,merg:[5,12,24,27,49,50,53,111],mesh:[4,6,15,60,66,69,77,104,121,122,140],meshgrid:[77,90,137],messag:[27,36,43,49,53,60,64,80,83,87,89,92,93,95,96,122,124,126,138],met:[31,55,75],metadata:[65,135,137],meteorlog:131,meter:[29,43,47,63,118,125,131,137,139],meterolog:131,method:[4,15,38,40,48,70,72,77,80,81,83,88,92,93,98,104,105,111,117,121,122,123,124,126,131,134,135,137,140],metric:43,mhhw:118,mhw:[44,118,139],micro:12,mid:70,middl:[91,112],midpoint:83,might:[9,12,14,21,27,28,33,34,35,43,47,48,49,51,52,53,57,60,64,70,77,87,91,99,100,102,103,104,107,122,123,135,137,139,140],migrat:18,millimet:137,mimic:115,min:[0,91,131,137,143],min_level_check:31,min_time_incr:40,mind:27,minim:[5,53,86,123,137],minimum:[3,31,40,47,63,97,113,125,137],minisymposterium:23,minlevel:[104,123,124,125],minmod:[81,83,93,122,124,126],minmod_limit:81,minor:[10,47,87,107,108,109,110,111,112,113,114,115],minut:[43,47,49,54,118,137,139],mis:70,misc:4,miscellan:91,miss:[21,86,131,135,137,138],mitig:44,mitran:[4,15],mix:[29,47,63],mjb:[5,15],mjberger:4,mlc:131,mllw:139,mode:[1,12,27,98,134],model:[14,15,23,24,29,31,37,41,42,48,58,87,112,118,125,131,132,135],modern:[94,115,117],modif:[27,36,55,60,70,75,81,125],modifi:[5,8,13,14,19,21,26,31,33,34,40,41,50,51,53,56,60,62,70,78,81,83,85,90,100,101,102,103,104,110,112,113,114,115,119,122,124,125,126,129,130,135,137,140],modul:[0,6,7,24,27,31,37,41,45,47,48,53,57,63,64,69,70,71,72,73,77,78,81,82,86,90,91,92,95,100,105,108,109,111,114,115,116,122,123,125,131,135,136],module_nam:98,modulu:[29,91,97,124,140],molsolv:93,moment:[26,29],momentum:[14,31,44,58,87,125,135],monitor:[21,24,32,41,64,108,110,113],monoton:[122,125],monster:9,month:[15,47,85],more:[1,2,3,4,6,9,11,12,14,15,19,21,25,27,29,31,33,40,41,42,44,47,48,49,50,51,52,53,54,55,56,60,63,69,70,71,72,73,75,78,80,81,83,86,87,88,89,90,91,93,94,95,97,98,100,103,104,105,107,108,111,113,114,115,117,118,120,121,122,123,124,125,127,131,133,134,135,137,138,139,140,143],moreov:63,most:[3,19,21,26,31,33,34,36,37,40,44,46,47,48,49,52,54,56,60,64,66,69,70,72,75,83,87,88,93,96,97,104,105,112,114,116,117,118,121,122,123,125,128,140],mostli:[3,69],motion:[63,135],movabl:29,move:[14,33,34,41,49,51,53,63,90,104,107,109,114,125,135,136],movement:29,movetopo:107,mparsani:4,mpi:[66,88],mpich:88,mpiexec:88,mpirun:[88,94,105],msl:[118,139],mthlim:[83,93],much:[12,27,31,37,47,49,65,66,69,99,107,111,122,125,134,137],muct:93,multi:[15,47,77,107,109,112,115,140],multicor:[64,113],multidimension:[78,85],multilay:[40,108,111,114,115],multipl:[5,12,22,27,40,51,69,77,83,86,87,98,100,105,107,113,116,117,131,132],multistep:93,must:[5,12,14,19,21,27,29,31,42,47,49,55,56,57,60,63,64,65,75,78,86,87,90,92,93,95,96,97,98,100,107,111,117,118,122,124,125,126,131,137,138,139,140,143],mwave:117,mx1d:140,mxnest:21,my_acoustics_rp:77,my_custom_bc:93,my_geoclaw_storm:131,my_initial_solut:80,my_riemann_solv:117,my_rp_modul:77,my_setplot_fil:72,my_solv:80,my_storm:131,n00014:4,n12:31,n23:31,nadi:131,name:[0,1,2,3,6,10,12,19,21,27,28,29,31,33,34,36,40,47,50,54,55,60,61,70,72,75,78,80,82,83,86,87,91,92,97,98,100,112,115,116,117,121,122,123,124,125,126,131,137,140,141],namespac:78,nan:[43,137],nation:[4,44,131],nativ:86,natur:[31,49,117,143],naux:65,navig:[11,127],nbtool:111,nbviewer:112,nc_param:137,ncar:4,ncei:135,ncol:111,nctr:[29,63],ndarrai:[43,81,83,91,95,131,137],ndarrari:83,ndim:[21,65,72,122,123],ndip:29,nearbi:118,nearest:[40,137],nearli:83,nearshor:44,necessari:[5,12,31,33,34,42,44,47,50,51,52,53,54,60,63,65,66,72,77,78,83,86,111,113,115,116,117,121,122,135,138,140],necessarili:[4,86,105],necessit:27,need:[0,4,5,12,13,14,17,18,19,21,26,27,31,33,34,35,36,37,44,45,48,49,50,51,53,54,56,57,60,61,63,64,65,66,72,73,77,78,80,85,86,87,88,90,93,97,99,100,102,104,105,108,112,113,115,116,117,119,120,122,123,124,125,126,129,130,131,132,133,135,137,139,140,143],neg:[21,125,135,137],negat:[43,135],neglig:[55,64,75,125],neighbor:[4,31,104,113,123,124,137],neither:[47,54,55,75,113],ness:86,nest:[107,113,123,124],netcdf3:86,netcdf3_64bit:86,netcdf3_class:86,netcdf4:[86,135,137],netcdf4_class:86,netcdf4_dir:37,netcdf:[12,37,41,112,115,122,124,126,131,137,139],neumann:131,never:[31,90,95,101,104,122,124,126,138],nevertheless:47,new_featur:27,new_frame_num:98,new_plotax:[0,2,40,47,70,121],new_plotfgur:70,new_plotfigur:[1,2,40,47,70,121],new_plotitem:[0,3,40,47,70,121],new_userdata:[124,126],newdelhi:131,newdir:62,newer:[27,64,81,115],newton:91,next:[2,3,5,12,17,31,33,35,40,49,50,60,65,70,72,76,77,85,86,88,93,97,102,104,105,122,123,125],nfr:4,ngdc:[118,139],nghost:65,ngrid:65,nhc:131,nhtmp:44,nice:[27,54,78,90,108],nicer:[72,99],nih:4,nnnnn:[116,122],no_data_valu:137,no_tran:83,noaa:[29,43,48,63,115,118,131,135,139],nodal:115,nodata_valu:137,nodataerror:131,nodatav:135,nodatavalu:[48,135],node:[83,115],nodes_with_ghost:83,nohup:108,non:[14,31,50,66,78,90,97,122,124,126,131,143],nonconserv:143,none:[0,1,2,3,14,17,23,26,29,40,43,47,54,80,83,86,87,92,93,95,98,105,107,113,115,116,122,124,126,131,137],nonexist:[6,24,41,85],nonlinear:[4,15,44,81,117,122,143],nonoverlap:5,nonphys:40,nonuniform:60,nor:[55,75],norm:[54,104,137],normal:[14,70,90,100,117,122,123,124,126],north:[43,63],northernmost:135,norwegian:4,nose:[27,34,35,76,88,105,133],nosetest:[27,34,35,88,94,105,133],notat:[29,43,54,117],note:[1,3,4,12,14,19,21,23,24,27,29,36,37,40,43,47,48,49,50,51,52,53,54,56,57,63,64,70,72,78,81,82,83,86,88,90,91,94,95,98,99,104,111,113,115,116,117,118,121,122,123,124,125,126,131,132,134,135,137,139,140],notebook:[29,63,66,79,85,87,103,111,112],noth:[13,95,119,129,130,137,140],notic:[47,55,75,97,105],nout:126,nov:[15,85],novemb:[16,112,113],now:[5,6,12,17,19,21,25,27,28,29,31,37,46,48,49,50,58,63,65,70,73,77,78,83,85,86,87,88,89,90,92,93,94,97,102,105,107,108,111,112,113,114,115,121,125,127,135,142],nprint:[123,124],npt:31,npy:137,nrm:54,nsf:4,nstate:86,nstepout:[80,87],nstrike:29,nthmp:44,ntime:124,ntot:126,num_aux:[78,86,88,90,91,95,117,122,123,124,126,140],num_cel:[7,21,83,117,122,123,124,126],num_cells_glob:83,num_digit:54,num_dim:[21,83,86,90,122,123,124,126],num_entri:98,num_eqn:[65,77,78,81,86,88,90,91,92,95,97,117,122,124,126,140],num_fgmax_v:[31,125],num_ghost:[78,83,86,90,91,93,95,117,122,124,126],num_output_tim:[77,80,87,116,122,124,126],num_proc:113,num_var:86,num_wav:[81,91,117,122,124,126],number:[1,2,3,4,5,7,14,15,18,21,26,27,28,29,31,33,34,40,47,50,54,56,60,64,65,66,72,77,78,80,81,82,83,85,86,87,88,90,92,93,95,97,98,102,104,105,107,108,110,111,112,113,114,115,116,117,122,123,124,125,126,131,132,133,137,140],numer:[4,15,47,99,131],numerica:15,numpi:[3,12,29,43,73,76,77,78,80,83,90,95,96,97,99,105,124,137,138],nxpoint:137,nypoint:137,nyu:4,object:[0,1,2,3,21,26,29,31,40,47,54,63,69,70,72,77,78,80,86,87,88,90,92,95,96,97,98,99,107,116,117,122,123,124,126,131,137],obliqu:14,obscur:21,observ:[31,44,107,118,122,125,132,139],observatori:4,observerd:132,obtain:[5,11,31,40,42,44,53,54,86,87,88,104,117,125,127,135,143],obviou:[7,47],occasion:[105,113],occupi:47,occur:[56,63,131,132],ocean:[14,15,44,47,102,125,129,130,135],octob:[16,109,110,111],off:[12,31,40,44,47,54,60,72,80,87,123,137],offer:[36,47,105],offici:[50,115],offset:[45,47,54,131,137],offshor:[54,58],oft:91,often:[5,10,12,14,19,26,31,33,34,36,37,40,41,44,45,46,54,58,63,65,87,99,100,105,116,117,118,121,122,125,131,135,139,140,143],okada85:[15,29,63],okada:[15,24,29,41,103,135,139],okadamap:29,olav:4,old:[1,6,19,21,24,50,72,80,88,89,90,93,105,112,114,115,117,135],older:[21,37,93,125],olig:[5,15],omega:77,omit:[51,53,105,113,116,125],omp_num_thread:[37,64,113,134],omp_stacks:64,on_lower_boundari:83,on_upper_boundari:83,onc:[1,12,21,27,33,34,47,50,51,52,53,60,63,72,77,87,88,89,90,95,98,113,115],ondrej:75,one:[0,1,2,3,4,5,7,12,13,14,19,21,23,24,26,27,28,29,31,33,34,40,42,47,48,50,51,52,53,54,58,60,61,62,63,65,66,69,70,77,83,86,87,88,90,92,93,94,97,98,100,102,104,105,112,113,115,116,117,119,121,122,123,124,125,126,127,129,130,131,135,137,140,141],ones:[77,78,95,115,122,123],onli:[1,3,5,7,12,14,18,21,26,27,29,31,39,40,44,47,49,50,52,54,57,58,60,63,64,65,66,70,77,80,83,86,87,88,90,92,93,94,95,97,98,102,104,107,112,113,114,115,116,117,118,120,121,122,123,124,125,126,131,135,137,138,139,140,143],onlin:[103,115,128,135],onr:4,onshor:[31,54,58],onto:[27,29,47,137],open:[4,12,15,27,28,29,47,54,69,75,79,83,86,98,120,139,141],opendatafil:57,opendiff:105,openli:22,openmp:[21,24,37,66,98,112,134],opensourc:[55,75],oper:[45,105,113],opinion:4,oppos:[27,132],opposit:[5,14,86],optim:[37,75,98],option:[2,12,14,19,21,24,27,29,31,33,34,36,37,43,46,48,53,56,60,61,69,70,77,78,80,82,83,84,85,86,87,89,92,93,94,97,98,101,104,105,108,111,112,113,121,122,124,125,126,127,131,137],orang:131,order:[4,5,12,14,15,29,31,44,48,49,51,53,57,60,63,65,66,70,72,73,75,77,80,81,83,85,86,87,89,90,93,97,98,100,111,115,117,121,122,123,124,126,131,135,137,138,140,143],ordinari:117,ordinarili:96,org:[4,15,39,41,49,50,55,75,78,79,83,86,88,100,112,114,137],organ:[21,22,33,34,80],orient:[63,78,99],origin:[3,5,12,14,19,27,29,32,40,49,64,65,78,93,98,107,113,116,123,124,126,137],orlean:102,oscil:[40,143],oscillatori:137,osher:93,osx:[47,73,99],other:[3,4,5,8,12,14,19,21,26,28,29,31,33,34,40,42,44,47,48,49,50,52,53,55,56,58,60,61,63,64,65,69,72,73,75,77,78,80,83,85,87,89,90,91,94,97,100,104,105,107,108,110,111,113,117,118,120,121,122,125,127,131,135,137,139,140,141],otherwis:[29,49,51,53,55,75,87,91,92,93,94,95,98,122,137],ought:93,ouput:80,our:[48,57,77,102],out1:57,out:[3,14,25,29,33,34,40,46,48,49,50,51,53,54,55,56,60,63,70,75,77,78,80,86,87,88,89,92,97,99,100,102,105,113,115,117,124,126,131,137,138],out_path:131,out_tim:80,outaux:26,outdir:[1,3,33,34,40,46,56,69,72,80,82,83,87,112,124,126,138],outdir_p:80,outfil:137,outflow:[14,122,124,126],outgo:14,outlin:[54,60,72,117,121],outn:26,output:[1,6,7,12,14,24,26,27,29,33,34,36,37,40,41,42,43,45,46,47,50,63,69,70,72,78,80,81,82,83,84,85,88,89,91,92,93,94,95,97,98,100,107,111,112,113,114,115,117,121,124,126,131,132,133,134,137,140,141],output_aux_compon:[122,124,126],output_aux_onlyonc:[122,124,126],output_file_prefix:[80,87],output_filenam:78,output_format:[80,87,122,124,126],output_opt:80,output_q_compon:[122,124,126],output_step_interv:[122,124,126],output_styl:[65,77,80,87,116,122,124,126],output_t0:[116,122,124,126],output_tim:[87,116,122,124],output_unit:29,outputdir:60,outputfil:137,outsid:[5,14,54,135,137],outsiz:54,over:[1,3,5,12,14,15,21,27,29,31,40,41,42,44,47,48,54,60,63,69,86,87,93,104,107,108,117,121,124,125,134,135,140,143],overal:[9,77],overflow:[37,114],overhead:[5,64,104,134],overlai:54,overlaid:[47,54],overland:47,overlap:[104,107,108,135],overrid:[27,37,47,77,78,98],overridden:[60,93,95],overrul:3,overview:[41,47,69,106,109],overwrit:[1,80,87,92],overwritten:[40,86,87,113,116,140],own:[14,19,23,27,53,77,78,84,85,94,95,102,115,117,127],owner:115,p_center:[83,97],p_function:87,p_l:91,p_node:83,p_r:91,p_t:97,p_x:97,packag:[4,24,27,33,34,47,50,51,52,57,66,69,73,75,77,83,85,87,89,90,92,94,97,99,100,131,138,141],page:[1,4,8,10,11,12,15,17,21,23,24,27,44,48,50,51,52,53,82,85,88,89,96,99,105,114,118,121,127,139,140],pair:[12,86,105,137],panel:47,paper:[4,5,14,29,41,49,81,85],paragraph:31,parallel:[4,21,22,40,51,64,76,82,84,85,87,90,92,94,98,105,113],paramet:[1,5,6,8,14,19,24,26,29,31,32,33,34,36,38,41,42,44,47,48,56,57,58,60,63,64,65,69,76,77,80,81,86,87,89,91,92,95,98,101,104,107,113,116,117,118,124,126,132,135,137,138,140],parameter:[102,115,125,131,132],parametr:132,paramt:31,parent:[3,26,83,95,98],pars:[40,98],parsani:[4,15,75,85],part:[4,21,23,29,41,44,51,53,54,61,75,78,88,94,95,97,99,103,105,125,140],partial:[15,66,102],particular:[5,11,19,21,27,29,31,37,40,41,42,44,47,50,51,55,56,57,60,70,71,73,75,77,91,92,93,95,97,102,103,105,108,111,112,113,114,115,121,125,131,132,143],particularli:[14,26,46,47,52,63,65,108,111,115,135],partit:88,pascal:[29,131],pass:[14,18,19,27,29,40,47,54,64,70,77,80,82,84,90,93,95,96,98,105,117,124,131,137,140],password:27,past:[16,20,24,49,92,113,118,125],patch:[3,5,6,14,21,26,31,47,60,63,64,65,69,70,86,88,92,95,113,115,121,123,125,134,135,140],patch_index:83,patchedges_show:[3,21],patchno:[3,26],path:[1,12,29,37,40,43,47,51,52,53,56,62,69,70,80,86,88,92,98,114,115,120,125,131,137,138],path_to_atcf:131,path_to_ibtrac:131,pathtool:60,pattern:[19,42,47,118],pcolor:[3,40,69,99,137],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:54,pcolormesh:54,pdb:70,pde:[4,15,66,85,97,122,140],pdf:[1,29],pdflatex:1,peanoclaw:75,pedant:37,peerj:[4,15],pem:12,pend:3,peopl:[4,12,75,99],pep8:27,per:[12,29,40,47,54,60,64,86,123],perfect:14,perfectli:14,perfom:105,perform:[5,21,26,44,47,48,64,66,69,70,80,83,86,90,93,98,105,116,117,120,125,133],perhap:[5,31,40,70,95,98],perimet:31,period:[5,14,31,56,77,90,104,122,124,126],perman:[16,60,74],permiss:[50,53,55,75],permit:[55,75],permut:19,perturb:[101,125,135],petclaw:[75,88,89,90,92,98,100,105],peter:4,petsc4pi:[88,94,95,105],petsc:[21,22,51,66,75,77,84,85,87,94,95,96,98],petsc_arch:88,petsc_dir:88,petsc_hello_world:88,phase:[88,112],philim:78,phoni:70,photo:[23,24],php:[29,55,75],phy:15,physic:[14,31,40,47,78,83,85,97,104,143],pick:[77,93],piec:[14,44,83],piecewis:[29,31,48,63,108,117,135],pink:[54,70,121],pinkfig:70,pip3:50,pip:[17,24,27,47,49,50,52,79,85,88,94,96,100,114,115,120],pixel:[47,54],pkg:[50,126],place:[14,19,27,33,34,47,49,50,51,53,56,57,62,87,88,90,94,100,107,113,140],placemark:47,plaid:47,plain:45,plan:[23,27,44,51,52,58,86,93,131],planar:[63,117],plane:[29,63,112,139],platform:[12,47,80,88,99,105],pleas:[4,16,23,27,39,53,74,75,77,80,82,85,86,88,90,92,93,94,96,102,115,117,131],plot:[0,1,2,4,6,7,11,26,29,33,34,35,36,37,38,41,48,50,54,65,76,77,79,80,83,84,85,87,92,94,96,97,99,100,102,110,111,112,113,114,115,131,133,137],plot_box:[29,137],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_packag:131,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_timing_stat:115,plot_topo_fil:[71,111],plot_typ:[0,21,40,47,70,72,121],plot_var2:3,plot_var:[3,26,40,47,70,71],plotax:[3,40,70,121],plotclaw1:60,plotclaw2:60,plotclaw3:60,plotclaw:[40,69,70,72,121],plotdata:[26,40,61,70,72,80,112,113,121],plotdir:[1,72,121],plotexampl:70,plotfigur:[40,70,121],plotfram:1,plotgaug:40,plotitem:[3,26,40,70,121],plotloop:[70,72],plotstyl:[3,40,70,121],plotter:[1,3,26,72],plotting_makeplot:[33,34],plottyp:60,plt:54,plu:[70,107,124,126,137],pmel:[29,63],png2kml:54,png:[1,12,33,34,36,47,54,60,113],png_extent:54,png_file:54,png_filenam:54,png_name:54,point:[3,5,12,13,14,15,19,27,29,31,33,34,37,40,42,43,44,47,48,49,50,51,52,53,54,60,61,63,77,87,88,92,98,100,104,114,116,117,118,119,120,122,123,124,125,129,130,131,135,137,138,140],point_styl:[31,110],pointer:[4,14,63,69,72,93,98,111],pointwis:[24,48,95,111,135],poisson:63,poli:54,poly2kml:54,polygon:[3,47,54,137],polynomi:117,poor:27,poorest:86,popup:12,port:[12,28,84,85,90,123],portion:[5,47,78,134],posit:[47,63,66,98,125,135,137],possibl:[5,12,21,25,27,29,31,40,43,44,47,51,53,55,56,63,70,75,77,83,86,88,89,93,98,100,104,112,117,118,122,123,135,139,140],post:[23,24,25,27,47,88,127],poster:15,posteriori:93,postprocess:[65,87],potenti:[60,113,118],powel:125,power:[47,69,99],pprint:[123,124],practic:[27,100,102],pre:[3,12,50,79,86,99],preced:70,preceed:[31,65,140],precis:[37,54,78,83,86,117,137],predefin:70,predict:43,prefer:[54,88,90,99,120,131,139],prefix:[50,80,86,87,92],preliminari:[43,115,139],prepar:27,prepend:80,preprocess:111,prerequisit:[51,52,53],present:[5,54,83,91,92,93,98,127,140,143],preserv:[66,93],press:[15,88,94],pressur:[40,60,72,87,91,97,114,115,125,131,132],pressure_forc:125,pressure_index:125,presum:118,pretti:12,prevent:47,previou:[1,4,24,27,31,40,48,49,50,51,52,53,57,60,72,77,93,102,107,112,113,114,115,116,122,124,126,135,137],previous:[5,21,72,111],price:12,primari:[21,27,41,102,105,131],primarili:115,prime:105,principl:[137,140],print:[1,3,6,47,48,54,60,70,83,87,88,89,95,97,100,107,108,111,113,114,115,122,124,126,131,138],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:113,print_git_statu:46,printenv:138,printfig:1,printfram:[1,69],prior:[55,75,124,126,140],probabl:[12,27,47,58,100],probdata:[124,126],problem:[4,6,14,15,19,23,24,26,27,31,33,34,38,41,53,56,60,63,66,70,73,76,77,82,84,85,88,91,93,96,100,105,107,108,110,111,114,117,122,124,125,126,127,134,138],problem_data:[77,91,92,95,97],problemat:87,proce:[5,27],procedur:[5,14,41,50,140],proceed:49,process:[24,33,34,41,47,51,63,77,82,83,88,94,95,98,105,113,138],processor:95,procur:[55,75],produc:[1,3,21,26,29,33,34,36,40,47,48,49,54,60,64,68,69,86,105,121,125,137],product:[29,55,75,98],professorship:4,profil:[132,137],profit:[55,75],program:[4,42,44,57,66,99],programmat:75,progress:[23,27,93,102,111,135,137],prohibit:21,proj:124,project:[23,29,44,47,49,50,63,75,79,113,114,123,137],projection_zon:29,promot:[55,75],prompt:[27,28,60,70,72,82,85,97,99,137],propag:[4,5,15,24,29,44,47,63,83,85,93,113,117],proper:[5,13,40,48,54,58,60,86,98,107,113,119,123,124,129,130,131,140],properli:[19,31,33,34,36,44,47,48,49,53,54,62,80,99,105,107,110,115,120,122,125,135,137,138,140],properti:[29,60,77,80,83,92,95,137],propos:[27,143],provid:[0,2,4,6,9,14,19,26,27,29,37,41,42,43,44,47,48,49,54,55,57,63,65,69,75,78,80,81,87,88,90,92,93,97,98,99,102,103,105,112,117,122,130,131,134,135,137,140],proximity_radiu:137,pseudo:[47,60],psi:[90,140,143],pth:53,pts:[123,124],pub:[29,131],publicli:127,publish:[4,15,49,85],pull:[23,25,28,49,50,52,82,90,105,110,113,114,117],pull_al:[27,50],pupyner:86,pure:[72,83,85,86,88,93,99,105],purpos:[31,41,44,48,55,60,65,75,83,99,103,105,116],push:[27,49,50],put:[1,10,14,27,37,50,51,53,54,60,77,82,90,113,120],pyclaw:[1,3,4,11,15,16,22,23,26,27,40,50,51,65,66,72,73,84,88,90,96,99,100,117,120],pyflak:85,pykml:47,pylab:[0,70],pylint:85,pypa:73,pypi:86,pyplot:[54,131,137],pyramid:47,python3:114,python:[3,4,6,7,10,12,15,18,21,22,24,26,27,29,31,33,34,35,36,38,40,41,42,43,46,47,48,50,51,52,53,54,63,65,66,69,70,71,75,76,78,82,83,85,86,88,89,90,91,93,96,97,98,105,108,109,111,113,114,115,117,120,125,135,137,138,141],python_io:65,pythonpath:[51,53],pyweno:[75,93],q0000:[60,122],q0001:[60,61],q000n:[1,7],q0_vs_radiu:3,q1d:140,q_hat:91,q_hat_l:91,q_hat_r:91,q_i:[117,143],q_l:[91,117],q_out_field:40,q_r:[91,117],q_t:[90,91,93,97,140,143],q_x:[91,97,143],qbc:[90,93,95],qcor:78,qin:4,qinit:[19,21,41,56,57,78,118,140],qinitdata:125,qinitfil:125,qopenmp:37,qquad:143,qtrue:70,quad2kml:54,quad:54,quadrat:[29,63],quadrilater:[31,54],qualiti:47,quantiti:[13,31,54,60,80,84,85,91,95,119,125],quantiz:86,queri:[78,83,98],question:[23,27,92],quezada:[15,75,85],quick:[12,24,34,41,42,73,99,105,133],quicker:12,quickli:[40,54,79,113,137],quit:[28,60,70,72],quot:54,qxxxx:86,r_refin:125,radial:[3,43,125,140],radian:43,radii:131,radio:54,radio_styl:54,radiu:[3,125,131,132,137],rai:137,rais:[23,29,53,86,92,94,98,131,137],rake:[29,63],ran:[34,133],randal:[4,15,85],randi:[29,81,83],rang:[3,12,29,40,43,47,107,112],rare:[63,113],raster:[47,48,135],rate:12,rather:[5,19,21,27,28,31,49,50,51,53,56,57,58,62,63,83,88,90,93,101,111,112,113,115,116,121,122,123,131,132,135,137,140,143],ratio:[5,13,21,45,60,63,81,91,93,119,122,123,124],raw:122,rcl:47,reachabl:92,reaction:90,read:[1,4,13,27,29,31,33,34,40,44,45,48,51,53,54,57,60,63,65,69,78,80,86,87,92,98,101,112,113,115,119,124,125,126,129,130,131,135,137,140,141],read_:[86,92],read_arrai:86,read_atcf:131,read_aux:[86,92],read_data_lin:98,read_geoclaw:131,read_head:137,read_hurdat:131,read_ibtrac:131,read_imd:131,read_jma:131,read_netcdf:[115,135,137],read_output:31,read_patch_head:86,read_t:86,read_tcvit:131,readabl:[131,132],reader:141,readi:[77,78,80,94],readm:[49,50,117,120,140],real:[44,50,58,98,117,139],realist:47,realiti:44,realli:[5,105,140],rearrang:115,reason:[44,47,54,63,64,66,88,90,104,122],rebas:27,rebuild:49,recal:[1,11],recalcul:108,recangl:63,receiv:[47,105],recent:[4,12,21,24,26,29,46,49,50,51,52,53,56,58,64,70,72,73,74,112,117],recip:52,recogn:[42,48,135],recomil:31,recommend:[4,29,31,33,34,51,53,64,69,79,83,88,89,93,94,96,97,115,120,122,124,125,126,141],recompil:[27,36,37,56,64,98,140],recomput:[72,77,108],reconstruct:[85,93,131],record:[31,40,95,131,139],recov:27,recreat:[27,36,56],rect:29,rectangl:[5,29,63,104,137],rectangular:[5,6,14,15,29,31,41,42,54,83,104,115,123,125,135],recurs:[49,62,107],red:[2,3,27,40,54,70,105,121,131],redhat:99,redirect:49,redistribut:[55,75],redraw:[60,72],reduc:[5,14,47,112,114,143],redund:131,refactor:[107,108,109,111,113,114],refer:[6,19,24,29,33,34,41,42,47,56,57,60,63,77,81,83,86,87,91,93,95,100,102,115,116,117,125,131,135,137,139,140],referenc:[47,118],refin:[3,4,6,7,15,21,41,44,47,48,60,65,66,77,113,115,121,122,123,124,134,135,140],refinement_data:125,refinement_ratios_i:[7,123,124],refinement_ratios_t:[123,124,125],refinement_ratios_x:[123,124],refinementdata:110,reflect:[4,14,27,49,115,122,124,126],refresh:[12,40],regard:[4,112,131],regardless:[12,104,122,125],regener:56,region00:54,region:[3,5,6,12,14,21,31,41,44,45,47,54,58,63,66,102,115,118,123,124,135,137],regiondata:[104,124],regions2kml:54,regist:53,registr:[24,41,115,135,137],regress:[21,24,27,46,88,113,114,133],regression_test:[34,133],regrid:[9,104,107,108,113,123,124,134],regrid_buffer_width:[104,123,124],regrid_interv:[104,123,124],regular:[31,137],reiniti:113,reject:[87,93,122],rel:[12,19,29,36,42,44,47,49,63,64,70,98,100,105,108,109,110,111,112,113,114,115,118,123,125,127,135,139],relat:[3,21,49,66,91,114,118],releas:[17,21,24,39,47,49,51,52,53,74,79,93,94],release_5_x_x:50,relev:[21,26,37,41,47,49,86,105,131],reli:[66,78,89,113],relief:[118,139],reload:137,reltol:98,remain:[31,47,53,90,98,100,107,129,130,131],remak:49,rememb:[13,26,64,70,88,119,129,130],remot:[12,47,50,115,137,139],remote_directori:137,remote_topo_url:[135,137],remov:[1,3,19,36,53,54,56,61,72,88,100,107,110,111,137,138],renam:[19,21,33,34,56,90,93],render:[21,47,54,141],reorder:[19,21],reorgan:[21,78,106],repack:50,repeat:[72,116],repeatedli:[3,88,94],replac:[5,12,40,44,49,50,56,69,78,82,86,88,89,90,91,95,98,105,107,113,115,116,117,137,138],replace_no_data_valu:137,replace_valu:137,replot:72,repo:50,report:[23,29,31,46,100,105,112,115,120,122,124],repositori:[21,23,24,25,28,31,34,35,38,41,49,51,52,53,56,57,93,100,102,103,105,110,113,128],repres:[29,77,83,86,90,91,93,95,104,137,143],represent:[48,83,86,92,98,137],reprint:75,reproduc:[15,48,55,75],request:[23,25,29,49,52,65,77,82,83,87,90,92,105,113,115,117,125,131,137],requir:[3,4,14,19,21,24,26,29,33,34,36,41,43,44,50,51,53,60,63,66,69,72,73,77,78,83,85,86,89,90,93,94,95,97,98,104,105,107,108,111,113,117,121,122,123,124,125,126,131,132,135,138,141,143],rerun:[37,40,48,50,53],rescal:29,research:[4,15,41,44,75,93,103],reserv:[55,75],reset:[37,51,53,98],reset_count:98,resetplot:[70,72],resid:[49,56,83],resiz:115,resolut:[4,5,15,29,40,63,83,93,97,98,107,111,115,117,118,125,135,137,139,140],resolution_limit:137,resolv:[4,31,47,49,102,115],resourc:[15,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,54,85,86,91,137],respons:[12,44,77,92],respos:50,rest:[21,72,102,115,118,129,130,135,137],restart:[12,24,40,72,85,112,113,114,115,122,124,126],restart_fil:[116,122,124,126],restor:5,restrict:[47,115,125,135],restructur:[10,49],result:[1,3,4,6,8,11,15,24,25,29,31,32,33,34,35,40,41,43,44,48,49,50,53,54,56,58,60,63,69,70,71,72,76,80,82,85,87,91,94,98,104,105,107,111,113,114,115,122,123,124,125,126,133,135,137,139],retain:[55,75,86],retak:[122,124,126],retriev:[12,43,72,78,93,137,139],return_topo:137,return_xarrai:137,reunion:131,reutil:78,reveal:[40,97],revers:49,revert:47,review:[15,81],revis:[5,113],rewritten:29,rgb:70,rho:[60,91,97,124],rho_l:91,rho_r:91,rhou:60,rhov:60,richardson:[21,123,124],rid:27,ridg:47,riemann:[4,7,19,21,22,27,41,50,51,53,57,66,75,77,83,84,93,94,95,97,100,120,122,124,126,129,130,143],riemann_aug_jcp:114,riemann_interact:112,riemann_solv:93,riemann_tool:111,right:[31,55,58,63,75,83,88,90,91,95,97,116,117,143],rigid:[29,115],rigin:29,rigoutsi:5,rigoutso:15,rise:[29,63,118],rise_fract:[29,63],rise_shap:29,rise_tim:[29,63],rise_time_end:[29,63],rise_time_start:[29,63],risen:131,rjl:[5,15,100],rjlevequ:[4,27],rjlkei:12,rnode:115,robust:[41,115,137],rock:63,roe:[81,91,117],roman:52,root:[28,51,53,86,87,92],rossmanith:15,rotat:45,rough:58,roughli:134,round:47,roundoff:83,routin:[4,5,14,19,24,26,29,31,33,34,40,41,42,47,56,60,61,64,65,66,69,72,75,78,80,83,86,89,90,93,95,96,99,104,107,108,111,113,115,117,122,124,126,131,137,138,140,141,143],row:[29,48,81,104,135,137],rp1:[117,143],rp1_advect:57,rp1_ptwise:117,rp_:91,rp_sourc:90,rpn2:117,rpn2_ptwise:117,rpn2_vc_advect:109,rprint:[123,124],rpt2_ptwise:117,rsmc:131,rsphere:[43,78],rst:[49,50],rsync:49,rsync_clawpack:49,rule:[12,54,78],run1:56,run:[1,5,6,11,12,14,19,21,23,24,27,31,36,38,40,41,46,47,49,50,51,52,53,54,56,58,60,61,65,66,69,70,72,73,76,78,80,83,84,85,87,90,94,96,97,98,100,102,104,107,108,112,113,114,115,116,117,124,125,126,131,133,134,137,140],run_app_from_main:98,run_data:80,run_exampl:137,run_seri:98,runclaw:[46,108,117],rundata:[21,31,40,54,104,107,116,122,123,124,125,126],rundir:80,rung:[85,93],runmak:80,runnabl:98,runtest:[34,88,133],runtim:98,runup:58,ruptur:[29,41],rupture_tim:[29,63],rupture_typ:[29,63],s_1:91,s_2:91,s_3:91,s_l:91,s_m:91,s_r:91,safe:64,safer:56,safeti:81,sagemath:79,sagemathcloud:79,sai:[12,14,27,54,96,104],same:[3,5,7,12,14,21,24,27,30,31,37,40,42,43,44,47,48,50,53,54,56,58,61,63,66,69,70,71,72,77,81,83,85,86,87,90,91,93,98,99,107,108,112,113,116,117,122,123,124,125,129,135,137,140],sampl:[6,7,15,24,31,37,41,47,63,100,105,116,122,123,135,137,140],san:52,sanromd:52,santiago:47,satisfi:[93,104,143],save:[12,24,25,46,54,65,80,84,93,112,113,115,116,132,137],savecod:80,savefig:54,scalabl:[15,85],scalar:[26,29,87,95,117,122,143],scale:[4,29,45,47,60,66,85,86,107,113,115,125],scan:37,scatter:[3,21,60],scenario:[44,118],scheme:[81,91],schlieren:[3,60],schwarzschild:4,sci:15,scienc:[4,15,75],scientif:[4,15,85,88,99],scipi:[12,78,99,131,137],scp:12,scratch:[43,97],screen:[12,27,47,54,80,87,88,112,124,126],screenshot:[12,47],script:[10,18,19,27,29,36,40,47,49,52,56,60,66,69,75,78,82,84,85,87,88,93,98,99,100,105,115,117,121,125,126,137],scroll:12,sdist:50,sea:[29,40,41,42,44,47,63,101,111,118,125,135,137,139],sea_level:[31,44,54,91,125,135,137],seab:58,seafloor:[29,44,63,139],sealevel:[24,41,125],search:[1,12,53,69,85,98,100,113,115],sec:29,second:[3,14,29,31,34,40,43,47,50,54,60,77,83,87,93,104,107,113,116,122,125,131,133,134,137,140,143],section:[5,12,14,33,34,37,42,44,50,57,60,69,72,105,116,122,125,137],secur:12,see:[0,1,2,3,4,5,6,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,55,56,57,58,60,61,62,63,64,65,68,69,70,71,72,73,74,75,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143],seem:[95,100,121],seen:[11,21,31,33,34,35,44,49,64,90,122,127],segement:137,segmentedplanefault:[29,63],seism:[15,29],seismic:[29,63],select:[12,14,27,31,87,93,107,114,122,125,139],self:[29,93,137],semi:93,send:[12,23,90,117],sens:[26,47,115,143],sensit:[44,58],sent:[87,95],separ:[1,27,47,49,52,54,57,85,93,137],seper:98,sept:50,sequenc:[19,21,57,88,94,97,98,105,107,114,117,140],seri:131,serial:[88,92,98,134],server:[12,28,47,49,50,115,135,139],servic:[24,55,75],session:[1,33,34,35,89,94],set:[0,1,2,3,5,7,12,13,14,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,49,51,52,53,54,56,57,62,63,64,65,66,68,69,77,78,80,82,83,84,85,86,87,88,91,92,93,94,95,96,97,98,100,101,104,105,107,108,111,112,113,115,116,117,119,121,122,123,124,125,126,127,131,132,135,137,139,140,143],set_all_st:92,set_aspect:45,set_aux_from_auxbc:95,set_corn:29,set_count:98,set_cparam:[77,95],set_dynamic_slip:29,set_num_ghost:95,set_printopt:83,set_q_from_qbc:95,set_subfault:29,set_xyz:137,setaux:[19,21,57,78,107,108,117,122,124,126],setaux_default:49,setenv:88,setgaug:[40,112],setlevel:87,setplot1:60,setplot2:60,setplot3:60,setplot:[0,1,2,3,6,18,19,21,24,38,40,61,68,69,89,90,98,113,138,141],setplot_fil:47,setplot_kml:47,setprob:[57,124,126,140],setrun:[5,6,7,14,18,19,24,31,33,34,36,38,41,42,44,54,56,58,65,66,70,101,102,104,107,111,112,113,116,117,118,131,135,138,140],setrun_setgeo:125,setup:[35,50,77,78,82,85,88,90,93,94,95,103,120,138],setup_gauge_fil:83,sever:[0,1,2,9,14,19,21,22,29,33,34,36,40,42,44,47,50,51,53,60,63,69,94,104,105,106,107,108,111,112,113,114,121,125,133,135,137,140],sftp:12,shaheen:87,shall:[55,75],shallow:[13,14,15,31,41,44,66,78,85,101,108,109,111,113,115,117,119,125,129,130,135,140],shallow_1d_pi:91,shallow_exact_1d:91,shallow_fwave_1d:91,shallow_hll_1d:91,shallow_roe_1d:91,shallow_spher:[78,105],shallow_water_riemann_solv:24,shallowest:63,shape:[29,43,54,78,83,88,95,137],shapshot:12,share:[24,25,47,51,53,64,66,83,86,88],sharp:54,sharpclaw:[4,22,24,66,75,82,84,85,90,107,117],sharpclawnd:93,sharpclawsolv:93,sharpclawsolver1d:93,sharpclawsolver2d:93,sharpen:81,sharper:[47,54],shear:[15,29],shell:[27,51,52,53,64,70,72,88,94,97,99,100,113,120],shg:60,shift:[29,44,48],ship:31,shock:[5,15,44,93,104],shock_bubble_interact:[33,35,82,85,94],shockbubbl:90,shoot:[69,85],shore:[31,41,125],shorelin:[47,137],shoreline_xi:137,shorter:[3,104,137],shortli:[27,105],shot:12,should:[0,1,2,3,4,5,11,12,14,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,48,49,50,51,53,54,56,58,60,61,62,63,64,69,70,72,78,83,86,87,88,90,91,92,93,94,95,96,97,98,100,101,104,105,107,108,111,113,114,115,116,117,118,120,121,122,123,124,125,126,127,131,133,135,137,138,140,142,143],shouldn:82,show:[0,2,3,8,9,27,29,33,34,40,47,49,50,54,56,60,72,83,97,100,105,111,137,138,140],showcolor:70,showgridlin:60,showitem:1,shown:[3,12,49,54,57,58,60,66,87,108,109,110,111,112,113,114,115,137,140],showpatchbord:60,shrink:137,shu:93,shuffl:86,siam:[15,23,85],sid:131,side:[5,14,17,31,47,58,63,86,105,117,143],sidebar:47,sift:[29,63,115],sift_slip:29,siftfault:[29,63,115],sigma:77,sign:[12,23,70,131],signatur:[3,78,81,83,84,86,91,131],signific:[16,58,118,137],significantli:[86,115],signitur:92,silenc:87,silent:86,silo:141,similar:[4,12,14,27,31,34,40,47,77,78,86,90,93,97,115,125,131,132,133,135],similarli:[36,82,88,90,134],simpl:[31,33,34,50,63,78,85,90,91,93,98,103,105,137],simplest:[62,97],simpli:[12,31,33,34,35,40,47,48,51,52,56,57,77,79,80,82,87,88,94,105,117,127,131,137,140,141],simplifi:[63,69,70,86,105,114,115,140],simul:[33,34,35,42,44,47,60,80,83,85,87,88,90,94,97,102,113,114,115,125,131],simultan:[47,113],sin:[43,70],sinc:[0,3,4,5,14,16,19,21,27,31,37,43,44,47,48,49,50,53,54,56,57,63,64,65,69,70,77,78,79,86,87,99,104,105,107,111,112,113,114,116,117,118,122,123,125,135,138,139],singl:[0,1,2,3,5,14,18,21,22,26,27,29,40,42,47,48,54,56,60,63,64,65,77,83,86,87,92,98,105,110,111,113,117,122,123,124,125,135,137,139,140],single_storm:131,sisc:[15,85],sit:12,site:[27,47,51,53,100],situat:[47,60],size:[19,29,40,47,54,64,65,69,83,86,88,93,113,124,126,135,137],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,60,117],slide:99,slider:[47,54],slightli:[14,48,113,114],slip:[24,29,41,103,135,139],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,93],slope_i:47,slope_x:47,slow:[12,47,87,96],slowest:86,slowli:54,small:[14,40,58,104,105,107,112,116,122,124,125,135,137,139],smaller:[12,47,58,66,83,87,107,122,124,125,126,137],smallest:104,smear:54,smooth:[29,93,104,140],smooth_data:137,smoothli:48,snapshot:[27,87],soc:[15,29],softwar:[5,12,24,28,41,44,55,61,75,85,86,87,127,135],sol:77,sole:117,solid:[3,14,47,63,90,121,122,124,126],solitari:15,solut:[1,3,4,14,21,24,26,34,40,43,60,63,65,69,72,78,80,83,85,86,87,90,91,93,95,96,97,104,105,111,112,116,117,121,122,123,124,126,133,140,143],solv:[4,7,14,15,19,25,33,34,44,53,76,78,80,83,85,90,91,94,117,122,135,140,143],solver:[4,5,19,21,22,24,27,41,51,53,57,75,76,80,83,84,87,95,109,111,113,114,115,122,124,126,129,130,143],solver_nam:117,solver_typ:[82,93],some:[3,4,5,6,7,9,11,14,15,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,53,57,63,64,65,69,71,72,75,78,79,81,86,87,89,90,92,94,95,96,97,99,100,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,121,122,123,124,125,126,127,131,132,134,135,137,140],someon:[27,56],someth:[12,26,27,56,62,69,87,92,93,100,135,138,140],sometim:[31,53,56,70,77,87,115,118,132,139],somewhat:[64,69,104,105,113,122],somewher:[61,111],sonel:139,soon:93,sorin:4,sort:[12,51,115,121,138],sound:[77,91,97],sourc:[4,15,22,24,27,29,37,41,47,49,50,51,53,54,55,57,58,69,75,78,82,83,84,93,94,96,97,98,102,103,105,113,114,115,118,122,124,125,126,128,129,130,131,135],source_list:98,source_split:[83,93,122,124,126,140],south:135,space:[5,6,14,15,29,31,40,47,48,63,83,87,90,104,111,116,122,123,124,125,126,135,137,140],spacial:125,span:[43,47,54],spatial:[5,15,29,58,90,104,107,111,117,124,126,143],spawn:105,specfi:137,special:[4,6,14,41,42,47,55,66,75,99,104,137],specif:[3,21,27,29,40,41,43,47,53,55,57,58,75,76,78,80,85,86,87,91,92,98,102,113,114,115,121,122,123,124,126,132,135],specifi:[0,1,2,3,4,5,6,13,14,19,21,24,26,27,29,31,32,36,37,38,40,41,42,43,44,46,47,48,54,56,57,58,60,63,64,65,66,68,69,71,77,80,83,86,87,90,92,93,96,98,100,101,102,105,107,110,111,112,113,114,115,116,117,118,119,124,126,127,129,130,131,132,134,135,137,138,139,141,143],speed:[31,77,81,91,97,113,117,122,125,131,132,137,140,143],speed_toler:125,spell:70,spend:112,spent:134,sphere:[43,78,108,125],spheric:[15,47],sphinx:[10,22,24,50,114],sphinx_web:49,sphinxcontrib:49,spite:[57,100],split:[5,64,83,86,93,111,112,122,124,126,134,140,143],spot:70,sprint:[123,124],spuriou:[14,105],sqrt:[3,31,58,77,90,91,97,124],src1:[57,130,140,143],src1d:130,src2:[78,130,140],src3:[130,140],src:[5,10,13,14,18,19,27,29,31,36,37,43,46,50,51,53,54,56,57,60,63,64,71,89,90,98,100,101,104,105,108,111,112,114,115,117,119,122,124,126,129,137,138,143],src_split:[122,124,126],srcn:[122,140],ssh:[12,27],ssp104:93,ssp33:93,ssplmm32:93,ssplmm43:93,ssplmm:93,ssprk22:93,stabil:[93,122],stabl:[73,83],stack:[64,111],stage:[93,118,135,137],stai:25,stand:4,standard:[5,14,29,47,48,60,65,78,81,93,99,100,105,124,125,126,127,135,140,143],start:[1,2,4,5,6,8,12,23,26,27,28,29,31,33,34,35,36,40,41,43,47,48,51,52,53,54,56,62,63,70,72,73,77,88,92,93,99,100,105,112,115,116,117,125,131,133,135,140],start_dat:131,start_fram:92,start_max:31,state:[12,15,24,27,49,63,70,77,78,80,83,85,86,87,88,90,91,92,93,96,97,105,117,122,135,143],statement:[33,34,51,53,60,65,99,100,113,124],station:[43,118,139],stationari:135,statist:[24,112],statu:[12,27,46,80,97],stdout:105,steadi:[63,135],steep:143,stencil:95,stencil_width:95,step1:57,step2:78,step2i:111,step2qcor:78,step2x:111,step3i:111,step3x:111,step3z:111,step:[5,9,14,18,27,31,33,34,35,40,47,49,50,60,69,72,75,76,77,78,80,87,90,93,95,97,102,104,107,112,113,116,117,120,122,123,124,125,126,135,143],step_hyperbol:93,step_index:93,step_interv:124,step_sourc:[83,90,93],stepgrid:134,stepgrid_dimsplit:111,steps_max:[122,124,126],stiff:122,still:[1,6,7,12,14,21,23,25,31,32,47,51,57,60,65,69,75,93,104,105,111,112,113,114,115,116,117,125,131],stnd:43,stommel_storm_modul:111,stop:[64,70,107,115,124,126,137],storag:112,store:[0,1,12,31,36,47,48,60,65,86,87,90,95,96,97,105,107,113,121,123,125,131,134,135,137],storm:[15,23,24,41,111,114,115],storm_atcf:131,storm_fil:[125,131],storm_ibtrac:131,storm_modul:111,storm_nam:131,storm_radiu:131,storm_radius_fil:131,storm_specif:125,storm_specification_typ:125,storm_targ:131,str:[0,1,3,29,54,86,122,123,131,137],strang:[83,93,122,124,126,140],strategi:5,stream:70,stress:[77,87],stretch:137,strict:[55,75],stride:[21,137],strike:[29,63],strike_direct:29,string:[0,1,3,6,29,40,43,47,48,54,70,78,80,81,83,86,87,92,98,100,122,125,131,137],strip:[54,137],strip_archive_extens:54,stripe:47,strong:93,strongli:60,structur:[6,9,21,31,50,53,56,66,92,93,113,121,137],stub:115,student:4,studi:[44,58],style:[5,21,27,29,45,47,65,70,75,80,115],sub:[29,105,137],subclass:29,subdirectori:[19,21,22,33,34,49,50,53,56,62,72,82,87,100,105,121,125,127,133,137],subdivid:[29,63],subdividedplanefault:29,subdivis:29,subduct:[44,63],subfault:[29,41,115,139],subject:[47,104,123,125],submodul:[25,27,50,52],subpackag:100,subplot:[0,29,72],subrepo:50,subrepositori:[27,50],subroutin:[4,5,8,14,21,31,57,104,111,117,122,123,134,140,143],subsampl:[48,135,139],subsequ:[3,9,60],subset:[29,115,135,137,139],substanti:[27,75,111],substitut:[55,75],subsurfac:135,succeed:93,succesfulli:78,success:[60,92,137,140],successfulli:[56,92],suffici:[12,14,19,63,64,102,107,125],suffix:[56,137],suggest:[4,16,23,28,43,48,53,72,73,117,125,142],suit:[27,47,105],suitabl:[7,14,19,41,44,47,92,103,117,118,131,137],sum:[40,63,87,95,134],sum_:143,sum_p:143,summar:[3,27,30,51,104,106,140],summari:[23,24,50,115,122,123,124,125],superbe:[81,122,124,126],superbee_limit:81,superclass:93,supercomput:[85,87,88],superpack:99,superposit:63,superpow:81,superpower_limit:81,supplement:127,supplementari:105,suppli:[104,131,140,143],support:[4,7,12,21,37,44,47,49,53,63,75,77,78,83,86,87,89,91,93,111,113,114,115,117,122,131,132,135,138,141],suppos:[14,57,60,70,100,104],suppress:[0,2,3,27,47,54,112,114,122,123],sure:[1,19,27,36,49,50,60,66,77,86,88,90,92,96,98,118,137,138,139],surfac:[15,21,29,31,40,42,44,47,63,69,71,78,85,97,101,111,125,135],surface_or_depth:[47,71],surg:[15,23,24,41,111,114,115,131],surge_data:125,surround:[104,137],surviv:75,swap:137,swaphead:137,sweep:[7,117],symbol:[3,60,100],symmetr:[3,43,140],symmetri:14,syntax:10,sys:[80,124,126],system:[4,14,15,22,34,35,47,51,53,54,57,64,65,75,85,87,88,90,91,94,97,100,105,117,122,124,126,133,140,143],systemat:21,t0000:60,t0001:[60,61],t0002:60,t_end:93,tab:[12,16],tabl:[54,58,69,86],tackl:[23,27],tag:[47,49,50,123,124],take:[5,21,26,27,29,43,49,58,60,63,70,77,83,90,93,97,98,104,105,110,122,123,124,125,137,140,143],take_one_step:93,taken:[5,31,63,87,93,104,122,140],tall:0,tan:70,tank:[14,44],tar:[12,51,54],tarbal:[50,138],tarfil:[17,51,53,114,115],target:[51,53,70,78,90],task:69,tchknnnnn:116,tck00100:112,tck:112,tckaaaaa:112,tckbbbbb:112,tcp:12,tcsh:88,tcvital:[115,131,132],td9635:131,td9636:131,teach:[41,44,103],team:[4,23,55],techniqu:[15,25],technolog:[4,75],tell:[48,61,65,70,77,86,100,105],templat:78,temporari:95,temporarili:60,ten:[4,66],tend:93,tend_max:31,tensil:15,tensor:29,tensorproductfault:29,term:[4,24,41,44,55,63,78,83,84,93,104,114,115,122,124,125,126,129,130],termin:[52,79,120,122,123],terrain:58,terrel:4,test:[21,24,29,33,37,46,47,50,51,52,53,58,69,75,76,78,84,85,91,98,104,108,112,113,114,115,117,126,131,134,135,137],test_acoust:105,test_app:[98,105],test_dtopotool:29,test_etopo1:[115,135],test_shallow_spher:105,test_topotool:[108,137],testpypi:50,teton:47,tex:1,text:[10,49,50,54,65,80,86,93,111],tfinal:[77,80,97,116,122,124,126],tfluct:93,tfluct_solv:93,than:[3,5,12,14,19,21,27,28,29,31,40,47,49,50,51,53,54,56,57,58,62,63,65,69,72,77,78,80,83,86,87,88,90,91,93,98,99,100,104,105,107,110,111,112,113,114,115,116,118,121,122,123,125,131,132,134,135,137,140,143],thank:[4,85],thei:[3,5,12,14,26,27,29,31,40,44,47,50,53,54,57,60,65,69,83,90,93,98,104,105,113,121,125,131,135,137,140],them:[12,17,21,27,29,31,40,47,49,51,60,61,66,75,77,82,86,87,88,90,98,102,104,105,108,128,131,137,140],theori:[55,75,143],therefor:[78,88,115,135],thereof:12,thesi:93,theta:81,theta_limit:81,thi:[0,1,2,3,5,7,9,10,11,12,14,15,16,17,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,48,50,51,52,53,54,55,56,57,58,60,61,63,64,65,69,70,72,74,75,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,107,108,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,131,132,133,134,135,137,138,139,140,141,142,143],thing:[0,12,14,21,27,44,54,72,82,99,105,114,116],think:[53,58,91],third:[14,31,48,81,134,137],thn:122,thoroughli:86,those:[4,5,9,11,21,23,44,47,50,66,77,78,80,87,90,95,105,107,116,127,133,137,140],though:[3,66,131,135],thought:118,thousand:[4,66],thread:[37,64,134],thredd:[135,139],three:[3,12,15,21,29,31,44,47,57,60,63,88,92,98,105,122,125,135,137,140],threshold:58,through:[4,12,27,33,34,40,44,47,60,66,69,78,90,95,97,98,100,103,104],throughout:113,thu:[5,43,87,90,115,131],tick:47,ticklabel:110,ticklabel_format:45,tidal:[87,118],tide:[40,41,43,115,118,137],tidesandcurr:43,tier:12,tild:143,time:[0,1,5,6,9,14,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,48,54,60,61,63,64,65,66,70,75,77,80,81,85,86,87,93,95,97,104,105,107,110,112,113,115,116,117,120,121,124,126,131,135,138,139,143],time_files_scanf:141,time_integr:93,time_offset:131,time_zon:43,timer:114,timespan:54,timestep:[80,87,112,114,122,124,126,131],timezon:54,tip:[23,41,51,53,69,84,85,90,99],tipe:97,titl:[0,1,4,15,40,47,54,69,85,113,137],title_with_t:[0,70],toctre:[6,24,41,85],todo:[14,31,104,117,131,137,143],togeth:[14,27,29,49,63,104],toggl:124,tokyo:131,toler:[31,91,98,104,105,113,123,124,125],too:[5,43,47,50,112,124,126],tool:[6,7,15,21,22,27,29,33,34,41,42,43,44,47,48,53,54,60,63,68,69,70,71,73,85,100,103,108,109,113,114,125,127,135,137,139,141],toolkit:[88,141],top:[0,1,3,10,22,29,47,49,50,51,53,63,70,90,91,100,105,116,120],topgraphi:137,topic:60,topo1:135,topo1writ:137,topo2kml:54,topo2kmz:54,topo2writ:137,topo3writ:137,topo:[24,41,44,47,48,54,71,100,107,109,115,118,125,135,137],topo_data:125,topo_fil:137,topo_file_nam:54,topo_fnam:137,topo_func:137,topo_typ:[48,54,111,112,115,135,137],topo_upd:107,topo_xlim:47,topo_ylim:47,topofil:[48,54,115,125,135,137],topograph:47,topographi:[14,15,24,31,40,41,44,48,54,58,63,71,102,103,107,108,109,111,112,115,118,129,130,136],topograpi:135,topoplotdata:111,topotool:[41,43,48,54,108,109,110,111,112,115,135,136],topotools_exampl:[41,103,137],topotyp:[125,135],topotype1:137,torrilhon:81,tort:[55,75],total:[5,29,47,63,87,93,122,123,124,126,134],total_energi:87,total_step:[122,124,126],tout:126,toward:[4,29],tprint:[123,124],trace:87,traceback:70,track:[23,24,27,47,49,53,64,77,98,105,107,125,131],track_color:131,tracker:27,tradeoff:104,tradit:[80,86],traffic:[117,140],trail:[52,53,54],tran:15,tranpsort:122,trans_cor:83,trans_inc:83,transect:[31,125],transform:37,translat:[63,118],transmiss:93,transmit:122,transon:113,transpar:[47,54],transport:[122,124,126],transvers:[7,83,113,117,122,140,143],transverse_wav:[83,122,124,126],trap:37,travel:123,travi:21,tree:[28,53,90,120],tri:131,triangl:63,triangular:[29,41,115],trickeri:50,trigger:[86,125],troubl:[33,34,69,85],troubleshoot:[24,51,85],truli:92,truncat:[14,86],tscale:54,tstart:93,tstart_max:31,tsunami:[14,15,24,31,41,42,58,63,87,107,110,118,125,132,135],tt3:[63,137],tulan:23,tune:25,tupl:[3,29,43,54,63,70,83,87,137],turbul:[44,93],turn:[40,42,44,54,67,70,87,105,112],tutori:[12,50,72,76,80,85,94,100,103],tvd:[77,83,93,143],twice:[47,122],twine:50,twitter:23,two:[0,3,4,6,7,13,15,21,27,29,31,40,43,47,49,54,60,65,70,77,83,86,87,90,93,96,98,102,103,104,105,107,111,112,115,116,117,119,120,124,125,135,137,140,143],two_d_classic_sourc:78,txt:[27,40,46,50,75,87,113,114,115,116,131],txxxx:86,type:[3,4,6,12,19,27,29,33,34,36,40,47,56,60,70,71,72,77,78,79,81,83,88,89,93,94,97,98,99,123,124,125,131,132,135,137,143],typic:[3,19,56,57,60,63,65,66,72,78,88,90,93,95,104,123,124,134,135,138,139,140,143],u_l:91,u_r:91,u_t:[91,97],u_x:97,ubar:91,ubuntu:[12,52,99],ucar:[61,86],ucsb:[29,63,139],ucsbfault:[29,63],ulimit:64,ultrabe:81,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,58],unchang:60,uncommit:[27,46,50],undefin:96,under:[4,6,21,35,47,51,55,57,69,75,83,105,113,115],underflow:107,underli:[3,47,113],underlin:27,understand:[8,24,33,34,44,69,85,97,117],understood:44,underwat:[41,47],undesir:116,undivid:104,unexpect:[43,47,54,56,101,106,107,108,109,110,111,112,131],unidata:[61,86],uniform:[29,63,66,78,115,135],uniformli:135,unind:[54,101,106,107,108,109,110,111,112,131],uninstal:[50,53,100],union:135,uniqu:[1,65,112,131],unit:[29,42,43,63,83,113,131],univers:[4,15,23,49,55,75,92],unives:23,unix:[36,62,99],unknown:[29,95],unkown:95,unless:[5,36,37,54,91,118,122,137],unlik:[27,50,65],unlimit:[64,86],unmap:83,unnam:131,unnecessarili:108,unneed:112,unpack:50,unpredict:60,unrecogn:98,unsplit:[83,122,124,126],unstabl:112,unstructur:137,unsuccess:92,unsur:122,untar:52,unterweg:75,until:12,unus:[2,86],unzip:47,upbnd:[123,124],updat:[5,12,21,22,24,31,45,51,52,53,72,93,95,96,102,107,111,113,114,115,117,123,124,126,128,131,134,140],update_saved_valu:93,updip:[29,63],upgrad:73,upload:50,upon:95,upper:[21,31,81,83,90,122,124,126,135,137],upper_bound_limit:81,upper_glob:83,uprint:[123,124],upstream:50,upstrik:[29,63],upward:44,upwind:122,url:[4,15,47,50,115,135,137],usa:131,usa_ag:131,usag:[0,1,2,3,12,47,53,86,115,131,137],use:[3,4,11,12,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,48,50,51,52,53,55,56,57,58,60,61,63,64,65,68,69,70,72,73,75,77,78,79,80,81,82,83,85,86,87,88,90,91,93,94,95,96,97,98,99,100,102,105,108,110,111,112,113,114,115,117,118,120,122,123,124,125,126,131,135,137,138,139,140,141,142,143],use_for_kml:47,use_fwav:[117,122,124,126],use_petsc:[82,88],used:[0,1,2,3,4,5,6,7,10,12,14,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,50,53,54,55,56,57,58,60,61,63,64,65,66,69,70,72,75,77,78,80,81,82,83,85,86,88,90,91,92,93,95,97,98,100,101,104,105,108,112,113,114,115,116,117,118,121,122,123,124,125,126,129,131,134,135,137,140,141,143],useful:[0,3,9,18,26,27,28,31,33,34,37,40,42,45,46,47,48,51,52,53,54,64,65,71,75,78,85,87,99,100,104,105,115,117,122,123,125,135,137,138,143],useoffset:45,user:[0,2,3,4,5,11,12,18,19,21,22,24,25,26,27,31,37,44,47,51,52,53,54,58,60,63,70,78,79,82,86,88,96,98,99,100,104,111,113,115,117,122,124,125,126,128,137,143],user_bc_low:90,usernam:27,uservari:60,uservariablefil:60,uses:[29,31,33,34,41,47,48,49,60,66,78,80,83,88,98,105,113,117,125,134,137,143],usg:[4,29,139],using:[0,1,3,4,5,6,8,10,11,12,14,15,16,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,50,51,52,53,54,56,57,58,61,62,63,64,65,66,69,70,71,72,73,77,78,79,80,81,83,85,86,88,89,90,91,93,95,96,97,99,100,104,105,111,114,115,117,120,122,124,125,130,131,134,135,137,138,139,141,143],usr:61,usual:[0,2,3,5,29,40,42,47,54,56,61,63,65,82,83,88,90,91,93,98,102,104,113,117,122,123,124,125,126,138,140],utah:23,utc:[47,54],util:[22,24,27,41,47,65,69,72,85,100,105,121,136,137,138],uwamath:12,valid:[3,44,63,80,87,92,95,113,125,131,132,137],valout:[61,65,115,134],valout_geo:61,valout_nc:61,valout_nc_geo:61,valu:[3,5,6,14,19,21,26,29,32,33,34,37,40,41,43,45,46,47,48,54,56,58,60,63,64,65,70,78,83,85,86,87,90,91,92,93,95,97,98,104,105,107,108,110,111,113,115,116,117,118,122,123,124,125,126,131,132,135,137,138,140,143],valueerror:[29,131,137],valuemax:31,van:[81,93,122,124,126],van_leer_klein_sharpening_limit:81,vanleer:[77,93,122,124,126],vari:[3,13,15,29,41,48,58,90,92,111,117,118,119,143],variabl:[0,3,12,21,24,26,27,29,31,33,34,36,40,41,46,47,49,51,53,60,62,64,66,70,77,78,86,88,92,93,95,96,98,100,111,112,113,115,116,117,122,123,124,126,131,135,137,138,140],variable_dt_refinement_ratio:[123,125],variant:[19,51,98,105],varieti:[40,80,99],variou:[19,21,28,29,44,60,63,70,72,83,97,99,100,104,113,117,121,125,131],vastli:118,vector:[21,77,81,87,95,115,117],veloc:[14,31,43,60,72,90,91,97,113,118,122,123,124,125,126,140],verbatim:49,verbos:[27,29,43,54,80,83,87,93,105,122,124,126,131,137],verbosity_regrid:[123,124],veri:[3,14,21,31,44,47,50,53,54,63,70,75,78,86,87,88,89,90,93,105,108,112,122,132,135],verifi:[43,98,105,139],verifyerror:98,version:[0,1,4,5,6,7,8,10,12,13,14,16,19,21,22,27,29,31,32,37,40,41,42,44,47,48,50,51,52,54,57,58,60,61,63,64,69,70,72,73,78,81,86,88,91,93,94,96,99,104,105,107,108,111,112,113,114,115,117,119,120,122,123,124,125,126,129,130,131,135,137,140,143],versu:137,vertic:[29,44,47,54,118,125,137,139],via:[12,21,22,27,28,29,33,34,37,38,40,42,44,47,49,50,51,52,53,56,60,63,64,66,70,73,77,83,86,89,92,94,96,100,104,105,115,117,120,127,129,130,135,137,140],view:[3,4,21,33,34,40,41,47,48,49,54,65,69,71,72,77,88,94,111,115,127,128],viewabl:[47,80],viewable_attribut:80,vim:27,violat:[93,137],virtual:[4,12,24,26,95,99],vis:80,visclaw:[1,6,12,21,22,23,27,40,42,45,47,50,52,53,56,60,66,70,71,72,73,85,89,94,100,120,121,127],visibl:[12,47,103,127],visit:[16,21,24,69],visual:[22,23,27,33,34,40,41,53,60,65,66,69,85,89,90,100,111,141],vogl:4,volcano:4,volum:[4,15,31,38,48,54,60,85,123,134,135,140],vrt:47,w_1:91,w_2:91,w_3:91,wai:[5,12,14,16,25,27,33,34,40,47,48,53,54,55,56,70,72,73,75,77,80,82,83,88,90,92,94,97,99,100,102,103,107,113,114,115,117,121,122,128,132,135,140,142,143],wait:12,wall:[14,37,90,97,112,115,122,124,126,134],wang:29,want:[0,3,9,12,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,49,50,51,52,53,54,56,57,58,64,70,72,77,78,79,80,86,87,88,100,103,105,112,115,117,121,124,125,128,131,135,137,138],wari:91,warm:81,warn:[27,86,87,93,122,138],warp:47,warranti:[55,75],washington:[4,23,49,55,137],water:[14,15,40,41,42,43,44,54,66,69,78,85,108,109,113,115,117,118,125,135,137,139,140],water_level:43,wave:[4,5,14,15,24,31,44,47,63,81,83,85,90,91,93,104,111,113,114,118,122,123,124,125,126,140],wave_toler:125,wavelength:44,web:[22,24,27,33,34,47,49,50,115,127,137],webpag:[21,33,34,38,42,47,50,56,118],webserv:12,websit:[14,47,49,127,137],weight:47,welcom:[23,75],well:[4,5,27,41,47,53,54,63,64,65,66,69,72,73,92,93,102,114,115,122,123,129,130,131,140,143],wellington:131,wendroff:[83,93,122,124,126,143],weno:[66,85,93],weno_ord:93,went:53,were:[4,5,19,40,57,60,61,78,104,107,113,135],west:135,western:137,wet:[31,41],what:[5,8,12,21,24,27,29,30,44,46,47,49,50,51,53,54,56,57,60,61,65,69,77,80,84,92,95,97,99,100,103,104,105,112,118,121,122,124,125,126,127,131,135,137,139,140],whatev:[61,77,92,117],when:[13,14,19,27,29,31,36,37,40,45,46,47,48,49,50,51,53,58,60,63,64,65,66,69,70,72,77,84,86,88,89,93,96,100,105,107,108,110,112,113,114,117,118,119,121,122,123,124,125,126,127,131,135,137,138,139,140,141,143],whenc:87,whenev:[27,112,140],where:[1,3,5,12,14,21,26,29,31,33,34,36,40,41,44,47,48,49,51,53,54,56,58,60,61,65,66,72,80,83,84,85,86,88,91,100,104,107,108,111,112,113,116,118,121,122,124,125,126,131,134,135,137,140,143],wherea:[40,47,69,88],wherev:138,whether:[3,5,12,14,21,43,48,55,56,60,75,83,86,87,91,92,93,104,105,113,117,122,123,125,137],which:[0,1,3,4,5,6,10,12,14,19,21,24,27,29,31,33,34,35,40,42,44,47,48,49,50,51,53,54,56,58,60,63,64,65,70,72,73,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,96,97,98,99,102,104,105,107,108,111,113,115,116,117,118,122,123,124,125,131,132,135,137,139,140,142,143],whichclaw:138,white:54,whith:78,who:[9,18,21,23,31,37,44,53],whole:[27,47,87,88],whose:[3,70,78,90,91,122,123,137],wide:[53,99,100],wider:70,width:[29,47,54,63,65,83,90,95,104,124,126],wiki:94,wikipedia:48,wind:[115,125,131,132,137],wind_forc:125,wind_index:125,wind_refin:125,wind_spe:131,window:[12,29,60,72,99,120],wisdom:54,wise:[27,93],wish:[4,12,13,21,28,33,34,44,47,51,53,60,68,69,85,90,93,94,96,100,102,113,119,127,129,130,138],within:[5,14,27,51,53,66,70,89,98,100,104,117,121,127,137],without:[14,21,36,40,44,49,52,54,55,56,57,60,70,72,73,75,81,86,87,98,100,101,105,106,107,108,109,110,111,112,124,126,131,138,140],wkt:47,wmo:131,wmo_:131,wmo_ag:131,won:[12,78,137],woodward:114,word:[87,115,131],work:[3,7,12,14,16,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,49,50,51,52,53,54,60,62,63,64,70,73,74,75,76,77,79,80,81,85,86,87,88,91,93,94,99,100,102,103,104,105,109,110,111,112,113,114,115,117,121,122,123,125,127,132,135,138,142],workflow:[102,127,131],workspac:[60,95],world:[44,58,85,88,131],worst:118,worth:95,worthwhil:90,would:[2,3,12,14,26,27,31,37,47,48,50,51,53,56,57,63,65,70,75,77,80,83,87,98,105,113,118,121,122,125,131,135,140],wouldn:57,wpalg:15,wrap:[54,75,78,83,93,98,131],wrapper:137,write:[27,29,40,46,48,58,63,65,66,69,77,80,83,84,86,87,88,92,113,115,124,126,131,135,137],write_:86,write_arrai:86,write_atcf:131,write_aux:[86,92],write_aux_alwai:[77,80,87],write_aux_init:[77,80],write_aux_int:87,write_geoclaw:131,write_hurdat:131,write_imd:131,write_input_data:31,write_jma:131,write_p:[86,92],write_tcvit:131,written:[5,10,24,29,36,40,53,54,55,63,65,66,70,75,84,86,90,99,113,117,122,123,124,125,126,131,137,140],wrong:[53,57,60,87,100,104],www:[4,12,15,29,39,41,49,55,61,75,78,83,86,88,114,131,137],x_cell:54,x_edg:54,x_i:[117,140,143],x_inch:54,x_mask:137,xarr:83,xarrai:137,xarray_d:137,xclaw:[33,34,80],xclawcmd:80,xclawerr:80,xclawout:80,xcode:73,xdir:80,xiaom:29,xinsheng:4,xinshengqin:4,xleft:[123,124],xlf:94,xlimit:[0,40,47],xllcenter:[48,115,135],xllcorner:[48,135],xllower:115,xlow:65,xlower:[0,3,14,21,26,78,115,124,126,135,137,140],xlowerg:78,xmax:0,xmin:0,xpoint:125,xrang:90,xtick:45,xupper:[0,21,124,126,137],xxdiff:105,xxx:135,xxxx:60,xylim:29,xzf:52,y_cell:54,y_edg:54,y_inch:54,year:[4,15,21,47,54,85,106,131],yellow:[54,70,131],yellow_red_blu:70,yes:60,yet:[1,12,19,24,44,49,52,54,69,93,113,114,115,117,122,124,142],yianni:[4,15,75],yield:3,yleft:[123,124],ylimit:[0,40,47,121],yllcenter:[48,115,135],yllcorner:[48,135],yllower:115,ylow:65,ylower:[3,21,26,78,115,124,135,137],ylowerg:78,ymax:0,ymin:0,yml:105,yong:15,you:[0,3,4,12,13,14,16,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,53,54,56,57,60,61,62,63,64,65,66,68,69,70,72,73,75,77,78,79,80,82,85,86,87,88,89,90,91,93,94,95,96,97,99,100,102,103,105,107,112,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130,131,133,135,138,139,140,142],your:[5,13,14,18,19,23,24,25,31,33,35,37,40,48,49,50,51,52,53,61,64,69,70,72,75,76,77,78,79,82,84,85,87,96,97,99,100,101,102,104,105,107,115,117,119,120,129,130,135,138,140],yourself:[37,40,52],ypoint:125,yupper:[21,124,137],z_format:137,zenodo:[4,16,74],zero:[3,14,29,37,54,60,77,90,91,95,97,118],zip:[11,47,50],zipinfo:47,zlib:86,zlim:54,zlower:21,zone:[44,47,54,123,124],zoom:47,zsh:88,zupper:21,zvar:137},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Recent changes \u2014 release notes","Changes to master since v5.5.0","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","Previous versions of Clawpack","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","Release 5.0.0","Release 5.1.0","Release 5.2.0","Release 5.2.1","Release 5.2.2","Release 5.3.0","Release 5.3.1","Release 5.4.0","Release 5.4.1","Release 5.5.0","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[77,80,131],"default":[13,101,119,129,130],"final":50,"function":[43,54,59,72,87,93,143],"import":100,"new":[42,62,82,105],"switch":60,"true":70,AWS:52,Adding:[27,47,82,90,117],For:5,Going:84,One:[117,143],The:[47,59,60,97],Use:96,Using:[12,24,52,53,57,61,64,87,90,93,117,121,140],about:[4,75],access:72,acoust:[91,97],adapt:[5,14,24],add:70,addit:[47,52,123,125],advect:91,after:116,afterfram:60,algorithm:[5,15,66,143],alias:47,all:[3,53],amazon:12,ami:12,amr:[3,5,21,64,104,123,125],amrclaw:[6,7,8,9,17,24,106,107,108,109,110,111,112,113,114,115,123,124,140],anoth:70,app:50,applic:[10,11,15,24,25,56,62,88],approach:7,arrai:[65,96],arriv:125,artifact:47,ascii:[65,86],attribut:[0,1,2,3,26,47,70],author:4,auto:[29,43,54,137],aux:[65,77],auxiliari:90,avail:38,axes:45,b4step:[13,140],background:70,backward:[17,115],base:56,basic:[47,76,89],bathymetri:139,befor:140,between:70,bibliographi:[15,24],binari:65,book:38,boundari:[5,14,90,140,143],branch:27,bug:27,built:[49,82],buoi:139,burger:91,candid:50,capac:143,cautionari:44,cell:5,cfl:81,chang:[16,17,21,70,93,106,107,108,109,110,111,112,113,114,115],chardiff:105,check:[27,105],checkpoint:116,chile:47,choic:31,choos:5,cite:[4,85],clamshel:14,classic:[17,24,33,34,93,106,107,108,109,110,111,112,113,114,115,122,126,133],claw:[67,120],clawcode2html:10,clawpack:[11,12,15,16,17,18,19,20,21,22,23,24,28,49,50,51,52,56,66,67,74,78,81,93,94,114,115,126,142],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,70],clawutil:[17,107,108,109,110,111,112,113,114,115],clinic:23,clone:[27,52],cloud:79,code:[10,24,27,42,53,67,105,138,140],color:70,colorbar:47,colormap:70,command:[35,60,72,82,138],commit:27,commun:[23,27,67],comparison:105,compat:[17,115],compil:[37,52,56,61,96,128,138],compon:[22,70],comput:[66,116],conda:52,condit:[5,14,90,97,140,143],contain:28,content:[24,27,70,77,87,93,99,105],continu:105,contourf:70,contribut:[25,27],contributor:75,control:[77,80,97],convers:19,convert:[10,18,19],coordin:[45,47],copi:62,correctli:88,coverag:27,creat:[12,28,31,47,50,60,62,77],creation:77,criteria:104,current_data:[26,72],curv:70,custom:[93,117],dart:139,data:[47,65,121,125,132,135,137,138,139,140],debug:[70,123],defin:14,depend:[81,94],deprec:7,depth:45,deriv:[77,87],describ:15,desir:121,detail:5,dev:67,develop:[23,24,27,67],diff:105,differ:[47,53,57,66,70],dimens:[83,143],dimension:117,directli:12,directori:[53,56,62,70],displac:135,docker:[28,52],dockerfil:50,docstr:[29,43,54,137],doctest:105,document:[8,10,29,43,49,50,54,85,114,115,128,137],doe:52,doing:50,domain:[83,97],done:140,download:135,doxygen:8,dtopo:136,dtopotool:29,duplic:56,each:[27,140],earth:47,earthquak:[63,139],easi:100,ec2:12,elev:45,environ:[37,120],equat:[91,97],error:[27,96],euler:91,event:[23,47],exampl:[11,24,25,33,34,35,38,40,42,47,53,60,62,68,82,85,88],exe:138,exist:62,experi:53,extra:49,extrapol:104,f2py:138,faq:70,faster:47,fault:63,featur:85,fflag:37,fgmax:31,figur:[47,70],file:[12,30,31,47,48,49,50,52,57,60,70,72,105,116,125,135,140],fileio:86,find:[12,70],finer:5,fix:[27,31,32,64,125],flag2refin:104,flag:[5,56,104,123],flow:[24,77],flowchart:9,fly:69,fork:27,format:[31,65,135],formul:143,fort:[65,70],fortran:[21,24,30,34,36,37,52,73,96,105,138,140],found:60,frame:87,friction:58,from:[12,18,19,21,24,27,29,35,38,43,54,72,78,82,89,137],full:24,fund:[4,75],further:84,fvmhp:38,galleri:[49,60],gaug:[40,47,87,139],gdal:47,gener:[17,21,29,43,49,54,115,125,137],geo:125,geoclaw:[13,14,17,21,24,41,42,43,44,45,47,64,67,71,101,104,106,107,108,109,110,111,112,113,114,115,119,125,129,130],geometri:83,geophys:24,get:[24,42,60],gfortran:[37,94],ghost:5,git:[27,46,52,73],github:[27,50],global:113,godunov:143,googl:47,grid:[5,14,31,32,48,64,83,125],guid:[27,49,50,102,103],guidelin:27,hack:67,hazard:44,hdf5:86,help:60,high:143,hint:[44,70,99],how:[70,72,87],hpc3:67,html:[10,72],imag:[28,47],imagediff:105,includ:11,independ:81,indic:85,initi:[5,90,97,140],input:[21,31,86,122,123],instal:[27,34,35,51,52,53,61,66,73,85,88,94,96,99,100,133,138],instanc:[12,52],instruct:[27,53],integr:105,intel:37,interact:[72,82],interfac:66,interpol:31,interpret:35,iplotclaw:72,ipython:[35,82,127],issu:27,item:70,jupyt:[28,35],kaust:67,keep:46,kinemat:63,kml:47,kmltool:54,kmz:47,latest:27,latex:72,latitud:[45,47],launch:[12,52],level:27,lflag:37,librari:[47,57],licens:[4,55,75],limit:81,line:[35,72,82,105,138],link:20,load:47,local:128,locat:40,log:[12,87],longitud:[45,47],machin:142,make:[70,88,127,138],makefil:[36,56,57,90,116],man:58,map:47,mapc2p:59,master:[17,27],math:79,matlab:60,matplotlib:94,maxfram:60,maximum:125,mesh:[5,24],method:[0,1,2,3,143],migrat:24,model:[44,63,102,103,139],modifi:[27,57,116],modul:[29,43,54,85,98,99,124,126,137],monitor:[31,125],more:[5,34,36],most:27,move:29,multipl:47,name:[56,57],need:47,netcdf:[48,61,65,86,135],never:27,next:[51,52,53,94],nose:94,note:16,notebook:[28,35,99,127],numpi:94,object:[83,121],obtain:94,okada:63,old:[7,49],older:24,onli:53,openmp:64,oper:73,option:[47,51,52,72,88,90],order:96,other:[15,17,22,23,51,70,114,115],out:27,outdir:70,output:[31,32,56,60,61,64,65,77,86,87,105,116,122,123,125,138],overlai:47,overview:[24,121],own:[12,28,90],packag:[21,53,86,91],page:49,paper:15,parallel:[52,66,83,88,89,95],paramet:[21,40,70,72,97,122,123,125],pass:88,patch:83,path:[60,100],pcolor:70,petclaw:[83,95],petsc:[52,88],photo:67,pip:[51,53,73,138],pixel:105,plot:[3,12,21,24,31,40,42,45,47,56,60,61,68,69,70,71,72,82,88,89,105,121,127,138,141],plot_typ:3,plotax:47,plotclaw:60,plotdata:47,plotfigur:47,plotitem:47,pointwis:117,port:78,post:69,ppflag:37,pre:37,prepar:50,prerequisit:73,previou:[23,74],print:123,printfram:72,problem:[7,78,90,97,140],procedur:31,process:[31,52,69],processor:37,produc:72,propag:143,provid:70,pth:100,publish:47,pull:27,pyclaw:[17,21,24,33,35,52,53,75,76,77,78,79,80,81,82,83,85,86,87,89,92,93,94,95,97,98,105,106,107,108,109,110,111,112,113,114,115,133],pyflak:27,pylint:27,pypi:50,python:[19,72,73,94,99,100,136],pythonpath:[100,120],q0002:65,qinit:[101,125,135],quantiti:[77,87],quick:[53,102,103],raw:65,readm:10,recent:[16,23,27],rectangular:63,refer:[15,85,99],refin:[5,14,24,104,125],region:[104,125],registr:48,regress:105,releas:[16,50,106,107,108,109,110,111,112,113,114,115],remot:27,remov:47,replac:57,report:27,repositori:[11,17,22,27,46,50,114,115,117],request:27,requir:[47,52,99,140],resolut:[47,143],resourc:24,restart:[28,77,116],result:[12,42,47,61,89,127],richardson:104,riemann:[17,24,85,90,91,106,107,108,109,110,111,112,113,114,115,117,140],routin:[13,21,57,71,101,119,129,130],rst:10,run:[28,33,34,35,42,77,79,82,88,89,105,122,123,138],ruptur:63,sage:79,same:57,sampl:[124,126],save:[87,127],script:90,sealevel:118,search:60,serial:[83,95,105],servic:12,session:23,set:[42,60,70,72,90,118,120,138],setaux:[119,140],setplot:[60,70,72,121],setrun:[21,40,122,123,124,125,126],shallow:91,share:127,sharpclaw:93,shoot:[27,60],should:66,signatur:93,simul:77,simultan:105,sinc:17,size:70,slip:63,softwar:[4,15],solut:[70,77,92],solv:97,solver:[66,77,85,90,91,93,97,117,140],some:[70,139],someth:70,sourc:[56,63,90,132,139,140,143],space:143,spatial:140,special:[3,123],specif:[31,97,105,125,131,140],specifi:[70,72,104,121,122,123,125,140],sphere:14,sphinx:[49,128],sprint:[23,67],src1d:[129,140],src:[130,140],start:[24,42,102,103],state:95,statist:134,step:[51,52,53,94,140],stop:12,storm:[102,125,131,132],subfault:63,surfac:45,surg:[102,132],sys:100,system:73,t0002:65,tabl:[24,85],tar:[50,52],term:[58,90,140,143],test:[27,34,35,88,94,105,133],than:70,thi:[4,49],tide:139,tile:47,time:[122,123,125,134,140],tip:[27,36,45,47,88],titl:70,tool:[19,24,31,40,45,105,131,136],top:27,topo:136,topographi:[29,42,47,125,135,137,139],topotool:137,track:46,transfer:12,travi:105,triangular:63,troubl:[27,60,138],troubleshoot:[53,96,138],tsunami:[44,47,103,139],tutori:[23,97,99],tvd:81,understand:77,univers:67,upcom:23,updat:[27,49,50],use:66,used:138,user:[14,23,66,140],using:[44,60,140],utah:67,util:[43,54,98],valu:[31,77],vari:140,variabl:[37,56,90,120],version:[24,36,46,49,53,74,100],view:12,virtual:142,visclaw:[17,24,69,106,107,108,109,110,111,112,113,114,115],visit:141,visual:[24,47],washington:67,water:[45,91],wave:[117,143],web:12,webpag:[12,49,127],what:[70,72,87],when:87,where:87,which:[66,100],whichclaw:100,work:[4,82,136,137,140],workflow:27,workshop:[23,67],write:[90,105],written:87,your:[12,27,28,34,47,88,90,94,127,133],zenodo:50}}) \ No newline at end of file diff --git a/v5.5.x/setaux_defaults.html b/v5.5.x/setaux_defaults.html index bb26868a9..24a98a7db 100644 --- a/v5.5.x/setaux_defaults.html +++ b/v5.5.x/setaux_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 19)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 19)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/2d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 25)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 25)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/3d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 31)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 31)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 49)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/setaux_defaults.rst, line 49)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

        diff --git a/v5.5.x/src1d_defaults.html b/v5.5.x/src1d_defaults.html index 76ba9d35f..3b934dc61 100644 --- a/v5.5.x/src1d_defaults.html +++ b/v5.5.x/src1d_defaults.html @@ -84,12 +84,12 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/amrclaw/src/2d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 22)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 22)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

        $CLAW/amrclaw/src/3d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 29)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 29)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

        @@ -100,7 +100,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src1d_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

        diff --git a/v5.5.x/src_defaults.html b/v5.5.x/src_defaults.html index 39169da26..2d3f2a123 100644 --- a/v5.5.x/src_defaults.html +++ b/v5.5.x/src_defaults.html @@ -85,17 +85,17 @@

        Navigation

        see Using src1d for source terms with AMRClaw.

        $CLAW/classic/src/1d/src1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/src3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 36)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

        @@ -106,7 +106,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 53)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/fb4627276cba3e955dae8c68ce115eeba7df6b18/src_defaults.rst, line 53)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

        diff --git a/v5.5.x/storm_module.html b/v5.5.x/storm_module.html index 05e2e7e79..ab8f3f4d4 100644 --- a/v5.5.x/storm_module.html +++ b/v5.5.x/storm_module.html @@ -586,7 +586,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        Field list ends without a blank line; unexpected unindent.

          @@ -617,7 +617,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          Field list ends without a blank line; unexpected unindent.

            diff --git a/v5.6.x/.buildinfo b/v5.6.x/.buildinfo index 297fed39d..d433d9ed7 100644 --- a/v5.6.x/.buildinfo +++ b/v5.6.x/.buildinfo @@ -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: 8b84b35c86d24a27722241486efda5b2 +config: 5cf6a0bdebb31ea541a4f94e449dabe3 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.6.x/.doctrees/ClawPlotAxes.doctree b/v5.6.x/.doctrees/ClawPlotAxes.doctree index 85e9f1e76..4b1080eac 100644 Binary files a/v5.6.x/.doctrees/ClawPlotAxes.doctree and b/v5.6.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.6.x/.doctrees/ClawPlotData.doctree b/v5.6.x/.doctrees/ClawPlotData.doctree index efa0f2b8d..ed25b326a 100644 Binary files a/v5.6.x/.doctrees/ClawPlotData.doctree and b/v5.6.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.6.x/.doctrees/ClawPlotFigure.doctree b/v5.6.x/.doctrees/ClawPlotFigure.doctree index 44f5c0e14..c65aef664 100644 Binary files a/v5.6.x/.doctrees/ClawPlotFigure.doctree and b/v5.6.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.6.x/.doctrees/ClawPlotItem.doctree b/v5.6.x/.doctrees/ClawPlotItem.doctree index 64fbdf78d..030323af8 100644 Binary files a/v5.6.x/.doctrees/ClawPlotItem.doctree and b/v5.6.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.6.x/.doctrees/about.doctree b/v5.6.x/.doctrees/about.doctree index c9a640855..6541a6925 100644 Binary files a/v5.6.x/.doctrees/about.doctree and b/v5.6.x/.doctrees/about.doctree differ diff --git a/v5.6.x/.doctrees/adjoint.doctree b/v5.6.x/.doctrees/adjoint.doctree index 8962d3631..0b309d71c 100644 Binary files a/v5.6.x/.doctrees/adjoint.doctree and b/v5.6.x/.doctrees/adjoint.doctree differ diff --git a/v5.6.x/.doctrees/amr_algorithm.doctree b/v5.6.x/.doctrees/amr_algorithm.doctree index 33920938c..1221af221 100644 Binary files a/v5.6.x/.doctrees/amr_algorithm.doctree and b/v5.6.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.6.x/.doctrees/amrclaw.doctree b/v5.6.x/.doctrees/amrclaw.doctree index adcc7fc6f..f2f1820dc 100644 Binary files a/v5.6.x/.doctrees/amrclaw.doctree and b/v5.6.x/.doctrees/amrclaw.doctree differ diff --git a/v5.6.x/.doctrees/amrclaw1d.doctree b/v5.6.x/.doctrees/amrclaw1d.doctree index 4b19be123..7ae15b108 100644 Binary files a/v5.6.x/.doctrees/amrclaw1d.doctree and b/v5.6.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.6.x/.doctrees/amrclaw_doxygen.doctree b/v5.6.x/.doctrees/amrclaw_doxygen.doctree index b318c37a0..b2672cfd1 100644 Binary files a/v5.6.x/.doctrees/amrclaw_doxygen.doctree and b/v5.6.x/.doctrees/amrclaw_doxygen.doctree differ diff --git a/v5.6.x/.doctrees/amrclaw_flowcharts.doctree b/v5.6.x/.doctrees/amrclaw_flowcharts.doctree index bbba6b50d..e266db918 100644 Binary files a/v5.6.x/.doctrees/amrclaw_flowcharts.doctree and b/v5.6.x/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/v5.6.x/.doctrees/application_documentation.doctree b/v5.6.x/.doctrees/application_documentation.doctree index 2d22e6ca6..524a4a732 100644 Binary files a/v5.6.x/.doctrees/application_documentation.doctree and b/v5.6.x/.doctrees/application_documentation.doctree differ diff --git a/v5.6.x/.doctrees/apps.doctree b/v5.6.x/.doctrees/apps.doctree index c7c5fe6ff..09a88760b 100644 Binary files a/v5.6.x/.doctrees/apps.doctree and b/v5.6.x/.doctrees/apps.doctree differ diff --git a/v5.6.x/.doctrees/aws.doctree b/v5.6.x/.doctrees/aws.doctree index 5ac60a757..15c3cc4c3 100644 Binary files a/v5.6.x/.doctrees/aws.doctree and b/v5.6.x/.doctrees/aws.doctree differ diff --git a/v5.6.x/.doctrees/b4step_defaults.doctree b/v5.6.x/.doctrees/b4step_defaults.doctree index 87203cb13..f4f25d9ab 100644 Binary files a/v5.6.x/.doctrees/b4step_defaults.doctree and b/v5.6.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.6.x/.doctrees/bc.doctree b/v5.6.x/.doctrees/bc.doctree index 2f0a3f87e..e6fd03906 100644 Binary files a/v5.6.x/.doctrees/bc.doctree and b/v5.6.x/.doctrees/bc.doctree differ diff --git a/v5.6.x/.doctrees/biblio.doctree b/v5.6.x/.doctrees/biblio.doctree index d58a56b46..92eefe693 100644 Binary files a/v5.6.x/.doctrees/biblio.doctree and b/v5.6.x/.doctrees/biblio.doctree differ diff --git a/v5.6.x/.doctrees/changes_to_master.doctree b/v5.6.x/.doctrees/changes_to_master.doctree index f2f29199e..44a1d5e90 100644 Binary files a/v5.6.x/.doctrees/changes_to_master.doctree and b/v5.6.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.6.x/.doctrees/claw43to46.doctree b/v5.6.x/.doctrees/claw43to46.doctree index f854c7d88..5942cee0b 100644 Binary files a/v5.6.x/.doctrees/claw43to46.doctree and b/v5.6.x/.doctrees/claw43to46.doctree differ diff --git a/v5.6.x/.doctrees/claw46to50.doctree b/v5.6.x/.doctrees/claw46to50.doctree index bdf2f37db..17a93583e 100644 Binary files a/v5.6.x/.doctrees/claw46to50.doctree and b/v5.6.x/.doctrees/claw46to50.doctree differ diff --git a/v5.6.x/.doctrees/claw4x.doctree b/v5.6.x/.doctrees/claw4x.doctree index 1eceb6523..b304c39ff 100644 Binary files a/v5.6.x/.doctrees/claw4x.doctree and b/v5.6.x/.doctrees/claw4x.doctree differ diff --git a/v5.6.x/.doctrees/clawpack5.doctree b/v5.6.x/.doctrees/clawpack5.doctree index dce3ed809..79fd68570 100644 Binary files a/v5.6.x/.doctrees/clawpack5.doctree and b/v5.6.x/.doctrees/clawpack5.doctree differ diff --git a/v5.6.x/.doctrees/clawpack_components.doctree b/v5.6.x/.doctrees/clawpack_components.doctree index d205e361f..dccd25a5e 100644 Binary files a/v5.6.x/.doctrees/clawpack_components.doctree and b/v5.6.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.6.x/.doctrees/community.doctree b/v5.6.x/.doctrees/community.doctree index f47536b7a..f22748210 100644 Binary files a/v5.6.x/.doctrees/community.doctree and b/v5.6.x/.doctrees/community.doctree differ diff --git a/v5.6.x/.doctrees/contents.doctree b/v5.6.x/.doctrees/contents.doctree index 9afacf907..bb7ed70a3 100644 Binary files a/v5.6.x/.doctrees/contents.doctree and b/v5.6.x/.doctrees/contents.doctree differ diff --git a/v5.6.x/.doctrees/contribute_apps.doctree b/v5.6.x/.doctrees/contribute_apps.doctree index bbb1a7ae7..3435cec90 100644 Binary files a/v5.6.x/.doctrees/contribute_apps.doctree and b/v5.6.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.6.x/.doctrees/current_data.doctree b/v5.6.x/.doctrees/current_data.doctree index 0e27c4e4c..3a6fe4a92 100644 Binary files a/v5.6.x/.doctrees/current_data.doctree and b/v5.6.x/.doctrees/current_data.doctree differ diff --git a/v5.6.x/.doctrees/developers.doctree b/v5.6.x/.doctrees/developers.doctree index ae84a454b..d9dba2482 100644 Binary files a/v5.6.x/.doctrees/developers.doctree and b/v5.6.x/.doctrees/developers.doctree differ diff --git a/v5.6.x/.doctrees/docker_image.doctree b/v5.6.x/.doctrees/docker_image.doctree index fc5cb30c3..02ec71b22 100644 Binary files a/v5.6.x/.doctrees/docker_image.doctree and b/v5.6.x/.doctrees/docker_image.doctree differ diff --git a/v5.6.x/.doctrees/dtopotools_module.doctree b/v5.6.x/.doctrees/dtopotools_module.doctree index 534537c7e..bd4aab0d4 100644 Binary files a/v5.6.x/.doctrees/dtopotools_module.doctree and b/v5.6.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.6.x/.doctrees/environment.pickle b/v5.6.x/.doctrees/environment.pickle index 8fabc99ab..ddf76531f 100644 Binary files a/v5.6.x/.doctrees/environment.pickle and b/v5.6.x/.doctrees/environment.pickle differ diff --git a/v5.6.x/.doctrees/f77_vs_f90.doctree b/v5.6.x/.doctrees/f77_vs_f90.doctree index 20d9e7090..b04f842bb 100644 Binary files a/v5.6.x/.doctrees/f77_vs_f90.doctree and b/v5.6.x/.doctrees/f77_vs_f90.doctree differ diff --git a/v5.6.x/.doctrees/fgmax.doctree b/v5.6.x/.doctrees/fgmax.doctree index 6b6fa82b9..d18b07af7 100644 Binary files a/v5.6.x/.doctrees/fgmax.doctree and b/v5.6.x/.doctrees/fgmax.doctree differ diff --git a/v5.6.x/.doctrees/fgout.doctree b/v5.6.x/.doctrees/fgout.doctree index 3a32e837b..c0a3c88bf 100644 Binary files a/v5.6.x/.doctrees/fgout.doctree and b/v5.6.x/.doctrees/fgout.doctree differ diff --git a/v5.6.x/.doctrees/first_run.doctree b/v5.6.x/.doctrees/first_run.doctree index 3b7ed21c0..5193cd3cf 100644 Binary files a/v5.6.x/.doctrees/first_run.doctree and b/v5.6.x/.doctrees/first_run.doctree differ diff --git a/v5.6.x/.doctrees/first_run_fortran.doctree b/v5.6.x/.doctrees/first_run_fortran.doctree index 840ebfc5c..722b13fa5 100644 Binary files a/v5.6.x/.doctrees/first_run_fortran.doctree and b/v5.6.x/.doctrees/first_run_fortran.doctree differ diff --git a/v5.6.x/.doctrees/first_run_pyclaw.doctree b/v5.6.x/.doctrees/first_run_pyclaw.doctree index 71e95520b..d38b6303e 100644 Binary files a/v5.6.x/.doctrees/first_run_pyclaw.doctree and b/v5.6.x/.doctrees/first_run_pyclaw.doctree differ diff --git a/v5.6.x/.doctrees/fortran.doctree b/v5.6.x/.doctrees/fortran.doctree index d66c83c98..01978f2f0 100644 Binary files a/v5.6.x/.doctrees/fortran.doctree and b/v5.6.x/.doctrees/fortran.doctree differ diff --git a/v5.6.x/.doctrees/fortran_compilers.doctree b/v5.6.x/.doctrees/fortran_compilers.doctree index 25fb4aa50..3a03bc6e0 100644 Binary files a/v5.6.x/.doctrees/fortran_compilers.doctree and b/v5.6.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.6.x/.doctrees/fvmbook.doctree b/v5.6.x/.doctrees/fvmbook.doctree index 213d2e7f7..84f210b32 100644 Binary files a/v5.6.x/.doctrees/fvmbook.doctree and b/v5.6.x/.doctrees/fvmbook.doctree differ diff --git a/v5.6.x/.doctrees/galleries.doctree b/v5.6.x/.doctrees/galleries.doctree index 0dfb7b8d1..2eea3f7b2 100644 Binary files a/v5.6.x/.doctrees/galleries.doctree and b/v5.6.x/.doctrees/galleries.doctree differ diff --git a/v5.6.x/.doctrees/gauges.doctree b/v5.6.x/.doctrees/gauges.doctree index fed428177..f56b62f51 100644 Binary files a/v5.6.x/.doctrees/gauges.doctree and b/v5.6.x/.doctrees/gauges.doctree differ diff --git a/v5.6.x/.doctrees/geoclaw.doctree b/v5.6.x/.doctrees/geoclaw.doctree index 9029dee2d..f7e77ca52 100644 Binary files a/v5.6.x/.doctrees/geoclaw.doctree and b/v5.6.x/.doctrees/geoclaw.doctree differ diff --git a/v5.6.x/.doctrees/geoclaw_started.doctree b/v5.6.x/.doctrees/geoclaw_started.doctree index 856629cea..49bd3fb2a 100644 Binary files a/v5.6.x/.doctrees/geoclaw_started.doctree and b/v5.6.x/.doctrees/geoclaw_started.doctree differ diff --git a/v5.6.x/.doctrees/geoclaw_util_module.doctree b/v5.6.x/.doctrees/geoclaw_util_module.doctree index a7dd26056..6a9400249 100644 Binary files a/v5.6.x/.doctrees/geoclaw_util_module.doctree and b/v5.6.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.6.x/.doctrees/geohints.doctree b/v5.6.x/.doctrees/geohints.doctree index e19c81bb2..aa6f071b2 100644 Binary files a/v5.6.x/.doctrees/geohints.doctree and b/v5.6.x/.doctrees/geohints.doctree differ diff --git a/v5.6.x/.doctrees/geoplot.doctree b/v5.6.x/.doctrees/geoplot.doctree index 8b2654d3d..5b592a44e 100644 Binary files a/v5.6.x/.doctrees/geoplot.doctree and b/v5.6.x/.doctrees/geoplot.doctree differ diff --git a/v5.6.x/.doctrees/git_versions.doctree b/v5.6.x/.doctrees/git_versions.doctree index aac0b95db..b9b20f153 100644 Binary files a/v5.6.x/.doctrees/git_versions.doctree and b/v5.6.x/.doctrees/git_versions.doctree differ diff --git a/v5.6.x/.doctrees/googleearth_plotting.doctree b/v5.6.x/.doctrees/googleearth_plotting.doctree index 9812c5149..be2c9e8b1 100644 Binary files a/v5.6.x/.doctrees/googleearth_plotting.doctree and b/v5.6.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.6.x/.doctrees/gpu.doctree b/v5.6.x/.doctrees/gpu.doctree index 415fc431f..19869fed0 100644 Binary files a/v5.6.x/.doctrees/gpu.doctree and b/v5.6.x/.doctrees/gpu.doctree differ diff --git a/v5.6.x/.doctrees/grid_registration.doctree b/v5.6.x/.doctrees/grid_registration.doctree index d7c3b86c2..661dcd535 100644 Binary files a/v5.6.x/.doctrees/grid_registration.doctree and b/v5.6.x/.doctrees/grid_registration.doctree differ diff --git a/v5.6.x/.doctrees/howto_doc.doctree b/v5.6.x/.doctrees/howto_doc.doctree index 765217768..e979e9816 100644 Binary files a/v5.6.x/.doctrees/howto_doc.doctree and b/v5.6.x/.doctrees/howto_doc.doctree differ diff --git a/v5.6.x/.doctrees/howto_release.doctree b/v5.6.x/.doctrees/howto_release.doctree index d377febfa..6ac22f8e9 100644 Binary files a/v5.6.x/.doctrees/howto_release.doctree and b/v5.6.x/.doctrees/howto_release.doctree differ diff --git a/v5.6.x/.doctrees/installing.doctree b/v5.6.x/.doctrees/installing.doctree index 05820d067..1df3d18c5 100644 Binary files a/v5.6.x/.doctrees/installing.doctree and b/v5.6.x/.doctrees/installing.doctree differ diff --git a/v5.6.x/.doctrees/installing_more_options.doctree b/v5.6.x/.doctrees/installing_more_options.doctree index 28397b02e..26480f9b3 100644 Binary files a/v5.6.x/.doctrees/installing_more_options.doctree and b/v5.6.x/.doctrees/installing_more_options.doctree differ diff --git a/v5.6.x/.doctrees/installing_pip.doctree b/v5.6.x/.doctrees/installing_pip.doctree index 1a90b79ab..4c8eb79da 100644 Binary files a/v5.6.x/.doctrees/installing_pip.doctree and b/v5.6.x/.doctrees/installing_pip.doctree differ diff --git a/v5.6.x/.doctrees/kmltools_module.doctree b/v5.6.x/.doctrees/kmltools_module.doctree index 4c7c6eeee..2a074586e 100644 Binary files a/v5.6.x/.doctrees/kmltools_module.doctree and b/v5.6.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.6.x/.doctrees/license.doctree b/v5.6.x/.doctrees/license.doctree index 74585c75f..88b586eff 100644 Binary files a/v5.6.x/.doctrees/license.doctree and b/v5.6.x/.doctrees/license.doctree differ diff --git a/v5.6.x/.doctrees/makefiles.doctree b/v5.6.x/.doctrees/makefiles.doctree index 973bd702a..5bfc0349b 100644 Binary files a/v5.6.x/.doctrees/makefiles.doctree and b/v5.6.x/.doctrees/makefiles.doctree differ diff --git a/v5.6.x/.doctrees/makefiles_library.doctree b/v5.6.x/.doctrees/makefiles_library.doctree index e12d06f1f..1b09ee20b 100644 Binary files a/v5.6.x/.doctrees/makefiles_library.doctree and b/v5.6.x/.doctrees/makefiles_library.doctree differ diff --git a/v5.6.x/.doctrees/manning.doctree b/v5.6.x/.doctrees/manning.doctree index b412253c9..60492387b 100644 Binary files a/v5.6.x/.doctrees/manning.doctree and b/v5.6.x/.doctrees/manning.doctree differ diff --git a/v5.6.x/.doctrees/mapc2p.doctree b/v5.6.x/.doctrees/mapc2p.doctree index 4c496540c..73dafbccf 100644 Binary files a/v5.6.x/.doctrees/mapc2p.doctree and b/v5.6.x/.doctrees/mapc2p.doctree differ diff --git a/v5.6.x/.doctrees/matlab_plotting.doctree b/v5.6.x/.doctrees/matlab_plotting.doctree index 7f9545be0..257642983 100644 Binary files a/v5.6.x/.doctrees/matlab_plotting.doctree and b/v5.6.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.6.x/.doctrees/netcdf.doctree b/v5.6.x/.doctrees/netcdf.doctree index 2c65422ea..f2b1d55e7 100644 Binary files a/v5.6.x/.doctrees/netcdf.doctree and b/v5.6.x/.doctrees/netcdf.doctree differ diff --git a/v5.6.x/.doctrees/newapp.doctree b/v5.6.x/.doctrees/newapp.doctree index 04111986a..e5bffd3cc 100644 Binary files a/v5.6.x/.doctrees/newapp.doctree and b/v5.6.x/.doctrees/newapp.doctree differ diff --git a/v5.6.x/.doctrees/okada.doctree b/v5.6.x/.doctrees/okada.doctree index 3285c705f..38bc25147 100644 Binary files a/v5.6.x/.doctrees/okada.doctree and b/v5.6.x/.doctrees/okada.doctree differ diff --git a/v5.6.x/.doctrees/openmp.doctree b/v5.6.x/.doctrees/openmp.doctree index 641be0237..326525a1a 100644 Binary files a/v5.6.x/.doctrees/openmp.doctree and b/v5.6.x/.doctrees/openmp.doctree differ diff --git a/v5.6.x/.doctrees/output_styles.doctree b/v5.6.x/.doctrees/output_styles.doctree index b62a64960..b87289d23 100644 Binary files a/v5.6.x/.doctrees/output_styles.doctree and b/v5.6.x/.doctrees/output_styles.doctree differ diff --git a/v5.6.x/.doctrees/packages.doctree b/v5.6.x/.doctrees/packages.doctree index aab93099a..717bc7f8e 100644 Binary files a/v5.6.x/.doctrees/packages.doctree and b/v5.6.x/.doctrees/packages.doctree differ diff --git a/v5.6.x/.doctrees/photos.doctree b/v5.6.x/.doctrees/photos.doctree index d538e9351..31c1899a8 100644 Binary files a/v5.6.x/.doctrees/photos.doctree and b/v5.6.x/.doctrees/photos.doctree differ diff --git a/v5.6.x/.doctrees/plotexamples.doctree b/v5.6.x/.doctrees/plotexamples.doctree index 3c09a258c..37405df39 100644 Binary files a/v5.6.x/.doctrees/plotexamples.doctree and b/v5.6.x/.doctrees/plotexamples.doctree differ diff --git a/v5.6.x/.doctrees/plotting.doctree b/v5.6.x/.doctrees/plotting.doctree index 90d12931c..485bf79a7 100644 Binary files a/v5.6.x/.doctrees/plotting.doctree and b/v5.6.x/.doctrees/plotting.doctree differ diff --git a/v5.6.x/.doctrees/plotting_faq.doctree b/v5.6.x/.doctrees/plotting_faq.doctree index 19ef65f2c..20a403eb6 100644 Binary files a/v5.6.x/.doctrees/plotting_faq.doctree and b/v5.6.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.6.x/.doctrees/plotting_geoclaw.doctree b/v5.6.x/.doctrees/plotting_geoclaw.doctree index 2d3eb0fdd..97b51361d 100644 Binary files a/v5.6.x/.doctrees/plotting_geoclaw.doctree and b/v5.6.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.6.x/.doctrees/plotting_python.doctree b/v5.6.x/.doctrees/plotting_python.doctree index 27e985a8e..67057d644 100644 Binary files a/v5.6.x/.doctrees/plotting_python.doctree and b/v5.6.x/.doctrees/plotting_python.doctree differ diff --git a/v5.6.x/.doctrees/prereqs.doctree b/v5.6.x/.doctrees/prereqs.doctree index fa6e60339..b308fdf8e 100644 Binary files a/v5.6.x/.doctrees/prereqs.doctree and b/v5.6.x/.doctrees/prereqs.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/about.doctree b/v5.6.x/.doctrees/pyclaw/about.doctree index 9fbe9f2ee..b9da6782e 100644 Binary files a/v5.6.x/.doctrees/pyclaw/about.doctree and b/v5.6.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/basics.doctree b/v5.6.x/.doctrees/pyclaw/basics.doctree index 7fbe31f60..8b3bb9993 100644 Binary files a/v5.6.x/.doctrees/pyclaw/basics.doctree and b/v5.6.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/classes.doctree b/v5.6.x/.doctrees/pyclaw/classes.doctree index 1cec2ce5e..48c954079 100644 Binary files a/v5.6.x/.doctrees/pyclaw/classes.doctree and b/v5.6.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.6.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 704da30e2..530c636de 100644 Binary files a/v5.6.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.6.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/cloud.doctree b/v5.6.x/.doctrees/pyclaw/cloud.doctree index 3d4ddcf36..61f44828a 100644 Binary files a/v5.6.x/.doctrees/pyclaw/cloud.doctree and b/v5.6.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/controller.doctree b/v5.6.x/.doctrees/pyclaw/controller.doctree index 5697ce810..a2d5e79f9 100644 Binary files a/v5.6.x/.doctrees/pyclaw/controller.doctree and b/v5.6.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.6.x/.doctrees/pyclaw/evolve/limiters.doctree index 6579f81ca..a24440ad5 100644 Binary files a/v5.6.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.6.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/examples.doctree b/v5.6.x/.doctrees/pyclaw/examples.doctree index d65de95e7..66c351960 100644 Binary files a/v5.6.x/.doctrees/pyclaw/examples.doctree and b/v5.6.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/geometry.doctree b/v5.6.x/.doctrees/pyclaw/geometry.doctree index 08587f810..4fa953395 100644 Binary files a/v5.6.x/.doctrees/pyclaw/geometry.doctree and b/v5.6.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/going_further.doctree b/v5.6.x/.doctrees/pyclaw/going_further.doctree index e29769999..ad09da766 100644 Binary files a/v5.6.x/.doctrees/pyclaw/going_further.doctree and b/v5.6.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/index.doctree b/v5.6.x/.doctrees/pyclaw/index.doctree index 15351b0c0..6651ab240 100644 Binary files a/v5.6.x/.doctrees/pyclaw/index.doctree and b/v5.6.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/io.doctree b/v5.6.x/.doctrees/pyclaw/io.doctree index 41073f122..57f4960c8 100644 Binary files a/v5.6.x/.doctrees/pyclaw/io.doctree and b/v5.6.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/output.doctree b/v5.6.x/.doctrees/pyclaw/output.doctree index 4a93edaae..2593e1609 100644 Binary files a/v5.6.x/.doctrees/pyclaw/output.doctree and b/v5.6.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/parallel.doctree b/v5.6.x/.doctrees/pyclaw/parallel.doctree index 8dfed2a6a..f5deee8f9 100644 Binary files a/v5.6.x/.doctrees/pyclaw/parallel.doctree and b/v5.6.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/plotting.doctree b/v5.6.x/.doctrees/pyclaw/plotting.doctree index 5e731c7a2..33bd3b85a 100644 Binary files a/v5.6.x/.doctrees/pyclaw/plotting.doctree and b/v5.6.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/problem.doctree b/v5.6.x/.doctrees/pyclaw/problem.doctree index e15146dcf..73a5adac7 100644 Binary files a/v5.6.x/.doctrees/pyclaw/problem.doctree and b/v5.6.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/rp.doctree b/v5.6.x/.doctrees/pyclaw/rp.doctree index d9d0dda63..271284d9f 100644 Binary files a/v5.6.x/.doctrees/pyclaw/rp.doctree and b/v5.6.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/solution.doctree b/v5.6.x/.doctrees/pyclaw/solution.doctree index fc268a45b..517475233 100644 Binary files a/v5.6.x/.doctrees/pyclaw/solution.doctree and b/v5.6.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/solvers.doctree b/v5.6.x/.doctrees/pyclaw/solvers.doctree index 5127aa6c3..c5723d761 100644 Binary files a/v5.6.x/.doctrees/pyclaw/solvers.doctree and b/v5.6.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/started.doctree b/v5.6.x/.doctrees/pyclaw/started.doctree index 9a434c05c..73274ee60 100644 Binary files a/v5.6.x/.doctrees/pyclaw/started.doctree and b/v5.6.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/state.doctree b/v5.6.x/.doctrees/pyclaw/state.doctree index 884aebbc7..c140eeafa 100644 Binary files a/v5.6.x/.doctrees/pyclaw/state.doctree and b/v5.6.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.6.x/.doctrees/pyclaw/troubleshooting.doctree index e4c486da3..c9e710957 100644 Binary files a/v5.6.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.6.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/tutorial.doctree b/v5.6.x/.doctrees/pyclaw/tutorial.doctree index 4fdb01b98..c210e1ecc 100644 Binary files a/v5.6.x/.doctrees/pyclaw/tutorial.doctree and b/v5.6.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.6.x/.doctrees/pyclaw/util.doctree b/v5.6.x/.doctrees/pyclaw/util.doctree index a2a294d7a..b6c1d1ba5 100644 Binary files a/v5.6.x/.doctrees/pyclaw/util.doctree and b/v5.6.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.6.x/.doctrees/python.doctree b/v5.6.x/.doctrees/python.doctree index 2a4753439..cd380af6b 100644 Binary files a/v5.6.x/.doctrees/python.doctree and b/v5.6.x/.doctrees/python.doctree differ diff --git a/v5.6.x/.doctrees/python_path.doctree b/v5.6.x/.doctrees/python_path.doctree index b42be9f94..24aa45f09 100644 Binary files a/v5.6.x/.doctrees/python_path.doctree and b/v5.6.x/.doctrees/python_path.doctree differ diff --git a/v5.6.x/.doctrees/qinit_defaults.doctree b/v5.6.x/.doctrees/qinit_defaults.doctree index 95715a74f..093ea324a 100644 Binary files a/v5.6.x/.doctrees/qinit_defaults.doctree and b/v5.6.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.6.x/.doctrees/quick_surge.doctree b/v5.6.x/.doctrees/quick_surge.doctree index 19c6e8204..fd66e7921 100644 Binary files a/v5.6.x/.doctrees/quick_surge.doctree and b/v5.6.x/.doctrees/quick_surge.doctree differ diff --git a/v5.6.x/.doctrees/quick_tsunami.doctree b/v5.6.x/.doctrees/quick_tsunami.doctree index 70d2f6b4f..4b0dc9c1f 100644 Binary files a/v5.6.x/.doctrees/quick_tsunami.doctree and b/v5.6.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.6.x/.doctrees/refinement.doctree b/v5.6.x/.doctrees/refinement.doctree index badcca5ed..f8d7e15cd 100644 Binary files a/v5.6.x/.doctrees/refinement.doctree and b/v5.6.x/.doctrees/refinement.doctree differ diff --git a/v5.6.x/.doctrees/regression.doctree b/v5.6.x/.doctrees/regression.doctree index a04c69ced..5488ab529 100644 Binary files a/v5.6.x/.doctrees/regression.doctree and b/v5.6.x/.doctrees/regression.doctree differ diff --git a/v5.6.x/.doctrees/release_5_0_0.doctree b/v5.6.x/.doctrees/release_5_0_0.doctree index 1b07167a4..21a7bdcff 100644 Binary files a/v5.6.x/.doctrees/release_5_0_0.doctree and b/v5.6.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_1_0.doctree b/v5.6.x/.doctrees/release_5_1_0.doctree index 543adc311..7517431f8 100644 Binary files a/v5.6.x/.doctrees/release_5_1_0.doctree and b/v5.6.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_2_0.doctree b/v5.6.x/.doctrees/release_5_2_0.doctree index 990ff3183..fb83d1128 100644 Binary files a/v5.6.x/.doctrees/release_5_2_0.doctree and b/v5.6.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_2_1.doctree b/v5.6.x/.doctrees/release_5_2_1.doctree index e1920cab0..a71aeaabd 100644 Binary files a/v5.6.x/.doctrees/release_5_2_1.doctree and b/v5.6.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.6.x/.doctrees/release_5_2_2.doctree b/v5.6.x/.doctrees/release_5_2_2.doctree index 03381a942..b2fc5cbe4 100644 Binary files a/v5.6.x/.doctrees/release_5_2_2.doctree and b/v5.6.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.6.x/.doctrees/release_5_3_0.doctree b/v5.6.x/.doctrees/release_5_3_0.doctree index bfd525f55..94146fecb 100644 Binary files a/v5.6.x/.doctrees/release_5_3_0.doctree and b/v5.6.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_3_1.doctree b/v5.6.x/.doctrees/release_5_3_1.doctree index c6ff00aab..4a2233ac0 100644 Binary files a/v5.6.x/.doctrees/release_5_3_1.doctree and b/v5.6.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.6.x/.doctrees/release_5_4_0.doctree b/v5.6.x/.doctrees/release_5_4_0.doctree index 1daef7a0e..b2d4bb383 100644 Binary files a/v5.6.x/.doctrees/release_5_4_0.doctree and b/v5.6.x/.doctrees/release_5_4_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_4_1.doctree b/v5.6.x/.doctrees/release_5_4_1.doctree index ba55679df..20a17d822 100644 Binary files a/v5.6.x/.doctrees/release_5_4_1.doctree and b/v5.6.x/.doctrees/release_5_4_1.doctree differ diff --git a/v5.6.x/.doctrees/release_5_5_0.doctree b/v5.6.x/.doctrees/release_5_5_0.doctree index 341831f48..c050a2fed 100644 Binary files a/v5.6.x/.doctrees/release_5_5_0.doctree and b/v5.6.x/.doctrees/release_5_5_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_6_0.doctree b/v5.6.x/.doctrees/release_5_6_0.doctree index 2391f4c96..00c2e8394 100644 Binary files a/v5.6.x/.doctrees/release_5_6_0.doctree and b/v5.6.x/.doctrees/release_5_6_0.doctree differ diff --git a/v5.6.x/.doctrees/release_5_6_1.doctree b/v5.6.x/.doctrees/release_5_6_1.doctree index 886cf6c64..69fac8347 100644 Binary files a/v5.6.x/.doctrees/release_5_6_1.doctree and b/v5.6.x/.doctrees/release_5_6_1.doctree differ diff --git a/v5.6.x/.doctrees/releases.doctree b/v5.6.x/.doctrees/releases.doctree index bd5f59f8d..da2acadf1 100644 Binary files a/v5.6.x/.doctrees/releases.doctree and b/v5.6.x/.doctrees/releases.doctree differ diff --git a/v5.6.x/.doctrees/restart.doctree b/v5.6.x/.doctrees/restart.doctree index 44d6ec93a..759f31e27 100644 Binary files a/v5.6.x/.doctrees/restart.doctree and b/v5.6.x/.doctrees/restart.doctree differ diff --git a/v5.6.x/.doctrees/riemann.doctree b/v5.6.x/.doctrees/riemann.doctree index ad29db795..407b346a9 100644 Binary files a/v5.6.x/.doctrees/riemann.doctree and b/v5.6.x/.doctrees/riemann.doctree differ diff --git a/v5.6.x/.doctrees/sealevel.doctree b/v5.6.x/.doctrees/sealevel.doctree index a8577a23f..725bb90c2 100644 Binary files a/v5.6.x/.doctrees/sealevel.doctree and b/v5.6.x/.doctrees/sealevel.doctree differ diff --git a/v5.6.x/.doctrees/setaux_defaults.doctree b/v5.6.x/.doctrees/setaux_defaults.doctree index 45a5e4e56..8d6b40144 100644 Binary files a/v5.6.x/.doctrees/setaux_defaults.doctree and b/v5.6.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.6.x/.doctrees/setenv.doctree b/v5.6.x/.doctrees/setenv.doctree index 14b9aca83..e662bb778 100644 Binary files a/v5.6.x/.doctrees/setenv.doctree and b/v5.6.x/.doctrees/setenv.doctree differ diff --git a/v5.6.x/.doctrees/setplot.doctree b/v5.6.x/.doctrees/setplot.doctree index 974e658ae..50d5dcce2 100644 Binary files a/v5.6.x/.doctrees/setplot.doctree and b/v5.6.x/.doctrees/setplot.doctree differ diff --git a/v5.6.x/.doctrees/setrun.doctree b/v5.6.x/.doctrees/setrun.doctree index 0a7fe2e55..93521ebf4 100644 Binary files a/v5.6.x/.doctrees/setrun.doctree and b/v5.6.x/.doctrees/setrun.doctree differ diff --git a/v5.6.x/.doctrees/setrun_amrclaw.doctree b/v5.6.x/.doctrees/setrun_amrclaw.doctree index 5d1b37020..c3daf13e7 100644 Binary files a/v5.6.x/.doctrees/setrun_amrclaw.doctree and b/v5.6.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.6.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.6.x/.doctrees/setrun_amrclaw_sample.doctree index 7b24bc525..a456971b1 100644 Binary files a/v5.6.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.6.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.6.x/.doctrees/setrun_geoclaw.doctree b/v5.6.x/.doctrees/setrun_geoclaw.doctree index 67f54f0b9..1cfdc7599 100644 Binary files a/v5.6.x/.doctrees/setrun_geoclaw.doctree and b/v5.6.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.6.x/.doctrees/setrun_sample.doctree b/v5.6.x/.doctrees/setrun_sample.doctree index 5ccc29262..6cd031a28 100644 Binary files a/v5.6.x/.doctrees/setrun_sample.doctree and b/v5.6.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.6.x/.doctrees/sharing.doctree b/v5.6.x/.doctrees/sharing.doctree index 601794936..49856ea8b 100644 Binary files a/v5.6.x/.doctrees/sharing.doctree and b/v5.6.x/.doctrees/sharing.doctree differ diff --git a/v5.6.x/.doctrees/sphinxdoc.doctree b/v5.6.x/.doctrees/sphinxdoc.doctree index d10da666c..be2171936 100644 Binary files a/v5.6.x/.doctrees/sphinxdoc.doctree and b/v5.6.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.6.x/.doctrees/src1d_defaults.doctree b/v5.6.x/.doctrees/src1d_defaults.doctree index 232e624b4..cc3bf7105 100644 Binary files a/v5.6.x/.doctrees/src1d_defaults.doctree and b/v5.6.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.6.x/.doctrees/src_defaults.doctree b/v5.6.x/.doctrees/src_defaults.doctree index 0d9a55b4e..f0c9e58cd 100644 Binary files a/v5.6.x/.doctrees/src_defaults.doctree and b/v5.6.x/.doctrees/src_defaults.doctree differ diff --git a/v5.6.x/.doctrees/storm_module.doctree b/v5.6.x/.doctrees/storm_module.doctree index 88f7fb3f1..621649074 100644 Binary files a/v5.6.x/.doctrees/storm_module.doctree and b/v5.6.x/.doctrees/storm_module.doctree differ diff --git a/v5.6.x/.doctrees/surgedata.doctree b/v5.6.x/.doctrees/surgedata.doctree index bba2645ae..f64dffbb2 100644 Binary files a/v5.6.x/.doctrees/surgedata.doctree and b/v5.6.x/.doctrees/surgedata.doctree differ diff --git a/v5.6.x/.doctrees/testing.doctree b/v5.6.x/.doctrees/testing.doctree index dfe2ad185..11a1510ec 100644 Binary files a/v5.6.x/.doctrees/testing.doctree and b/v5.6.x/.doctrees/testing.doctree differ diff --git a/v5.6.x/.doctrees/timing.doctree b/v5.6.x/.doctrees/timing.doctree index 093e3e511..40603ca4e 100644 Binary files a/v5.6.x/.doctrees/timing.doctree and b/v5.6.x/.doctrees/timing.doctree differ diff --git a/v5.6.x/.doctrees/topo.doctree b/v5.6.x/.doctrees/topo.doctree index 4b0c9a347..9670425ed 100644 Binary files a/v5.6.x/.doctrees/topo.doctree and b/v5.6.x/.doctrees/topo.doctree differ diff --git a/v5.6.x/.doctrees/topotools.doctree b/v5.6.x/.doctrees/topotools.doctree index bb7164bcd..aa8e69267 100644 Binary files a/v5.6.x/.doctrees/topotools.doctree and b/v5.6.x/.doctrees/topotools.doctree differ diff --git a/v5.6.x/.doctrees/topotools_module.doctree b/v5.6.x/.doctrees/topotools_module.doctree index 74fbb408c..30f08e284 100644 Binary files a/v5.6.x/.doctrees/topotools_module.doctree and b/v5.6.x/.doctrees/topotools_module.doctree differ diff --git a/v5.6.x/.doctrees/trouble.doctree b/v5.6.x/.doctrees/trouble.doctree index cef81eac8..facf1ca14 100644 Binary files a/v5.6.x/.doctrees/trouble.doctree and b/v5.6.x/.doctrees/trouble.doctree differ diff --git a/v5.6.x/.doctrees/tsunamidata.doctree b/v5.6.x/.doctrees/tsunamidata.doctree index 21bc14347..0b64a9af2 100644 Binary files a/v5.6.x/.doctrees/tsunamidata.doctree and b/v5.6.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.6.x/.doctrees/user_routines.doctree b/v5.6.x/.doctrees/user_routines.doctree index 6b2cfd3ec..474864fd7 100644 Binary files a/v5.6.x/.doctrees/user_routines.doctree and b/v5.6.x/.doctrees/user_routines.doctree differ diff --git a/v5.6.x/.doctrees/visit_plotting.doctree b/v5.6.x/.doctrees/visit_plotting.doctree index 20ba6b7a3..b36341a97 100644 Binary files a/v5.6.x/.doctrees/visit_plotting.doctree and b/v5.6.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.6.x/.doctrees/vm.doctree b/v5.6.x/.doctrees/vm.doctree index 1661c494b..cf0fa7f8a 100644 Binary files a/v5.6.x/.doctrees/vm.doctree and b/v5.6.x/.doctrees/vm.doctree differ diff --git a/v5.6.x/.doctrees/wp_algorithms.doctree b/v5.6.x/.doctrees/wp_algorithms.doctree index 1b3457235..9327863e1 100644 Binary files a/v5.6.x/.doctrees/wp_algorithms.doctree and b/v5.6.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.6.x/amrclaw.html b/v5.6.x/amrclaw.html index 66afc320f..6ecef2205 100644 --- a/v5.6.x/amrclaw.html +++ b/v5.6.x/amrclaw.html @@ -107,7 +107,7 @@

            Navigation

            Matlab tools from Clawpack 4.3 can still be used, see Plotting using Matlab.

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/amrclaw.rst, line 36)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/amrclaw.rst, line 36)

            toctree contains reference to nonexisting document ‘amrclaw/amrclaw_advection_2d_square’

            diff --git a/v5.6.x/b4step_defaults.html b/v5.6.x/b4step_defaults.html index d02b414ff..9ccd0d35d 100644 --- a/v5.6.x/b4step_defaults.html +++ b/v5.6.x/b4step_defaults.html @@ -82,17 +82,17 @@

            Navigation

            as needed. Remember to change to Makefile to point to the proper version.

            $CLAW/classic/src/1d/b4step1.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 19)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 19)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/b4step1.f90’ not found or reading it failed

            $CLAW/classic/src/2d/b4step2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 25)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 25)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/b4step2.f90’ not found or reading it failed

            $CLAW/classic/src/3d/b4step3.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 31)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 31)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/b4step3.f90’ not found or reading it failed

            @@ -104,7 +104,7 @@

            Navigation

            with latitude when coordinate_system == 2).

            $CLAW/geoclaw/src/2d/shallow/b4step2.f90:

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 49)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/b4step_defaults.rst, line 49)

            Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/b4step2.f90’ not found or reading it failed

            diff --git a/v5.6.x/contents.html b/v5.6.x/contents.html index 3d7bea982..063393759 100644 --- a/v5.6.x/contents.html +++ b/v5.6.x/contents.html @@ -279,7 +279,7 @@

            PyClawRiemann

            All Clawpack packages make use of the same collection of Riemann solvers.

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/contents.rst, line 123)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/contents.rst, line 123)

            toctree contains reference to nonexisting document ‘riemann/Shallow_water_Riemann_solvers’

          - +
          • clawpack.pyclaw.limiters.tvd (module)
          • clawpack.pyclaw.util (module) +
          • +
          • clawpack.riemann.acoustics_1D_py (module) +
          • +
          • clawpack.riemann.advection_1D_py (module) +
          • +
          • clawpack.riemann.burgers_1D_py (module) +
          • +
          • clawpack.riemann.euler_1D_py (module) +
          • +
          • clawpack.riemann.shallow_1D_py (module)
          • ClawPlotAxes (built-in class)
          • @@ -330,6 +346,16 @@

            D

            E

            + @@ -353,10 +379,12 @@

            F

          • fetch_noaa_tide_data() (in module clawpack.geoclaw.util)
          • fetch_topo_url() (in module clawpack.geoclaw.topotools) +
          • +
          • fgmax2kml() (in module clawpack.geoclaw.kmltools)
          • + - + + + + + + + + + + + + + + +
          • setup_gauge_files() (clawpack.pyclaw.geometry.Grid method) +
          • +
          • shallow_exact_1D() (in module clawpack.riemann.shallow_1D_py) +
          • +
          • shallow_fwave_1d() (in module clawpack.riemann.shallow_1D_py) +
          • +
          • shallow_hll_1D() (in module clawpack.riemann.shallow_1D_py) +
          • +
          • shallow_roe_1D() (in module clawpack.riemann.shallow_1D_py)
          • SharpClawSolver (class in clawpack.pyclaw.sharpclaw.solver)
          • @@ -906,12 +942,12 @@

            S

          • slip (clawpack.geoclaw.dtopotools.SubFault attribute)
          • +
            • solver (clawpack.pyclaw.controller.Controller attribute)
            • source_split (clawpack.petclaw.geometry.Domain attribute) diff --git a/v5.6.x/geoclaw.html b/v5.6.x/geoclaw.html index 214e70ad0..f36a116dd 100644 --- a/v5.6.x/geoclaw.html +++ b/v5.6.x/geoclaw.html @@ -110,15 +110,15 @@

              Navigation

              Some sample calculations can be viewed in the gallery_geoclaw. More will eventually appear in the Clawpack Applications repository.

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              toctree contains reference to nonexisting document ‘geoclaw/topotools_examples’

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              toctree contains reference to nonexisting document ‘geoclaw/dtopotools_examples’

              -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/geoclaw.rst, line 36)

              toctree contains reference to nonexisting document ‘geoclaw/Okada’

              diff --git a/v5.6.x/geoclaw_util_module.html b/v5.6.x/geoclaw_util_module.html index 0fc5f460b..8c5b0c229 100644 --- a/v5.6.x/geoclaw_util_module.html +++ b/v5.6.x/geoclaw_util_module.html @@ -112,7 +112,7 @@

              Navigation

              Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

              -

              System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

              +

              System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

              Unexpected indentation.

              diff --git a/v5.6.x/howto_release.html b/v5.6.x/howto_release.html index 4accd9e5a..0354e3081 100644 --- a/v5.6.x/howto_release.html +++ b/v5.6.x/howto_release.html @@ -256,7 +256,7 @@

              Updating the documentation -

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/howto_release.rst, line 202)

              +

              System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/howto_release.rst, line 202)

              Bullet list ends without a blank line; unexpected unindent.

              diff --git a/v5.6.x/kmltools_module.html b/v5.6.x/kmltools_module.html index 840256473..578eb92d4 100644 --- a/v5.6.x/kmltools_module.html +++ b/v5.6.x/kmltools_module.html @@ -110,6 +110,7 @@

              Navigation

            • topo2kml - create a kml outline for each topo grid specified in setrun

            • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

            • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

            • +
            • fgout2kml - create a kml outline for each fgout grid specified in setrun

            • make_input_data_kmls - make kml files for many things specified in setrun

            • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

            • png2kml - create kml file wrapping a png figure to be viewed on GE

            • @@ -189,6 +190,28 @@

              Navigation

              +
              +
              +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
              +

              Create a KML box for each fgout grid specified for a GeoClaw run.

              +
              +
              Inputs
              +
                +
              • rundata - an object of class ClawRunData or None

                +

                If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

                +
              • +
              • fname (str) - resulting kml file.

              • +
              • verbose (bool) - If True, print out info about each region found

              • +
              • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

              • +
              +
              +
              +
              +
              clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
              @@ -336,7 +359,7 @@

              Navigation

              Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

              -

              System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

              +

              System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

              Unexpected indentation.

              @@ -344,7 +367,7 @@

              Navigation

              dpi * y_inches = dcp * y_cells

              -

              System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

              +

              System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

              Block quote ends without a blank line; unexpected unindent.

              where x_cells, y_cells are the number of cells in each direction.

              @@ -354,14 +377,14 @@

              Navigation

              annotate the figure befor saving it as a png file, which should then be done with:

              -

              System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

              +

              System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

              Unexpected indentation.

              plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

              -

              System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

              +

              System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

              Block quote ends without a blank line; unexpected unindent.

              The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

              Navigation

              -

              System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

              +

              System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

              Field list ends without a blank line; unexpected unindent.

              If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.6.x/objects.inv b/v5.6.x/objects.inv index 9d686370f..61b0f3498 100644 Binary files a/v5.6.x/objects.inv and b/v5.6.x/objects.inv differ diff --git a/v5.6.x/py-modindex.html b/v5.6.x/py-modindex.html index 871777779..e7914d83c 100644 --- a/v5.6.x/py-modindex.html +++ b/v5.6.x/py-modindex.html @@ -138,6 +138,31 @@

              Python Module Index

                clawpack.pyclaw.util
                + clawpack.riemann.acoustics_1D_py +
                + clawpack.riemann.advection_1D_py +
                + clawpack.riemann.burgers_1D_py +
                + clawpack.riemann.euler_1D_py +
                + clawpack.riemann.shallow_1D_py +
            diff --git a/v5.6.x/pyclaw/index.html b/v5.6.x/pyclaw/index.html index 1437d0f0e..f9a186ab5 100644 --- a/v5.6.x/pyclaw/index.html +++ b/v5.6.x/pyclaw/index.html @@ -138,7 +138,7 @@

            Features

            PyClaw Documentation

            -

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/pyclaw/index.rst, line 68)

            +

            System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/pyclaw/index.rst, line 68)

            toctree contains reference to nonexisting document ‘gallery/pyclaw/gallery/gallery_all’

            diff --git a/v5.6.x/pyclaw/rp.html b/v5.6.x/pyclaw/rp.html index 526bb6d85..5a031ac7c 100644 --- a/v5.6.x/pyclaw/rp.html +++ b/v5.6.x/pyclaw/rp.html @@ -163,18 +163,328 @@

            Navigation

            Acoustics

            +

            Riemann solvers for constant coefficient acoustics.

            +
            +\[q_t + A q_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
            +

            and the coefficient matrix is

            +
            +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
            +

            The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

            +
            +
            Authors
            +

            Kyle T. Mandli (2009-02-03): Initial version

            +
            +
            +
            +
            +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Basic 1d acoustics riemann solver, with interleaved arrays

            +
            +
            problem_data is expected to contain -
              +
            • zz - (float) Impedence

            • +
            • cc - (float) Speed of sound

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-02-03)

            +
            +
            +
            +

            Advection

            +

            Simple advection Riemann solvers

            +

            Basic advection Riemann solvers of the form (1d)

            +
            +\[q_t + A q_x = 0.\]
            +
            +
            Authors
            +

            Kyle T. Mandli (2008-2-20): Initial version

            +
            +
            +
            +
            +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Basic 1d advection riemann solver

            +
            +
            problem_data should contain -
              +
            • u - (float) Determines advection speed

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2008-2-20)

            +
            +
            +
            +

            Burgers Equation

            +

            Riemann solvers for Burgers equation

            +
            +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
            +
            +
            Authors
            +

            Kyle T. Mandli (2009-2-4): Initial version

            +
            +
            +
            +
            +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Riemann solver for Burgers equation in 1d

            +
            +
            problem_data should contain -
              +
            • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-2-4)

            +
            +
            +
            +

            Euler Equations

            +

            Riemann solvers for the Euler equations

            +

            This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

            +
            +\[q_t + f(q)_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
            +

            the flux function is

            +
            +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
            +

            and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

            +

            Unless otherwise noted, the ideal gas equation of state is used:

            +
            +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
            +
            +
            +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Exact euler Riemann solver

            +
            +

            Warning

            +

            This solver has not been implemented.

            +
            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLL euler solver

            +
            W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +
            +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
            +
            +
            +
            +
            problem_data should contain:
              +
            • gamma - (float) Ratio of the heat capacities

            • +
            • gamma1 - (float) \(1 - \gamma\)

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2014-03-04)

            +
            +
            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLLC Euler solver

            +
            W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = q_hat_r - q_hat_l  s_2 = s_m
            +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
            +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
            +
            +
            +

            left middle state:

            +
            q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
            +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
            +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
            +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
            +
            +
            +

            right middle state:

            +
            q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
            +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
            +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
            +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
            +
            +
            +

            problem_data should contain:

            +
            +
              +
            • gamma: (float) Ratio of specific heat capacities

            • +
            • gamma1: (float) \(\gamma - 1\)

            • +
            +
            +

            :Version 1.0 (2015-11-18)

            +
            + +
            +
            +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Roe Euler solver in 1d

            +
            +
            aug_global should contain -
              +
            • gamma - (float) Ratio of the heat capacities

            • +
            • gamma1 - (float) \(1 - \gamma\)

            • +
            • efix - (bool) Whether to use an entropy fix or not

            • +
            +
            +
            +

            See Riemann Solver Package for more details.

            +
            +
            Version
            +

            1.0 (2009-6-26)

            +
            +
            +
            +

            Shallow Water Equations

            +

            Riemann solvers for the shallow water equations.

            +
            +
            The available solvers are:
              +
            • Roe - Use Roe averages to caluclate the solution to the Riemann problem

            • +
            • HLL - Use a HLL solver

            • +
            • +
              Exact - Use a newton iteration to calculate the exact solution to the

              Riemann problem

              +
              +
              +
            • +
            +
            +
            +
            +\[q_t + f(q)_x = 0\]
            +

            where

            +
            +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
            +

            the flux function is

            +
            +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
            +

            and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

            +
            +
            +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Exact shallow water Riemann solver

            +
            +

            Warning

            +

            This solver has not been implemented.

            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Shallow water Riemann solver using fwaves

            +

            Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

            +
            +
            problem_data should contain:
              +
            • grav - (float) Gravitational constant

            • +
            • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

            • +
            • sea_level - (float) Datum from which the dry-state is calculated.

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2014-09-05)

            +
            +
            Version
            +

            2.0 (2017-03-07)

            +
            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            HLL shallow water solver

            +
            W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
            +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
            +
            +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
            +
            +
            +
            +
            problem_data should contain:
              +
            • g - (float) Gravitational constant

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2009-02-05)

            +
            +
            +
            + +
            +
            +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
            +

            Roe shallow water solver in 1d:

            +
            ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
            +cbar = sqrt( 0.5 * g * (h_l + h_r))
            +
            +W_1 = |      1      |  s_1 = ubar - cbar
            +      | ubar - cbar |
            +
            +W_2 = |      1      |  s_1 = ubar + cbar
            +      | ubar + cbar |
            +
            +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
            +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
            +
            +
            +
            +
            problem_data should contain:
              +
            • g - (float) Gravitational constant

            • +
            • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

            • +
            +
            +
            +
            +
            Version
            +

            1.0 (2009-02-05)

            +
            +
            +
            +

        diff --git a/v5.6.x/qinit_defaults.html b/v5.6.x/qinit_defaults.html index d2278b0d4..f932215cb 100644 --- a/v5.6.x/qinit_defaults.html +++ b/v5.6.x/qinit_defaults.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        @@ -86,17 +86,17 @@

        Navigation

        the initial conditions as desired.

        $CLAW/classic/src/1d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 18)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 18)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/2d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/qinit.f90’ not found or reading it failed

        $CLAW/classic/src/3d/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/qinit.f90’ not found or reading it failed

        @@ -107,7 +107,7 @@

        Navigation

        qinit data file parameters.

        $CLAW/geoclaw/src/2d/shallow/qinit.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/qinit_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/qinit.f90’ not found or reading it failed

        diff --git a/v5.6.x/release_5_0_0.html b/v5.6.x/release_5_0_0.html index d4ba290dd..bba22c569 100644 --- a/v5.6.x/release_5_0_0.html +++ b/v5.6.x/release_5_0_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_0_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_0_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.6.x/release_5_1_0.html b/v5.6.x/release_5_1_0.html index b854687e8..419a61e99 100644 --- a/v5.6.x/release_5_1_0.html +++ b/v5.6.x/release_5_1_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_1_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_1_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.6.x/release_5_2_0.html b/v5.6.x/release_5_2_0.html index eaa0bfbe5..692b68f74 100644 --- a/v5.6.x/release_5_2_0.html +++ b/v5.6.x/release_5_2_0.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_0.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_0.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.6.x/release_5_2_1.html b/v5.6.x/release_5_2_1.html index 60c3b88a0..f7290f022 100644 --- a/v5.6.x/release_5_2_1.html +++ b/v5.6.x/release_5_2_1.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_1.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_1.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.6.x/release_5_2_2.html b/v5.6.x/release_5_2_2.html index a79c1b2af..ab9fd31c7 100644 --- a/v5.6.x/release_5_2_2.html +++ b/v5.6.x/release_5_2_2.html @@ -74,7 +74,7 @@

        Navigation

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_2.rst, line 2)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/release_5_2_2.rst, line 2)

        Field list ends without a blank line; unexpected unindent.

        diff --git a/v5.6.x/searchindex.js b/v5.6.x/searchindex.js index f07b926dc..cb13c3312 100644 --- a/v5.6.x/searchindex.js +++ b/v5.6.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","releases","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","releases.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[55,1,0,"-"],topotools:[140,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[55,3,1,""],deg2dms:[55,3,1,""],dtopo2kml:[55,3,1,""],f2s:[55,3,1,""],fgmax2kml:[55,3,1,""],gauges2kml:[55,3,1,""],kml_build_colorbar:[55,3,1,""],kml_cb:[55,3,1,""],kml_png:[55,3,1,""],kml_timespan:[55,3,1,""],line2kml:[55,3,1,""],make_input_data_kmls:[55,3,1,""],pcolorcells_for_kml:[55,3,1,""],png2kml:[55,3,1,""],poly2kml:[55,3,1,""],quad2kml:[55,3,1,""],regions2kml:[55,3,1,""],topo2kml:[55,3,1,""],topo2kmz:[55,3,1,""]},"clawpack.geoclaw.surge":{storm:[134,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[134,5,1,""],Storm:[134,0,1,""],available_formats:[134,3,1,""],available_models:[134,3,1,""],fill_rad_w_other_source:[134,3,1,""],make_multi_structure:[134,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[134,2,1,""],plot:[134,2,1,""],read:[134,2,1,""],read_atcf:[134,2,1,""],read_geoclaw:[134,2,1,""],read_hurdat:[134,2,1,""],read_ibtracs:[134,2,1,""],read_imd:[134,2,1,""],read_jma:[134,2,1,""],read_tcvitals:[134,2,1,""],write:[134,2,1,""],write_atcf:[134,2,1,""],write_geoclaw:[134,2,1,""],write_hurdat:[134,2,1,""],write_imd:[134,2,1,""],write_jma:[134,2,1,""],write_tcvitals:[134,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[140,0,1,""],create_topo_func:[140,3,1,""],determine_topo_type:[140,3,1,""],fetch_topo_url:[140,3,1,""],get_topo:[140,3,1,""],read_netcdf:[140,3,1,""],swapheader:[140,3,1,""],topo1writer:[140,3,1,""],topo2writer:[140,3,1,""],topo3writer:[140,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[140,2,1,""],Y:[140,2,1,""],Z:[140,2,1,""],crop:[140,2,1,""],delta:[140,2,1,""],extent:[140,2,1,""],generate_2d_coordinates:[140,2,1,""],generate_2d_topo:[140,2,1,""],in_poly:[140,2,1,""],interp_unstructured:[140,2,1,""],make_shoreline_xy:[140,2,1,""],plot:[140,2,1,""],read:[140,2,1,""],read_header:[140,2,1,""],replace_no_data_values:[140,2,1,""],replace_values:[140,2,1,""],set_xyZ:[140,2,1,""],smooth_data:[140,2,1,""],write:[140,2,1,""],x:[140,2,1,""],y:[140,2,1,""],z:[140,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.petclaw.geometry":{Domain:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[83,4,1,""],fwave:[83,4,1,""],kernel_language:[83,4,1,""],mthlim:[83,4,1,""],order:[83,4,1,""],source_split:[83,4,1,""],step_source:[83,4,1,""],transverse_waves:[83,4,1,""],verbosity:[83,4,1,""]},"clawpack.petclaw.state":{State:[95,0,1,""]},"clawpack.petclaw.state.State":{F:[95,2,1,""],aux:[95,2,1,""],fset:[95,2,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,2,1,""],problem_data:[95,4,1,""],q:[95,2,1,""],set_num_ghost:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw":{util:[98,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[93,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[93,4,1,""],kernel_language:[93,4,1,""],mthlim:[93,4,1,""],order:[93,4,1,""],setup:[93,2,1,""],source_split:[93,4,1,""],step:[93,2,1,""],step_hyperbolic:[93,2,1,""],step_source:[93,4,1,""],verbosity:[93,4,1,""]},"clawpack.pyclaw.controller":{Controller:[80,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[80,4,1,""],F_path:[80,2,1,""],check_validity:[80,2,1,""],compute_F:[80,4,1,""],compute_p:[80,4,1,""],file_prefix_p:[80,4,1,""],frames:[80,4,1,""],keep_copy:[80,4,1,""],nstepout:[80,4,1,""],num_output_times:[80,4,1,""],out_times:[80,4,1,""],outdir:[80,4,1,""],outdir_p:[80,2,1,""],output_file_prefix:[80,4,1,""],output_format:[80,4,1,""],output_options:[80,4,1,""],output_style:[80,4,1,""],overwrite:[80,4,1,""],plot:[80,2,1,""],plotdata:[80,4,1,""],run:[80,2,1,""],rundir:[80,4,1,""],runmake:[80,4,1,""],savecode:[80,4,1,""],solver:[80,4,1,""],tfinal:[80,4,1,""],verbosity:[80,2,1,""],viewable_attributes:[80,4,1,""],write_aux_always:[80,4,1,""],write_aux_init:[80,4,1,""],xclawcmd:[80,4,1,""],xclawerr:[80,4,1,""],xclawout:[80,4,1,""],xdir:[80,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[86,1,0,"-"],netcdf:[86,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[86,3,1,""],read_array:[86,3,1,""],read_patch_header:[86,3,1,""],read_t:[86,3,1,""],write:[86,3,1,""],write_array:[86,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[86,3,1,""],write:[86,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[83,0,1,""],Domain:[83,0,1,""],Grid:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[83,2,1,""],centers_with_ghost:[83,2,1,""],delta:[83,2,1,""],nodes:[83,2,1,""],nodes_with_ghost:[83,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[83,2,1,""],num_dim:[83,2,1,""],patch:[83,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[83,2,1,""],add_gauges:[83,2,1,""],c_center:[83,2,1,""],c_centers:[83,2,1,""],c_centers_with_ghost:[83,2,1,""],c_nodes:[83,2,1,""],c_nodes_with_ghost:[83,2,1,""],dimensions:[83,2,1,""],gauge_dir_name:[83,4,1,""],gauge_file_names:[83,4,1,""],gauge_files:[83,4,1,""],gauges:[83,4,1,""],get_dim_attribute:[83,2,1,""],num_dim:[83,2,1,""],p_center:[83,2,1,""],p_centers:[83,2,1,""],p_nodes:[83,2,1,""],plot:[83,2,1,""],setup_gauge_files:[83,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[83,2,1,""],delta:[83,2,1,""],dimensions:[83,2,1,""],get_dim_attribute:[83,2,1,""],level:[83,4,1,""],lower_global:[83,2,1,""],name:[83,2,1,""],num_cells_global:[83,2,1,""],num_dim:[83,2,1,""],patch_index:[83,4,1,""],upper_global:[83,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[81,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[81,3,1,""],beta_limiter:[81,3,1,""],cada_torrilhon_limiter:[81,3,1,""],cada_torrilhon_limiter_nonlinear:[81,3,1,""],cfl_superbee:[81,3,1,""],cfl_superbee_theta:[81,3,1,""],hyperbee_limiter:[81,3,1,""],limit:[81,3,1,""],mc_limiter:[81,3,1,""],minmod_limiter:[81,3,1,""],superbee_limiter:[81,3,1,""],superpower_limiter:[81,3,1,""],theta_limiter:[81,3,1,""],upper_bound_limiter:[81,3,1,""],van_leer_klein_sharpening_limiter:[81,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[93,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[93,2,1,""],aux_time_dep:[93,4,1,""],call_before_step_each_stage:[93,4,1,""],cfl_desired:[93,4,1,""],cfl_max:[93,4,1,""],char_decomp:[93,4,1,""],check_3rd_ord_cond:[93,2,1,""],dq:[93,2,1,""],dq_src:[93,4,1,""],dqdt:[93,2,1,""],fwave:[93,4,1,""],get_dt_new:[93,2,1,""],kernel_language:[93,4,1,""],lim_type:[93,4,1,""],num_ghost:[93,4,1,""],setup:[93,2,1,""],step:[93,2,1,""],tfluct:[93,4,1,""],tfluct_solver:[93,4,1,""],time_integrator:[93,4,1,""],update_saved_values:[93,2,1,""],weno_order:[93,4,1,""]},"clawpack.pyclaw.solution":{Solution:[92,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[92,2,1,""],patch:[92,2,1,""],plot:[92,2,1,""],read:[92,2,1,""],set_all_states:[92,2,1,""],start_frame:[92,2,1,""],state:[92,2,1,""],write:[92,2,1,""]},"clawpack.pyclaw.state":{State:[95,0,1,""]},"clawpack.pyclaw.state.State":{F:[95,4,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],is_valid:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,4,1,""],problem_data:[95,4,1,""],set_aux_from_auxbc:[95,2,1,""],set_cparam:[95,2,1,""],set_num_ghost:[95,2,1,""],set_q_from_qbc:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[98,0,1,""],VerifyError:[98,5,1,""],add_parent_doc:[98,3,1,""],check_diff:[98,3,1,""],compile_library:[98,3,1,""],construct_function_handle:[98,3,1,""],convert_fort_double_to_float:[98,3,1,""],gen_variants:[98,3,1,""],read_data_line:[98,3,1,""],run_app_from_main:[98,3,1,""],run_serialized:[98,3,1,""],test_app:[98,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[98,2,1,""],increment:[98,2,1,""],reset_counter:[98,2,1,""],set_counter:[98,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":66,"000000e":127,"00000e":127,"0000ff":[3,55],"001000e":127,"00er2592":4,"00ff00":55,"00ffff":55,"01er25474":4,"020204mag_polici":29,"04d":144,"0_contain":28,"0_dockerimag":28,"0d0":98,"10k":115,"1200x1680":47,"1440l":47,"1440p":47,"15e":140,"16m":65,"17th":93,"1_contain":28,"1_dockerimag":28,"1_geoclaw":28,"1d_plot":[40,71,73,124],"1drad":143,"1rc":51,"1st":[81,93,125,127,129,143],"2013it":16,"2018300n26315":134,"2019ms001635":48,"25000000e":66,"260e":137,"27t06":55,"27t07":55,"288e":137,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[85,90,93,125,127,129,143],"301e":137,"30x30":47,"34kt":134,"360x360":47,"373e":137,"3rd":[90,93],"40000000e":66,"4th":93,"50kt":134,"5_x_x":51,"5d0":143,"5e3":128,"5r01ar53652":4,"639s":[34,136],"64kt":134,"8888ff":55,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,86,125,126,128],"break":[27,29,44,47,55,64,105,112,128,140],"case":[5,6,8,13,15,18,21,29,31,37,40,44,47,54,55,58,61,64,71,77,83,86,88,90,92,98,100,104,105,108,111,112,113,114,115,119,121,128,134,138,140,141,143,146],"catch":[36,85],"class":[0,1,2,3,5,24,29,31,47,55,64,71,73,78,83,85,90,92,93,95,97,98,99,116,119,124,125,126,127,128,129,140],"default":[0,1,2,3,13,21,27,29,31,37,40,43,45,46,47,49,52,54,55,57,58,61,64,65,71,73,77,80,82,83,86,87,88,89,92,93,95,96,98,104,107,113,117,119,121,126,127,128,134,138,140,143],"export":[37,47,50,52,53,54,61,65,88,96,123],"final":[5,29,37,50,61,64,77,80,87,97,102,107,119,125,127,129,140],"float":[3,29,31,40,43,55,80,83,95,98,125,126,128,129,134,140],"function":[0,1,2,3,5,7,14,16,21,22,24,26,27,29,31,40,41,46,47,49,57,58,59,62,64,70,71,72,77,78,80,81,82,83,84,86,89,90,91,92,95,98,104,105,107,108,111,112,113,114,115,120,122,124,125,126,127,128,129,134,138,139,140,141,143],"import":[0,3,5,21,27,35,40,44,47,49,52,54,55,58,59,64,67,71,73,77,78,80,82,83,85,86,87,88,89,90,92,93,94,95,97,99,105,113,120,121,125,126,127,128,129,138,140,142,144],"int":[1,2,3,29,55,80,81,83,86,87,92,95,125,126,128,134,140],"long":[27,29,43,44,47,63,112,140],"new":[1,2,4,5,6,8,13,17,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,50,51,54,55,57,58,59,61,65,71,73,74,76,77,78,79,80,86,88,90,93,95,102,104,107,110,111,112,113,114,115,116,117,119,120,123,125,126,128,134,138,140,143],"ond\u0159ej":4,"public":[4,13,20,118],"return":[0,1,2,3,29,35,43,47,55,58,61,71,73,80,81,83,86,87,90,91,92,93,95,98,105,114,120,125,127,129,134,136,140,143,146],"short":[44,90],"static":[29,64,115],"super":[22,27,115,140],"switch":[28,31,47,52,54,90,100,105,114,121,142],"throw":27,"true":[0,1,2,3,5,6,14,15,26,29,40,43,46,47,50,55,70,77,80,83,86,87,88,92,93,95,104,113,119,120,122,125,126,127,128,129,134,140],"try":[1,27,28,33,34,35,40,47,49,54,55,71,79,82,85,86,92,94,96,97,98,99,100,105,125,136,140,141],"var":[0,3,13,14,26,101,122,132,133,134],"while":[5,13,15,29,47,61,64,71,73,78,83,87,88,93,98,115,120,128,142],AND:[56,75],ARE:[56,75],AWS:[13,52],Added:[81,107,109,111,112,114],Adding:[24,76,84],And:[6,19,50,52],Are:106,Axes:[124,134],BCs:[127,129],BUT:[56,75],But:[13,47,50,71,96,108,115],CMS:4,DAs:95,DMS:4,DNS:13,Doing:64,EBS:13,FOR:[56,75],For:[0,1,2,3,5,7,8,9,10,13,14,15,17,18,21,24,25,26,27,28,29,31,33,35,37,40,43,44,45,47,49,50,51,52,54,57,58,61,62,64,65,70,71,73,74,77,78,82,83,85,86,87,88,90,93,94,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,129,131,132,133,134,135,137,138,140,142,143,146],GIS:[47,113,138],Going:[13,24,85],Ike:102,Into:99,NOT:[55,56,71,75],Not:[29,47,83,113],OPS:43,One:[22,24,25,29,47,61,78,98,104,111,140],Res:16,SUCH:[56,75],Such:61,Sys:16,THE:[56,75],That:[33,35,97,138],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,49,50,52,53,54,55,56,57,58,59,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,80,81,83,85,86,87,88,90,91,92,93,94,95,96,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146],Their:75,Then:[13,15,27,28,29,40,50,51,53,58,64,65,73,77,80,88,94,95,96,100,120,140,141],There:[3,6,13,21,31,34,36,47,57,64,66,73,87,94,102,114,115,124,125,135,136,143,145],These:[1,4,5,12,15,17,22,27,29,31,38,40,44,47,50,52,55,58,61,71,73,77,82,86,87,89,95,97,101,103,104,105,107,113,114,115,116,119,126,130,134,135,138,142,146],USE:[56,75],Use:[29,47,85,93,115,125,127,129,138,140],Useful:[1,3,125],Uses:[29,140],Using:[0,1,2,3,7,16,21,37,38,47,49,52,69,70,71,73,74,83,84,85,117,125,132,133,137,140,141,146],WCS:142,Will:92,With:[6,21,27,40,45,47,67,99,104,112,120,125],__________________o:140,__file__:100,__future__:113,__init__:[51,90,100],__main__:[127,129],__name__:[127,129],_build:50,_compute_c_cent:83,_compute_c_nod:83,_compute_p_cent:83,_compute_p_nod:83,_fillvalu:86,_googleearth:47,_outdir:87,_output2:[71,73],_output:[5,13,33,34,40,46,61,71,73,82,87,89,92,112,141],_output_from_previous_run:40,_output_new:105,_output_old:105,_plot:[13,33,34,40,61,73,124,130],_plotindex:[1,40],_plots_new:105,_plots_old:105,_ptwise:120,_pyclaw_io:80,_static:50,_storm_modul:135,_subpackag:100,_surge_modul:102,_theme:50,a351:[16,85],a377:[16,85],aabbggrr:55,abdullah:[4,75],abil:[37,111,113,117,134,140],abl:[13,100],abort:57,about:[3,5,7,13,15,21,24,33,34,36,43,44,49,51,55,57,59,61,66,72,74,77,85,88,93,100,105,112,116,120,124,127,128,138,141,143,146],aboutu:29,abov:[3,5,13,15,19,27,28,31,33,34,36,37,40,44,47,49,50,51,52,54,56,58,64,66,71,74,75,78,87,89,94,97,98,99,104,113,115,120,123,124,125,127,128,129,134,137,138,140,143],abs:[29,48,90,98,104,140],absolut:[87,104,105,115,126,127],absolute_import:113,abspath:5,abstol:98,academ:[96,99],acceler:48,accept:[40,77,87,93,125],accept_reject_step:93,access:[0,16,26,52,54,82,83,85,93,95,98],accid:27,accident:[27,71],accompani:[17,20],accomplish:[28,57],accord:[6,49],accordingli:[47,138],account:[13,23,27,51,79,88],accumul:[40,113,119],accur:[5,44,64,85,93,125,143,146],accuraci:[40,59,67,127,129],achiev:[19,78,132,133],acou:71,acoust:[15,28,33,34,44,76,77,80,82,85,93,94,111,120,127,143],acoustics1dheterogeneoustest:[34,136],acoustics3dheterogeneoustest:[34,136],acoustics_1d:[77,97],acoustics_1d_adjoint:5,acoustics_1d_example1:[33,34,63],acoustics_1d_heterogen:[34,136,143],acoustics_1d_homogen:[82,105],acoustics_2d:93,acoustics_2d_adjoint:5,acoustics_2d_radi:[127,143],acoustics_3d_heterogen:[34,136],acoustics_3d_vari:105,acquaint:97,acquir:71,across:[5,104,113,138,140],acsza1:29,acszb1:29,act:[81,140],acta:16,actanum2011:16,action:[13,78],activ:[31,32,93,102,128],actual:[6,26,29,49,54,55,61,64,71,81,86,98,102,121,128],adapt:[4,7,16,29,48,49,61,67,77,115,120,124,125,143],add:[0,11,13,15,16,26,27,29,31,40,43,47,50,51,54,58,61,62,64,70,77,82,83,87,88,90,98,108,111,113,114,115,129,134,138,140,144],add_colorbar:[29,140],add_colormap:112,add_dimens:83,add_gaug:[83,87],add_label:40,add_param:[127,129],add_parent_doc:98,add_titl:71,add_true_solut:71,added:[3,15,19,21,27,31,32,43,49,51,54,55,59,61,71,83,87,100,102,104,107,108,110,111,112,113,114,115,116,117,119,125,126,128,134,137,140,144],addgaug:40,adding:[21,26,27,28,31,37,40,55,64,88,101,112,114],addit:[5,7,13,15,22,24,27,28,31,34,35,41,42,52,54,55,64,66,67,71,72,78,81,83,85,87,93,94,95,102,104,111,113,114,115,116,120,125,129,134,137,138,143,144],addition:[88,134],address:[47,50,113],adequ:44,adjac:[6,15,31,41,104,125],adjoint:[7,16,24,48,104,115,116],adjoint_flag:104,adjoint_modul:116,adjoint_outdir:5,adjointdata:[5,116,117],adjointsup_modul:116,adjust:[5,13,19,31,50,55,83,87,121,125,143],adopt:[29,93],adv:16,advanc:[6,16,48,65,97,112,125,143],advantag:[70,86,105],advect:[16,71,85,88,120,129,143],advection2dannulustest:[34,136],advection_1d_example1:58,advection_2d_annulu:[34,136],advection_2d_inflow:111,advection_2d_swirl:143,advection_3d_swirl:[111,137],advis:[32,56,75],affect:[21,57,113,114,125,138,141],afosr:4,after:[0,1,3,5,6,13,18,22,26,27,28,31,33,34,40,44,50,51,53,55,57,58,61,62,66,71,78,79,80,82,87,93,95,100,104,105,107,111,112,125,126,127,129,134,143],afterax:[0,26,40,47,71],afterfram:[1,26,70],aftergrid:61,afteritem:[3,26],afterpatch:[3,26],again:[21,36,57,64,71,73,77,78,87,91,96,100,115,138,141],against:[98,105,112,136],agenc:[4,54,134,135],agency_pref:134,agre:[12,27,49,120,137,140,143],agreement:44,ahmadia:[4,16,75,85],aht:121,aid:78,aim:27,aks2203:4,albada:81,alg:127,alghamdi:[4,16,75,85],algorithm:[4,7,24,31,48,77,83,85,86,93,97,104,115,120,125,127,129,140],align:[31,47,55,128],all:[0,1,4,6,11,13,15,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,49,50,51,52,53,55,56,57,58,61,63,64,65,66,67,70,71,73,74,75,77,80,81,83,86,87,88,90,91,92,93,95,98,99,100,103,104,105,107,108,111,112,113,115,119,120,124,125,127,128,129,130,135,136,137,138,140,141,143],alloc:[19,93,111],allocat:111,allot:55,allow:[4,6,13,21,26,27,28,31,40,41,43,46,47,49,50,52,54,59,61,64,65,67,70,71,80,86,87,93,95,98,99,100,104,105,107,108,111,112,113,114,115,117,120,125,127,128,129,130,134,138,140,142],almost:99,alon:[15,47],along:[6,15,26,29,31,40,47,62,64,100,104,111,119,128,134,142],alpha:[47,51,93],alphabet:75,alreadi:[0,1,6,13,17,27,28,37,51,52,53,54,55,73,74,88,92,94,97,99,108,116,140],also:[3,4,5,6,7,8,9,11,15,16,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,53,54,55,57,58,61,62,64,65,66,67,70,71,73,77,79,80,83,85,86,87,88,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,112,113,114,115,116,117,119,120,121,123,125,127,128,129,130,132,133,134,135,136,137,138,140,141,142,143,145,146],alter:47,altern:[29,31,33,34,40,43,47,53,57,61,70,85,88,99,100,104,111,112,113],although:[29,47,58,61,89,90,92,116,140],alwai:[15,21,25,26,27,31,37,49,54,61,77,86,103,104,107,108,127,128,129,138,143],amal:[4,16,75,85],amazon:24,amazonaw:13,amdq:[91,120],ami:24,amount:[40,44,50],amplitud:[5,113],amr:[4,7,8,15,19,22,24,26,27,31,32,40,41,48,55,61,66,67,70,75,83,112,114,115,116,124,125,127,129,137,143],amr_1d:116,amr_2d:[115,116],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:112,amr_level:66,amr_level_max:127,amr_levels_max:[31,104,126,127],amr_modul:[65,104,111,117],amrclaw:[4,5,6,12,14,15,18,19,21,22,23,27,34,37,40,41,42,48,51,52,53,54,61,62,65,66,67,94,100,101,104,105,119,120,122,123,125,128,132,133,136,137,141],amrclaw_advection_2d_squar:7,amrdata:[5,21,104,126,127,128],amrflag:104,amrlib:111,amrnez:104,an11:50,anaconda:[47,74,85,94,99],anal:16,analog:[125,126],analysi:16,andi:4,angl:[15,29,43,64],ani:[3,4,5,6,8,13,15,17,18,19,21,26,27,28,31,33,34,35,41,44,46,47,50,51,52,54,56,57,59,61,63,65,66,67,71,75,81,82,83,85,86,87,88,90,92,94,98,100,103,104,105,111,115,117,119,121,124,125,126,128,134,143,146],anim:[15,47,111,130],anisotrop:[6,21],anl:88,annot:[26,55],annual:23,anoth:[3,21,40,47,51,53,54,55,66,70,74,82,93,96,105,115,134,143],answer:23,anyth:[3,6,27,28,52,54,58,105,115],anywher:104,aoml:134,apach:13,apdq:[91,120],api:[43,115],app:[12,13,17,22,25,27,28,31,35,38,64,102,103,110,114,115,116,117],appar:[29,65],appeal:47,appear:[0,1,3,5,8,13,17,22,31,40,41,47,50,53,55,57,60,71,87,92,95,113,128,130,138],append:[5,19,40,47,71,80,92,104,112,113,119,120,127],appl:16,appli:[3,4,5,6,13,15,24,29,44,47,49,59,64,71,73,81,83,86,93,104,119,125,128,143],applic:[4,6,14,15,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,51,52,54,58,62,65,73,82,83,84,87,93,98,101,103,104,105,107,110,111,113,114,115,117,120,122,125,128,132,133,138,140,141,143,144],appreci:75,approach:[5,7,13,27,40,50,52,63,70,78,88,90,98,104,111,113,114,116,120,124,128,143,146],appropri:[4,5,6,13,15,23,27,41,44,45,47,51,52,54,55,59,61,62,63,65,77,80,81,82,86,88,89,90,91,92,105,117,120,121,123,125,134,143,146],approv:44,approxim:[6,15,44,47,64],april:23,apt:[13,99],arbitrari:[31,55,93,107,128],arc:121,arcgi:140,architectur:88,archiv:[12,20,34,47,51,105,130,136,140,142],arcminut:[64,138],arcsecond:138,area:[14,21,93,102,113,122],arg:[83,92],argument:[0,1,2,3,26,29,43,46,47,49,71,77,78,82,83,86,90,92,93,95,98,105,115,120,124,125,126,134,140,143],argv:[127,129],aris:[56,75],arithmet:59,aron:[4,16,75,85],arora:81,arora_ro:81,around:[6,29,31,55,86,102,105,126,127,134,140,143],arrai:[0,3,6,14,19,21,26,29,31,40,43,45,49,55,71,77,78,80,81,83,85,86,87,90,91,92,93,95,97,98,99,107,108,109,113,115,120,122,125,126,127,128,129,134,138,140,143],arrang:140,arriv:[21,31,32,41,113,121],arrival_tol:31,articl:[4,16,85,130],artifici:15,arxiv:48,asc:140,ascii:[40,49,61,77,80,87,92,113,119,125,127,129,138,144],ascii_output_format:62,ask:23,ask_us:140,aspect:[28,44,45,61,140],assembl:53,assert:[127,129],assess:[44,121],assign:[29,31,77,80,86,92],assist:[21,31],associ:[0,1,2,6,21,47,54,65,83,86,87,105],assum:[3,5,19,21,29,34,43,44,47,49,50,51,55,61,64,70,86,87,89,90,97,98,104,111,121,125,128,134,135,138,140,142,146],assumpt:47,astronom:121,atcf:[102,115,134,135],aterrel:4,atmospher:4,attach:[51,86,95],attempt:[5,8,11,19,33,34,57,86,92,98,105,107,134,140,141],attirbut:21,attr:[83,92],attribur:5,attribut:[5,7,21,29,40,64,70,72,73,77,80,83,86,88,90,92,93,104,107,112,116,119,124,125,126,128,134,140],attributeerror:71,aug:[16,116],august:[23,115,118],austin:4,author:[16,24,41,44,81,85,86,103],auto:[0,40,78],autom:[50,78,105],automat:[0,2,3,8,11,15,29,33,34,37,47,51,57,70,71,73,77,82,86,88,94,95,96,98,105,107,125,126,128,138],autonom:5,aux1:31,aux1d:143,aux:[5,6,14,19,21,26,31,40,49,78,85,86,87,90,92,93,95,96,107,108,113,115,120,122,125,126,127,128,129,143],aux_bc_low:90,aux_bc_upp:90,aux_l:[91,120],aux_out_field:40,aux_r:[91,120],aux_time_dep:93,aux_typ:[5,126,127],auxbc:[90,93,95],auxiliari:[21,78,80,86,91,93,95,120,125,127,129,143],auxillari:[86,92],auxl:120,auxr:120,auxtyp:127,avail:[0,4,5,10,15,21,22,23,28,39,40,42,44,47,52,53,54,57,61,70,72,73,77,80,85,86,87,89,91,93,96,97,98,99,100,104,114,120,121,125,127,128,130,134,135,138],available_format:134,available_model:134,averag:[4,6,14,16,41,44,45,49,61,95,108,120,122,138,140,143],avi:4,avoid:[31,47,55,57,61,83,87,104,107,108,112,113,119,125,128,146],awai:[27,121],awar:[44,88],awr11:16,axes1:[2,73],axes:[0,1,2,26,29,40,47,61,70,71,73,124,134,140],axescmd:[0,73],axesnam:[1,73],axessubplot:29,axi:[0,29,45,47,61,71,83],axxxx:86,azv:50,b0002:66,b4step1:[14,58,143],b4step2:[14,143],b4step3:14,b4stepn:143,back:[13,26,28,31,50,51,114],backend:47,background:[2,70,115,124],backward:[5,27,29,43,55,64,86,99,108,109,140],bad:[100,105],bai:[121,142],balanc:[6,16,67,114,132,133],bale:16,balelevmitross02:[4,16,125,146],ball:140,band1:140,band:[47,140],bar:[13,50,134],barrier:98,base:[5,6,13,19,20,21,27,29,41,43,47,48,49,50,55,58,59,61,64,67,78,80,81,83,85,86,91,92,93,95,97,98,104,106,111,114,116,121,125,126,127,128,129,134,140,143,146],base_subfault:29,baselin:47,basemap:134,bash:[37,47,52,54,61,65,88,100,123],bash_profil:[96,123],bashrc:[13,37,96,123],basi:[40,61],basic:[6,10,12,24,29,33,35,41,53,61,77,83,85,86,87,93,105,134,146],basin:102,bathymetri:[14,31,41,44,47,55,102,113,115,121,122,128,138,140],bc1:[58,98],bc1_inflow:58,bc2amr:[15,115],bc_arrai:93,bc_lower:[15,77,90,97,125,127,129],bc_upper:[15,77,90,97,125,127,129],bcn:[6,15,129,143],bcnamr:[6,15,115,125,127,143],beam:81,bear:[29,43],bearing_unit:43,becaus:[5,21,26,31,47,51,86,87,88,107,120,121,125],becom:[44,96,146],been:[0,1,4,5,8,9,13,15,17,19,20,21,23,24,26,27,31,32,33,34,38,41,44,47,48,49,50,51,57,59,61,64,67,71,73,75,78,80,86,87,92,95,96,97,98,100,102,104,106,107,108,110,113,114,115,116,117,119,120,125,126,128,138,140,143],befor:[1,3,4,6,27,29,31,33,34,36,37,40,49,50,51,52,54,55,57,58,61,65,73,77,80,86,88,93,95,100,104,105,107,108,118,120,121,125,126,128,138,140,141],before_step:93,beforefram:[1,26,115],begin:[43,55,83,87,97,134],begin_d:43,behav:40,behavior:[50,104,105,112],behaviour:77,being:[1,3,4,8,13,40,44,49,54,73,80,86,91,92,93,98,100,102,104,112,114,116,120,125,128,134,141,143],believ:[44,113],belki:68,belong:[71,83,88,92,95],below:[3,6,13,14,15,17,21,23,28,29,31,47,48,50,51,52,54,55,59,61,64,73,75,77,79,87,97,99,100,101,104,105,108,109,110,111,112,113,114,115,116,117,118,120,122,124,125,126,127,128,129,132,133,134,138,140,143],benchmark:44,beowulf:53,berger:[4,6,16],bergercalhounhelzellevequ:15,bergercolella89:[6,16],bergergeorgelevequemandli11:[4,16],bergerleveque98:[4,6,7,16],bergeroliger84:[6,16],bergerrigoutsis91:[6,16],berkelei:[4,56,75],best:[3,15,21,25,27,37,47,49,51,57,63,65,70,71,86,90,102,103,104,105,115,120,128,131,134,138,143],besttrack:134,beta:[43,81,93,129],beta_limit:81,better:[0,6,21,31,40,61,65,66,70,93,102,104,112,113,114,117,128],between:[3,4,5,6,13,15,22,24,27,29,30,43,47,51,52,55,61,64,65,67,70,80,83,87,93,95,96,98,100,104,112,113,120,121,125,126,127,128,129,130,134,137,138,140,142,143],bewar:[100,140],beyond:[6,29,115],bgr:55,bibliographi:4,bibtex:[4,51],big:86,big_earthquak:29,biggest:85,bilinear:[6,31,40,49,107,108,138],bin:88,binari:[5,37,51,53,56,62,75,86,87,89,112,119,125,127,140,144],binary32:86,binary64:86,bind:[27,47,70,78,88],bisect:[126,127],bit:[15,21,29,51,86,88,96],bitbucket:88,black:[3,40],blank:[3,51,55,101,106,107,108,109,110,134],blast:114,blob:112,block:[7,29,55,64,66,67,77,86,95,98,105,143],blossei:4,blue:[3,11,40,55,71,134,140],bndlist:115,boe:4,boisest:47,bom:134,bomb:[57,65],book:[4,12,16,24,74,92,99],bool:[0,1,2,3,43,55,80,86,92,93,95,98,128,134,140],border:[61,143],bore:44,both:[3,15,27,29,33,34,40,44,49,50,58,61,64,66,78,86,87,88,93,94,104,105,111,112,115,120,125,127,129,132,138,143],bottom:[12,13,14,29,33,34,41,44,50,59,64,77,90,91,113,114,122,132,133],boulder:23,bound:[78,81,88,125,140],boundari:[5,7,19,24,47,55,58,64,65,78,83,91,93,97,102,108,111,115,125,127,129],boussinesq:44,bowl:117,bowl_radial_fgmax:31,box2kml:55,box:[5,29,47,55,140],branch:[17,24,28,37,46,48,50,51,53,54,105,114,115,116,117,118],brief:[4,51,128],briefli:146,bring:[13,47,50,61],brisa:4,brisadavi:[4,116],broad:140,broken:[18,19,27,62,64,105],brought:27,brown:[75,140],brows:[11,23,38,47,61,130,143],browser:[13,27,28,33,34,47,50,130],bsd:[4,56,75,115],buffer:[29,40,104,112,113,126,127,140],buffer_length:140,buffer_s:[29,64],bug:[4,8,21,23,31,37,47,59,65,71,75,110,111,112,113,115],build:[4,16,27,28,50,51,61,78,88,98,114],buildsystem:88,built:[27,59,67,76,85,88,90,92,104,105,132,133],bulk:[18,77,97,120,127,143],bull:[16,29],bullet:51,buoi:41,burger:[85,120,143],busi:[56,75],butcher:93,button:[12,13,27,47,55,114],c210:[16,85],c231:[16,85],c_center:83,c_centers_with_ghost:83,c_node:83,c_nodes_with_ghost:83,cach:[21,43,51,73,75],cache_dir:43,cada:81,cada_torrilhon_limit:81,cada_torrilhon_limiter_nonlinear:81,cake:68,cal:[120,143,146],calcul:[3,5,6,26,29,41,43,61,64,71,83,93,108,113,140],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:16,calhoun:[4,16,47],calhounhelzellevequ:15,call:[1,6,9,19,21,26,29,37,40,46,47,58,61,64,66,71,73,77,78,80,81,86,87,90,92,93,95,97,98,104,105,107,111,112,114,115,120,123,125,127,128,129,134,140,143],call_before_step_each_stag:93,call_setplot:71,callabl:98,cambridg:16,camera:47,can:[0,2,3,4,5,6,7,8,9,11,12,13,15,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,64,65,66,67,69,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,102,104,105,107,108,111,112,113,114,115,118,119,120,121,123,124,125,126,127,128,129,130,134,136,138,140,141,142,143,144,146],cannot:[48,54,86,134],canopi:94,capa:92,capa_index:[125,127,129],capab:140,capabili:115,capabilit:113,capabilti:115,capabl:[7,12,21,31,32,44,48,67,78,107,112,113,115,116,117,140,142],capac:[14,122,125,126,127,129],captur:[44,138],car_nam:134,care:[31,41,88],carefulli:[19,21,59],cartesian:[31,42,55,78,128],cartopi:134,cascad:4,cast:140,cat_nam:134,catalog:142,categor:134,categori:134,category_color:134,caus:[21,44,47,50,56,57,73,75,96,105,112,113,114,116,124,126,138,140],caut:81,caution:44,cautionari:[24,41,58,128],cautiou:44,caxi:61,cb_file:55,cb_filenam:55,cb_kwarg:140,cb_name:55,cb_xfrac:55,cb_yfrac:55,cbar:140,cdot:[59,90],cell:[3,4,5,7,8,14,15,19,21,26,31,40,41,47,49,55,61,65,66,67,77,83,86,88,91,93,95,97,104,107,108,112,113,114,115,116,117,120,121,122,125,126,127,128,129,135,137,138,143,146],celledg:3,celledges_show:[3,21],cellgridintegr:107,cellgridintegrate2:107,cellsiz:[49,111,138],center:[4,5,26,29,31,40,47,49,55,64,77,83,90,91,97,104,115,126,127,128,134,135,138,143],centerlin:29,centers_with_ghost:83,central:[125,134,135],central_pressur:134,centroid:[29,64],certain:[31,41,53,87,104,112,125],certainli:[88,99],certik:[4,75],cf2py:78,cfl:[6,83,87,93,97,107,112,125,127,128,129],cfl_desir:[93,125,127,129],cfl_max:[93,125,127,129],cfl_superbe:81,cfl_superbee_theta:81,challeng:114,chanc:75,chang:[1,6,8,13,14,15,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,52,54,55,57,58,59,61,62,65,66,67,70,73,77,78,84,86,87,95,98,102,103,104,105,118,120,122,125,126,127,128,129,132,133,138,141,143],changelog:[17,21,106,107,108,109,110,111,112,113,114,115,116,117,118],changes_to_mast:51,chapter:[15,120,125,143],char_decomp:93,charact:43,characterist:93,charg:13,chava:128,cheaper:13,check:[6,15,19,31,33,34,36,37,46,47,48,50,51,52,54,57,61,71,77,78,80,85,88,92,93,95,97,98,100,104,108,117,126,127,134,140,141,142,143],check_3rd_ord_cond:93,check_diff:[98,105],check_lmm_cond:93,check_valid:80,check_valu:[98,105],checkout:[27,48,50,51],checkpoint:[24,40,112,113,115,117,125,127,129],checkpt_interv:[125,127],checkpt_styl:[112,119,125,127],checkpt_tim:[125,127],checksum:86,chen:[29,142],chile2010:[47,103,104,107,110,116,138],chile2010_adjoint:5,chile2010_fgmax:31,chile2010a:[28,103],chile2010b:103,chile:[41,55,64],chile_2010:47,chile_dtopo:64,chk00006:[127,129],chk00100:112,chk:112,chkaaaaa:112,chkbbbbb:112,chknnnnn:[119,125,127,129],choic:[15,41,70,93,125,127,128,129,143],choos:[0,7,55,64,90,125,128],chose:59,chosen:[3,28,47,49,97,104,121,126],chri:4,chunk:86,chunksiz:86,circl:[3,43,71],circular:16,cise:16,citat:[4,51],cite:[24,53,118],cjvogl:4,clamshel:108,clarifi:21,clash:61,classic4:129,classic:[4,6,12,14,15,18,19,21,22,23,27,37,38,42,51,52,53,54,58,63,65,66,67,75,77,80,82,83,84,85,86,90,100,101,105,119,120,122,123,126,128,133,141,143],classic_1d:58,claw1:[58,98],claw1ez:58,claw:[5,6,8,11,12,13,14,15,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,48,50,51,52,53,54,55,57,58,61,63,64,65,72,77,80,82,85,86,87,88,94,96,100,101,102,103,104,105,107,108,110,111,114,115,117,120,122,127,128,129,131,132,133,136,137,138,140,141,143,144],claw_1dnoncon:146,claw_git_diff:[27,46,51],claw_git_statu:[27,46,51],claw_lib:62,claw_outdir:[57,71],claw_packag:93,claw_pkg:[125,126,127,128,129],claw_topo_download:140,claw_vers:54,clawdata2pyclaw:78,clawdata:[5,107,111,119,125,126,127,128,129],clawdev2013:50,clawgraph:61,clawicon:50,clawlogo:50,clawpack:[1,4,5,6,7,11,15,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,54,55,56,58,61,63,64,65,69,70,71,72,73,74,75,76,77,79,80,82,83,84,85,86,87,88,89,90,92,95,96,97,98,99,100,103,105,106,107,108,109,110,111,112,113,119,120,123,125,126,127,130,131,134,136,138,140,141,143,144,146],clawpack_gpu:48,clawpack_src:[52,54,100],clawplotax:[1,2,3,26,71,115,124],clawplotdata:[2,3,26,40,47,71,73,80,124],clawplotfigur:[0,1,47,71,124],clawplotitem:[0,1,7,21,26,70,72,112,115,124],clawrundata:[5,40,55,116,119,125,126,127,129],clawsolut:1,clawsolv:[93,120],clawsolver1d:[77,80,83,93,97,120],clawsolver2d:[83,93],clawutil:[5,11,18,19,22,27,36,37,46,51,53,57,100,105,123,125,126,127,129,140,141],clean:[21,51,98,111,115],cleaner:[27,113],cleanup:114,clear:[1,2,6,61,73],clearer:117,clearfigur:1,clearfram:[1,73],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,12,13,17,27,47,105,114,118],clifford:23,clint:16,clobber:[86,112],clockwis:[31,43,64,140],clone:[12,17,22,23,38,48,50,51,52,54,74,88,94,103,141],close:[13,47,50,55,61,86,104,126,134],close_fig:55,closer:[64,127],closest:134,cloud:13,cluster:[6,16,53,104,126,127],clustering_cutoff:[104,126,127],cma:134,cmap:[47,55,71,140],cmap_slip:29,cmax:[47,55],cmax_dz:29,cmax_slip:29,cmdline:100,cmin:[47,55],cmin_slip:29,cname:50,coars:[3,31,47,104,113,125,138,143],coarsen:[49,104,115,116,126,138,140],coarsen_method:49,coarser:[3,15,49,113,125,126,143],coarsest:[6,47,66,107,119,125],coast:[104,140],coastal:[44,121,128,138],coastlin:[31,47,128,142],code:[4,5,6,7,8,15,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,49,50,52,53,56,57,58,59,62,63,64,65,66,67,69,71,73,75,77,78,83,85,86,87,88,90,93,94,97,100,103,106,107,108,111,112,113,114,115,116,117,119,120,125,127,128,129,130,134,136,137,138],code_of_conduct:115,coeffici:[5,59,90,93,95,96,97,120,128],colella:[6,16],collabor:[47,130],collect:[12,24,25,27,29,31,64,70,77,93,130],collela:114,color:[3,29,47,55,61,70,124,134,140],colorado:23,colorbar:[3,55,115,140],colorbar_kwarg:115,colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,61,70,72,112,140],column:[10,29,31,40,44,87,111,140],column_list:29,column_map:29,com:[12,13,22,23,25,27,28,48,50,51,52,53,54,86,88,90,94,110,112,113,114,118],combin:[19,50,55,112,142],combinatori:105,come:[3,27,50,71,73,82,88,93,111,138,143],comfort:[54,90],comm_world:98,command:[0,1,2,3,11,13,27,36,46,47,48,51,52,53,54,57,63,70,71,74,77,78,80,85,88,89,93,97,98,99,100,105,120,123,124,125,126,138,140],commenc:119,comment:[5,11,23,45,51,114,119],commit:[24,29,46,50,51,105],common:[3,22,27,33,34,36,37,57,58,67,70,77,91,93,95,96,113,115,141,143],common_sourc:58,commonli:[3,61,71,73],commun:[24,47,75,95,98,100,104,115],comot:4,compact:138,compar:[5,21,34,40,44,47,51,71,87,104,105,121,126,128,136,142,146],compare_gaug:111,comparison:48,compat:[27,29,43,47,55,64,70,86,88,96,99,108,109,113,114,140],compens:140,compil:[13,24,33,34,36,42,52,54,58,65,67,73,74,78,85,86,90,94,98,107,120,123],compile_librari:98,complet:[19,21,27,43,57,73,77,78,88,98,99,105],complevel:86,complex:[12,83],compliant:37,complic:[15,71,78,124],compon:[3,15,19,21,24,31,34,40,52,54,61,66,70,90,92,94,95,104,111,125,126,127,138,143],compos:[29,77],comprehens:105,compress:[29,86,140],compris:[21,85,140],comput:[3,4,5,6,13,15,16,26,28,29,31,40,43,47,49,52,54,55,57,62,64,70,71,73,78,80,83,85,86,87,88,93,97,99,100,102,104,107,108,112,113,117,120,125,127,128,129,135,138,143,146],computation:[78,93],compute_f:[80,87],compute_gauge_valu:87,compute_p:[77,80],concentr:102,concern:[21,41],conclus:[4,47],conda:[47,52,74,85],condit:[5,7,19,24,56,58,67,75,76,77,78,80,87,93,101,107,108,111,115,121,125,127,128,129],conduct:115,conf:[50,51],confer:23,config:88,config_fc:141,configur:[71,77,88,140],confirm:44,conflict:[6,27,54,57,61,96,100],conform:[21,27,92,115,138],confus:[3,49,54,100,120],conjunct:[86,104],conlict:57,connect:[31,50,55],consequenti:[56,75],conserv:[4,5,6,16,87,93,95,116,143,146],consid:[6,44,53,54,78,100,123,130,140],consider:[44,77],consist:[6,31,43,47,51,55,88,113,120,128,138,143],consol:[13,87,128],consolid:111,constant:[29,31,44,55,59,88,120,128,140,143],constant_storm_modul:111,constrain:104,constraint:[40,126,146],construc:55,construct:[21,29,49,77,83,98,134,135,138],construct_function_handl:98,constructor:95,consult:96,contact:[82,85,94],contain:[1,3,5,7,12,13,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,50,51,53,55,57,58,61,62,66,67,71,73,74,77,78,80,81,83,85,86,88,90,91,92,93,95,97,98,100,104,105,107,108,115,116,118,120,124,125,128,130,134,138,140,141,143],containing_rect:29,contains:28,containt:119,contamin:125,contan:47,content:[47,51,78,143,144],context:[26,47,143],contigu:[66,86,95],contingu:21,continu:[13,21,27,29,45,75,120,125,146],contour:[3,29,40,47,49,61,99,124,140],contour_color:3,contour_kwarg:[3,140],contour_level:[3,140],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,70],contract:[56,75],contrast:49,contribut:[4,23,24,53,75,78,85,90,93,102,105],contributor:[4,23,56,85],control:[6,7,22,24,37,40,50,52,54,61,73,76,81,83,85,86,87,88,90,104,113,128],conveni:[1,26,33,34,40,47,73,80,82,85,87,89,97,143,146],convens:138,convent:[3,21,29,42,49,64,91,138],converg:70,convers:[18,24,78,86,104,138,142],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,52,54,55,57,64,78,90,98,115,125,126,134,138,142],convert_fort_double_to_float:98,convert_readm:11,convert_to_standard_unit:29,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,66,70,77,83,87,88,97,104,128,140],coordinate_specif:[29,64],coordinate_system:[14,122,128],coorind:140,copi:[6,14,15,33,34,40,47,50,51,54,61,77,80,90,95,101,102,103,104,108,112,115,122,130,132,133,138,143],copyq1:58,copyright:[56,75],core:[4,67,105,115],corioli:[44,128,132,133],coriolis_forc:[44,128],corner:[3,29,31,49,64,66,83,125,127,129,138,140],correct:[19,27,37,51,58,59,61,71,77,83,88,92,98,107,108,112,125,127,128,129],correctli:[27,31,78,84,111,128],correspond:[3,6,22,24,26,29,40,43,44,49,50,55,61,64,71,77,81,83,86,87,90,92,95,104,105,120,121,125,126,127,128,129,134,138,142,143],cos:[43,45,77,90],cosin:77,cost:[13,93],could:[5,13,26,31,33,34,40,49,54,64,65,71,73,77,83,87,95,96,99,100,111,126,127,128,129,140,143],council:4,count:77,count_from_zero:77,counter:[98,140],counterclockwis:64,coupl:[113,146],courant:[4,6,104,114,125,126,127,129],cours:[13,25,31,40,42,64,88,89,97,102,128,138],cover:[6,26,27,29,31,47,55,64,104,108,113,127,128,138],coverag:[85,105],covert:11,cparam:[77,95],cpp:48,cpu:[13,48,112,115,117,137],crash:[112,125],creat:[0,1,2,3,5,6,7,18,23,24,27,29,33,34,36,38,40,41,42,46,48,50,53,54,55,57,64,66,70,71,73,78,79,82,83,85,86,89,92,95,96,97,98,104,105,107,111,112,113,115,116,117,124,125,126,127,130,131,134,140,142,143,144],create_dtopo_xi:[29,64],create_dtopographi:[29,64],create_topo_func:140,creation:[71,85,107],criteria:[6,7,21,24,95],criterion:[31,104,127],critic:[47,87,120],crop:[49,140],cross:27,crucial:[47,138],csdm:23,cse:23,csh:88,csv:[29,64,115],csvfault:[29,64],ctrl:[28,71],cube:61,cumul:115,current:[3,5,13,19,21,23,26,27,28,29,31,37,40,41,44,49,50,51,52,53,54,55,61,62,66,71,73,83,86,87,88,93,95,98,100,104,105,112,114,115,119,121,124,125,127,128,129,134,135,138,140,142],current_data:[0,3,24,40,70,71],curv:[3,40,70],custom:[0,13,15,19,21,24,58,61,67,70,78,84,90],custom_bc:90,customari:87,cut:126,cutoff:[6,127],cvf:51,cvs:47,cxx:88,cyber:16,cygwin:80,cython:88,dai:[6,13,47,128],dalcin:75,dam:47,damag:[6,56,75],damian:53,damiansra:90,darker:47,darryl:16,dart:41,dash:[3,88],daspect:61,dat:[29,134],data:[0,1,3,5,24,26,29,31,33,34,36,38,40,41,42,43,49,50,55,56,57,61,70,71,72,73,75,77,80,83,86,87,89,91,92,93,95,98,101,102,103,104,107,109,110,112,113,115,116,117,120,121,127,129,134,137,139,144],data_break:140,data_storm:134,data_typ:98,databas:[13,29,64,98,102,115,138],datadir:112,dataset:[138,140,142],date:[5,27,36,43,47,50,51,57,71,134,141],date_tim:43,datetiem:134,datetim:[43,134],datum:[43,44,121,128,142],dave:29,davi:[4,16],david:[4,16,75,85,93],davis2018:[5,16],davisleveque2016:[5,16],davisleveque2018:[5,16],dawson:16,daylight:55,dcp:55,deal:[29,44,70,87,88,95,134,140],dealt:31,debian:99,debug:[7,37,57,66,70,87,95,100,105,125,127],debugg:71,decid:[77,93],decim:[43,55],decimc:134,decis:47,declar:[19,21,95,143],decompos:[66,120,146],decomposit:125,decor:98,decoupl:50,decreas:[40,138],deduc:138,deep:[5,128],deep_depth:128,deeper:[128,138],deepli:97,def:[0,1,3,40,47,71,77,83,87,90,93,127,129,134],default_tfluct:93,defenc:4,defin:[0,1,3,5,6,21,26,29,31,37,47,55,57,61,64,71,73,77,80,83,89,90,92,93,95,97,98,104,107,115,120,127,129,134,138,140,141,143,146],definit:[29,61,77,104,110],deform:[16,29,64,142],deg2dm:55,degre:[29,43,47,55,64],delet:[19,27,52,54],delimit:29,delin:128,delta:[81,83,90,93,120,140,143,146],delta_i:140,delta_limit:140,delta_x:140,dem:[49,55,115,138,140,142],demo:88,demonstr:[12,82,88],denot:[6,21,40,49,120,140],dens:135,densiti:[80,87,95,97,126,127,143],depart:[4,134],depdend:81,depend:[3,13,15,27,28,29,31,33,34,36,37,42,44,47,52,53,57,59,61,64,71,76,85,86,91,92,93,98,100,104,115,128,140,141,143,146],deprec:[7,29,32,111,115,128,138,140],depth:[4,5,15,16,21,29,31,40,41,44,59,64,70,72,121,128,138],deriv:[56,64,75,80,84,85,95,105],describ:[3,4,5,6,7,13,15,18,25,27,29,30,31,33,34,40,42,43,44,47,48,50,51,55,57,58,61,64,66,67,70,71,72,83,86,92,98,102,104,105,113,116,117,120,121,124,125,126,128,134,135,138,140,142,143,146],descript:[3,4,9,21,29,55,61,64,70,86,98,102,104,120,128,134,138,146],design:[4,26,27,47,75,77,97,121,142],desir:[0,1,2,3,6,7,15,21,24,25,29,31,38,40,51,52,54,55,64,69,70,71,73,77,78,80,87,92,93,101,113,115,123,125,127,129,134,138,140,141],desktop:88,destin:47,detail:[4,5,7,10,15,21,25,27,28,29,31,33,34,37,41,42,44,47,50,52,53,54,56,57,61,64,71,75,80,81,82,83,86,87,88,89,90,91,93,103,104,105,108,113,115,120,124,125,128,130,134,138,141,142,143,146],detect:[47,57,86,94,98,141],deterimin:[128,140],determin:[3,5,6,29,31,40,44,46,47,50,55,64,71,81,83,86,95,100,104,108,112,113,119,121,124,125,126,128,140,143],determine_topo_typ:140,dev:[17,23,27,50,88,115,116,118],develop:[4,6,7,13,17,21,22,28,44,48,50,53,54,56,61,70,74,75,78,85,90,93,94,100,105,115,116,120,121,127],dict:[29,80,86,91,92,95,134,140],dictionari:[0,1,2,3,29,40,71,77,80,86,91,92,95,97,100,134,138,140],dicuss:29,did:[115,138],didn:110,died:107,diff:[17,46,51,107,108,109,110,111,112,113,114,115,116,117],differ:[1,3,6,7,12,15,21,27,29,30,31,33,34,40,42,44,46,49,50,52,55,57,59,61,64,65,70,73,77,78,80,82,83,86,91,93,98,99,100,104,105,111,112,113,114,115,120,121,125,126,127,128,138,140,141,142,143,146],differenti:[16,29],difficult:40,difficulti:[94,96,100],diffus:90,digit:[49,55,71,113,114,115,140],dim:[90,91,93],dimens:[5,6,7,15,19,21,40,43,49,55,61,77,78,80,86,88,90,91,92,95,97,104,115,120,125,126,127,129,140,143],dimension:[3,7,8,16,21,24,29,31,33,34,40,44,48,61,83,90,111,112,114,117,127,128,129,140,143],dimensional_split:[83,111,125,127,129],dip:[29,64],dir:[51,88,144],direct:[6,8,15,21,29,31,33,34,40,43,47,51,55,56,57,61,64,65,71,75,80,90,97,104,114,120,125,126,128,140],directli:[8,18,22,44,52,61,64,71,73,77,78,81,85,95,98,100,115,140,144],directori:[1,3,5,6,11,12,13,14,15,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,50,51,52,53,55,58,61,62,65,69,70,73,80,82,83,85,86,87,90,97,100,101,102,104,105,107,112,113,114,115,117,119,120,122,123,124,125,126,130,132,133,136,137,138,141,143,144],directorti:102,disabl:[45,94,128],disable_petsc:98,discard:93,disclaim:[56,75],discontinu:[4,93,146],discov:59,discoveri:105,discret:93,discrib:4,discuss:[5,23,27,29,44,49,52,64,86,97,99,100,104,113,115,120,128,146],disk:[13,40,77,86,87,105,113],dispers:44,displac:[29,41,44,64,128,142],displai:[1,13,33,34,36,40,47,55,71,87,105,128],display_format:40,display_landfall_tim:128,dist:51,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,64,128,138,140],distant:[102,104],distinct:[40,113],distribut:[4,13,28,29,50,56,64,67,74,75,93,99],disturb:47,distutil:78,dive:99,divid:[104,125],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,138],doc:[17,22,23,27,29,47,50,51,81,98,100,114,115,116,117,131],docker:[17,24,51,52,114,115,116,117,145],docker_imag:51,dockerfile_v5:28,dockerhub:[28,51],dockeril:28,docstr:[78,82,105],doctest:83,document:[0,1,2,3,6,7,17,20,21,22,23,24,27,28,31,41,44,49,54,56,64,70,71,72,73,75,81,83,86,87,88,89,93,95,98,100,108,118,124,127,144,145],doe:[4,5,11,15,19,26,27,31,36,44,47,49,52,61,67,71,74,83,85,92,95,98,104,105,108,113,117,119,120,134,140,141,143],doesn:[27,54,58,95],doflag:104,doi:[4,16,48,51,53,118],doing:[6,11,18,24,27,31,40,44,46,48,50,54,58,71,73,83,104,105,112,113,114,115],domain:[5,6,15,16,44,47,50,55,64,66,76,77,78,80,88,90,92,95,102,104,126,127,129,138],don:[13,26,27,50,51,71,87,88,94,105,127,141],done:[1,6,7,8,11,13,15,18,19,27,33,34,40,42,47,49,50,54,55,57,61,64,70,71,73,77,81,82,98,104,108,112,113,117,119,120,124,126,128,137,140,141,142],donna:[4,16],donnabois:4,donor:[125,127,129],dontflag:104,dot:[36,40,47,53,54,55,57,141],doubl:[61,78,83,98,120,126],down:[13,29,87,112,134,138,140],download:[12,13,27,28,29,34,35,41,47,51,52,53,54,62,82,88,94,115,116,118,136,140,141,142],downward:64,doxygen:[6,7,24,114],dpc:55,dpi:[47,55],dpng:61,dprint:[126,127],dq_src:[90,93],dqdt:93,draft:51,drag:128,drag_law:128,draw:3,drawback:100,drawcontourlin:61,drawn:[29,47,124],driver:[19,58],drop:[13,125],dry:[15,16,31,41],ds824:134,dst:55,dt_check:31,dt_initi:[107,125,127,128,129],dt_max:[125,127,129],dt_max_dtopo:[107,128],dt_variabl:[125,127,129],dtdtopo:110,dtdx1d:109,dtdx:81,dtdy1d:109,dtfe:93,dtopo2kml:55,dtopo:[24,29,41,44,49,55,64,100,107,109,110,128,138,140,142],dtopo_data:[107,128],dtopo_file_nam:55,dtopo_modul:107,dtopo_typ:[29,55,64],dtopofil:[55,64,128],dtopographi:[29,64],dtopotool:[41,64,109,110,112,115,116,138,139],dtopotools_exampl:[29,41,64,103],dtopotyp:[128,138],due:[16,29,43,64,105,114,115,141],dummi:[78,93,143],dump:[66,125],dumpgaug:111,duplic:[71,110,119],durat:[29,121],dure:[5,21,31,40,55,64,67,107,121,127,128,129,138],dx0xgftn3_x04rdx0_w5nq7w0000gn:[14,101,122,132,133],dxc:78,dyc:78,dylib:47,dynam:[6,19,29,44,64,67],dynamic_slip:[29,116],dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,16],e_format_bst:134,each:[1,2,3,5,6,7,15,17,21,29,31,32,40,43,47,49,50,51,55,58,61,64,65,66,69,70,71,73,77,78,81,83,86,87,88,90,91,92,93,95,97,104,105,107,108,112,113,115,116,119,120,124,125,126,127,128,129,134,137,138,140,142,146],each_fram:40,each_gaug:40,ear:4,earli:[6,19],earlier:[5,19,21,29,31,49,64,77,90,107,114,138,140],earth:[24,41,48,55,64,111,113,128],earth_radiu:128,earthquak:[24,29,41,44,103,128,135,138],eas:55,easi:[4,6,11,28,54,61,74,78,87,88,89,130,143],easier:[54,70,113,115,143],easiest:[18,27,37,67,71,73,99,104,143],easili:[3,13,27,31,47,61,71,78,83,94,98,99,105,130,134],east:[13,138],easy_instal:88,ec2:24,echo:100,ecosystem:[4,16],edebug:[126,127],edg:[3,6,14,15,26,29,31,55,64,83,91,120,122,126,127,129,143],edit:[47,51,52,54,73],editabl:27,editor:66,edu:[29,47,62,86,117],effect:[40,47,59,61,83,87,99,104,105,121,128,140],effici:[44,48,75,85,86,87,95,104],effort:86,egg:[52,54],eigenvalu:5,eigenvector:[5,120,146],either:[12,15,19,29,41,42,47,57,61,64,71,73,77,83,86,87,93,98,100,104,105,111,112,113,115,120,128,134,138,140,143,146],elast:[13,64],element:[0,3,21,55,91,93,95,125,126,127,128],elementwis:87,elev:[21,31,42,44,47,49,55,70,101,104,128,138,140,142],elif:[127,129],elimin:[8,21,78,100,115,128],ell:120,els:[26,27,52,54,95,115,129],elsewher:[5,23],emmanuel:128,emmett:[16,75,85],empir:[44,59],empti:[40,92,95,98,100,125,134,140],empyclaw:90,enabl:[83,87,94,98,113],encapsul:44,encount:[36,47,71,94,96],encourag:61,end:[13,28,29,31,40,43,47,51,55,80,87,97,101,102,104,106,107,108,109,110,112,113,115,119,127,129,134,137],end_dat:43,enddo:143,endian:86,endors:[56,75],energi:87,enforc:128,eng:134,engin:[16,47],enhanc:[59,75,115],enlarg:113,enough:[5,135,137,138],ensembl:134,ensur:[33,34,61,102],enter:[61,86,88,94],enthought:[94,96,99],entir:[5,6,44,47,55,64,65,67,77,87,92,102,104,108,140],entireti:80,entri:[47,77,87,98,134],enumer:[83,93],environ:[24,27,33,34,36,46,47,50,52,53,54,61,63,65,67,89,96,98,100,113,140,141],envis:15,epd:96,eprint:[126,127],epsg:47,epsilon:81,eqn:146,eqnarrai:97,equal:[15,29,31,47,64,88,90,104,119,125,127,129,138,140],equat:[4,5,15,16,33,34,41,44,59,71,76,77,78,80,85,86,87,90,93,94,95,108,111,113,115,116,120,125,127,128,129,138,143,146],equiv:146,equival:[6,40,48,49,55,117,138],err:127,errest:104,erron:[29,64],error:[5,15,19,33,34,36,47,54,61,65,71,80,85,86,87,98,104,105,116,126,127,134,141],escap:[104,127],escienc:13,especi:[27,47,78,90],esri:[49,138],essenti:[5,49,61,93,128,138],est:127,establis:115,establish:4,estim:[5,59,104,126,128],estimat:[5,127],eta:[29,31,40,104,111],eta_tild:31,etc:[0,2,15,18,19,23,26,27,31,44,47,50,53,55,58,66,70,78,120,124,125,128,134,143],etopo1:[115,121,138,140,142],etopo_sample_2min:140,etopotool:[115,138],euler:[85,93,109,111,114,116,120,143],euler_2d:[33,35,85,90],evalu:[16,26,29,59,77,83,93,140,143],even:[44,47,54,56,64,75,98,104,126,127,138,141,143],evenli:[47,87],event:[41,44,55,56,64,75,121,125],event_tim:55,eventu:[13,41],ever:[124,128],everi:[6,27,31,40,57,58,77,80,82,86,87,95,104,105,113,114,120,123,125,127,129,134,138,140,143],everyth:[28,31,51,52,53,54,65,88,97,98,105,115],everywher:[43,59,95],evolv:[21,77,80,93],evolve_to_tim:[77,93],exactli:[27,46,48,95,125],exam:71,examin:[15,33,34,40,100],exampl:[0,1,2,3,4,5,6,7,8,9,13,15,19,21,23,26,27,28,29,31,36,37,41,43,49,50,51,52,53,55,57,58,59,62,64,65,66,70,71,73,75,76,77,78,80,83,84,86,87,90,91,92,93,94,97,98,100,102,103,104,105,107,109,110,111,112,113,114,115,116,117,119,120,121,123,124,125,126,127,128,129,130,134,136,137,138,140,141,142,143],exce:[31,47,104,126],exceed:[104,115],except:[21,26,29,50,86,91,98,125,128,134,138],excerpt:88,exclud:[31,58],exclude_modul:58,exclude_sourc:58,exe:[33,34,80],exec:[0,1,3,71],execut:[0,1,3,15,18,26,33,34,40,55,61,71,73,80,82,88,100,105,120,123,141],exemplari:[56,75],exercis:[28,41,103,105],exist:[1,20,29,30,32,33,34,47,54,57,61,71,83,87,90,92,95,98,99,108,114,115,134,140,142],exit:[28,71,88,94],exp:[77,87,97],expand:[25,47,55],expect:[97,98,105,115,116,127,128,129,134],expens:[93,104,108,113],experi:[23,44,93],experiment:[5,75],expert:44,explain:[13,44,125,130],explan:27,explicit:[98,126],explicitli:[58,61,125,141,146],explor:[4,55,71,73],expon:59,expos:13,express:[4,29,56,75,94],extend:[8,15,21,55,61,83,115,128,138,140,146],extens:[4,16,21,23,27,29,44,47,50,54,58,61,78,85,86,98,113,114,125,136,140,146],extent:[44,54,55,59,61,77,83,95,107,128,138,140],extra:[3,47],extra_fil:50,extract:[47,51,86,134,140,142],extran:111,extrap:[15,90,97,125,127],extrapol:[5,15,21,31,90,97,115,125,126,127,129],extrem:[47,96],extropl:15,eye:[134,135],eye_loc:134,f2py:[52,54,78,90,98,120],f2py_flag:98,f2s:55,f49620:4,f77:[37,141],f90:[5,9,14,19,30,31,40,48,57,58,65,74,90,101,104,107,111,113,115,116,117,120,122,132,133,138,141,143],f95:98,f_file_nam:[80,87],f_path:80,facecolor:[2,71,124],facilit:[40,105,111,113,130,134],fact:[47,86,95,104],factor:[6,47,126,128,137,140],faculti:29,fade:71,fail:[14,27,86,88,98,101,105,111,122,132,133,134],failur:[105,116],fairli:[15,44,113],fall:[121,128],fals:[0,1,2,3,5,29,44,45,46,47,50,55,80,83,86,92,93,95,98,112,113,119,125,126,127,128,129,134,140],famili:[83,93,127,129],familiar:74,faq:[13,24,70,99],far:[15,38,70,116],fashion:119,faster:[117,140],fastest:[86,94],fault:[16,24,29,41,103,115,138,142],fault_plan:29,favor:[111,115,140],favorit:70,fbound:37,fc02:4,fcompil:141,fdefault:98,featur:[17,21,24,27,31,47,61,71,78,104,105,110,112,113,115,118,128,134,138],februari:[23,114],feet:[121,142],fellowship:4,fetch:[13,43],fetch_noaa_tide_data:43,fetch_topo_url:140,few:[6,12,13,21,25,28,34,44,50,61,78,93,97,104,105,121,136,138,143],fewer:[104,140],ff0000:[3,55],ff9999:124,ffff00:71,fflag:[27,36,57,62,65,78,98,138],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:55,fgmax:[41,55,65,108,110,113,114,128],fgmax_data:[31,128],fgmax_fil:[31,128],fgmax_grid:55,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,110],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,field:[40,55,90,92,95,101,106,107,108,109,110,113,115,134,135],fig:55,fig_kwarg:[29,140],fignam:[1,73],figno:[1,2,40,47,71,73,124],figsiz:[2,71,124],figur:[0,1,2,4,13,29,33,34,38,40,49,55,61,70,73,92,100,120,124,140],file1info:128,file2info:128,file:[1,5,6,8,9,11,14,17,18,19,21,22,24,26,27,29,33,34,36,37,38,40,41,42,44,46,48,52,54,55,57,62,64,66,67,70,72,75,78,80,82,83,86,87,88,89,90,92,95,96,98,100,101,102,104,107,108,110,111,112,113,114,115,116,117,118,121,122,123,124,125,126,127,129,131,132,133,134,135,137,140,141,142,144],file_format:[40,86,92,134],file_prefix:[86,92],file_prefix_p:80,fileio:66,filenam:[30,47,111,140],fill:[0,3,4,6,15,47,83,86,95,102,113,125,134,137,140,143],fill_between:3,fill_mwr:134,fill_rad_w_other_sourc:134,fill_topo:140,fill_valu:[86,140],fill_var2:3,fill_wher:3,filpatch:[9,113,117],filter:[86,140],filter_region:140,find:[1,3,4,6,23,26,27,28,29,43,47,52,54,57,62,64,67,70,75,82,90,95,96,98,99,100,102,115,134,141],fine:[3,31,50,63,67,90,104,113,125,128,138,143],finer:[3,7,47,104,107,108,125,126],finest:[3,40,115,137,140],finish:[13,71,77],finit:[4,16,31,38,49,55,61,64,93,137,138,143],finlin:98,first:[1,3,5,13,18,19,21,27,29,31,33,34,47,50,51,52,53,54,55,57,61,71,73,77,78,83,86,87,88,90,93,94,95,97,98,100,102,104,107,111,116,120,125,127,128,134,136,138,140,146],first_test:33,fit:[56,75],five:31,fix:[6,18,19,21,24,41,51,55,57,75,86,107,108,109,110,111,112,113,114,116,117,125,127,129,140],fixedgrid:128,flag2refin:[5,21,126,127],flag2refine_tol:[5,104,126,127],flag:[7,13,21,24,27,28,36,37,48,52,54,62,65,78,96,98,100,111,116,127,128],flag_richardson:[5,104,112,126,127],flag_richardson_tol:[5,104,126,127],flask_loc:50,flask_web:50,flat:64,flavor:[12,20,53,86],fletcher32:86,flexibl:[21,29,55,78,111,114,120],flood:47,floor:[29,41,64],flow:[4,15,16,22,31,41,42,44,85,102,120,125,128,138,143],flowchart:[6,7,24],fluctuat:[91,93,146],fluid:[44,121],flush:112,flux2:78,flux2_dimsplit:111,flux3_dimsplit:111,flux:[5,16,31,83,93,120,125,146],fly:24,fmt:3,fname:[55,127,128,129],focu:[4,41],fold:15,folder:[14,47,101,122,132,133],follow:[0,2,3,4,5,6,13,15,17,18,22,23,27,29,31,33,34,35,40,42,47,49,50,51,52,53,54,56,61,62,64,66,71,72,74,75,77,78,79,82,83,86,87,88,90,91,92,94,95,97,98,100,105,115,119,120,124,125,126,128,134,136,137,138,141,143,145],fontsiz:71,foot:64,fopenmp:[37,65,98],forbidden:104,forc:[21,36,57,98,104,128,135,140,141],force_dri:55,forecast:134,forestclaw:[100,111],forg:[53,85],forget:141,fork:[23,50,51],form:[0,2,3,4,5,6,8,18,19,21,27,28,29,31,33,34,38,40,43,47,50,51,56,59,64,66,75,78,87,93,97,98,104,108,115,116,117,119,120,125,126,127,128,132,138,140,143,146],format:[1,3,5,13,24,29,33,34,40,41,42,44,45,47,49,55,57,61,62,64,70,71,77,80,86,87,89,90,92,98,102,112,113,115,125,128,134,135,140,142,144],format_str:40,former:[71,143],formerli:111,formul:[4,5,44,59,120,125],formula:59,fort:[1,8,26,31,40,61,62,70,86,92,108,112,113,114,119,125,126,127,129,137,144],fortfil:[33,34],fortran:[6,9,11,13,19,22,26,27,29,31,33,40,42,49,52,54,57,58,59,65,66,67,70,73,75,77,78,80,83,85,86,88,90,91,93,94,95,98,111,112,113,115,116,117,120,123,127,128,129,134,136,137,138],fortran_modul:95,fortran_src_wrapp:78,forward:[5,93,104,116,143],found:[1,4,5,6,11,12,13,14,15,21,26,28,31,33,34,36,38,40,43,44,46,55,57,58,69,71,72,73,77,81,88,92,96,98,100,101,102,105,112,115,119,121,122,124,132,133,134,140,141],founder:4,four:[83,104,105],fourth:[31,49],fpe0:37,frac:[59,97,146],fraction:[6,13,29,104,125,143,146],fragil:95,fragment:3,frame0000:61,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,61,62,66,70,71,73,77,80,84,86,88,92,94,98,113,119,124,127,129,130],framecount:98,framenam:61,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,73],framework:[4,51,75,78,112,113],free:[13,47,57,64,75,79,90,94,96,99],frequenc:[64,93],frequent:[5,19,26,96,112],friction:[24,41,44,128,132,133],friction_depth:[59,128],friction_forc:128,friction_modul:111,friedemann:81,from:[0,1,3,4,5,6,7,12,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,50,51,53,54,56,57,58,61,63,64,66,70,71,75,76,77,79,80,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,111,112,113,115,118,119,120,121,125,126,127,128,129,134,135,136,138,141,142,143,144],frommm:81,front:[61,92,98],fset:95,fstr:61,ftrapuv:37,full:[5,6,51,53,54,55,71,80,87,93,97,123,138,143],fulli:[6,44,47,48,114,120,128,134,135],fun:98,func:[98,134],function_nam:98,fund:[24,54,85],funrol:98,further:[6,15,24,37,44,55,57,61,85,104,105],furthermor:[47,97],futur:[13,21,24,25,33,34,44,49,55,59,77,93,112,113,115,134,138],fvmbook:[12,38],fvmhp:[4,12,15,16,24,67,120,125,143,146],fwave:[83,93,120],g77:96,gain:86,galerkin:93,galleri:[12,33,34,35,39,51,69,70,82,85,99,105,110,114,130,136,143],gallery_al:85,gallery_classic_amrclaw:[8,33,34],gallery_fvmbook:[16,38],gallery_geoclaw:[31,41],gamma:59,gap:140,garret:128,gas:6,gaug:[7,24,41,55,83,84,95,102,107,111,112,113,114,115,119,121,127],gauge00001:[40,113],gauge_coord:83,gauge_data:95,gauge_dir_nam:83,gauge_fil:83,gauge_file_nam:83,gauge_id:40,gaugedata:[40,127],gaugeno:[40,127],gauges2kml:55,gauges_modul:[40,111,113],gaugesolut:40,gaugetool:[40,111],gaugexxxxx:[40,113,119],gauss_pt:29,gaussian:[5,77,97,129],gave:115,gca:45,gcc:[88,94],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:13,gen_vari:[98,105],gener:[0,1,2,3,4,5,6,7,9,11,13,15,16,18,19,23,24,27,28,31,36,37,41,44,47,49,51,52,57,58,59,64,65,66,70,71,72,73,75,78,79,81,83,88,89,90,92,93,94,97,98,99,100,102,104,107,111,113,119,121,123,125,126,130,135,137,138,143,144],generate_2d_coordin:140,generate_2d_topo:140,geo:[41,59],geo_data:128,geo_gpu_pap:48,geoclaw:[4,7,12,16,22,23,27,29,31,32,34,37,40,48,49,51,52,53,54,55,59,62,64,67,70,94,100,102,103,105,119,120,121,123,125,126,134,135,136,137,138,139,140,141,142,143],geoclaw_modul:111,geoclaw_riemann_util:114,geoda:121,geograph:47,geohazard:44,geol:29,geolib:[62,107,111],geom:[83,95],geometr:143,geometri:[24,29,64,85,86,90,92,95,111],geophi:16,geophys:[4,15,16,22,41,44,67,125],geoplot:[45,47,72],georefer:47,georeferenc:47,georg:[4,16,29],geoscientist:44,geospati:47,get:[0,10,13,23,27,36,41,47,49,52,53,54,57,58,70,74,77,78,83,86,87,88,94,96,97,98,99,102,103,105,114,120,134,140,141],get_aux_glob:95,get_auxbc_from_aux:95,get_cmap:71,get_count:98,get_dim_attribut:83,get_dt:93,get_dt_new:93,get_q_glob:95,get_qbc_from_q:95,get_remote_fil:140,get_topo:140,getax:1,getcwd:71,getfigur:1,getfram:[1,3,73],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:87,getsitepackag:100,getusersitepackag:100,gfortran:[13,52,54,65,74,76,96,123,141],gfortranbinari:94,ghamdi:4,ghost:[7,15,65,66,83,86,93,95,113,125,127,129,137,143,146],gica2937:29,gigabyt:138,gist:53,git:[12,13,22,23,24,25,48,50,51,52,54,94,105,117],git_statu:46,github:[12,21,22,23,24,25,28,48,50,52,53,54,82,90,94,105,110,112,113,114,118,120,141],gitter:23,give:[3,6,9,10,13,15,23,27,29,31,33,34,40,48,54,55,64,65,66,71,73,88,89,93,105,108,112,113,117,125,128,138,140,142],given:[5,29,43,47,49,55,59,61,64,81,88,92,93,95,98,104,121,128,134,138,140,143],glitch:110,global:[6,83,95,98,121,138,142,143],gloss:142,glu:15,gmt:43,gnu:94,gnufcompil:141,goal:6,godaddi:50,godunov:[4,83,93,125,127,129,143],goe:[29,41],going:[5,15,21,51,77,80,82,86,91,99,106,130,138,146],gone:87,good:[15,27,44,47,56,65,75,97,102,105,113,120],googl:[23,24,27,41,55,82,86,88,96,111,113,120],googlecod:88,googleearth:[47,55],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:10,gov:[29,43,64,88,134],govern:128,gprint:[126,127],gpu:[24,117],gradi:[4,16,75],gradient:[114,146],gradylemoin:4,grai:134,grant:[4,75],graph:9,graphic:[22,27,48,61,70],gravit:[59,128,143],graviti:128,great:[43,82],greater:[5,31,55,59,94,99,104,119,125,126,128],greatest:104,greatli:[25,75,121],green:[55,64,71,105,134,140],grid1d:83,grid1info:128,grid2info:128,grid:[4,7,16,18,19,21,22,24,26,27,40,41,42,44,47,48,55,61,66,67,70,75,77,85,87,88,90,91,92,93,95,97,104,105,107,108,110,111,113,114,115,120,121,125,126,127,129,135,137,138,140,142,143,146],grid_files_scanf:144,grid_numb:66,grid_registr:[49,140],griddata:140,gride:135,grideges_show:21,gridlin:61,gridlines_show:21,ground:[31,64],groundoverlai:47,group:[3,13,23,27,29,44,82,86,88,96,112,120],guarante:[41,44,93,103],guard:112,gui:[21,144],guid:[7,13,16,17,22,23,24,41,42,48,53,85,99,104,114,131],guidelin:85,gzip:51,hack:95,had:[40,48,49,113,114,115,116],hadjimichael:[4,16,75],half:[0,15,16,64,93,125,143],halfspac:64,hand:[3,5,17,18,19,59,77,105],handi:[27,57],handl:[0,2,3,6,31,37,41,49,55,65,67,70,83,86,90,92,93,95,96,97,98,100,107,108,110,111,113,115,116,117,128,134,140],hang:64,happen:[30,47,57,77,92,95,141],har:120,harbor:31,hard:[45,65,71,140],hardcopi:[1,71,73,124],harder:125,hardest:[62,99],hardwir:65,harm:100,has:[0,4,5,6,8,13,15,17,19,20,21,22,26,27,31,32,33,34,46,47,48,49,51,55,57,59,61,64,66,67,71,75,78,80,83,87,90,91,92,95,96,98,99,100,101,102,104,105,106,107,108,113,114,115,116,117,118,120,121,125,126,128,134,137,138,140,143,144,146],hash:[46,50,105],hat:5,have:[0,1,2,3,4,5,6,8,9,11,13,15,17,19,21,22,23,24,26,27,28,29,31,33,34,37,38,40,41,44,47,48,50,51,52,54,57,58,59,61,62,64,65,66,70,71,73,74,75,77,78,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,110,111,112,113,114,115,117,119,120,121,125,126,128,130,134,138,140,141,143],haven:97,haversin:43,hazard:[31,41,59,121],hdf5:[85,87],hdf:86,head:[27,29],header:[11,29,40,49,64,66,86,92,111,113,115,134,138,140],header_styl:140,heavili:78,height:[47,140],held:44,hello:88,help:[5,7,9,22,23,24,27,28,36,45,54,57,70,73,85,88,94,98,105,112,120,130,141],helzel:16,henc:[5,49,50,58,93,100,104],here:[4,13,15,28,31,44,50,51,54,55,67,71,73,77,80,85,86,88,90,91,96,97,100,102,111,120,135,140,146],heterogen:143,hex:[55,71],hidden:[3,57,71],hide:[47,61],hierarchi:[47,83,100],high:[4,16,44,47,64,67,78,85,93,120,121,128,142,143],higher:[3,6,47,83,93,94,104,120,121],highli:115,highlight:[11,13],hilo:[121,142],hint:[15,24,41,52,70,73,74,100,128,141],histor:[44,64,142],histori:[27,51,73,99],hit:[15,61,73,87,125],hko:134,hlle:116,hmin:31,hoc:78,hold:[3,73,97,104],holder:[56,75],holland:[115,128,135],holland_storm_modul:111,home:[13,28,29,52,54,123],homebrew:47,homepag:20,homogen:[64,93,143,146],hood:70,hope:[25,105],horizont:[47,140],host:47,hour:[13,47,55],how:[1,6,7,12,15,21,23,27,29,31,33,34,37,40,42,47,51,55,57,64,65,66,70,80,82,84,86,90,93,97,98,100,102,103,104,105,108,113,115,117,119,120,124,125,128,130,138,140,144],howev:[6,13,15,21,33,34,37,42,44,47,54,56,58,64,65,66,75,78,104,105,113,115,117,121,124,128,137],hpc:23,hrd:134,html:[1,13,16,22,27,29,33,34,36,39,40,47,50,64,70,71,82,88,89,100,105,116,134],html_plot:89,html_theme:50,htmlplot:82,htpp:27,http:[4,12,13,16,23,25,27,28,29,39,43,47,48,50,51,52,53,54,56,62,64,74,75,78,79,86,88,90,100,110,112,113,114,116,117,118,134,140],huge:138,human:134,hurdat:[115,134,135],hurrican:[102,134],hurt:58,hwrf:[115,128,135],hydrodynam:16,hyperbe:81,hyperbee_limit:81,hyperbol:[4,5,6,16,38,67,78,85,90,91,97,120,125,128,143,146],hyperol:125,ibm:94,ibtrac:[115,134],ico:50,icon:50,idea:[10,23,29,61,67,77,97,108,140,146],ideal:[51,121],ident:[58,83,86,88,105,140],identifi:[5,33,34,47,78,104,134],idl:13,ids:40,ieee:16,ifort:37,igetsp:111,ignor:[15,47,55,86,111,121,140],iinstal:88,ike:102,illustr:[29,33,34,47,61,64,103,110,111,115,117,120,130,140],imag:[13,33,34,51,53,55,105,115],imd:[134,135],immedi:[23,44,61,77,79,80,87],impact:[5,64],impati:90,imped:[77,97],implement:[1,4,5,7,15,29,55,58,63,75,90,93,97,98,105,110,113,116,120,125,140,143,146],impli:[56,75,128],implicit:[75,93],importantli:88,impos:[15,78,104,128,132,133,146],imposs:[44,125],improv:[4,13,21,23,31,32,47,86,107,108,110,111,112,113,114,116,117,125],imshow:140,in_poli:140,inaccur:44,inaccuraci:44,inadequaci:59,inadvertantli:71,inbound:13,inc:[4,16,61],incept:4,inch:[2,47,55,71,124],incident:[56,75],includ:[4,6,13,14,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,49,50,51,52,54,55,56,58,59,61,62,64,65,67,70,71,73,75,77,78,82,83,85,86,87,88,89,90,92,93,94,95,97,99,100,101,102,104,105,107,113,114,115,116,117,120,122,125,127,128,130,131,132,133,134,135,137,138,140,143],incom:15,incompat:[27,47],incompress:16,inconsist:112,incorpor:[21,44,50,75,93,107,114,140],incorrect:[115,116,134],incorrectli:112,increas:[47,55,65,128],increasingli:27,increment:[31,40,47,83,98,125,127,129],ind:83,inde:[78,88],indent:[43,55],independ:[22,29],index:[1,6,13,21,22,26,31,39,40,50,51,71,83,85,88,90,91,98,115,125,127,128,129],indian:134,indic:[7,15,19,21,24,28,29,37,40,47,49,51,53,54,58,61,69,73,83,87,88,91,93,97,100,104,105,113,120,125,127,128,129,138,140,143],indirect:[56,75],individu:[4,21,22,47,55,57,58,61,83,104,105,134],inf:140,infer:140,infinit:125,inflat:15,info:[16,28,29,40,51,55,61,80,83,87,93,113,126,127,134],info_sz:29,inform:[13,21,24,33,34,42,43,44,45,46,52,54,58,66,71,72,73,74,77,78,83,87,88,89,91,92,98,100,112,115,116,119,120,123,125,126,128,134,137,138,141,142,143,144],inhabit:77,inherit:[71,83,93],init:[27,48,53],initi:[4,5,7,13,21,29,31,40,43,44,47,51,58,61,64,67,73,75,76,77,78,80,81,83,84,86,87,92,93,95,96,98,101,104,112,115,120,121,125,127,128,129,134,138,140],initialize_sourc:78,inlinelimit:58,inner:[5,104,116],innerprod_index:5,input:[7,15,19,22,24,26,29,36,41,47,55,58,61,77,80,81,83,85,91,92,93,98,102,112,115,116,117,120,127,128,129,134,135,138,140,143],input_filenam:78,input_unit:29,inputfil:[98,140],ins:21,insert:[11,15,64,86,138],insid:[83,88,92,120,140],insidi:113,inspect:[18,19,47],instabl:113,instal:[12,13,17,22,24,28,33,47,50,51,73,75,76,79,84,86,97,105,106,107,108,109,110,111,112,113,114,115,116,117,118,123,145],install_fortran:34,install_prerequisit:[33,34],installing_more_opt:51,installing_pip:51,instanc:[3,27,47,52,64,67,73,77,78,80,83,86,87,90,128],instantan:93,instanti:[80,88,90,93,95,127,129],instati:[64,140],instead:[3,13,28,31,33,34,37,40,48,51,53,54,57,58,62,94,95,98,100,112,113,116,119,120,123,138,140],institut:4,instruct:[13,17,23,24,33,34,47,48,50,51,52,53,62,77,79,85,88,94,97,100,114,118,119,123,141],insur:[46,57,73,104,107,111,126,128,138],int_a:5,intact:[63,112],integ:[3,31,40,47,55,59,71,78,92,104,114,117,120,125,128,134,140],integr:[5,21,49,75,85,87,93,107,108,112,127,129,137,138,143],intend:[44,78,115],intens:[78,134],intent:[78,120],inter:[27,114],interac:87,interact:[1,13,21,33,34,36,40,42,57,67,70,71,78,88,89,94,97,100,112,113],interactive_plot:[89,97],interactive_test:112,interdepend:95,interest:[5,12,15,17,22,26,31,45,61,78,95,102,104,105,114,115,116,117,125,134],interfac:[4,18,21,61,75,78,81,85,86,91,93,98,120,143,144,146],interface_funct:98,interior:[6,15,66,95],interleav:75,intermedi:[18,31,64,143],intermit:[40,113],intern:[6,29,40,49,55,64,113,138,140,146],interp_kwarg:134,interp_unstructur:140,interpol:[5,6,15,29,32,40,41,49,55,61,64,71,113,121,128,134,135,140],interpret:[29,31,49,64,99,115,138],interrupt:[56,75],intersect:[31,64],intersphinx:50,intersphinx_map:50,interv:[5,40,43,77,97,104,125,128],introduc:[5,15,18,31,71,146],introductori:99,intuit:85,inund:[31,41,47,59,104,121,142],inundataion:[121,142],inv_haversin:43,invalid:[37,92],invert:43,invest:44,investig:105,invis:[36,111],invok:[11,65,141],involv:[23,90,93,102,135],ioerror:92,ioexcept:98,iout:129,ioutarrivaltim:128,ioutsurfacemax:128,ipdb:71,iplot:[33,35,82,85,88],iplotclaw:[1,13,21,33,34,40,42,70,71,89,100],iplotclaw_:71,iplotclaw_figno:1,ipynb:[28,29,64,103,112,140],ipynotebook:112,ipython:[13,67,71,73,78,79,85,87,94,97,99,100,111,112],ipython_displai:107,iqinit:[128,138],is_valid:[92,95],isn:[57,65,66,141],iso:134,isosurfac:61,isotrop:64,issu:[21,23,25,50,51,54,61,77,82,83,85,93,94,96,105,107,112,113,114,115,120,128,141],item1:[0,73],item:[0,1,3,61,70,73,98,124],itemnam:[1,73],iter:29,ith:91,its:[4,6,13,21,28,32,44,47,53,56,58,64,66,75,80,81,82,83,85,90,92,93,95,98,104,127,140,146],itself:[4,64,70,120,128,140],ixi:120,jacobian:[120,146],jan:[4,51],januari:[106,113,118],japan:[47,55],japanes:134,javascript:130,jed:75,jet:[29,61],jma:[115,134,135],job:13,join:[23,71],journal:[4,16,48,85,130],jovyan:28,jpg:[50,61],jsanim:[107,111],jsanimation_frametool:109,juli:[108,109,118],jump:[4,5,50,61,73,83,93,113,125,146],junction:[31,128],june:[114,115,116,117,118],jupyt:[64,67,85,103,111,112],just:[0,6,27,36,51,77,78,80,82,85,86,87,88,89,90,95,98,99,108,115,125,143],justifi:64,kappa:[97,146],kappa_i:146,karg:92,katrina:102,kaust:[4,23],keep:[24,27,33,34,65,77,80,95,98,105,108,128],keep_copi:[77,80,87],keep_gaug:95,kei:[0,1,2,13,27,29,40,86,93,97,98,134,140],kemm:81,kemm_2009:81,kentzo:51,kernel:98,kernel_languag:[83,93,98,105],ketch:4,ketcheson:[4,16,68,75,85,93],ketchesonmandliet:[4,16],ketparlev13:[4,16,67,85,120],keyboard:61,keypair:13,keyword:[2,3,71,77,82,83,86,92,98,105,115,124,134,140],kind:[80,82,87,117,120],kinemat:[29,41],king:[4,75],klein:81,kml:[55,111,113,114,115],kml_build_colorbar:[47,55],kml_cb:55,kml_colorbar:47,kml_dpi:[47,55],kml_figsiz:47,kml_footer:55,kml_gaug:55,kml_header:55,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:55,kml_publish:47,kml_region:55,kml_starttim:47,kml_tile_imag:47,kml_timespan:55,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,139],kmz:[55,113],kneplei:[16,75,85],know:[44,54,57,64,75,102,114,120,121,140,141,142],knowledg:44,known:[37,61,64,65,71,94,96,105,114,125],kristof:75,kutta:[85,93],kwarg:[2,29,55,71,98,105,124,134],kyle:[4,16,75,81,85,86],label:[29,45,47,49,55,111,138,140],lack:3,lake:[41,138],lambda:[83,140],land:[15,41,42,47,50,55,72,128,140],landfal:115,landslid:44,langseth:[4,16],langsethleveque00:[4,16],langtangen:99,languag:[11,70,98,99],lapack:107,laptop:[28,85],larg:[5,6,19,31,33,34,44,47,49,50,61,65,70,85,87,88,104,105,112,119,125,140,142],larger:[13,19,31,47,55,64,65,66,71,83,107,113,128,138],largest:[104,121],last:[3,17,26,31,51,71,77,78,90,97,112,125,134],lat:[29,43,47,49,138,140],later:[13,46,47,54,73,93,119],latest:[22,39,47,51,53,54,79,88,94,108,112],latex:[1,47,70,89],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[14,29,31,42,43,49,64,70,111,122,128,134,140],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[14,90,122,125,134,143],launch:[35,52,82,88,89,94],law:[4,16,55,128,146],lax:[83,93,125,127,129,146],layer:[16,40,55,83,107,109,112,113,115],layout:50,lbla:96,lead:[6,13,21,44,47,59,61,64,100,103,126],learn:[44,82,99],least:[4,5,6,13,47,55,61,96,104,105,112,113,125,127,138,140],least_significant_digit:86,leav:[13,15,40,52,54,126,140],lectur:23,led:[19,116],leer:[81,93,125,127,129],left:[3,5,10,13,15,17,24,26,31,49,66,73,83,90,91,97,114,118,119,120,121,126,138,140,142,146],legaci:[22,51],legend:114,legend_tool:114,lemoin:[4,16,75],len:[5,29,83,127,129,140],lenght:125,length:[14,29,44,55,64,90,95,113,122,125,126,127,128,143],leq:5,less:[44,47,59,65,93,104,105,125],let:[15,41,54,75,102,114,120],level:[3,6,7,15,22,26,28,31,40,42,43,44,47,51,52,54,61,65,66,78,80,83,86,87,93,100,101,104,105,107,108,112,113,115,119,121,123,125,126,127,128,129,137,138,140,142,143],levequ:[4,15,16,29,48,67,81,83,85,93,99,120,125,143,146],leveque09:16,leveque1996:16,leveque1997:85,leveque96:16,leveque97:[4,16],leveque_book_2002:91,levequegeorgeberg:[4,16],levyon03:16,lgomp:98,liabil:[41,44,56,75,103],liabl:[56,75],lib:[58,100],libgdal:47,liblzma:47,librari:[6,13,14,15,19,21,24,26,27,31,33,34,37,40,48,55,57,62,65,66,67,75,81,86,88,93,98,100,101,104,113,122,126,132,133,141,143],library_path:98,licens:[24,41,44,85,103,115],lie:[6,31,104],lies:[6,15,31,104,128],light:[47,61,104],lighter:47,like:[13,27,28,37,47,50,51,55,61,62,73,78,80,83,86,87,88,91,92,93,95,99,100,105,112,120,124,137,138,141],lim_typ:93,limit:[0,4,6,24,29,44,47,55,56,61,65,70,75,77,78,83,85,93,104,109,125,127,128,129,134,138,140,146],lin:128,line2kml:55,line:[1,3,4,15,27,28,29,31,37,40,41,42,43,46,47,49,51,55,57,58,61,62,66,70,71,85,86,88,93,97,98,100,101,106,107,108,109,110,111,113,124,125,127,134,138,140],linear:[4,5,16,29,31,47,64,71,77,81,93,116,120],liner:[0,29],linestyl:140,linewidth:71,link:[4,11,13,16,17,18,19,23,24,27,37,38,41,47,48,49,50,51,53,55,62,99,100,114,118,120,121,129,138,142],linspac:[61,80,97],linux:[13,53,63,74,96,99,105,123],lisandro:75,list:[1,3,4,7,8,9,11,13,17,21,24,27,28,29,31,33,34,35,36,40,47,49,50,51,52,53,54,55,56,57,58,59,61,64,65,71,73,75,77,80,81,83,86,87,89,90,91,92,93,95,96,98,100,101,104,106,107,108,109,110,111,113,115,119,123,125,126,127,128,129,134,135,137,140],listofgrid:115,literalinclud:50,literatur:[44,120],littl:[44,64,86,121],live:95,llapack:96,llcenter:[49,138,140],llcorner:[49,138,140],lmm:93,lnetcdf:[37,62],lnetcdff:62,load:[13,55,87,89,92,98,99,105,140,144],load_sift_unit_sourc:29,loc:140,local:[13,16,19,24,27,47,50,55,57,58,61,81,83,90,95,113,115,138,140,143],local_fnam:140,local_path:98,localhost:28,locat:[5,6,7,13,29,42,43,47,49,51,54,61,66,83,87,89,91,92,98,100,102,104,112,114,121,134,135,140],log:[24,27,28,83,84,85,92,93],logger:[87,95],logic:[6,15,16,31],logo:[50,114],lon:[49,138],long_lat:140,longer:[19,27,40,50,55,113,115,119,120,138,142],longitud:[29,31,42,43,49,64,70,111,128,134,140],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[13,21,24,27,29,47,50,51,55,61,62,71,73,78,83,88,92,93,97,98,99,100,105,108,115,125,126,128,137,140,141],lookup:115,loop:[40,61,70,98,104,115,120,124,125,143],lose:112,loss:[56,75],lossi:86,lot:27,love:[82,120],low:[47,78,140,142],lower:[3,21,29,31,49,66,83,88,125,127,129,138,140,142],lower_glob:83,lowerg:88,luna:[16,75,85],lxml:47,lying:6,m_w:146,mac:[53,65,74,96,99,105,123],machin:[13,24,53,65,67,99,105,113,123],macport:47,made:[4,17,21,27,29,54,92,95,107,108,113,115,128,135,138,140,143],magic:55,magnitud:[5,29,104,115,128],mai:[0,1,2,3,4,5,6,13,17,18,19,21,22,23,24,26,27,28,29,31,33,34,35,36,37,42,43,44,45,47,49,50,52,53,54,56,57,59,61,62,64,65,70,71,73,74,75,78,79,82,83,85,86,87,90,92,93,96,98,99,100,104,105,109,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,134,135,136,138,140,141,143],mail:[90,96],main:[5,11,18,27,50,51,61,67,78,80,86,90,97,98,105,114],mainli:88,maintain:[27,115,126,138,143],mainten:75,major:[4,21,51,75,78,106,107,108,109,114,116],make:[1,5,11,13,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,50,51,52,54,55,57,58,59,61,65,67,70,73,74,77,78,80,83,84,85,86,90,92,98,103,105,107,111,112,113,114,115,117,120,125,138,140,142,143],make_colormap:71,make_input_data_kml:55,make_lib:13,make_multi_structur:134,make_shoreline_xi:140,makefil:[5,6,11,14,15,18,19,22,24,27,31,33,34,37,52,54,62,65,67,71,73,78,84,104,107,111,113,115,116,122,125,127,128,129,130,132,133,138,141,143],makefile_kml:111,maketopo:[116,138],man:[16,24,41,44,128,132,133],manag:[13,47,53,87,134],mandli13a:16,mandli13b:16,mandli2016clawpack:[4,16],mandli:[4,16,75,81,85,86],mandlietal2016:16,mani:[1,3,4,6,12,13,19,20,21,27,31,33,34,35,37,38,42,47,48,50,55,57,58,64,65,66,71,73,75,77,82,85,90,92,97,98,99,104,106,107,113,115,116,117,120,124,125,126,128,138,143],manifold:61,manipul:[40,140],manner:[5,40,47,64,70,115,125,132,133,138],manning_break:128,manning_coeffici:128,manual:[35,78,87,94,96,105,136],manuel:[16,75,85],maojr:112,map2d_to_1d:26,map:[3,15,29,55,61,71,75,78,83,85,90,104,111,115,134,140,146],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,61,78,83],mappedgrid:[3,61],march:[23,107,108,118],margin:[31,41],mark:[15,47,104,105],mark_cent:83,mark_nod:83,marker:55,markup:11,marsha:[4,6,16],mask:[45,140],mask_outside_zlim:55,maskedarrai:140,mass:[6,87],massiv:85,master:[13,24,28,50,51,54,90,112,113,114,115,116,117,118],match:[29,47,55,86,92,105,134,140],materi:[4,56,64,75],math:[16,47,97],mathemat:4,mathwork:61,matlab:[7,21,24,33,34,69,70,71,89,99,115],matlabpath:61,matplotlib:[0,2,3,13,29,45,47,70,71,74,76,79,99,124,134,140,141],matric:[5,120,146],matteo:[4,16,75,85],matter:[58,111],matthew:[16,75,85],maux:[21,120,143],max1d:65,max:[0,29,61,104,108,127,129,134,140,146],max_buff:[40,113],max_inch:55,max_level_deep:128,max_step:93,max_vertices_in_descript:55,max_wind_radiu:134,max_wind_radius_fil:134,max_wind_spe:134,maxgr:115,maxima:[31,65,128],maximum:[3,21,29,31,32,41,61,93,97,104,107,108,115,125,126,127,129,134,135],maxlevel:[61,104,126,127,128],maxm:120,maxmi:[19,78],maxmx:[19,78],maxmz:19,maxwell_1d_homogen:90,mayb:140,mbc:143,mc_limit:81,mcs:88,mean:[3,13,21,27,40,44,48,54,61,87,88,104,120,121,125,127,129,142],mean_latitud:45,meant:[37,83,93,134],measur:[29,40,43,64],mechan:[52,54,95,118],media:16,medium:[127,143],meet:23,member:[47,90,92,97],memori:[19,21,65,66,67,77,80,87,95,126,127],mention:[85,125,126],menu:[13,17,24,50,55,114,118,121,142],meqn:[40,66,120,143],merchant:[56,75],mercuri:88,merg:[6,13,24,27,48,50,51,54,111],mesh:[4,7,16,48,61,67,70,77,104,124,125,143],meshgrid:[77,90,140],messag:[27,36,43,50,54,61,65,80,83,87,89,92,93,95,96,125,127,129,141],met:[31,56,75],metadata:[66,138,140],meteorlog:134,meter:[29,43,47,64,104,121,128,134,140,142],meterolog:134,method:[4,5,16,38,40,49,71,73,77,80,81,83,88,92,93,98,104,105,111,120,124,125,126,127,129,134,137,138,140,143],metric:43,mhd:117,mhhw:121,mhw:[44,121,138,142],micro:13,mid:71,middl:112,midpoint:83,might:[5,10,13,15,21,27,28,33,34,35,43,47,49,50,52,53,54,58,61,65,71,77,87,99,100,102,103,104,107,125,126,138,140,142,143],migrat:18,millimet:140,mimic:115,min:[0,134,140,146],min_level_check:31,min_time_incr:40,mind:27,minim:[6,54,86,126,140],minimum:[3,31,40,47,64,97,113,128,140],minisymposterium:23,minlevel:[104,126,127,128],minmod:[81,83,93,125,127,129],minmod_limit:81,minor:[11,47,87,107,108,109,110,111,112,113,114,115,116],minut:[43,47,50,55,121,140,142],mis:71,misc:[4,117],miscellan:91,miss:[21,86,117,134,138,140,141],mitig:44,mitran:[4,16],mix:[29,47,64],mjb:[6,16],mjberger:4,mlc:134,mllw:142,mode:[1,13,27,98,137],model:[5,15,16,23,24,29,31,37,41,42,48,49,59,87,104,112,117,121,128,134,135,138],modern:[94,115,120],modif:[27,36,56,61,71,75,81,128],modifi:[6,9,14,15,19,21,26,31,33,34,40,41,51,52,54,57,61,63,71,78,81,83,85,90,100,101,102,103,104,110,112,113,114,115,122,125,127,128,129,132,133,138,140,143],modul:[0,7,8,24,27,28,31,37,41,45,47,48,49,54,58,64,65,70,71,72,73,74,77,78,81,82,86,90,91,92,95,100,105,108,109,111,114,115,116,117,119,125,126,128,134,138,139],module_nam:98,modulu:[29,97,127,143],molsolv:93,moment:[26,29,116],momentum:[15,31,44,59,87,128,138],monitor:[21,24,32,41,65,108,110,113],monoton:[125,128],monster:10,month:[16,47,85],more:[1,2,3,4,5,7,10,12,13,15,16,19,21,25,27,28,29,31,33,40,41,42,44,47,49,50,51,52,53,54,55,56,57,61,64,70,71,72,73,74,75,78,80,81,83,86,87,88,89,90,91,93,94,95,97,98,100,103,104,105,107,108,111,113,114,115,116,117,120,121,123,124,125,126,127,128,130,134,136,137,138,140,141,142,143,146],moreov:64,most:[3,19,21,26,28,31,33,34,36,37,40,44,46,47,48,49,50,53,55,57,61,65,67,70,71,73,75,83,87,88,93,96,97,104,105,112,114,118,119,120,121,124,125,126,128,131,143],mostli:[3,70],motion:[64,138],motlei:48,movabl:29,move:[15,33,34,41,50,52,54,64,90,104,107,109,114,128,138,139],movement:29,movetopo:107,mparsani:4,mpi:[67,88],mpich:88,mpiexec:88,mpirun:[88,94,105],msl:[121,142],mthlim:[83,93],much:[13,27,31,37,47,50,66,67,70,99,104,107,111,125,128,137,140],muct:93,multi:[16,47,77,107,109,112,115,143],multicor:[65,113],multidimension:[78,85],multilay:[40,108,111,114,115,116],multipl:[5,6,13,22,27,40,52,70,77,83,86,87,98,100,105,107,113,117,119,120,134,135],multistep:93,must:[5,6,13,15,19,21,27,29,31,42,47,50,56,57,58,61,64,65,66,75,78,86,87,90,92,93,95,96,97,98,100,104,107,111,120,121,125,127,128,129,134,140,141,142,143,146],mwave:120,mx1d:143,mxnest:21,my_acoustics_rp:77,my_custom_bc:93,my_geoclaw_storm:134,my_initial_solut:80,my_riemann_solv:120,my_rp_modul:77,my_setplot_fil:73,my_solv:80,my_storm:134,n00014:4,n12:31,n23:31,nadi:134,name:[0,1,2,3,5,7,11,13,19,21,27,28,29,31,33,34,36,40,47,51,55,56,61,62,71,73,75,78,80,82,83,86,87,91,92,97,98,100,112,115,119,120,124,125,126,127,128,129,134,140,143,144],namespac:78,nan:[43,140],nation:[4,44,134],nativ:86,natur:[31,50,120,146],naux:66,navd88:138,navig:[12,28,130],nbtool:111,nbviewer:112,nc_param:140,ncar:4,ncei:[138,142],ncol:111,nctr:[29,64],ndarrai:[43,81,83,91,95,134,140],ndarrari:83,ndim:[21,66,73,125,126],ndip:29,nearbi:121,nearest:[40,140],nearli:83,nearshor:44,necessari:[5,6,13,31,33,34,42,44,47,51,52,53,54,55,61,64,66,67,73,77,78,83,86,111,113,115,119,120,124,125,138,141,143],necessarili:[4,86,105],necessit:27,need:[0,4,5,6,13,14,15,17,18,19,21,26,27,28,31,33,34,35,36,37,44,45,49,50,51,52,54,55,57,58,61,62,64,65,66,67,73,74,77,78,80,85,86,87,88,90,93,97,99,100,102,104,105,108,112,113,115,116,119,120,122,123,125,126,127,128,129,132,133,134,135,136,138,140,142,143,146],neg:[21,128,138,140],negat:[43,138],neglig:[56,65,75,128],neighbor:[4,31,104,113,126,127,140],neither:[47,55,56,75,113],ness:86,nest:[107,113,126,127],netcdf3:86,netcdf3_64bit:86,netcdf3_class:86,netcdf4:[86,138,140],netcdf4_class:86,netcdf4_dir:37,netcdf:[13,37,41,112,115,117,125,127,129,134,140,142],neumann:134,never:[31,90,95,101,104,125,127,129,141],nevertheless:47,new_featur:27,new_frame_num:98,new_plotax:[0,2,40,47,71,124],new_plotfgur:71,new_plotfigur:[1,2,40,47,71,124],new_plotitem:[0,3,40,47,71,124],new_userdata:[127,129],newdelhi:134,newdir:63,newer:[27,65,81,115],next:[2,3,6,13,17,31,33,35,40,50,51,61,66,71,73,76,77,85,86,88,93,97,102,104,105,125,126,128],nfr:4,ngdc:121,nghost:66,ngrid:66,nhc:134,nhtmp:44,nice:[27,55,78,90,108],nicer:[73,99],nih:4,nnnnn:[119,125],no_data_valu:140,no_tran:83,noaa:[29,43,49,64,115,121,134,138,142],nodal:115,nodata_valu:140,nodataerror:134,nodatav:138,nodatavalu:[49,138],node:[83,115],nodes_with_ghost:83,nohup:108,non:[5,15,31,51,67,78,90,97,116,125,127,129,134,146],nonconserv:146,none:[0,1,2,3,15,23,26,29,40,43,47,55,80,83,86,87,92,93,95,98,105,107,113,115,116,117,119,125,127,129,134,140],nonexist:[7,24,41,85],nonlinear:[4,5,16,44,81,120,125,146],nonoverlap:6,nonphys:40,nonuniform:61,nor:[56,75],norm:[55,104,140],normal:[15,48,71,90,100,120,125,126,127,129],north:[43,64],northernmost:138,norwegian:4,nose:[27,34,35,76,88,105,136],nosetest:[27,34,35,88,94,105,136],notat:[29,43,55,120],note:[1,3,4,5,13,15,19,21,23,24,27,29,36,37,40,43,47,48,49,50,51,52,53,54,55,57,58,64,65,71,73,78,81,82,83,86,88,90,94,95,98,99,104,119,120,121,124,125,126,127,128,129,134,135,137,138,140,142,143],notebook:[29,50,64,67,79,85,87,103,111,112],noth:[14,95,116,122,132,133,140,143],notic:[47,56,75,97,105],nout:129,nov:[16,85],novemb:[112,113,118],now:[5,6,7,13,17,19,21,25,27,28,29,31,37,46,49,50,51,59,64,66,71,74,77,78,83,85,86,87,88,89,90,92,93,94,97,102,105,107,108,111,112,113,114,115,117,124,128,130,138,145],nprint:[126,127],npt:31,npy:140,nrm:55,nsf:4,nstate:86,nstepout:[80,87],nstrike:29,nthmp:44,ntime:127,ntot:129,num_aux:[5,78,86,88,90,91,95,120,125,126,127,129,143],num_cel:[8,21,83,120,125,126,127,129],num_cells_glob:83,num_digit:55,num_dim:[21,83,86,90,125,126,127,129],num_entri:98,num_eqn:[66,77,78,81,86,88,90,91,92,95,97,120,125,127,129,143],num_fgmax_v:[31,128],num_ghost:[78,83,86,90,91,93,95,120,125,127,129],num_output_tim:[5,77,80,87,119,125,127,129],num_proc:113,num_var:86,num_wav:[81,91,120,125,127,129],number:[1,2,3,4,6,8,15,16,18,21,26,27,28,29,31,33,34,40,47,50,51,55,57,61,65,66,67,73,77,78,80,81,82,83,85,86,87,88,90,92,93,95,97,98,102,104,105,107,108,110,111,112,113,114,115,117,119,120,125,126,127,128,129,134,135,136,140,143],numer:[4,16,47,99,116,134],numerica:16,numpi:[3,13,29,43,74,76,77,78,80,83,90,95,96,97,99,105,127,140,141],nxpoint:140,nypoint:140,nyu:4,object:[0,1,2,3,5,21,26,29,31,40,47,55,64,70,71,73,77,78,80,86,87,88,90,92,95,96,97,98,99,107,116,119,120,125,126,127,129,134,140],obliqu:15,obscur:21,observ:[31,44,107,121,125,128,135,142],observatori:4,observerd:135,obtain:[6,12,31,40,42,44,54,55,86,87,88,104,120,128,130,138,146],obviou:[8,47],occasion:[105,113],occupi:47,occur:[57,64,134,135],ocean:[5,15,16,44,47,102,104,128,132,133,138],octob:[17,109,110,111,117,118],off:[13,31,40,44,47,55,61,73,80,87,104,126,140],offer:[36,47,105],offici:[51,115],offset:[45,47,55,134,140],offshor:[55,59],oft:91,often:[6,11,13,15,19,26,28,31,33,34,36,37,40,41,44,45,46,55,59,64,66,87,99,100,104,105,119,120,121,124,125,128,134,138,142,143,146],okada85:[16,29,64],okada:[16,24,29,41,103,138,142],okadamap:29,olav:4,old:[1,7,19,21,24,51,73,80,88,89,90,93,105,112,114,115,120,138],older:[21,37,48,93,128],olig:[6,16],omega:77,omit:[52,54,105,113,119,128],omp_num_thread:[37,65,113,137],omp_stacks:65,on_lower_boundari:83,on_upper_boundari:83,onc:[1,5,13,21,27,28,33,34,47,51,52,53,54,61,64,73,77,87,88,89,90,95,98,113,115],ondrej:75,one:[0,1,2,3,4,5,6,8,13,14,15,19,21,23,24,26,27,28,29,31,33,34,40,42,47,49,51,52,53,54,55,59,61,62,63,64,66,67,70,71,77,83,86,87,88,90,92,93,94,97,98,100,102,104,105,112,113,115,119,120,122,124,125,126,127,128,129,130,132,133,134,138,140,143,144],ones:[28,77,78,95,115,125,126],onli:[1,3,5,6,8,13,15,18,21,26,27,29,31,39,40,44,47,50,51,53,55,58,59,61,64,65,66,67,71,77,80,83,86,87,88,90,92,93,94,95,97,98,102,104,107,112,113,114,115,119,120,121,123,124,125,126,127,128,129,134,138,140,141,142,143,146],onlin:[103,115,131,138],onr:4,onshor:[31,55,59],onto:[27,29,47,140],open:[4,13,16,27,28,29,47,55,70,75,79,83,86,98,123,142,144],opendatafil:58,opendiff:105,openli:22,openmp:[21,24,37,67,98,104,112,137],opensourc:[56,75],oper:[45,105,113],opinion:4,oppos:[27,135],opposit:[6,15,86],optim:[37,75,98],option:[2,13,15,19,21,24,27,29,31,33,34,36,37,43,46,49,54,57,61,62,70,71,77,78,80,82,83,84,85,86,87,89,92,93,94,97,98,101,104,105,108,111,112,113,116,124,125,127,128,129,130,134,140],orang:134,order:[4,5,6,13,15,16,28,29,31,44,49,50,52,54,58,61,64,66,67,71,73,74,75,77,80,81,83,85,86,87,89,90,93,97,98,100,104,111,115,120,124,125,126,127,129,134,138,140,141,143,146],ordinari:120,ordinarili:96,org:[4,16,39,41,48,50,51,56,75,78,79,83,86,88,100,112,114,116,140],organ:[21,22,33,34,80],orient:[64,78,99],origin:[3,6,13,15,19,27,29,32,40,48,50,65,66,78,93,98,107,113,119,126,127,129,140],orlean:102,oscil:[40,146],oscillatori:140,osher:93,osx:[47,74,99],other:[3,4,5,6,9,13,15,19,21,26,29,31,33,34,40,42,44,47,48,49,50,51,53,54,56,57,59,61,62,64,65,66,70,73,74,75,77,78,80,83,85,87,89,90,91,94,97,100,104,105,107,108,110,111,113,120,121,123,124,125,128,130,134,138,140,142,143,144],otherwis:[5,29,50,52,54,56,75,87,92,93,94,95,98,104,125,140],ought:93,ouput:80,our:[49,58,77,102],out1:58,out:[3,15,25,28,29,33,34,40,46,48,49,50,51,52,54,55,56,57,61,64,71,75,77,78,80,86,87,88,89,92,97,99,100,102,105,113,115,117,120,127,129,134,140,141],out_path:134,out_tim:80,outaux:26,outdir:[1,3,33,34,40,46,57,70,73,80,82,83,87,112,127,129,141],outdir_p:80,outfil:140,outflow:[15,125,127,129],outgo:15,outlin:[55,61,73,120,124],outn:26,output:[1,5,7,8,13,15,24,26,27,28,29,33,34,36,37,40,41,42,43,45,46,47,51,64,70,71,73,78,80,81,82,83,84,85,88,89,91,92,93,94,95,97,98,100,107,111,112,113,114,115,117,120,124,127,129,134,135,136,137,140,143,144],output_aux_compon:[125,127,129],output_aux_onlyonc:[125,127,129],output_file_prefix:[80,87],output_filenam:78,output_format:[5,80,87,125,127,129],output_opt:80,output_q_compon:[125,127,129],output_step_interv:[125,127,129],output_styl:[66,77,80,87,119,125,127,129],output_t0:[119,125,127,129],output_tim:[87,119,125,127],output_unit:29,outputdir:61,outputfil:140,outsid:[6,15,55,138,140],outsiz:55,over:[1,3,5,6,13,15,16,21,27,29,31,40,41,42,44,47,49,55,61,64,70,86,87,93,104,107,108,116,120,124,127,128,137,138,143,146],overal:[10,77],overflow:[37,114],overhead:[6,65,104,137],overlai:55,overlaid:[47,55],overland:47,overlap:[104,107,108,138],overrid:[27,37,47,77,78,98],overridden:[61,93,95],overrul:3,overview:[41,47,70,106,109],overwrit:[1,80,87,92],overwritten:[40,86,87,113,119,143],own:[15,19,23,27,54,77,78,84,85,94,95,102,104,115,120,130],owner:115,p_center:[83,97],p_function:87,p_node:83,p_t:97,p_x:97,packag:[4,24,27,33,34,47,51,52,53,58,67,70,74,75,77,83,85,87,89,90,92,94,97,99,100,117,134,141,144],page:[1,4,9,11,12,13,16,17,21,23,24,27,44,49,51,52,53,54,82,85,88,89,96,99,105,114,121,124,130,142,143],pair:[13,86,105,140],panel:47,paper:[4,5,6,15,29,41,50,81,85],paragraph:31,parallel:[4,21,22,40,52,65,76,82,84,85,87,90,92,94,98,104,105,113],paramet:[1,6,7,9,15,19,24,26,29,31,32,33,34,36,38,41,42,44,47,49,57,58,59,61,64,65,66,70,76,77,80,81,86,87,89,92,95,98,101,104,107,113,119,120,121,127,129,135,138,140,141,143],parameter:[102,115,128,134,135],parametr:135,paramt:31,parent:[3,26,83,95,98],pars:[40,98],parsani:[4,16,75,85],part:[4,5,21,23,29,41,44,52,54,55,62,75,78,88,94,95,97,99,103,105,117,128,143],partial:[16,67,102],particular:[6,12,19,21,27,29,31,37,40,41,42,44,47,48,51,52,56,57,58,61,71,72,74,75,77,91,92,93,95,97,102,103,104,105,108,111,112,113,114,115,117,124,128,134,135,146],particularli:[15,26,28,46,47,53,64,66,108,111,115,138],partit:88,pascal:[29,134],pass:[15,18,19,27,29,40,47,55,65,71,77,80,82,84,90,93,95,96,98,105,120,127,134,140,143],password:27,past:[20,24,50,92,113,116,118,121,128],patch:[3,6,7,15,21,26,31,47,61,64,65,66,70,71,86,88,92,95,104,113,115,124,126,128,137,138,143],patch_index:83,patchedges_show:[3,21],patchno:[3,26],path:[1,5,13,29,37,40,43,47,50,52,53,54,57,63,70,71,80,86,88,92,98,114,115,123,128,134,140,141],path_to_atcf:134,path_to_ibtrac:134,pathtool:61,pattern:[19,42,47,121],pcolor:[3,40,70,99,140],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:55,pcolormesh:55,pdb:71,pde:[4,5,16,67,85,97,125,143],pdf:[1,29],pdflatex:1,peak:5,peanoclaw:75,pedant:37,peerj:[4,16],pem:13,pend:3,peopl:[4,13,75,99],pep8:27,per:[13,29,40,47,55,61,65,86,126],perfect:15,perfectli:15,perfom:105,perform:[5,6,16,21,26,44,47,49,65,67,70,71,80,83,86,90,93,98,105,117,119,120,123,128,136],perhap:[6,31,40,71,95,98,104],perimet:31,period:[5,6,15,31,57,77,90,104,125,127,129],perman:61,permiss:[51,54,56,75],permit:[56,75],permut:19,perturb:[101,128,138],petclaw:[75,88,89,90,92,98,100,105],peter:4,petsc4pi:[88,94,95,105],petsc:[21,22,52,67,75,77,84,85,87,94,95,96,98],petsc_arch:88,petsc_dir:88,petsc_hello_world:88,phase:[88,112],phd:16,phi:5,philim:78,phoni:71,photo:[23,24],php:[29,56,75],phy:16,physic:[15,31,40,47,78,83,85,97,104,146],pick:[77,93],piec:[15,44,83],piecewis:[29,31,49,64,108,120,138],pink:[55,71,124],pinkfig:71,pip3:51,pip:[17,24,27,47,50,51,53,79,85,88,94,96,100,114,115,116,117,118,123],pixel:[47,55],pkg:[51,129],place:[5,15,19,27,33,34,47,50,52,54,57,58,63,87,88,90,94,100,107,113,143],placemark:47,plaid:47,plain:45,plan:[23,27,44,52,53,59,86,93,134],planar:[64,120],plane:[29,64,112,142],platform:[13,47,80,88,99,105],pleas:[4,23,27,39,54,75,77,80,82,85,86,88,90,92,93,94,96,102,115,118,120,134],plot:[0,1,2,4,7,8,12,26,28,29,33,34,35,36,37,38,41,49,51,55,66,76,77,79,80,83,84,85,87,92,94,96,97,99,100,102,110,111,112,113,114,115,117,134,136,140],plot_box:[29,140],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_packag:134,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_timing_stat:[115,117],plot_topo_fil:[72,111],plot_typ:[0,21,40,47,71,73,124],plot_var2:3,plot_var:[3,26,40,47,71,72],plotax:[3,40,71,124],plotclaw1:61,plotclaw2:61,plotclaw3:61,plotclaw:[40,70,71,73,124],plotdata:[26,40,62,71,73,80,112,113,124],plotdir:[1,73,124],plotexampl:71,plotfigur:[40,71,124],plotfram:1,plotgaug:40,plotitem:[3,26,40,71,124],plotloop:[71,73],plotstyl:[3,40,71,124],plotter:[1,3,26,73],plotting_makeplot:[33,34],plottyp:61,plt:55,plu:[71,107,127,129,140],pmel:[29,64],png2kml:55,png:[1,13,33,34,36,47,55,61,113],png_extent:55,png_file:55,png_filenam:55,png_name:55,point:[3,5,6,13,14,15,16,19,27,29,31,33,34,37,40,42,43,44,47,49,50,51,52,53,54,55,61,62,64,77,87,88,92,98,100,104,114,116,119,120,121,122,123,125,126,127,128,132,133,134,138,140,141,143],point_styl:[31,110],pointer:[4,15,50,64,70,73,93,98,111],pointwis:[24,49,95,111,138],poisson:64,poli:55,poly2kml:55,polygon:[3,47,55,140],polynomi:120,poor:27,poorest:86,popup:13,port:[13,28,84,85,90,126],portion:[6,47,78,137],posit:[47,64,67,98,128,138,140],possibl:[5,6,13,21,25,27,29,31,40,43,44,47,52,54,56,57,64,71,75,77,83,86,88,89,93,98,100,104,112,120,121,125,126,138,142,143],post:[23,24,25,27,47,88,130],poster:16,posteriori:93,postprocess:[66,87],potenti:[61,113,121],powel:128,power:[47,70,99],pprint:[126,127],practic:[27,100,102],pre:[3,13,51,79,86,99],preced:71,preceed:[31,66,143],precis:[37,55,78,83,86,120,140],predefin:71,predict:43,prefer:[55,88,90,99,123,134],prefix:[51,80,86,87,92],preliminari:[43,115,142],prepar:27,prepend:80,preprint:16,preprocess:111,prerequisit:[52,53,54],present:[6,55,83,92,93,98,130,143,146],preserv:[67,93],press:[16,88,94],pressur:[40,61,73,87,97,114,115,128,134,135],pressure_forc:128,pressure_index:128,presum:121,pretti:13,prevent:47,previou:[1,27,31,40,49,50,51,53,58,61,73,77,93,102,107,112,113,114,115,119,125,127,129,138,140],previous:[6,21,73,111],price:13,primari:[21,27,41,102,105,134],primarili:[48,115,116],prime:105,principl:[5,140,143],print:[1,3,7,28,47,49,55,61,71,83,87,88,89,95,97,100,107,108,111,113,114,115,125,127,129,134,141],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:113,print_git_statu:46,printenv:141,printfig:1,printfram:[1,70],prior:[56,75,118,127,129,143],probabl:[13,27,47,59,100],probdata:[127,129],problem:[4,5,7,15,16,19,23,24,26,27,31,33,34,38,41,54,57,61,64,67,71,74,76,77,82,84,85,88,91,93,96,100,105,107,108,110,111,114,120,125,127,128,129,130,137,141],problem_data:[77,91,92,95,97],problemat:87,proce:[6,27],procedur:[6,15,41,51,143],proceed:50,process:[24,33,34,41,47,48,52,64,77,82,83,88,94,95,98,105,113,141],processor:95,procur:[56,75],produc:[1,3,21,26,29,33,34,36,40,47,49,50,55,61,65,69,70,86,104,105,124,128,140],product:[5,29,56,75,98,104,116],professorship:4,profil:[135,140],profit:[56,75],program:[4,42,44,58,67,99],programmat:75,progress:[23,27,93,102,111,138,140],prohibit:21,proj:127,project:[5,23,29,44,47,50,51,64,75,79,113,114,126,140],projection_zon:29,promot:[56,75],prompt:[27,28,61,71,73,82,85,97,99,140],propag:[4,5,6,16,24,29,44,47,48,64,83,85,93,104,113,120],proper:[6,14,40,48,49,55,59,61,86,98,107,113,122,126,127,132,133,134,143],properli:[19,31,33,34,36,44,47,49,50,54,55,63,80,99,105,107,110,115,123,125,128,138,140,141,143],properti:[29,61,77,80,83,92,95,140],propos:[27,146],provid:[0,2,4,7,10,15,19,26,27,29,37,41,42,43,44,47,49,50,55,56,58,64,66,70,75,78,80,81,87,88,90,92,93,97,98,99,102,103,105,112,118,120,125,133,134,137,138,140,143],proximity_radiu:140,prune:28,pseudo:[47,61],psi:[90,143,146],pth:54,pts:[126,127],pub:[29,134],publicli:130,publish:[4,16,50,85],pull:[23,25,28,50,51,53,82,90,105,110,113,114,120],pull_al:[27,51],pupyner:86,pure:[16,48,73,83,85,86,88,93,99,105],purpos:[31,41,44,49,56,61,66,75,83,99,103,105,119],push:[27,50,51],put:[1,11,15,27,37,50,51,52,54,55,61,77,82,90,113,123],pyclaw:[1,3,4,12,16,22,23,26,27,28,40,51,52,66,67,73,74,84,88,90,96,99,100,118,120,123],pyflak:85,pykml:47,pylab:[0,71],pylint:85,pypa:74,pypi:86,pyplot:[55,134,140],pyramid:47,python3:114,python:[3,4,7,8,11,13,16,18,21,22,24,26,27,28,29,31,33,34,35,36,38,40,41,42,43,46,47,49,51,52,53,54,55,64,66,67,70,71,72,75,76,78,82,83,85,86,88,89,90,91,93,96,97,98,105,108,109,111,113,114,115,116,117,120,123,128,138,140,141,144],python_io:66,pythonpath:[52,54],pyweno:[75,93],q0000:[61,125],q0001:[61,62],q000n:[1,8],q0_vs_radiu:3,q1d:143,q_i:[120,146],q_l:[91,120],q_out_field:40,q_r:[91,120],q_t:[5,90,93,97,143,146],q_x:[5,97,146],qbc:[90,93,95],qcor:78,qin:[4,48],qinit:[5,19,21,41,57,58,78,121,143],qinitdata:128,qinitfil:128,qopenmp:37,qquad:146,qtrue:71,quad2kml:55,quad:55,quadrat:[29,64],quadrilater:[31,55],qualiti:47,quantiti:[14,31,55,61,80,84,85,91,95,122,128],quantiz:86,queri:[78,83,98],question:[23,27,92],quezada:[16,75,85],quick:[13,24,34,41,42,74,99,105,136],quicker:13,quickli:[40,55,79,113,140],quit:[28,61,71,73],quot:55,qxxxx:86,r_refin:128,radial:[3,43,128,143],radian:43,radii:134,radio:55,radio_styl:55,radiu:[3,128,134,135,140],rai:140,rais:[23,29,54,86,92,94,98,134,140],rake:[29,64],ran:[34,136],randal:[4,16,85],randi:[29,81,83],rang:[3,5,13,29,40,43,47,104,107,112],rare:[64,113],raster:[47,49,138],rate:13,rather:[5,6,19,21,27,28,31,50,51,52,54,57,58,59,63,64,83,88,90,93,101,111,112,113,115,117,118,119,124,125,126,134,135,138,140,143,146],ratio:[6,14,21,45,61,64,81,93,122,125,126,127],raw:125,rcl:47,reach:[5,104],reachabl:92,reaction:90,read:[1,4,5,14,27,29,31,33,34,40,44,45,49,52,54,55,58,61,64,66,70,78,80,86,87,92,98,101,112,113,115,116,122,127,128,129,132,133,134,138,140,143,144],read_:[86,92],read_arrai:86,read_atcf:134,read_aux:[86,92],read_data_lin:98,read_geoclaw:134,read_head:140,read_hurdat:134,read_ibtrac:134,read_imd:134,read_jma:134,read_netcdf:[115,116,138,140],read_output:31,read_patch_head:86,read_t:86,read_tcvit:134,readabl:[134,135],reader:144,readi:[77,78,80,94],readm:[50,51,120,123,143],real:[44,51,59,98,120,142],realist:47,realiti:44,realli:[6,105,143],rearrang:115,reason:[5,44,47,55,64,65,67,88,90,104,125],rebas:27,rebuild:50,recal:[1,12],recalcul:108,recangl:64,receiv:[47,105],recent:[4,13,21,26,29,46,50,53,57,59,65,71,73,74,112,116,117,118,120,142],recip:53,recogn:[42,49,138],recomil:31,recommend:[4,29,31,33,34,51,52,54,65,70,79,83,88,89,93,94,96,97,115,123,125,127,128,129,144],recompil:[27,36,37,57,65,98,143],recomput:[73,77,108,117],reconstruct:[85,93,134],record:[31,40,95,134,142],recov:27,recreat:[27,36,57],rect:29,rectangl:[6,29,64,104,140],rectangular:[6,7,15,16,29,31,41,42,55,83,104,115,126,128,138],recurs:[50,63,107],red:[2,3,27,40,55,71,105,124,134],redhat:99,redirect:50,redistribut:[56,75],redraw:[61,73],reduc:[6,15,47,112,114,146],redund:134,refactor:[107,108,109,111,113,114,116],refer:[5,7,19,24,29,33,34,41,42,47,57,58,61,64,77,81,83,86,87,91,93,95,100,102,115,117,119,120,128,134,138,140,142,143],referenc:[47,121,138],refin:[3,4,5,7,8,16,21,41,44,47,48,49,61,66,67,77,113,115,116,124,125,126,127,137,138,143],refinement_data:128,refinement_ratios_i:[8,126,127],refinement_ratios_t:[126,127,128],refinement_ratios_x:[126,127],refinementdata:110,reflect:[4,5,15,27,50,104,115,125,127,129],refresh:[13,40],regard:[4,112,134],regardless:[13,104,125,128],regener:57,region00:55,region:[3,6,7,13,15,21,31,41,44,45,47,55,59,64,67,102,115,121,126,127,138,140],regiondata:[104,127],regions2kml:55,regist:54,registr:[24,41,115,138,140],regress:[21,24,27,46,88,113,114,136],regression_test:[34,136],regrid:[5,10,104,107,108,113,116,117,126,127,137],regrid_buffer_width:[104,126,127],regrid_interv:[104,126,127],regular:[31,140],reiniti:113,reject:[87,93,125],rel:[13,19,29,36,42,44,47,50,64,65,71,98,100,105,108,109,110,111,112,113,114,115,116,117,121,126,128,130,138,142],relat:[3,21,50,67,91,114,121],releas:[4,17,21,24,28,39,47,50,52,53,54,79,93,94],release_5_x_x:51,relev:[21,26,37,41,47,50,86,104,105,134],reli:[67,78,89,113],relief:[121,142],reload:140,reltol:98,remain:[31,47,54,90,98,100,107,132,133,134],remak:50,rememb:[14,26,65,71,88,122,132,133],remot:[13,47,51,115,140,142],remote_directori:140,remote_topo_url:[138,140],remov:[1,3,19,28,36,48,54,55,57,62,73,88,100,107,110,111,140,141],renam:[19,21,33,34,57,90,93],render:[21,47,55,144],reorder:[19,21],reorgan:[21,78,106],repack:51,repeat:[73,119],repeatedli:[3,88,94],replac:[6,13,28,40,44,48,50,51,57,70,78,82,86,88,89,90,91,95,98,105,107,113,115,117,119,120,140,141],replace_no_data_valu:140,replace_valu:140,replot:73,repo:51,report:[23,29,31,46,100,105,112,115,123,125,127],repositori:[21,23,24,25,28,31,34,35,38,41,48,50,52,53,54,57,58,93,100,102,103,105,110,113,131],repres:[29,77,83,86,90,91,93,95,140,146],represent:[49,83,86,92,98,140],reprint:75,reproduc:[16,49,56,75],request:[23,25,29,50,53,66,77,82,83,87,90,92,105,113,115,120,128,134,140],requir:[3,4,15,19,21,24,26,29,33,34,36,41,43,44,51,52,54,61,64,67,70,73,74,77,78,83,85,86,89,90,93,94,95,97,98,104,105,107,108,111,113,116,120,124,125,126,127,128,129,134,135,138,141,144,146],rerun:[37,40,49,51,54],rescal:29,research:[4,16,41,44,75,93,103],reserv:[56,75],reset:[37,52,54,98],reset_count:98,resetplot:[71,73],resid:[50,57,83],resiz:115,resolut:[4,6,16,29,40,64,83,93,97,98,107,111,115,116,120,121,128,138,140,142,143],resolution_limit:140,resolv:[4,31,47,50,102,115],resourc:[16,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,55,85,86,91,140],respons:[13,44,77,92],rest:[5,21,73,102,115,121,132,133,138,140],restart:[13,24,40,73,85,112,113,114,115,117,125,127,129],restart_fil:[119,125,127,129],restor:6,restrict:[47,115,128,138],restructur:[11,50],result:[1,3,4,7,9,12,16,24,25,28,29,31,32,33,34,35,40,41,43,44,49,50,51,54,55,57,59,61,64,70,71,72,73,76,80,82,85,87,91,94,98,104,105,107,111,113,114,115,116,125,126,127,128,129,136,138,140,142],retain:[56,75,86],retak:[125,127,129],retriev:[13,43,73,78,93,140,142],return_topo:140,return_xarrai:140,reunion:134,reutil:78,reveal:[40,97],revers:50,revert:47,review:[16,81],revis:[6,113],rewritten:29,rgb:71,rho:[61,97,127],rhou:61,rhov:61,richardson:[5,21,126,127],rid:27,ridg:47,riemann:[4,5,8,19,21,22,27,41,51,52,54,58,67,75,77,83,84,93,94,95,97,100,123,125,127,129,132,133,146],riemann_aug_jcp:114,riemann_interact:112,riemann_solv:93,riemann_tool:111,right:[5,31,56,59,64,75,83,88,90,91,95,97,119,120,146],rigid:[29,115],rigin:29,rigoutsi:6,rigoutso:16,rise:[29,64,121],rise_fract:[29,64],rise_shap:29,rise_tim:[29,64],rise_time_end:[29,64],rise_time_start:[29,64],risen:134,rjl:[6,16,100,117],rjlevequ:[4,27,28],rjlkei:13,rmi:28,rnode:115,robust:[41,115,140],robustli:116,rock:64,roe:[81,120],roman:53,root:[28,52,54,86,87,92],rossmanith:16,rotat:45,rough:59,roughli:[48,137],round:47,roundoff:83,routin:[4,5,6,15,19,24,26,29,31,33,34,40,41,42,47,48,57,61,62,65,66,67,70,73,75,78,80,83,86,89,90,93,95,96,99,104,107,108,111,113,115,116,120,125,127,129,134,140,141,143,144,146],row:[29,49,81,104,138,140],rp1:[120,146],rp1_acoustics_variable_adjoint:5,rp1_advect:58,rp1_ptwise:120,rp_:91,rp_sourc:90,rpn2:[5,120],rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:120,rpn2_vc_advect:109,rprint:[126,127],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:120,rsmc:134,rsphere:[43,78],rst:[50,51],rsync:50,rsync_clawpack:50,rule:[13,55,78],run1:57,run:[1,5,6,7,12,13,15,19,21,23,24,27,31,36,38,40,41,46,47,48,50,51,52,53,54,55,57,59,61,62,66,67,70,71,73,74,76,78,80,83,84,85,87,90,94,96,97,98,100,102,104,107,108,112,113,114,115,116,117,119,120,127,128,129,134,136,137,140,143],run_app_from_main:98,run_data:80,run_exampl:140,run_seri:98,runclaw:[46,108,117,120],rundata:[5,21,31,40,55,104,107,119,125,126,127,128,129],rundir:80,rung:[85,93],runmak:80,runnabl:98,runtest:[34,88,136],runtim:98,runup:59,ruptur:[29,41],rupture_tim:[29,64],rupture_typ:[29,64],safe:65,safer:57,safeti:81,sagemath:79,sagemathcloud:79,sai:[5,13,15,27,55,96,104],same:[3,5,6,8,13,15,21,24,27,30,31,37,40,42,43,44,47,49,50,51,54,55,57,59,62,64,67,70,71,72,73,77,81,83,85,86,87,90,91,93,98,99,107,108,112,113,119,120,125,126,127,128,132,138,140,143],sampl:[7,8,16,24,28,31,37,41,47,64,100,105,119,125,126,138,140,143],san:53,sanromd:53,santiago:47,satisfi:[93,104,146],save:[5,13,24,25,46,55,66,80,84,93,112,113,115,119,135,140],savecod:80,savefig:55,scalabl:[16,85],scalar:[26,29,87,95,120,125,146],scale:[4,29,45,47,61,67,85,86,107,113,115,128],scan:37,scatter:[3,21,61],scenario:[44,121],scheme:[81,91],schlieren:[3,61],schwarzschild:4,sci:16,scienc:[4,16,75],scientif:[4,16,85,88,99],scipi:[13,78,99,134,140],scp:13,scratch:[43,97],screen:[13,27,47,55,80,87,88,112,127,129],screenshot:[13,47],script:[11,18,19,27,29,36,40,47,50,53,57,61,67,70,75,78,82,84,85,87,88,93,98,99,100,105,115,120,124,128,129,140],scroll:13,sdist:51,sea:[29,40,41,42,44,47,64,101,111,121,128,138,140,142],sea_level:[31,44,55,128,138,140],seab:59,seafloor:[29,44,64,142],sealevel:[24,41,128],search:[1,13,54,70,85,98,100,113,115],sec:29,second:[3,15,29,31,34,40,43,47,51,55,61,77,83,87,93,104,107,113,119,125,128,134,136,137,140,143,146],section:[6,13,15,33,34,37,42,44,51,58,61,70,73,105,119,125,128,140],secur:13,see:[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,54,56,57,58,59,61,62,63,64,65,66,69,70,71,72,73,74,75,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146],seem:[95,100,124],seen:[12,21,31,33,34,35,44,50,65,90,125,130],segement:140,segmentedplanefault:[29,64],seism:[16,29],seismic:[29,64],select:[13,15,27,31,87,93,104,107,114,118,125,128,142],self:[29,93,140],semi:93,send:[13,23,90,120],sens:[26,47,115,146],sensit:[44,59],sent:[87,95],separ:[1,27,47,50,53,55,58,85,93,140],seper:98,sept:51,sequenc:[19,21,58,88,94,97,98,105,107,114,120,143],seri:134,serial:[88,92,98,137],serv:28,server:[13,28,47,50,51,115,138,142],servic:[24,56,75],session:[1,33,34,35,89,94],set:[0,1,2,3,5,6,8,13,14,15,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,50,51,52,53,54,55,57,58,63,64,65,66,67,69,70,77,78,80,82,83,84,85,86,87,88,92,93,94,95,96,97,98,100,101,104,105,107,108,111,112,113,115,117,119,120,122,124,125,126,127,128,129,130,134,135,138,140,142,143,146],set_all_st:92,set_aspect:45,set_aux_from_auxbc:95,set_corn:29,set_count:98,set_cparam:[77,95],set_dynamic_slip:29,set_num_ghost:95,set_printopt:83,set_q_from_qbc:95,set_subfault:29,set_xyz:140,setaux:[19,21,58,78,107,108,120,125,127,129],setaux_default:50,setenv:88,setgaug:[40,112],setlevel:87,setplot1:61,setplot2:61,setplot3:61,setplot:[0,1,2,3,7,18,19,21,24,38,40,62,69,70,89,90,98,113,141,144],setplot_fil:47,setplot_kml:47,setprob:[58,127,129,143],setrun:[5,6,7,8,15,18,19,24,31,33,34,36,38,41,42,44,55,57,59,66,67,71,101,102,104,107,111,112,113,116,119,120,121,134,138,141,143],setrun_setgeo:128,setup:[35,51,77,78,82,85,88,90,93,94,95,103,123,141],setup_gauge_fil:83,sever:[0,1,2,5,10,15,19,21,22,28,29,33,34,36,40,42,44,47,51,52,54,61,64,70,94,104,105,106,107,108,111,112,113,114,116,117,124,128,136,138,140,143],sftp:13,shaheen:87,shall:[56,75],shallow:[5,14,15,16,31,41,44,48,67,78,85,101,108,109,111,113,115,116,120,122,128,132,133,138,143],shallow_spher:[78,105],shallow_water_riemann_solv:24,shallowest:64,shape:[29,43,55,78,83,88,95,140],shapshot:13,share:[24,25,47,52,54,65,67,83,86,88],sharp:55,sharpclaw:[4,22,24,67,75,82,84,85,90,107,120],sharpclawnd:93,sharpclawsolv:93,sharpclawsolver1d:93,sharpclawsolver2d:93,sharpen:81,sharper:[47,55],sharpli:5,shear:[16,29],shell:[27,52,53,54,65,71,73,88,94,97,99,100,113,123],shg:61,shift:[5,29,44,49],ship:31,shock:[6,16,44,93,104],shock_bubble_interact:[33,35,82,85,94],shockbubbl:90,shoot:[70,85],shore:[31,41,104,128],shorelin:[47,140],shoreline_xi:140,shorter:[3,104,140],shortli:[27,105],shot:13,should:[0,1,2,3,4,5,6,12,13,15,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,49,50,51,52,54,55,57,59,61,62,63,64,65,70,71,73,78,83,86,87,88,90,92,93,94,95,96,97,98,100,101,104,105,107,108,111,113,114,115,119,120,121,123,124,125,126,127,128,129,130,134,136,138,140,141,143,145,146],shouldn:82,show:[0,2,3,9,10,27,29,33,34,40,47,50,51,55,57,61,73,83,97,100,105,111,140,141,143],showcolor:71,showgridlin:61,showitem:1,shown:[3,13,50,55,58,59,61,67,87,108,109,110,111,112,113,114,115,116,117,140,143],showpatchbord:61,shrink:140,shu:93,shuffl:86,siam:[16,23,85],sid:134,side:[6,15,17,31,47,59,64,86,105,120,146],sidebar:47,sift:[29,64,115],sift_slip:29,siftfault:[29,64,115],sigma:77,sign:[13,23,71,134],signatur:[3,78,81,83,84,86,91,134],signific:[59,118,121,140],significantli:[86,115],signitur:92,silenc:87,silent:86,silo:144,similar:[4,13,15,27,31,34,40,47,77,78,86,90,93,97,115,128,134,135,136,138],similarli:[36,48,82,88,90,137],simpl:[28,31,33,34,51,64,78,85,90,93,98,103,105,140],simplest:[63,97],simpli:[5,13,31,33,34,35,40,47,49,52,53,57,58,77,79,80,82,87,88,94,105,120,130,134,140,143,144],simplifi:[64,70,71,86,105,114,115,143],simul:[33,34,35,42,44,47,61,80,83,85,87,88,90,94,97,102,113,114,115,117,128,134],simultan:[47,113],sin:[43,71],sinc:[0,3,4,5,6,15,19,21,27,31,37,43,44,47,49,50,51,54,55,57,58,64,65,66,70,71,77,78,79,86,87,99,104,105,107,111,112,113,114,116,117,118,119,120,121,125,126,128,138,141,142],singl:[0,1,2,3,5,6,15,18,21,22,26,27,29,40,42,47,49,55,57,61,64,65,66,77,83,86,87,92,98,105,110,111,113,120,125,126,127,128,138,140,142,143],single_storm:134,sisc:[16,85],sit:13,site:[27,47,52,54,100],situat:[47,61],size:[19,29,40,47,55,65,66,70,83,86,88,93,113,127,129,138,140],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,61,120],slide:99,slider:[47,55],slightli:[15,49,113,114],slip:[24,29,41,103,138,142],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,93],slope_i:47,slope_x:47,slosh:117,slow:[13,47,87,96],slowest:86,slowli:55,small:[5,15,40,59,104,105,107,112,119,125,127,128,138,140,142],smaller:[13,47,59,67,83,87,107,125,127,128,129,140],smallest:104,smear:55,smooth:[29,93,104,143],smooth_data:140,smoothli:49,snapshot:[5,27,87,116],soc:[16,29],softwar:[6,13,24,28,41,44,56,62,75,85,86,87,130,138],sol:77,sole:120,solid:[3,15,47,64,90,124,125,127,129],solitari:16,solut:[1,3,4,5,15,21,24,26,34,40,43,61,64,66,70,73,78,80,83,85,86,87,90,93,95,96,97,104,105,111,112,116,119,120,124,125,126,127,129,136,143,146],solv:[4,5,8,15,16,19,25,33,34,44,54,76,78,80,83,85,90,91,94,116,120,125,138,143,146],solver:[4,5,6,19,21,22,24,27,41,52,54,58,75,76,80,83,84,87,95,109,111,113,114,115,116,117,125,127,129,132,133,146],solver_nam:120,solver_typ:[82,93],some:[3,4,5,6,7,8,10,12,15,16,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,52,54,58,64,65,66,70,72,73,75,78,79,81,86,87,89,90,92,94,95,96,97,99,100,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,120,121,124,125,126,127,128,129,130,134,135,137,138,140,143],someon:[27,57],someth:[13,26,27,57,63,70,87,92,93,100,138,141,143],sometim:[31,54,57,71,77,87,115,121,135,142],somewhat:[65,70,104,105,113,125],somewher:[62,111],sonel:142,soon:93,sorin:4,sort:[13,52,115,124,141],sound:[77,97],sourc:[4,16,22,24,27,29,37,41,47,48,50,51,52,53,54,55,56,58,59,70,75,78,82,83,84,93,94,96,97,98,102,103,105,113,114,115,121,125,127,128,129,131,132,133,134,138],source_list:98,source_split:[83,93,125,127,129,143],south:138,space:[5,6,7,15,16,29,31,40,47,49,64,83,87,90,104,111,119,125,126,127,128,129,138,140,143],spacial:128,span:[43,47,55],spatial:[6,16,29,59,90,104,107,111,120,127,129,146],spawn:105,specfi:140,special:[4,7,15,41,42,47,56,67,75,99,104,140],specif:[3,5,21,27,29,40,41,43,47,48,54,56,58,59,75,76,78,80,85,86,87,92,98,102,113,114,115,124,125,126,127,129,135,138],specifi:[0,1,2,3,4,5,6,7,14,15,19,21,24,26,27,28,29,31,32,36,37,38,40,41,42,43,44,46,47,49,55,57,58,59,61,64,65,66,67,69,70,72,77,80,83,86,87,90,92,93,96,98,100,101,102,105,107,110,111,112,113,114,115,119,120,121,122,127,129,130,132,133,134,135,137,138,140,141,142,144,146],speed:[31,77,81,91,97,113,120,125,128,134,135,140,143,146],speed_toler:128,spell:71,spend:112,spent:137,sphere:[43,78,108,128],spheric:[16,47],sphinx:[11,22,24,51,114],sphinx_web:50,sphinxcontrib:50,spite:[58,100],split:[5,6,65,83,86,93,111,112,125,127,129,137,143,146],spot:71,sprint:[126,127],spuriou:[15,105],sqrt:[3,31,59,77,90,97,127],src1:[58,133,143,146],src1d:133,src2:[78,133,143],src3:[133,143],src:[5,6,11,14,15,18,19,27,29,31,36,37,43,46,48,51,52,54,55,57,58,61,64,65,72,89,90,98,100,101,104,105,108,111,112,114,115,116,117,120,122,125,127,129,132,140,141,146],src_split:[125,127,129],srcn:[125,143],ssh:[13,27],ssp104:93,ssp33:93,ssplmm32:93,ssplmm43:93,ssplmm:93,ssprk22:93,stabil:[93,125],stabl:[74,83],stack:[65,111],staff:117,stage:[93,121,138,140],stai:25,stand:4,standard:[6,15,29,47,49,61,66,78,81,93,99,100,104,105,127,128,129,130,138,143,146],start:[1,2,4,5,6,7,9,13,23,26,27,28,29,31,33,34,35,36,40,41,43,47,49,52,53,54,55,57,63,64,71,73,74,77,88,92,93,99,100,104,105,112,115,119,120,128,134,136,138,143],start_dat:134,start_fram:92,start_max:31,state:[13,16,24,27,50,64,71,77,78,80,83,85,86,87,88,90,91,92,93,96,97,105,120,125,138,146],statement:[33,34,52,54,61,66,99,100,113,127],station:[43,121,142],stationari:138,statist:[24,112],statu:[13,27,46,80,97],stdout:105,steadi:[64,138],steep:146,stencil:95,stencil_width:95,step1:58,step2:78,step2i:111,step2qcor:78,step2x:111,step3i:111,step3x:111,step3z:111,step:[5,6,10,15,18,27,31,33,34,35,40,47,50,51,61,70,73,75,76,77,78,80,87,90,93,95,97,102,104,107,112,113,119,120,123,125,126,127,128,129,138,146],step_hyperbol:93,step_index:93,step_interv:127,step_sourc:[83,90,93],stepgrid:137,stepgrid_dimsplit:111,steps_max:[125,127,129],stiff:125,still:[1,5,7,8,13,15,21,23,25,28,31,32,47,48,52,58,61,66,70,75,93,104,105,111,112,113,114,115,116,119,120,128,134],stnd:43,stommel_storm_modul:111,stop:[65,71,107,115,127,129,140],storag:112,store:[0,1,13,31,36,47,49,50,61,66,86,87,90,95,96,97,105,107,113,124,126,128,134,137,138,140],storm:[16,23,24,41,111,114,115,116,117],storm_atcf:134,storm_fil:[128,134],storm_ibtrac:134,storm_modul:111,storm_nam:134,storm_radiu:134,storm_radius_fil:134,storm_specif:128,storm_specification_typ:128,storm_targ:134,str:[0,1,3,29,55,86,125,126,134,140],strang:[83,93,125,127,129,143],strategi:6,stream:71,stress:[77,87],stretch:140,strict:[56,75],stride:[21,140],strike:[29,64],strike_direct:29,string:[0,1,3,7,29,40,43,47,49,55,71,78,80,81,83,86,87,92,98,100,125,128,134,140],strip:[55,140],strip_archive_extens:55,stripe:47,strong:93,strongli:61,structur:[7,10,21,31,51,54,57,67,92,93,113,124,140],stub:115,student:4,studi:[44,59],style:[6,21,27,29,45,47,66,71,75,80,115],sub:[29,105,140],subclass:29,subdirectori:[5,19,21,22,33,34,50,51,54,57,63,73,82,87,100,105,124,128,130,136,140],subdivid:[29,64],subdividedplanefault:29,subdivis:29,subduct:[44,64],subfault:[29,41,115,116,142],subject:[47,104,126,128],submodul:[25,27,48,51,53],subpackag:100,subplot:[0,29,73],subprocess:117,subrepo:51,subrepositori:[27,51],subroutin:[4,6,9,15,21,31,58,104,111,120,125,126,137,143,146],subsampl:[49,138,142],subsequ:[3,10,61],subset:[29,115,138,140,142],substanti:[27,75,111,117],substitut:[56,75],subsurfac:138,succeed:93,succesfulli:78,success:[61,92,140,143],successfulli:[57,92],suffici:[13,15,19,64,65,102,107,128],suffix:[57,140],suggest:[4,23,28,43,49,54,73,74,118,120,128,145],suit:[27,47,105],suitabl:[5,8,15,19,41,44,47,92,103,120,121,134,140],sum:[40,64,87,95,137],sum_:146,sum_p:146,summar:[3,27,30,52,104,106,143],summari:[23,24,51,115,125,126,127,128],superbe:[81,125,127,129],superbee_limit:81,superclass:93,supercomput:[85,87,88],superpack:99,superposit:64,superpow:81,superpower_limit:81,supplement:130,supplementari:105,suppli:[104,134,143,146],support:[4,8,13,21,37,44,47,50,54,64,75,77,78,83,86,87,89,93,111,113,114,115,116,120,125,134,135,138,141,144],suppos:[15,58,61,71,100,104],suppress:[0,2,3,27,47,55,112,114,125,126],sure:[1,19,27,36,50,51,61,67,77,86,88,90,92,96,98,121,140,141,142],surfac:[16,21,29,31,40,42,44,47,64,70,72,78,85,97,101,104,111,128,138],surface_or_depth:[47,72],surg:[16,23,24,41,111,114,115,116,117,134],surge_data:128,surround:[104,140],surviv:75,swap:140,swaphead:140,sweep:[8,120],symbol:[3,61,100],symmetr:[3,43,143],symmetri:15,syntax:11,sys:[80,127,129],system:[4,15,16,22,34,35,47,48,52,54,55,58,65,66,75,85,87,88,90,91,94,97,100,105,120,125,127,129,136,143,146],systemat:21,t0000:61,t0001:[61,62],t0002:61,t_end:93,t_r:5,tab:[13,50,118],tabl:[55,59,70,86],tackl:[23,27],tag:[47,50,51,126,127],take:[5,6,21,26,27,29,43,50,59,61,64,71,77,83,90,93,97,98,104,105,110,116,125,126,127,128,140,143,146],take_one_step:93,taken:[6,31,64,87,93,104,125,143],tall:0,tan:71,tank:[15,44],tar:[13,52,55,117,118],tarbal:[51,141],tarfil:[17,52,54,114,115,116,117],target:[5,52,54,71,78,90],task:70,tchknnnnn:119,tck00100:112,tck:112,tckaaaaa:112,tckbbbbb:112,tcp:13,tcsh:88,tcvital:[115,134,135],td9635:134,td9636:134,teach:[41,44,103],team:[4,23,56],techniqu:[16,25],technolog:[4,75],tell:[49,62,66,71,77,86,100,105],templat:78,temporari:95,temporarili:61,ten:[4,67],tend:93,tend_max:31,tensil:16,tensor:29,tensorproductfault:29,term:[4,24,41,44,56,64,78,83,84,93,104,114,115,125,127,128,129,132,133],termin:[53,79,123,125,126],terrain:59,terrel:4,test:[21,24,29,33,37,46,47,51,52,53,54,59,70,75,76,78,84,85,98,104,108,112,113,114,115,120,129,134,137,138,140],test_acoust:105,test_app:[98,105],test_bind:28,test_dtopotool:29,test_etopo1:[115,138],test_shallow_spher:105,test_topotool:[108,140],testpypi:51,teton:47,tex:1,text:[11,50,51,55,66,80,86,93,111],tfinal:[5,77,80,97,119,125,127,129],tfluct:93,tfluct_solv:93,than:[3,5,6,13,15,19,21,27,28,29,31,40,47,50,51,52,54,55,57,58,59,63,64,66,70,73,77,78,80,83,86,87,88,90,91,93,98,99,100,104,105,107,110,111,112,113,114,115,117,118,119,121,124,125,126,128,134,135,137,138,140,143,146],thank:[4,85],thei:[3,5,6,13,15,26,27,29,31,40,44,47,51,54,55,58,61,66,70,83,90,93,98,104,105,113,124,128,134,138,140,143],them:[5,13,17,21,27,29,31,40,47,50,52,61,62,67,75,77,82,86,87,88,90,98,102,105,108,117,131,134,140,143],theori:[56,75,146],therefor:[78,88,115,138],thereof:13,thesi:[16,93],theta:81,theta_limit:81,thi:[0,1,2,3,5,6,8,10,11,12,13,15,16,17,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,48,49,51,52,53,54,55,56,57,58,59,61,62,64,65,66,70,71,73,75,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,134,135,136,137,138,140,141,142,143,144,145,146],thing:[0,13,15,21,27,28,44,50,55,73,82,99,104,105,114,119],think:[54,59],third:[15,31,49,81,137,140],thn:125,thoroughli:86,those:[4,6,10,12,21,23,44,47,48,51,67,77,78,80,87,90,95,104,105,107,119,130,136,140,143],though:[3,67,134,138],thought:121,thousand:[4,67],thread:[37,65,104,137],thredd:[138,142],three:[3,13,16,21,29,31,44,47,58,61,64,88,92,98,105,125,128,138,140,143],threshold:59,through:[4,13,27,33,34,40,44,47,61,67,70,78,90,95,97,98,100,103,104],throughout:113,thu:[6,43,87,90,115,134],tick:47,ticklabel:110,ticklabel_format:45,tidal:[87,121],tide:[40,41,43,115,121,140],tidesandcurr:43,tier:13,tild:146,time:[0,1,5,6,7,10,15,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,49,55,61,62,64,65,66,67,71,75,77,80,81,85,86,87,93,95,97,104,105,107,110,112,113,115,116,117,119,120,123,124,127,129,134,138,141,142,146],time_files_scanf:144,time_integr:93,time_offset:134,time_zon:43,timer:114,timespan:55,timestep:[80,87,112,114,125,127,129,134],timezon:55,timing_plot:117,tip:[23,41,52,54,70,84,85,90,99],tipe:97,titl:[0,1,4,16,40,47,55,70,85,113,140],title_with_t:[0,71],toctre:[7,24,41,85],todo:[15,31,120,134,140,146],togeth:[5,15,27,29,50,64,104],toggl:127,token:28,tokyo:134,toler:[5,31,98,104,105,113,126,127,128],tolsp:104,too:[6,43,47,50,51,112,127,129],tool:[7,8,16,21,22,27,28,29,33,34,41,42,43,44,47,49,54,55,61,64,69,70,71,72,74,85,100,103,108,109,113,114,128,130,138,140,142,144],toolkit:[88,144],top:[0,1,3,11,22,28,29,47,50,51,52,54,64,71,90,91,100,105,119,123],topgraphi:140,topic:61,topo1:138,topo1writ:140,topo2kml:55,topo2kmz:55,topo2writ:140,topo3writ:140,topo:[24,41,44,47,49,55,72,100,107,109,115,117,121,128,138,140],topo_data:128,topo_fil:140,topo_file_nam:55,topo_fnam:140,topo_func:140,topo_miss:117,topo_typ:[49,55,111,112,115,138,140],topo_upd:107,topo_xlim:47,topo_ylim:47,topofil:[49,55,115,116,117,128,138,140],topograph:47,topographi:[15,16,24,31,40,41,44,49,55,59,64,72,102,103,107,108,109,111,112,115,121,132,133,139],topograpi:138,topoplotdata:111,topotool:[41,43,49,55,108,109,110,111,112,115,116,138,139],topotools_exampl:[41,103,140],topotyp:[128,138],topotype1:140,torrilhon:81,tort:[56,75],total:[6,29,47,64,87,93,125,126,127,129,137],total_energi:87,total_step:[125,127,129],tout:129,toward:[4,29],tprint:[126,127],trace:87,traceback:71,track:[23,24,27,47,50,54,65,77,98,105,107,116,128,134],track_color:134,tracker:27,tradeoff:104,tradit:[80,86],traffic:[120,143],trail:[53,54,55],tran:16,tranpsort:125,trans_cor:83,trans_inc:83,transect:[31,128],transfer:28,transform:[5,37],translat:[64,121],transmiss:93,transmit:125,transon:113,transpar:[47,55],transport:[125,127,129],transpos:5,transvers:[8,83,113,120,125,143,146],transverse_wav:[83,125,127,129],trap:37,travel:126,travi:21,tree:[48,54,90,123],tri:134,triangl:64,triangular:[29,41,115],trickeri:51,trigger:[86,128],troubl:[33,34,70,85],troubleshoot:[24,52,85],truli:92,truncat:[15,86],tscale:55,tstart:93,tstart_max:31,tsunami:[5,15,16,24,31,41,42,48,59,64,87,104,107,110,116,117,121,128,135,138],tt3:[64,140],tulan:23,tune:25,tupl:[3,29,43,55,64,71,83,87,140],turbul:[44,93],turn:[40,42,44,55,68,71,87,105,112],tutori:[13,28,51,73,76,80,85,94,100,103],tvd:[77,83,93,146],twice:[47,125],twine:51,twitter:23,two:[0,3,4,7,8,14,16,21,27,29,31,40,43,47,48,50,55,61,66,71,77,83,86,87,90,93,96,98,102,103,104,105,107,111,112,115,117,119,120,122,123,127,128,138,140,143,146],two_d_classic_sourc:78,txt:[27,40,46,51,75,87,113,114,115,119,134],txxxx:86,type:[3,4,7,13,19,27,29,33,34,36,40,47,57,61,71,72,73,77,78,79,81,83,88,89,93,94,97,98,99,126,127,128,134,135,138,140,146],typic:[3,19,57,58,61,64,66,67,73,78,88,90,93,95,104,126,127,137,138,141,142,143,146],typo:116,u_t:97,u_x:97,ubuntu:[13,53,99],ucar:[62,86],ucsb:[29,64,142],ucsbfault:[29,64],ulimit:65,ultrabe:81,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,59],unchang:[5,61],uncommit:[27,46,51],undefin:96,under:[4,7,21,28,35,47,48,52,56,58,70,75,83,105,113,115,118],underflow:107,underli:[3,47,113],underlin:27,understand:[9,24,33,34,44,70,85,97,104,120],understood:44,underwat:[41,47],undesir:119,undivid:104,unexpect:[43,47,51,55,57,101,106,107,108,109,110,134],unidata:[62,86],uniform:[29,64,67,78,115,138],uniformli:138,unind:[51,55,101,106,107,108,109,110,134],uninstal:[51,54,100],union:138,uniqu:[1,66,112,134],unit:[29,42,43,48,64,83,113,134],univers:[4,16,23,50,56,75,92],unives:23,unix:[36,63,99],unknown:[29,95],unkown:95,unless:[6,36,37,55,121,125,140],unlik:[27,51,66],unlimit:[65,86],unmap:83,unnam:134,unnecessarili:108,unneed:112,unpack:51,unpredict:61,unrecogn:98,unset:104,unsplit:[83,125,127,129],unstabl:112,unstructur:140,unsuccess:92,unsur:125,untar:53,unterweg:75,until:13,unus:[2,86],unzip:47,upbnd:[126,127],updat:[6,13,21,22,24,31,45,48,52,53,54,73,93,95,96,102,107,111,113,114,115,116,117,120,126,127,129,131,134,137,143],update_saved_valu:93,updip:[29,64],upgrad:74,upload:51,upon:[5,95],upper:[21,31,81,83,90,125,127,129,138,140],upper_bound_limit:81,upper_glob:83,uprint:[126,127],upstream:51,upstrik:[29,64],upward:44,upwind:125,url:[4,16,47,51,115,116,138,140],usa:134,usa_ag:134,usag:[0,1,2,3,13,47,54,86,115,134,140],use:[3,4,5,12,13,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,48,49,51,52,53,54,56,57,58,59,61,62,64,65,66,69,70,71,73,74,75,77,78,79,80,81,82,83,85,86,87,88,90,93,94,95,96,97,98,99,100,102,104,105,108,110,111,112,113,114,115,118,120,121,123,125,126,127,128,129,134,138,140,141,142,143,144,145,146],use_adjoint:5,use_for_kml:47,use_fwav:[120,125,127,129],use_petsc:[82,88],used:[0,1,2,3,4,5,6,7,8,11,13,15,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,50,51,54,55,56,57,58,59,61,62,64,65,66,67,70,71,73,75,77,78,80,81,82,83,85,86,88,90,91,92,93,95,97,98,100,101,104,105,108,112,113,114,115,116,117,119,120,121,124,125,126,127,128,129,132,134,137,138,140,143,144,146],useful:[0,3,10,18,26,27,31,33,34,37,40,42,45,46,47,49,52,53,54,55,65,66,72,75,78,85,87,99,100,104,105,115,120,125,126,128,138,140,141,146],useoffset:45,user:[0,2,3,4,5,6,12,13,18,19,21,22,24,25,26,27,31,37,44,47,52,53,54,55,59,61,64,71,78,79,82,86,88,96,98,99,100,104,111,113,115,117,120,125,127,128,129,131,140,146],user_bc_low:90,usernam:[27,28],uservari:61,uservariablefil:61,uses:[28,29,31,33,34,41,47,49,50,61,67,78,80,83,88,98,105,113,120,128,137,140,146],usg:[4,29,142],using:[0,1,3,4,5,6,7,9,11,12,13,15,16,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,50,51,52,53,54,55,57,58,59,62,63,64,65,66,67,70,71,72,73,74,77,78,79,80,81,83,85,86,88,89,90,93,95,96,97,99,100,104,105,111,114,115,117,118,120,123,125,127,128,133,134,137,138,140,141,142,144,146],usr:62,usual:[0,2,3,5,6,29,40,42,47,55,57,62,64,66,82,83,88,90,91,93,98,102,104,113,120,125,126,127,128,129,141,143],utah:23,utc:[47,55],util:[22,24,27,41,47,66,70,73,85,100,105,124,139,140,141],uwamath:13,valid:[3,44,64,80,87,92,95,113,128,134,135,140],valout:[62,66,115,137],valout_geo:62,valout_nc:62,valout_nc_geo:62,valu:[3,5,6,7,15,19,21,26,29,32,33,34,37,40,41,43,45,46,47,49,55,57,59,61,64,65,66,71,78,83,85,86,87,90,91,92,93,95,97,98,104,105,107,108,110,111,113,115,117,119,120,121,125,126,127,128,129,134,135,138,140,141,143,146],valueerror:[29,134,140],valuemax:31,van:[81,93,125,127,129],van_leer_klein_sharpening_limit:81,vanish:5,vanleer:[77,93,125,127,129],vari:[3,14,16,29,41,49,59,90,92,111,120,121,122,146],variabl:[0,3,5,13,21,24,26,27,29,31,33,34,36,40,41,46,47,50,52,54,61,63,65,67,71,77,78,86,88,92,93,95,96,98,100,111,112,113,115,117,119,120,125,126,127,129,134,138,140,141,143],variable_dt_refinement_ratio:[126,128],variant:[19,52,98,105],varieti:[40,80,99],variou:[19,21,29,44,50,61,64,71,73,83,97,99,100,104,113,120,124,128,134],vastli:121,vector:[5,21,77,81,87,95,115,120],veloc:[15,31,43,61,73,90,97,113,121,125,126,127,128,129,143],verbatim:50,verbos:[27,29,43,55,80,83,87,93,105,125,127,129,134,140],verbosity_regrid:[126,127],veri:[3,5,15,21,31,44,47,51,54,55,64,71,75,78,86,87,88,89,90,93,105,108,112,125,135,138],verifi:[43,98,105,142],verifyerror:98,versa:5,version:[0,1,4,5,6,7,8,9,11,13,14,15,19,21,22,27,29,31,32,37,40,41,42,44,47,49,51,52,53,55,58,59,61,62,64,65,70,71,73,74,78,81,86,88,93,94,96,99,104,105,107,108,111,112,113,114,115,116,117,118,120,122,123,125,126,127,128,129,132,133,134,138,140,143,146],versu:140,vertic:[29,44,47,55,121,128,140,142],via:[5,13,21,22,27,28,29,33,34,37,38,40,42,44,47,50,51,52,53,54,57,61,64,65,67,71,74,77,83,86,89,92,94,96,100,104,105,115,120,123,130,132,133,138,140,143],vice:5,view:[3,4,21,33,34,40,41,47,49,50,55,66,70,72,73,77,88,94,111,115,130,131],viewabl:[47,80],viewable_attribut:80,vim:27,violat:[93,140],virtual:[4,13,24,26,95,99],vis:80,visclaw:[1,7,13,21,22,23,27,40,42,45,47,51,53,54,57,61,67,71,72,73,74,85,89,94,100,123,124,130],visibl:[13,47,103,130],visit:[21,24,70,118],visual:[22,23,27,33,34,40,41,54,61,66,67,70,85,89,90,100,111,144],vogl:4,volcano:4,volum:[4,16,28,31,38,49,55,61,85,126,137,138,143],vrt:47,wai:[5,6,13,15,25,27,33,34,40,47,49,54,55,56,57,71,73,74,75,77,80,82,83,88,90,92,94,97,99,100,102,103,107,113,114,115,118,120,124,125,131,135,138,143,145,146],wait:13,wall:[15,37,90,97,112,115,117,125,127,129,137],wang:29,want:[0,3,10,13,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,50,51,52,53,54,55,57,58,59,65,71,73,77,78,79,80,86,87,88,100,103,105,112,115,118,120,124,127,128,131,134,138,140,141],warm:81,warn:[27,86,87,93,125,141],warp:47,warranti:[56,75],washington:[4,16,23,50,56,117,140],water:[5,15,16,40,41,42,43,44,55,67,70,78,85,108,109,113,115,116,120,121,128,138,140,142,143],water_level:43,wave:[4,5,6,15,16,24,31,44,47,48,64,81,83,85,90,91,93,104,111,113,114,121,125,126,127,128,129,143],wave_toler:[104,128],wavelength:44,web:[22,24,27,33,34,47,50,51,115,130,140],webpag:[21,33,34,38,42,47,51,57,116,121],webserv:13,websit:[15,47,50,130,140],weight:47,welcom:[23,75],well:[4,6,27,41,47,48,50,54,55,64,65,66,67,70,73,74,92,93,102,114,115,125,126,132,133,134,143,146],wellington:134,wendroff:[83,93,125,127,129,146],weno:[67,85,93],weno_ord:93,went:54,were:[4,6,19,40,50,58,61,62,78,104,107,113,116,138],west:138,western:140,wet:[31,41],what:[5,6,9,13,21,24,27,29,30,44,46,47,50,51,52,54,55,57,58,61,62,66,70,77,80,84,92,95,97,99,100,103,104,105,112,121,124,125,127,128,129,130,134,138,140,142,143],whatev:[28,62,77,92,120],when:[5,14,15,19,27,28,29,31,36,37,40,45,46,47,49,50,51,52,54,59,61,64,65,66,67,70,71,73,77,84,86,88,89,93,96,100,104,105,107,108,110,112,113,114,120,121,122,124,125,126,127,128,129,130,134,138,140,141,142,143,144,146],whenc:87,whenev:[27,112,143],where:[1,3,5,6,13,15,21,26,29,31,33,34,36,40,41,44,47,49,50,52,54,55,57,59,61,62,66,67,73,80,83,84,85,86,88,91,100,104,107,108,111,112,113,119,121,124,125,127,128,129,134,137,138,140,143,146],wherea:[40,47,70,88],wherev:[28,141],whether:[3,6,13,15,21,43,49,56,57,61,75,83,86,87,92,93,104,105,113,120,125,126,128,140],which:[0,1,3,4,5,6,7,11,13,15,19,21,24,27,28,29,31,33,34,35,40,42,44,47,49,50,51,52,53,54,55,57,59,61,64,65,66,71,73,74,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,96,97,98,99,102,104,105,107,108,111,113,115,116,119,120,121,125,126,127,128,134,135,138,140,142,143,145,146],whichclaw:141,white:55,whith:78,who:[10,18,21,23,31,37,44,54],whole:[27,47,87,88],whose:[3,71,78,90,91,125,126,140],wide:[54,99,100],wider:71,width:[29,47,55,64,66,83,90,95,104,127,129],wiki:94,wikipedia:49,wind:[115,128,134,135,140],wind_forc:128,wind_index:128,wind_refin:128,wind_spe:134,window:[13,29,61,73,99,123],wisdom:55,wise:[27,93],wish:[4,13,14,21,28,33,34,44,47,52,54,61,69,70,85,90,93,94,96,100,102,104,113,122,130,132,133,141],within:[6,15,27,52,54,67,71,89,98,100,104,120,124,130,140],without:[15,21,36,40,44,50,51,53,55,56,57,58,61,71,73,74,75,81,86,87,98,100,101,105,106,107,108,109,110,127,129,134,141,143],wkt:47,wmo:134,wmo_:134,wmo_ag:134,won:[13,78,140],woodward:114,word:[87,115,134],work:[3,5,8,13,15,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,49,50,51,52,53,54,55,61,63,64,65,71,74,75,76,77,79,80,81,85,86,87,88,91,93,94,99,100,102,103,104,105,109,110,111,112,113,114,115,118,120,124,125,126,128,130,135,138,141,145],workflow:[102,130,134],workspac:[61,95],world:[44,59,85,88,134],worst:121,worth:95,worthwhil:90,would:[2,3,13,15,26,27,31,37,47,49,51,52,54,57,58,64,66,71,75,77,80,83,87,98,105,113,121,124,125,128,134,138,143],wouldn:58,wpalg:16,wrap:[55,75,78,83,93,98,134],wrapper:140,write:[27,29,40,46,49,59,64,66,67,70,77,80,83,84,86,87,88,92,113,115,127,129,134,138,140],write_:86,write_arrai:86,write_atcf:134,write_aux:[86,92],write_aux_alwai:[77,80,87],write_aux_init:[77,80],write_aux_int:87,write_geoclaw:134,write_hurdat:134,write_imd:134,write_input_data:31,write_jma:134,write_p:[86,92],write_tcvit:134,written:[6,11,24,29,36,40,54,55,56,64,66,67,71,75,84,86,90,99,113,120,125,126,127,128,129,134,140,143],wrong:[54,58,61,87,100],www:[4,13,16,29,39,41,50,56,62,75,78,83,86,88,114,116,134,140],x_1:5,x_2:5,x_cell:55,x_edg:55,x_i:[120,143,146],x_inch:55,x_mask:140,xarr:83,xarrai:140,xarray_d:140,xclaw:[33,34,80],xclawcmd:80,xclawerr:80,xclawout:80,xcode:74,xdir:80,xiaom:29,xinsheng:[4,48],xinshengqin:[4,48],xleft:[126,127],xlf:94,xlimit:[0,40,47],xllcenter:[49,115,138],xllcorner:[49,138],xllower:115,xlow:66,xlower:[0,3,15,21,26,78,115,127,129,138,140,143],xlowerg:78,xmax:0,xmin:0,xpoint:128,xrang:90,xtick:45,xupper:[0,21,127,129,140],xxdiff:105,xxx:138,xxxx:61,xylim:29,xzf:53,y_cell:55,y_edg:55,y_inch:55,year:[4,16,21,47,55,85,106,116,134],yellow:[55,71,134],yellow_red_blu:71,yes:61,yet:[1,13,19,24,44,48,50,53,55,70,93,113,114,115,116,117,118,120,125,127,145],yianni:[4,16,75],yield:3,yleft:[126,127],ylimit:[0,40,47,124],yllcenter:[49,115,138],yllcorner:[49,138],yllower:115,ylow:66,ylower:[3,21,26,78,115,127,138,140],ylowerg:78,ymax:0,ymin:0,yml:105,yong:16,you:[0,3,4,5,13,14,15,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,53,54,55,57,58,61,62,63,64,65,66,67,69,70,71,73,74,75,77,78,79,80,82,85,86,87,88,89,90,93,94,95,96,97,99,100,102,103,105,107,112,113,114,115,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,136,138,141,142,143,145],your:[6,14,15,18,19,23,24,25,31,33,35,37,40,49,50,51,52,53,54,62,65,70,71,73,75,76,77,78,79,82,84,85,87,96,97,99,100,101,102,104,105,107,115,120,122,123,132,133,138,141,143],yourself:[37,40,53],ypoint:128,yupper:[21,127,140],z_format:140,zenodo:[4,53,118],zero:[3,15,29,37,55,61,77,90,95,97,121],zip:[12,47,51],zipinfo:47,zlib:86,zlim:55,zlower:21,zone:[44,47,55,126,127],zoom:47,zsh:88,zupper:21,zvar:140},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.6.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[77,80,134],"default":[14,101,122,132,133],"final":51,"function":[43,55,60,73,87,93,146],"import":100,"new":[42,63,82,105],"switch":61,"true":71,AWS:53,Adding:[27,47,82,90,120],For:6,Going:84,One:[120,146],The:[47,60,61,97],Use:96,Using:[5,13,24,48,53,54,58,62,65,87,90,93,120,124,143],about:[4,75],access:73,acoust:[91,97],adapt:[6,15,24],add:71,addit:[47,53,126,128],adjoint:5,advect:91,after:119,afterfram:61,algorithm:[6,16,67,146],alias:47,all:[3,54],amazon:13,ami:13,amr:[3,5,6,21,65,104,126,128],amrclaw:[7,8,9,10,17,24,106,107,108,109,110,111,112,113,114,115,116,117,126,127,143],anoth:71,app:51,applic:[11,12,16,24,25,57,63,88],approach:8,arrai:[66,96],arriv:128,artifact:47,ascii:[66,86],attribut:[0,1,2,3,26,47,71],author:4,auto:[29,43,55,140],aux:[66,77],auxiliari:90,avail:38,axes:45,b4step:[14,143],background:71,backward:[17,115,116,117],base:57,basic:[47,76,89],bathymetri:142,befor:143,better:28,between:[28,71],bibliographi:[16,24],binari:66,binder:28,book:38,boundari:[6,15,90,143,146],branch:27,bug:27,built:[50,82],buoi:142,burger:91,candid:51,capac:146,cautionari:44,cell:6,cfl:81,chang:[17,21,71,93,106,107,108,109,110,111,112,113,114,115,116,117],chardiff:105,check:[27,105],checkpoint:119,chile:47,choic:31,choos:6,cite:[4,85],clamshel:15,classic:[17,24,33,34,93,106,107,108,109,110,111,112,113,114,115,116,117,125,129,136],claw:[68,123],clawcode2html:11,clawpack:[12,13,16,17,18,19,20,21,22,23,24,28,48,50,51,52,53,57,67,68,78,81,93,94,114,115,116,117,118,129,145],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,71],clawutil:[17,107,108,109,110,111,112,113,114,115,116,117],clinic:23,clone:[27,53],cloud:79,code:[11,24,27,42,54,68,105,141,143],color:71,colorbar:47,colormap:71,command:[28,35,61,73,82,141],commit:27,commun:[23,27,68],comparison:105,compat:[17,115,116,117],compil:[37,53,57,62,96,131,141],compon:[22,71],comput:[67,119],conda:53,condit:[6,15,90,97,143,146],contain:28,content:[24,27,71,77,87,93,99,105],continu:105,contourf:71,contribut:[25,27],contributor:75,control:[77,80,97],convers:19,convert:[11,18,19],coordin:[45,47],copi:63,correctli:88,coverag:27,creat:[13,28,31,47,51,61,63,77],creation:77,criteria:104,current_data:[26,73],curv:71,custom:[93,120],dart:142,data:[47,66,124,128,135,138,140,141,142,143],debug:[71,126],defin:15,depend:[81,94],deprec:8,depth:45,deriv:[77,87],describ:16,desir:124,detail:6,dev:68,develop:[23,24,27,68],diff:105,differ:[47,54,58,67,71],dimens:[83,146],dimension:120,directli:13,directori:[54,57,63,71],displac:138,docker:[28,53],dockerfil:[28,51],docstr:[29,43,55,140],doctest:105,document:[9,11,29,43,50,51,55,85,114,115,131,140],doe:53,doing:51,domain:[83,97],done:143,download:138,doxygen:9,dtopo:139,dtopotool:29,duplic:57,each:[27,143],earth:47,earthquak:[64,142],easi:100,ec2:13,elev:45,environ:[37,123],equat:[91,97],error:[27,96],euler:91,event:[23,47],exampl:[12,24,25,33,34,35,38,40,42,47,54,61,63,69,82,85,88],exe:141,exist:63,experi:54,extra:50,extrapol:104,f2py:141,faq:71,faster:47,fault:64,featur:85,fflag:37,fgmax:31,figur:[47,71],file:[13,28,30,31,47,49,50,51,53,58,61,71,73,105,119,128,138,143],fileio:86,find:[13,71],finer:6,fix:[27,31,32,65,128],flag2refin:104,flag:[5,6,57,104,126],flow:[24,77],flowchart:10,fly:70,fork:27,format:[31,66,138],formul:146,fort:[66,71],fortran:[21,24,30,34,36,37,53,74,96,105,141,143],found:61,frame:87,friction:59,from:[13,18,19,21,24,27,29,35,38,43,55,73,78,82,89,140],full:24,fund:[4,75],further:84,fvmhp:38,galleri:[50,61],gaug:[40,47,87,142],gdal:47,gener:[17,21,29,43,50,55,115,116,117,128,140],geo:128,geoclaw:[5,14,15,17,21,24,28,41,42,43,44,45,47,65,68,72,101,104,106,107,108,109,110,111,112,113,114,115,116,117,122,128,132,133],geometri:83,geophys:24,get:[24,42,61],gfortran:[37,94],ghost:6,git:[27,46,53,74],github:[27,51],global:113,godunov:146,googl:47,gpu:48,grid:[6,15,31,32,49,65,83,128],guid:[5,27,50,51,102,103],guidelin:27,hack:68,hazard:44,hdf5:86,help:61,high:146,hint:[44,71,99],host:28,how:[71,73,87],hpc3:68,html:[11,73],imag:[28,47],imagediff:105,implement:104,includ:12,independ:81,indic:85,initi:[6,90,97,143],input:[21,31,86,125,126],instal:[27,34,35,52,53,54,62,67,74,85,88,94,96,99,100,136,141],instanc:[13,53],instruct:[27,54],integr:105,intel:37,interact:[73,82],interfac:67,interpol:31,interpret:35,iplotclaw:73,ipython:[35,82,130],issu:27,item:71,jupyt:[28,35],kaust:68,keep:46,kinemat:64,kml:47,kmltool:55,kmz:47,latest:27,latex:73,latitud:[45,47],launch:[13,53],level:27,lflag:37,librari:[47,58],licens:[4,56,75],limit:81,line:[35,73,82,105,141],link:20,load:47,local:131,locat:40,log:[13,87],longitud:[45,47],machin:[28,145],make:[71,88,130,141],makefil:[36,57,58,90,119],man:59,map:47,mapc2p:60,master:[17,27],math:79,matlab:61,matplotlib:94,maxfram:61,maximum:128,mesh:[6,24],method:[0,1,2,3,146],migrat:24,model:[44,64,102,103,142],modifi:[27,58,119],modul:[29,43,55,85,98,99,127,129,140],monitor:[31,128],more:[6,34,36],most:27,move:[28,29],multipl:47,name:[57,58],need:47,netcdf:[49,62,66,86,138],never:27,next:[52,53,54,94],nose:94,note:[106,107,108,109,110,111,112,113,114,115,116,117,118],notebook:[28,35,99,130],numpi:94,object:[83,124],obtain:94,okada:64,old:[8,50],older:24,onli:54,openmp:65,oper:74,option:[47,52,53,73,88,90],order:96,other:[16,17,22,23,28,52,71,114,115,116,117,118],out:27,outdir:71,output:[31,32,57,61,62,65,66,77,86,87,105,119,125,126,128,141],overlai:47,overview:[24,124],own:[13,28,90],packag:[21,54,86,91],page:50,paper:16,parallel:[53,67,83,88,89,95],paramet:[21,40,71,73,97,125,126,128],pass:88,patch:83,path:[61,100],pcolor:71,petclaw:[83,95],petsc:[53,88],photo:68,pip:[52,54,74,141],pixel:105,plot:[3,13,21,24,31,40,42,45,47,57,61,62,69,70,71,72,73,82,88,89,105,124,130,141,144],plot_typ:3,plotax:47,plotclaw:61,plotdata:47,plotfigur:47,plotitem:47,pointwis:120,port:78,post:70,ppflag:37,pre:37,prepar:51,prerequisit:74,previou:23,print:126,printfram:73,problem:[8,78,90,97,143],procedur:31,process:[31,53,70],processor:37,produc:73,propag:146,provid:71,pth:100,publish:47,pull:27,pyclaw:[17,21,24,33,35,53,54,75,76,77,78,79,80,81,82,83,85,86,87,89,92,93,94,95,97,98,105,106,107,108,109,110,111,112,113,114,115,116,117,136],pyflak:27,pylint:27,pypi:51,python:[19,73,74,94,99,100,139],pythonpath:[100,123],q0002:66,qinit:[101,128,138],quantiti:[77,87],quick:[54,102,103],raw:66,readm:11,recent:[23,27],rectangular:64,refer:[16,48,85,99],refin:[6,15,24,104,128],region:[104,128],registr:49,regress:105,releas:[51,106,107,108,109,110,111,112,113,114,115,116,117,118],remot:27,remov:47,replac:58,report:27,repositori:[12,17,22,27,46,51,114,115,116,117,120],request:27,requir:[47,53,99,143],resolut:[47,146],resourc:24,restart:[28,77,119],result:[13,42,47,62,89,130],richardson:104,riemann:[17,24,85,90,91,106,107,108,109,110,111,112,113,114,115,116,117,120,143],routin:[14,21,58,72,101,122,132,133],rst:11,run:[28,33,34,35,42,77,79,82,88,89,105,125,126,141],ruptur:64,sage:79,same:58,sampl:[127,129],save:[87,130],script:90,sealevel:121,search:61,serial:[83,95,105],servic:13,session:23,set:[42,61,71,73,90,121,123,141],setaux:[122,143],setplot:[61,71,73,124],setrun:[21,40,125,126,127,128,129],shallow:91,share:130,sharpclaw:93,shoot:[27,61],should:67,signatur:93,simul:77,simultan:105,sinc:17,size:71,slip:64,softwar:[4,16],solut:[71,77,92],solv:97,solver:[67,77,85,90,91,93,97,120,143],some:[28,71,142],someth:71,sourc:[57,64,90,135,142,143,146],space:146,spatial:143,special:[3,126],specif:[31,97,105,128,134,143],specifi:[71,73,104,124,125,126,128,143],sphere:15,sphinx:[50,131],sprint:[23,68],src1d:[132,143],src:[133,143],start:[24,42,102,103],state:95,statist:137,step:[52,53,54,94,143],stop:[13,28],storm:[102,128,134,135],subfault:64,surfac:45,surg:[102,135],sys:100,system:74,t0002:66,tabl:[24,85],tar:[51,53],term:[59,90,143,146],test:[27,34,35,88,94,105,136],than:71,thi:[4,50],tide:142,tile:47,time:[125,126,128,137,143],tip:[27,36,45,47,88],titl:71,tool:[19,24,31,40,45,105,134,139],top:27,topo:139,topographi:[29,42,47,128,138,140,142],topotool:140,track:46,transfer:13,travi:105,triangular:64,troubl:[27,61,141],troubleshoot:[54,96,141],tsunami:[44,47,103,142],tutori:[23,97,99],tvd:81,understand:77,univers:68,upcom:23,updat:[27,50,51],use:67,used:141,useful:28,user:[15,23,28,67,143],using:[44,61,143],utah:68,util:[43,55,98],valu:[31,77],vari:143,variabl:[37,57,90,123],version:[24,36,46,48,50,54,100],view:13,virtual:145,visclaw:[17,24,70,106,107,108,109,110,111,112,113,114,115,116,117],visit:144,visual:[24,47],washington:68,water:[45,91],wave:[120,146],web:13,webpag:[13,50,130],what:[71,73,87],when:87,where:87,which:[67,100],whichclaw:100,work:[4,82,139,140,143],workflow:27,workshop:[23,68],write:[90,105],written:87,your:[13,27,28,34,47,88,90,94,130,136],zenodo:51}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgout","first_run","first_run_fortran","first_run_pyclaw","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","license","makefiles","makefiles_library","manning","mapc2p","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","releases","restart","riemann","sealevel","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","releases.rst","restart.rst","riemann.rst","sealevel.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[29,1,0,"-"],kmltools:[55,1,0,"-"],topotools:[140,1,0,"-"],util:[43,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[29,0,1,""],DTopography:[29,0,1,""],Fault:[29,0,1,""],Mw:[29,3,1,""],SiftFault:[29,0,1,""],SubFault:[29,0,1,""],SubdividedPlaneFault:[29,0,1,""],TensorProductFault:[29,0,1,""],UCSBFault:[29,0,1,""],plot_dZ_colors:[29,3,1,""],plot_dZ_contours:[29,3,1,""],rise_fraction:[29,3,1,""],strike_direction:[29,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[29,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[29,2,1,""],dZ_max:[29,2,1,""],plot_dZ_colors:[29,2,1,""],plot_dZ_contours:[29,2,1,""],read:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[29,2,1,""],Mw:[29,2,1,""],containing_rect:[29,2,1,""],create_dtopo_xy:[29,2,1,""],create_dtopography:[29,2,1,""],plot_subfaults:[29,2,1,""],plot_subfaults_depth:[29,2,1,""],read:[29,2,1,""],set_dynamic_slip:[29,2,1,""],write:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[29,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[29,2,1,""],calculate_geometry:[29,2,1,""],calculate_geometry_triangles:[29,2,1,""],centers:[29,2,1,""],convert_to_standard_units:[29,2,1,""],coordinate_specification:[29,4,1,""],corners:[29,2,1,""],depth:[29,4,1,""],dip:[29,4,1,""],dynamic_slip:[29,2,1,""],gauss_pts:[29,2,1,""],latitude:[29,4,1,""],length:[29,4,1,""],longitude:[29,4,1,""],mu:[29,4,1,""],okada:[29,2,1,""],rake:[29,4,1,""],rise_shape:[29,4,1,""],rise_time:[29,4,1,""],rise_time_starting:[29,4,1,""],rupture_time:[29,4,1,""],rupture_type:[29,4,1,""],set_corners:[29,2,1,""],slip:[29,4,1,""],strike:[29,4,1,""],width:[29,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[29,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[29,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[55,3,1,""],deg2dms:[55,3,1,""],dtopo2kml:[55,3,1,""],f2s:[55,3,1,""],fgmax2kml:[55,3,1,""],fgout2kml:[55,3,1,""],gauges2kml:[55,3,1,""],kml_build_colorbar:[55,3,1,""],kml_cb:[55,3,1,""],kml_png:[55,3,1,""],kml_timespan:[55,3,1,""],line2kml:[55,3,1,""],make_input_data_kmls:[55,3,1,""],pcolorcells_for_kml:[55,3,1,""],png2kml:[55,3,1,""],poly2kml:[55,3,1,""],quad2kml:[55,3,1,""],regions2kml:[55,3,1,""],topo2kml:[55,3,1,""],topo2kmz:[55,3,1,""]},"clawpack.geoclaw.surge":{storm:[134,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[134,5,1,""],Storm:[134,0,1,""],available_formats:[134,3,1,""],available_models:[134,3,1,""],fill_rad_w_other_source:[134,3,1,""],make_multi_structure:[134,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[134,2,1,""],plot:[134,2,1,""],read:[134,2,1,""],read_atcf:[134,2,1,""],read_geoclaw:[134,2,1,""],read_hurdat:[134,2,1,""],read_ibtracs:[134,2,1,""],read_imd:[134,2,1,""],read_jma:[134,2,1,""],read_tcvitals:[134,2,1,""],write:[134,2,1,""],write_atcf:[134,2,1,""],write_geoclaw:[134,2,1,""],write_hurdat:[134,2,1,""],write_imd:[134,2,1,""],write_jma:[134,2,1,""],write_tcvitals:[134,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[140,0,1,""],create_topo_func:[140,3,1,""],determine_topo_type:[140,3,1,""],fetch_topo_url:[140,3,1,""],get_topo:[140,3,1,""],read_netcdf:[140,3,1,""],swapheader:[140,3,1,""],topo1writer:[140,3,1,""],topo2writer:[140,3,1,""],topo3writer:[140,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[140,2,1,""],Y:[140,2,1,""],Z:[140,2,1,""],crop:[140,2,1,""],delta:[140,2,1,""],extent:[140,2,1,""],generate_2d_coordinates:[140,2,1,""],generate_2d_topo:[140,2,1,""],in_poly:[140,2,1,""],interp_unstructured:[140,2,1,""],make_shoreline_xy:[140,2,1,""],plot:[140,2,1,""],read:[140,2,1,""],read_header:[140,2,1,""],replace_no_data_values:[140,2,1,""],replace_values:[140,2,1,""],set_xyZ:[140,2,1,""],smooth_data:[140,2,1,""],write:[140,2,1,""],x:[140,2,1,""],y:[140,2,1,""],z:[140,2,1,""]},"clawpack.geoclaw.util":{bearing:[43,3,1,""],dist_latlong2meters:[43,3,1,""],dist_meters2latlong:[43,3,1,""],dms2decimal:[43,3,1,""],fetch_noaa_tide_data:[43,3,1,""],haversine:[43,3,1,""],inv_haversine:[43,3,1,""]},"clawpack.petclaw.geometry":{Domain:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[83,4,1,""],fwave:[83,4,1,""],kernel_language:[83,4,1,""],mthlim:[83,4,1,""],order:[83,4,1,""],source_split:[83,4,1,""],step_source:[83,4,1,""],transverse_waves:[83,4,1,""],verbosity:[83,4,1,""]},"clawpack.petclaw.state":{State:[95,0,1,""]},"clawpack.petclaw.state.State":{F:[95,2,1,""],aux:[95,2,1,""],fset:[95,2,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,2,1,""],problem_data:[95,4,1,""],q:[95,2,1,""],set_num_ghost:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw":{util:[98,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[93,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[93,4,1,""],kernel_language:[93,4,1,""],mthlim:[93,4,1,""],order:[93,4,1,""],setup:[93,2,1,""],source_split:[93,4,1,""],step:[93,2,1,""],step_hyperbolic:[93,2,1,""],step_source:[93,4,1,""],verbosity:[93,4,1,""]},"clawpack.pyclaw.controller":{Controller:[80,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[80,4,1,""],F_path:[80,2,1,""],check_validity:[80,2,1,""],compute_F:[80,4,1,""],compute_p:[80,4,1,""],file_prefix_p:[80,4,1,""],frames:[80,4,1,""],keep_copy:[80,4,1,""],nstepout:[80,4,1,""],num_output_times:[80,4,1,""],out_times:[80,4,1,""],outdir:[80,4,1,""],outdir_p:[80,2,1,""],output_file_prefix:[80,4,1,""],output_format:[80,4,1,""],output_options:[80,4,1,""],output_style:[80,4,1,""],overwrite:[80,4,1,""],plot:[80,2,1,""],plotdata:[80,4,1,""],run:[80,2,1,""],rundir:[80,4,1,""],runmake:[80,4,1,""],savecode:[80,4,1,""],solver:[80,4,1,""],tfinal:[80,4,1,""],verbosity:[80,2,1,""],viewable_attributes:[80,4,1,""],write_aux_always:[80,4,1,""],write_aux_init:[80,4,1,""],xclawcmd:[80,4,1,""],xclawerr:[80,4,1,""],xclawout:[80,4,1,""],xdir:[80,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[86,1,0,"-"],netcdf:[86,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[86,3,1,""],read_array:[86,3,1,""],read_patch_header:[86,3,1,""],read_t:[86,3,1,""],write:[86,3,1,""],write_array:[86,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[86,3,1,""],write:[86,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[83,0,1,""],Domain:[83,0,1,""],Grid:[83,0,1,""],Patch:[83,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[83,2,1,""],centers_with_ghost:[83,2,1,""],delta:[83,2,1,""],nodes:[83,2,1,""],nodes_with_ghost:[83,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[83,2,1,""],num_dim:[83,2,1,""],patch:[83,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[83,2,1,""],add_gauges:[83,2,1,""],c_center:[83,2,1,""],c_centers:[83,2,1,""],c_centers_with_ghost:[83,2,1,""],c_nodes:[83,2,1,""],c_nodes_with_ghost:[83,2,1,""],dimensions:[83,2,1,""],gauge_dir_name:[83,4,1,""],gauge_file_names:[83,4,1,""],gauge_files:[83,4,1,""],gauges:[83,4,1,""],get_dim_attribute:[83,2,1,""],num_dim:[83,2,1,""],p_center:[83,2,1,""],p_centers:[83,2,1,""],p_nodes:[83,2,1,""],plot:[83,2,1,""],setup_gauge_files:[83,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[83,2,1,""],delta:[83,2,1,""],dimensions:[83,2,1,""],get_dim_attribute:[83,2,1,""],level:[83,4,1,""],lower_global:[83,2,1,""],name:[83,2,1,""],num_cells_global:[83,2,1,""],num_dim:[83,2,1,""],patch_index:[83,4,1,""],upper_global:[83,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[81,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[81,3,1,""],beta_limiter:[81,3,1,""],cada_torrilhon_limiter:[81,3,1,""],cada_torrilhon_limiter_nonlinear:[81,3,1,""],cfl_superbee:[81,3,1,""],cfl_superbee_theta:[81,3,1,""],hyperbee_limiter:[81,3,1,""],limit:[81,3,1,""],mc_limiter:[81,3,1,""],minmod_limiter:[81,3,1,""],superbee_limiter:[81,3,1,""],superpower_limiter:[81,3,1,""],theta_limiter:[81,3,1,""],upper_bound_limiter:[81,3,1,""],van_leer_klein_sharpening_limiter:[81,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[93,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[93,2,1,""],aux_time_dep:[93,4,1,""],call_before_step_each_stage:[93,4,1,""],cfl_desired:[93,4,1,""],cfl_max:[93,4,1,""],char_decomp:[93,4,1,""],check_3rd_ord_cond:[93,2,1,""],dq:[93,2,1,""],dq_src:[93,4,1,""],dqdt:[93,2,1,""],fwave:[93,4,1,""],get_dt_new:[93,2,1,""],kernel_language:[93,4,1,""],lim_type:[93,4,1,""],num_ghost:[93,4,1,""],setup:[93,2,1,""],step:[93,2,1,""],tfluct:[93,4,1,""],tfluct_solver:[93,4,1,""],time_integrator:[93,4,1,""],update_saved_values:[93,2,1,""],weno_order:[93,4,1,""]},"clawpack.pyclaw.solution":{Solution:[92,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[92,2,1,""],patch:[92,2,1,""],plot:[92,2,1,""],read:[92,2,1,""],set_all_states:[92,2,1,""],start_frame:[92,2,1,""],state:[92,2,1,""],write:[92,2,1,""]},"clawpack.pyclaw.state":{State:[95,0,1,""]},"clawpack.pyclaw.state.State":{F:[95,4,1,""],gauge_data:[95,4,1,""],get_aux_global:[95,2,1,""],get_auxbc_from_aux:[95,2,1,""],get_q_global:[95,2,1,""],get_qbc_from_q:[95,2,1,""],is_valid:[95,2,1,""],keep_gauges:[95,4,1,""],mF:[95,2,1,""],mp:[95,2,1,""],num_aux:[95,2,1,""],num_eqn:[95,2,1,""],p:[95,4,1,""],problem_data:[95,4,1,""],set_aux_from_auxbc:[95,2,1,""],set_cparam:[95,2,1,""],set_num_ghost:[95,2,1,""],set_q_from_qbc:[95,2,1,""],t:[95,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[98,0,1,""],VerifyError:[98,5,1,""],add_parent_doc:[98,3,1,""],check_diff:[98,3,1,""],compile_library:[98,3,1,""],construct_function_handle:[98,3,1,""],convert_fort_double_to_float:[98,3,1,""],gen_variants:[98,3,1,""],read_data_line:[98,3,1,""],run_app_from_main:[98,3,1,""],run_serialized:[98,3,1,""],test_app:[98,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[98,2,1,""],increment:[98,2,1,""],reset_counter:[98,2,1,""],set_counter:[98,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[91,1,0,"-"],advection_1D_py:[91,1,0,"-"],burgers_1D_py:[91,1,0,"-"],euler_1D_py:[91,1,0,"-"],shallow_1D_py:[91,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[91,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[91,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[91,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[91,3,1,""],euler_hll_1D:[91,3,1,""],euler_hllc_1D:[91,3,1,""],euler_roe_1D:[91,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[91,3,1,""],shallow_fwave_1d:[91,3,1,""],shallow_hll_1D:[91,3,1,""],shallow_roe_1D:[91,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":66,"000000e":127,"00000e":127,"0000ff":[3,55],"001000e":127,"00er2592":4,"00ff00":55,"00ffff":55,"01er25474":4,"020204mag_polici":29,"04d":144,"0_contain":28,"0_dockerimag":28,"0d0":98,"10k":115,"1200x1680":47,"1440l":47,"1440p":47,"15e":140,"16m":65,"17th":93,"1_contain":28,"1_dockerimag":28,"1_geoclaw":28,"1d_plot":[40,71,73,124],"1drad":143,"1rc":51,"1st":[81,93,125,127,129,143],"2013it":16,"2018300n26315":134,"2019ms001635":48,"25000000e":66,"260e":137,"27t06":55,"27t07":55,"288e":137,"2d_grid":21,"2d_patch":[3,21],"2d_pcolor":[40,47],"2d_schlieren":3,"2nd":[85,90,93,125,127,129,143],"301e":137,"30x30":47,"34kt":134,"360x360":47,"373e":137,"3rd":[90,93],"40000000e":66,"4th":93,"50kt":134,"5_x_x":51,"5d0":143,"5e3":128,"5r01ar53652":4,"639s":[34,136],"64kt":134,"8888ff":55,"88er25053":4,"8x6":47,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":31,"\u010dert\u00edk":4,"abstract":47,"boolean":[3,47,86,91,125,126,128],"break":[27,29,44,47,55,64,105,112,128,140],"case":[5,6,8,13,15,18,21,29,31,37,40,44,47,54,55,58,61,64,71,77,83,86,88,90,92,98,100,104,105,108,111,112,113,114,115,119,121,128,134,138,140,141,143,146],"catch":[36,85],"class":[0,1,2,3,5,24,29,31,47,55,64,71,73,78,83,85,90,92,93,95,97,98,99,116,119,124,125,126,127,128,129,140],"default":[0,1,2,3,13,21,27,29,31,37,40,43,45,46,47,49,52,54,55,57,58,61,64,65,71,73,77,80,82,83,86,87,88,89,92,93,95,96,98,104,107,113,117,119,121,126,127,128,134,138,140,143],"export":[37,47,50,52,53,54,61,65,88,96,123],"final":[5,29,37,50,61,64,77,80,87,97,102,107,119,125,127,129,140],"float":[3,29,31,40,43,55,80,83,91,95,98,125,126,128,129,134,140],"function":[0,1,2,3,5,7,14,16,21,22,24,26,27,29,31,40,41,46,47,49,57,58,59,62,64,70,71,72,77,78,80,81,82,83,84,86,89,90,91,92,95,98,104,105,107,108,111,112,113,114,115,120,122,124,125,126,127,128,129,134,138,139,140,141,143],"import":[0,3,5,21,27,35,40,44,47,49,52,54,55,58,59,64,67,71,73,77,78,80,82,83,85,86,87,88,89,90,92,93,94,95,97,99,105,113,120,121,125,126,127,128,129,138,140,142,144],"int":[1,2,3,29,55,80,81,83,86,87,92,95,125,126,128,134,140],"long":[27,29,43,44,47,63,112,140],"new":[1,2,4,5,6,8,13,17,19,21,23,24,27,28,29,31,36,37,40,41,43,47,48,49,50,51,54,55,57,58,59,61,65,71,73,74,76,77,78,79,80,86,88,90,93,95,102,104,107,110,111,112,113,114,115,116,117,119,120,123,125,126,128,134,138,140,143],"ond\u0159ej":4,"public":[4,13,20,118],"return":[0,1,2,3,29,35,43,47,55,58,61,71,73,80,81,83,86,87,90,91,92,93,95,98,105,114,120,125,127,129,134,136,140,143,146],"short":[44,90],"static":[29,64,115],"super":[22,27,115,140],"switch":[28,31,47,52,54,90,100,105,114,121,142],"throw":27,"true":[0,1,2,3,5,6,14,15,26,29,40,43,46,47,50,55,70,77,80,83,86,87,88,92,93,95,104,113,119,120,122,125,126,127,128,129,134,140],"try":[1,27,28,33,34,35,40,47,49,54,55,71,79,82,85,86,92,94,96,97,98,99,100,105,125,136,140,141],"var":[0,3,13,14,26,101,122,132,133,134],"while":[5,13,15,29,47,61,64,71,73,78,83,87,88,93,98,115,120,128,142],AND:[56,75],ARE:[56,75],AWS:[13,52],Added:[81,107,109,111,112,114],Adding:[24,76,84],And:[6,19,50,52],Are:106,Axes:[124,134],BCs:[127,129],BUT:[56,75],But:[13,47,50,71,96,108,115],CMS:4,DAs:95,DMS:4,DNS:13,Doing:64,EBS:13,FOR:[56,75],For:[0,1,2,3,5,7,8,9,10,13,14,15,17,18,21,24,25,26,27,28,29,31,33,35,37,40,43,44,45,47,49,50,51,52,54,57,58,61,62,64,65,70,71,73,74,77,78,82,83,85,86,87,88,90,93,94,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,129,131,132,133,134,135,137,138,140,142,143,146],GIS:[47,113,138],Going:[13,24,85],Ike:102,Into:99,NOT:[55,56,71,75],Not:[29,47,83,113],OPS:43,One:[22,24,25,29,47,61,78,98,104,111,140],Res:16,SUCH:[56,75],Such:61,Sys:16,THE:[56,75],That:[33,35,97,138],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,48,49,50,52,53,54,55,56,57,58,59,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,80,81,83,85,86,87,88,90,91,92,93,94,95,96,98,100,102,104,105,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146],Their:75,Then:[13,15,27,28,29,40,50,51,53,58,64,65,73,77,80,88,94,95,96,100,120,140,141],There:[3,6,13,21,31,34,36,47,57,64,66,73,87,94,102,114,115,124,125,135,136,143,145],These:[1,4,5,12,15,17,22,27,29,31,38,40,44,47,50,52,55,58,61,71,73,77,82,86,87,89,95,97,101,103,104,105,107,113,114,115,116,119,126,130,134,135,138,142,146],USE:[56,75],Use:[29,47,85,91,93,115,125,127,129,138,140],Useful:[1,3,125],Uses:[29,140],Using:[0,1,2,3,7,16,21,37,38,47,49,52,69,70,71,73,74,83,84,85,117,125,132,133,137,140,141,146],WCS:142,Will:92,With:[6,21,27,40,45,47,67,99,104,112,120,125],__________________o:140,__file__:100,__future__:113,__init__:[51,90,100],__main__:[127,129],__name__:[127,129],_build:50,_compute_c_cent:83,_compute_c_nod:83,_compute_p_cent:83,_compute_p_nod:83,_fillvalu:86,_googleearth:47,_outdir:87,_output2:[71,73],_output:[5,13,33,34,40,46,61,71,73,82,87,89,92,112,141],_output_from_previous_run:40,_output_new:105,_output_old:105,_plot:[13,33,34,40,61,73,124,130],_plotindex:[1,40],_plots_new:105,_plots_old:105,_ptwise:120,_pyclaw_io:80,_static:50,_storm_modul:135,_subpackag:100,_surge_modul:102,_theme:50,a351:[16,85],a377:[16,85],aabbggrr:55,abdullah:[4,75],abil:[37,111,113,117,134,140],abl:[13,100],abort:57,about:[3,5,7,13,15,21,24,33,34,36,43,44,49,51,55,57,59,61,66,72,74,77,85,88,93,100,105,112,116,120,124,127,128,138,141,143,146],aboutu:29,abov:[3,5,13,15,19,27,28,31,33,34,36,37,40,44,47,49,50,51,52,54,56,58,64,66,71,74,75,78,87,89,94,97,98,99,104,113,115,120,123,124,125,127,128,129,134,137,138,140,143],abs:[29,48,90,98,104,140],absolut:[87,104,105,115,126,127],absolute_import:113,abspath:5,abstol:98,academ:[96,99],acceler:[48,91],accept:[40,77,87,93,125],accept_reject_step:93,access:[0,16,26,52,54,82,83,85,93,95,98],accid:27,accident:[27,71],accompani:[17,20],accomplish:[28,57],accord:[6,49],accordingli:[47,138],account:[13,23,27,51,79,88],accumul:[40,113,119],accur:[5,44,64,85,93,125,143,146],accuraci:[40,59,67,127,129],achiev:[19,78,132,133],acou:71,acoust:[15,28,33,34,44,76,77,80,82,85,93,94,111,120,127,143],acoustics1dheterogeneoustest:[34,136],acoustics3dheterogeneoustest:[34,136],acoustics_1d:[77,91,97],acoustics_1d_adjoint:5,acoustics_1d_example1:[33,34,63],acoustics_1d_heterogen:[34,136,143],acoustics_1d_homogen:[82,105],acoustics_1d_pi:91,acoustics_2d:93,acoustics_2d_adjoint:5,acoustics_2d_radi:[127,143],acoustics_3d_heterogen:[34,136],acoustics_3d_vari:105,acquaint:97,acquir:71,across:[5,104,113,138,140],acsza1:29,acszb1:29,act:[81,140],acta:16,actanum2011:16,action:[13,78],activ:[31,32,93,102,128],actual:[6,26,29,49,54,55,61,64,71,81,86,98,102,121,128],adapt:[4,7,16,29,48,49,61,67,77,115,120,124,125,143],add:[0,11,13,15,16,26,27,29,31,40,43,47,50,51,54,58,61,62,64,70,77,82,83,87,88,90,98,108,111,113,114,115,129,134,138,140,144],add_colorbar:[29,140],add_colormap:112,add_dimens:83,add_gaug:[83,87],add_label:40,add_param:[127,129],add_parent_doc:98,add_titl:71,add_true_solut:71,added:[3,15,19,21,27,31,32,43,49,51,54,55,59,61,71,83,87,100,102,104,107,108,110,111,112,113,114,115,116,117,119,125,126,128,134,137,140,144],addgaug:40,adding:[21,26,27,28,31,37,40,55,64,88,101,112,114],addit:[5,7,13,15,22,24,27,28,31,34,35,41,42,52,54,55,64,66,67,71,72,78,81,83,85,87,93,94,95,102,104,111,113,114,115,116,120,125,129,134,137,138,143,144],addition:[88,134],address:[47,50,113],adequ:44,adjac:[6,15,31,41,104,125],adjoint:[7,16,24,48,104,115,116],adjoint_flag:104,adjoint_modul:116,adjoint_outdir:5,adjointdata:[5,116,117],adjointsup_modul:116,adjust:[5,13,19,31,50,55,83,87,121,125,143],adopt:[29,93],adv:16,advanc:[6,16,48,65,97,112,125,143],advantag:[70,86,105],advect:[16,71,85,88,120,129,143],advection2dannulustest:[34,136],advection_1d:91,advection_1d_example1:58,advection_1d_pi:91,advection_2d_annulu:[34,136],advection_2d_inflow:111,advection_2d_swirl:143,advection_3d_swirl:[111,137],advis:[32,56,75],affect:[21,57,113,114,125,138,141],afosr:4,after:[0,1,3,5,6,13,18,22,26,27,28,31,33,34,40,44,50,51,53,55,57,58,61,62,66,71,78,79,80,82,87,93,95,100,104,105,107,111,112,125,126,127,129,134,143],afterax:[0,26,40,47,71],afterfram:[1,26,70],aftergrid:61,afteritem:[3,26],afterpatch:[3,26],again:[21,36,57,64,71,73,77,78,87,91,96,100,115,138,141],against:[98,105,112,136],agenc:[4,54,134,135],agency_pref:134,agre:[12,27,49,120,137,140,143],agreement:44,ahmadia:[4,16,75,85],aht:121,aid:78,aim:27,aks2203:4,albada:81,alg:127,alghamdi:[4,16,75,85],algorithm:[4,7,24,31,48,77,83,85,86,93,97,104,115,120,125,127,129,140],align:[31,47,55,128],all:[0,1,4,6,11,13,15,19,21,22,24,26,27,28,29,31,33,34,36,37,40,41,44,46,47,49,50,51,52,53,55,56,57,58,61,63,64,65,66,67,70,71,73,74,75,77,80,81,83,86,87,88,90,91,92,93,95,98,99,100,103,104,105,107,108,111,112,113,115,119,120,124,125,127,128,129,130,135,136,137,138,140,141,143],alloc:[19,93,111],allocat:111,allot:55,allow:[4,6,13,21,26,27,28,31,40,41,43,46,47,49,50,52,54,59,61,64,65,67,70,71,80,86,87,93,95,98,99,100,104,105,107,108,111,112,113,114,115,117,120,125,127,128,129,130,134,138,140,142],almost:99,alon:[15,47],along:[6,15,26,29,31,40,47,62,64,100,104,111,119,128,134,142],alpha:[47,51,93],alphabet:75,alreadi:[0,1,6,13,17,27,28,37,51,52,53,54,55,73,74,88,92,94,97,99,108,116,140],also:[3,4,5,6,7,8,9,11,15,16,17,19,21,22,23,24,27,28,29,31,33,34,35,37,38,40,43,44,47,48,49,50,51,52,53,54,55,57,58,61,62,64,65,66,67,70,71,73,77,79,80,83,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,112,113,114,115,116,117,119,120,121,123,125,127,128,129,130,132,133,134,135,136,137,138,140,141,142,143,145,146],alter:47,altern:[29,31,33,34,40,43,47,53,57,61,70,85,88,99,100,104,111,112,113],although:[29,47,58,61,89,90,92,116,140],alwai:[15,21,25,26,27,31,37,49,54,61,77,86,103,104,107,108,127,128,129,138,143],amal:[4,16,75,85],amazon:24,amazonaw:13,amdq:[91,120],ami:24,amount:[40,44,50],amplitud:[5,113],amr:[4,7,8,15,19,22,24,26,27,31,32,40,41,48,55,61,66,67,70,75,83,112,114,115,116,124,125,127,129,137,143],amr_1d:116,amr_2d:[115,116],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:112,amr_level:66,amr_level_max:127,amr_levels_max:[31,104,126,127],amr_modul:[65,104,111,117],amrclaw:[4,5,6,12,14,15,18,19,21,22,23,27,34,37,40,41,42,48,51,52,53,54,61,62,65,66,67,94,100,101,104,105,119,120,122,123,125,128,132,133,136,137,141],amrclaw_advection_2d_squar:7,amrdata:[5,21,104,126,127,128],amrflag:104,amrlib:111,amrnez:104,an11:50,anaconda:[47,74,85,94,99],anal:16,analog:[125,126],analysi:16,andi:4,angl:[15,29,43,64],ani:[3,4,5,6,8,13,15,17,18,19,21,26,27,28,31,33,34,35,41,44,46,47,50,51,52,54,56,57,59,61,63,65,66,67,71,75,81,82,83,85,86,87,88,90,92,94,98,100,103,104,105,111,115,117,119,121,124,125,126,128,134,143,146],anim:[15,47,111,130],anisotrop:[6,21],anl:88,annot:[26,55],annual:23,anoth:[3,21,40,47,51,53,54,55,66,70,74,82,93,96,105,115,134,143],answer:23,anyth:[3,6,27,28,52,54,58,105,115],anywher:104,aoml:134,apach:13,apdq:[91,120],api:[43,115],app:[12,13,17,22,25,27,28,31,35,38,64,102,103,110,114,115,116,117],appar:[29,65],appeal:47,appear:[0,1,3,5,8,13,17,22,31,40,41,47,50,53,55,57,60,71,87,92,95,113,128,130,138],append:[5,19,40,47,71,80,92,104,112,113,119,120,127],appl:16,appli:[3,4,5,6,13,15,24,29,44,47,49,59,64,71,73,81,83,86,93,104,119,125,128,143],applic:[4,6,14,15,18,19,21,22,23,27,28,31,33,34,35,37,38,41,42,51,52,54,58,62,65,73,82,83,84,87,93,98,101,103,104,105,107,110,111,113,114,115,117,120,122,125,128,132,133,138,140,141,143,144],appreci:75,approach:[5,7,13,27,40,50,52,63,70,78,88,90,98,104,111,113,114,116,120,124,128,143,146],appropri:[4,5,6,13,15,23,27,41,44,45,47,51,52,54,55,59,61,62,63,65,77,80,81,82,86,88,89,90,91,92,105,117,120,121,123,125,134,143,146],approv:44,approxim:[6,15,44,47,64],april:23,apt:[13,99],arbitrari:[31,55,93,107,128],arc:121,arcgi:140,architectur:88,archiv:[12,20,34,47,51,105,130,136,140,142],arcminut:[64,138],arcsecond:138,area:[14,21,93,102,113,122],arg:[83,92],argument:[0,1,2,3,26,29,43,46,47,49,71,77,78,82,83,86,90,92,93,95,98,105,115,120,124,125,126,134,140,143],argv:[127,129],aris:[56,75],arithmet:59,aron:[4,16,75,85],arora:81,arora_ro:81,around:[6,29,31,55,86,102,105,126,127,134,140,143],arrai:[0,3,6,14,19,21,26,29,31,40,43,45,49,55,71,77,78,80,81,83,85,86,87,90,91,92,93,95,97,98,99,107,108,109,113,115,120,122,125,126,127,128,129,134,138,140,143],arrang:140,arriv:[21,31,32,41,113,121],arrival_tol:31,articl:[4,16,85,130],artifici:15,arxiv:48,asc:140,ascii:[40,49,61,77,80,87,92,113,119,125,127,129,138,144],ascii_output_format:62,ask:23,ask_us:140,aspect:[28,44,45,61,140],assembl:53,assert:[127,129],assess:[44,121],assign:[29,31,77,80,86,92],assist:[21,31],associ:[0,1,2,6,21,47,54,65,83,86,87,105],assum:[3,5,19,21,29,34,43,44,47,49,50,51,55,61,64,70,86,87,89,90,91,97,98,104,111,121,125,128,134,135,138,140,142,146],assumpt:47,astronom:121,atcf:[102,115,134,135],aterrel:4,atmospher:4,attach:[51,86,95],attempt:[5,8,11,19,33,34,57,86,92,98,105,107,134,140,141],attirbut:21,attr:[83,92],attribur:5,attribut:[5,7,21,29,40,64,70,72,73,77,80,83,86,88,90,92,93,104,107,112,116,119,124,125,126,128,134,140],attributeerror:71,aug:[16,116],aug_glob:91,august:[23,115,118],austin:4,author:[16,24,41,44,81,85,86,91,103],auto:[0,40,78],autom:[50,78,105],automat:[0,2,3,8,11,15,29,33,34,37,47,51,57,70,71,73,77,82,86,88,94,95,96,98,105,107,125,126,128,138],autonom:5,aux1:31,aux1d:143,aux:[5,6,14,19,21,26,31,40,49,78,85,86,87,90,92,93,95,96,107,108,113,115,120,122,125,126,127,128,129,143],aux_bc_low:90,aux_bc_upp:90,aux_l:[91,120],aux_out_field:40,aux_r:[91,120],aux_time_dep:93,aux_typ:[5,126,127],auxbc:[90,93,95],auxiliari:[21,78,80,86,91,93,95,120,125,127,129,143],auxillari:[86,92],auxl:120,auxr:120,auxtyp:127,avail:[0,4,5,10,15,21,22,23,28,39,40,42,44,47,52,53,54,57,61,70,72,73,77,80,85,86,87,89,91,93,96,97,98,99,100,104,114,120,121,125,127,128,130,134,135,138],available_format:134,available_model:134,averag:[4,6,14,16,41,44,45,49,61,91,95,108,120,122,138,140,143],avi:4,avoid:[31,47,55,57,61,83,87,104,107,108,112,113,119,125,128,146],awai:[27,121],awar:[44,88],awr11:16,axes1:[2,73],axes:[0,1,2,26,29,40,47,61,70,71,73,124,134,140],axescmd:[0,73],axesnam:[1,73],axessubplot:29,axi:[0,29,45,47,61,71,83],axxxx:86,azv:50,b0002:66,b4step1:[14,58,143],b4step2:[14,143],b4step3:14,b4stepn:143,back:[13,26,28,31,50,51,114],backend:47,background:[2,70,115,124],backward:[5,27,29,43,55,64,86,99,108,109,140],bad:[100,105],bai:[121,142],balanc:[6,16,67,114,132,133],bale:16,balelevmitross02:[4,16,125,146],ball:140,band1:140,band:[47,140],bar:[13,50,134],barrier:98,base:[5,6,13,19,20,21,27,29,41,43,47,48,49,50,55,58,59,61,64,67,78,80,81,83,85,86,91,92,93,95,97,98,104,106,111,114,116,121,125,126,127,128,129,134,140,143,146],base_subfault:29,baselin:47,basemap:134,bash:[37,47,52,54,61,65,88,100,123],bash_profil:[96,123],bashrc:[13,37,96,123],basi:[40,61],basic:[6,10,12,24,29,33,35,41,53,61,77,83,85,86,87,91,93,105,134,146],basin:102,bathymetri:[14,31,41,44,47,55,91,102,113,115,121,122,128,138,140],bc1:[58,98],bc1_inflow:58,bc2amr:[15,115],bc_arrai:93,bc_lower:[15,77,90,97,125,127,129],bc_upper:[15,77,90,97,125,127,129],bcn:[6,15,129,143],bcnamr:[6,15,115,125,127,143],beam:81,bear:[29,43],bearing_unit:43,becaus:[5,21,26,31,47,51,86,87,88,107,120,121,125],becom:[44,96,146],been:[0,1,4,5,8,9,13,15,17,19,20,21,23,24,26,27,31,32,33,34,38,41,44,47,48,49,50,51,57,59,61,64,67,71,73,75,78,80,86,87,91,92,95,96,97,98,100,102,104,106,107,108,110,113,114,115,116,117,119,120,125,126,128,138,140,143],befor:[1,3,4,6,27,29,31,33,34,36,37,40,49,50,51,52,54,55,57,58,61,65,73,77,80,86,88,93,95,100,104,105,107,108,118,120,121,125,126,128,138,140,141],before_step:93,beforefram:[1,26,115],begin:[43,55,83,87,91,97,134],begin_d:43,behav:40,behavior:[50,104,105,112],behaviour:77,being:[1,3,4,8,13,40,44,49,54,73,80,86,91,92,93,98,100,102,104,112,114,116,120,125,128,134,141,143],believ:[44,113],belki:68,belong:[71,83,88,92,95],below:[3,6,13,14,15,17,21,23,28,29,31,47,48,50,51,52,54,55,59,61,64,73,75,77,79,87,91,97,99,100,101,104,105,108,109,110,111,112,113,114,115,116,117,118,120,122,124,125,126,127,128,129,132,133,134,138,140,143],benchmark:44,beowulf:53,berger:[4,6,16],bergercalhounhelzellevequ:15,bergercolella89:[6,16],bergergeorgelevequemandli11:[4,16],bergerleveque98:[4,6,7,16],bergeroliger84:[6,16],bergerrigoutsis91:[6,16],berkelei:[4,56,75],best:[3,15,21,25,27,37,47,49,51,57,63,65,70,71,86,90,102,103,104,105,115,120,128,131,134,138,143],besttrack:134,beta:[43,81,93,129],beta_limit:81,better:[0,6,21,31,40,61,65,66,70,93,102,104,112,113,114,117,128],between:[3,4,5,6,13,15,22,24,27,29,30,43,47,51,52,55,61,64,65,67,70,80,83,87,93,95,96,98,100,104,112,113,120,121,125,126,127,128,129,130,134,137,138,140,142,143],bewar:[100,140],beyond:[6,29,115],bgr:55,bibliographi:4,bibtex:[4,51],big:86,big_earthquak:29,biggest:85,bilinear:[6,31,40,49,107,108,138],bin:88,binari:[5,37,51,53,56,62,75,86,87,89,112,119,125,127,140,144],binary32:86,binary64:86,bind:[27,47,70,78,88],bisect:[126,127],bit:[15,21,29,51,86,88,96],bitbucket:88,black:[3,40],blank:[3,51,55,101,106,107,108,109,110,134],blast:114,blob:112,block:[7,29,55,64,66,67,77,86,95,98,105,143],blossei:4,blue:[3,11,40,55,71,134,140],bndlist:115,boe:4,boisest:47,bom:134,bomb:[57,65],book:[4,12,16,24,74,92,99],bool:[0,1,2,3,43,55,80,86,91,92,93,95,98,128,134,140],border:[61,143],bore:44,both:[3,15,27,29,33,34,40,44,49,50,58,61,64,66,78,86,87,88,93,94,104,105,111,112,115,120,125,127,129,132,138,143],bottom:[12,13,14,29,33,34,41,44,50,59,64,77,90,91,113,114,122,132,133],boulder:23,bound:[78,81,88,125,140],boundari:[5,7,19,24,47,55,58,64,65,78,83,91,93,97,102,108,111,115,125,127,129],boussinesq:44,bowl:117,bowl_radial_fgmax:31,box2kml:55,box:[5,29,47,55,140],branch:[17,24,28,37,46,48,50,51,53,54,105,114,115,116,117,118],brief:[4,51,128],briefli:146,bring:[13,47,50,61],brisa:4,brisadavi:[4,116],broad:140,broken:[18,19,27,62,64,105],brought:27,brown:[75,140],brows:[11,23,38,47,61,130,143],browser:[13,27,28,33,34,47,50,130],bsd:[4,56,75,115],buffer:[29,40,104,112,113,126,127,140],buffer_length:140,buffer_s:[29,64],bug:[4,8,21,23,31,37,47,59,65,71,75,110,111,112,113,115],build:[4,16,27,28,50,51,61,78,88,98,114],buildsystem:88,built:[27,59,67,76,85,88,90,92,104,105,132,133],bulk:[18,77,91,97,120,127,143],bull:[16,29],bullet:51,buoi:41,burger:[85,120,143],burgers_1d:91,burgers_1d_pi:91,busi:[56,75],butcher:93,button:[12,13,27,47,55,114],c210:[16,85],c231:[16,85],c_center:83,c_centers_with_ghost:83,c_l:91,c_node:83,c_nodes_with_ghost:83,c_r:91,cach:[21,43,51,73,75],cache_dir:43,cada:81,cada_torrilhon_limit:81,cada_torrilhon_limiter_nonlinear:81,cake:68,cal:[120,143,146],calcul:[3,5,6,26,29,41,43,61,64,71,83,91,93,108,113,140],calculate_geometri:29,calculate_geometry_triangl:29,calhellev08:16,calhoun:[4,16,47],calhounhelzellevequ:15,call:[1,6,9,19,21,26,29,37,40,46,47,58,61,64,66,71,73,77,78,80,81,86,87,90,92,93,95,97,98,104,105,107,111,112,114,115,120,123,125,127,128,129,134,140,143],call_before_step_each_stag:93,call_setplot:71,callabl:98,calucl:91,cambridg:16,camera:47,can:[0,2,3,4,5,6,7,8,9,11,12,13,15,18,19,21,23,25,26,27,28,29,31,33,34,35,36,37,38,40,41,42,43,44,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,64,65,66,67,69,70,71,72,73,74,75,77,78,79,81,82,83,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,102,104,105,107,108,111,112,113,114,115,118,119,120,121,123,124,125,126,127,128,129,130,134,136,138,140,141,142,143,144,146],cannot:[48,54,86,134],canopi:94,capa:92,capa_index:[125,127,129],capab:140,capabili:115,capabilit:113,capabilti:115,capabl:[7,12,21,31,32,44,48,67,78,107,112,113,115,116,117,140,142],capac:[14,91,122,125,126,127,129],captur:[44,138],car_nam:134,care:[31,41,88],carefulli:[19,21,59],cartesian:[31,42,55,78,128],cartopi:134,cascad:4,cast:140,cat_nam:134,catalog:142,categor:134,categori:134,category_color:134,caus:[21,44,47,50,56,57,73,75,96,105,112,113,114,116,124,126,138,140],caut:81,caution:44,cautionari:[24,41,58,128],cautiou:44,caxi:61,cb_file:55,cb_filenam:55,cb_kwarg:140,cb_name:55,cb_xfrac:55,cb_yfrac:55,cbar:[91,140],cdot:[59,90],cell:[3,4,5,7,8,14,15,19,21,26,31,40,41,47,49,55,61,65,66,67,77,83,86,88,91,93,95,97,104,107,108,112,113,114,115,116,117,120,121,122,125,126,127,128,129,135,137,138,143,146],celledg:3,celledges_show:[3,21],cellgridintegr:107,cellgridintegrate2:107,cellsiz:[49,111,138],center:[4,5,26,29,31,40,47,49,55,64,77,83,90,91,97,104,115,126,127,128,134,135,138,143],centerlin:29,centers_with_ghost:83,central:[125,134,135],central_pressur:134,centroid:[29,64],certain:[31,41,53,87,104,112,125],certainli:[88,99],certik:[4,75],cf2py:78,cfl:[6,83,87,93,97,107,112,125,127,128,129],cfl_desir:[93,125,127,129],cfl_max:[93,125,127,129],cfl_superbe:81,cfl_superbee_theta:81,challeng:114,chanc:75,chang:[1,6,8,13,14,15,18,19,24,27,28,29,31,36,37,46,47,48,49,50,51,52,54,55,57,58,59,61,62,65,66,67,70,73,77,78,84,86,87,95,98,102,103,104,105,118,120,122,125,126,127,128,129,132,133,138,141,143],changelog:[17,21,106,107,108,109,110,111,112,113,114,115,116,117,118],changes_to_mast:51,chapter:[15,120,125,143],char_decomp:93,charact:43,characterist:93,charg:13,chava:128,cheaper:13,check:[6,15,19,31,33,34,36,37,46,47,48,50,51,52,54,57,61,71,77,78,80,85,88,92,93,95,97,98,100,104,108,117,126,127,134,140,141,142,143],check_3rd_ord_cond:93,check_diff:[98,105],check_lmm_cond:93,check_valid:80,check_valu:[98,105],checkout:[27,48,50,51],checkpoint:[24,40,112,113,115,117,125,127,129],checkpt_interv:[125,127],checkpt_styl:[112,119,125,127],checkpt_tim:[125,127],checksum:86,chen:[29,142],chile2010:[47,103,104,107,110,116,138],chile2010_adjoint:5,chile2010_fgmax:31,chile2010a:[28,103],chile2010b:103,chile:[41,55,64],chile_2010:47,chile_dtopo:64,chk00006:[127,129],chk00100:112,chk:112,chkaaaaa:112,chkbbbbb:112,chknnnnn:[119,125,127,129],choic:[15,41,70,93,125,127,128,129,143],choos:[0,7,55,64,90,125,128],chose:59,chosen:[3,28,47,49,97,104,121,126],chri:4,chunk:86,chunksiz:86,circl:[3,43,71],circular:16,cise:16,citat:[4,51],cite:[24,53,118],cjvogl:4,clamshel:108,clarifi:21,clash:61,classic4:129,classic:[4,6,12,14,15,18,19,21,22,23,27,37,38,42,51,52,53,54,58,63,65,66,67,75,77,80,82,83,84,85,86,90,100,101,105,119,120,122,123,126,128,133,141,143],classic_1d:58,claw1:[58,98],claw1ez:58,claw:[5,6,8,11,12,13,14,15,18,19,21,23,27,29,31,33,34,35,36,37,40,41,43,45,46,48,50,51,52,53,54,55,57,58,61,63,64,65,72,77,80,82,85,86,87,88,94,96,100,101,102,103,104,105,107,108,110,111,114,115,117,120,122,127,128,129,131,132,133,136,137,138,140,141,143,144],claw_1dnoncon:146,claw_git_diff:[27,46,51],claw_git_statu:[27,46,51],claw_lib:62,claw_outdir:[57,71],claw_packag:93,claw_pkg:[125,126,127,128,129],claw_topo_download:140,claw_vers:54,clawdata2pyclaw:78,clawdata:[5,107,111,119,125,126,127,128,129],clawdev2013:50,clawgraph:61,clawicon:50,clawlogo:50,clawpack:[1,4,5,6,7,11,15,25,27,29,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,54,55,56,58,61,63,64,65,69,70,71,72,73,74,75,76,77,79,80,82,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,100,103,105,106,107,108,109,110,111,112,113,119,120,123,125,126,127,130,131,134,136,138,140,141,143,144,146],clawpack_gpu:48,clawpack_src:[52,54,100],clawplotax:[1,2,3,26,71,115,124],clawplotdata:[2,3,26,40,47,71,73,80,124],clawplotfigur:[0,1,47,71,124],clawplotitem:[0,1,7,21,26,70,72,112,115,124],clawrundata:[5,40,55,116,119,125,126,127,129],clawsolut:1,clawsolv:[93,120],clawsolver1d:[77,80,83,93,97,120],clawsolver2d:[83,93],clawutil:[5,11,18,19,22,27,36,37,46,51,53,57,100,105,123,125,126,127,129,140,141],clean:[21,51,98,111,115],cleaner:[27,113],cleanup:114,clear:[1,2,6,61,73],clearer:117,clearfigur:1,clearfram:[1,73],cleargaug:40,clearli:[40,44,47],clf:2,clf_each_fram:2,click:[4,12,13,17,27,47,105,114,118],clifford:23,clint:16,clobber:[86,112],clockwis:[31,43,64,140],clone:[12,17,22,23,38,48,50,51,52,54,74,88,94,103,141],close:[13,47,50,55,61,86,104,126,134],close_fig:55,closer:[64,127],closest:134,cloud:13,cluster:[6,16,53,104,126,127],clustering_cutoff:[104,126,127],cma:134,cmap:[47,55,71,140],cmap_slip:29,cmax:[47,55],cmax_dz:29,cmax_slip:29,cmdline:100,cmin:[47,55],cmin_slip:29,cname:50,coars:[3,31,47,104,113,125,138,143],coarsen:[49,104,115,116,126,138,140],coarsen_method:49,coarser:[3,15,49,113,125,126,143],coarsest:[6,47,66,107,119,125],coast:[104,140],coastal:[44,121,128,138],coastlin:[31,47,128,142],code:[4,5,6,7,8,15,18,19,20,21,22,23,26,28,31,33,34,36,37,38,40,41,44,46,48,49,50,52,53,56,57,58,59,62,63,64,65,66,67,69,71,73,75,77,78,83,85,86,87,88,90,93,94,97,100,103,106,107,108,111,112,113,114,115,116,117,119,120,125,127,128,129,130,134,136,137,138],code_of_conduct:115,coeffici:[5,59,90,91,93,95,96,97,120,128],colella:[6,16],collabor:[47,130],collect:[12,24,25,27,29,31,64,70,77,93,130],collela:114,color:[3,29,47,55,61,70,124,134,140],colorado:23,colorbar:[3,55,115,140],colorbar_kwarg:115,colorbar_labels:29,colorbar_shrink:29,colorbar_ticks:29,colormap:[3,29,42,47,61,70,72,112,140],column:[10,29,31,40,44,87,91,111,140],column_list:29,column_map:29,com:[12,13,22,23,25,27,28,48,50,51,52,53,54,86,88,90,94,110,112,113,114,118],combin:[19,50,55,112,142],combinatori:105,come:[3,27,50,71,73,82,88,93,111,138,143],comfort:[54,90],comm_world:98,command:[0,1,2,3,11,13,27,36,46,47,48,51,52,53,54,57,63,70,71,74,77,78,80,85,88,89,93,97,98,99,100,105,120,123,124,125,126,138,140],commenc:119,comment:[5,11,23,45,51,114,119],commit:[24,29,46,50,51,105],common:[3,22,27,33,34,36,37,57,58,67,70,77,91,93,95,96,113,115,141,143],common_sourc:58,commonli:[3,61,71,73],commun:[24,47,75,95,98,100,104,115],comot:4,compact:138,compar:[5,21,34,40,44,47,51,71,87,104,105,121,126,128,136,142,146],compare_gaug:111,comparison:48,compat:[27,29,43,47,55,64,70,86,88,96,99,108,109,113,114,140],compens:140,compil:[13,24,33,34,36,42,52,54,58,65,67,73,74,78,85,86,90,94,98,107,120,123],compile_librari:98,complet:[19,21,27,43,57,73,77,78,88,98,99,105],complevel:86,complex:[12,83],compliant:37,complic:[15,71,78,124],compon:[3,15,19,21,24,31,34,40,52,54,61,66,70,90,92,94,95,104,111,125,126,127,138,143],compos:[29,77],comprehens:105,compress:[29,86,140],compris:[21,85,140],comput:[3,4,5,6,13,15,16,26,28,29,31,40,43,47,49,52,54,55,57,62,64,70,71,73,78,80,83,85,86,87,88,93,97,99,100,102,104,107,108,112,113,117,120,125,127,128,129,135,138,143,146],computation:[78,93],compute_f:[80,87],compute_gauge_valu:87,compute_p:[77,80],concentr:102,concern:[21,41],conclus:[4,47],conda:[47,52,74,85],condit:[5,7,19,24,56,58,67,75,76,77,78,80,87,93,101,107,108,111,115,121,125,127,128,129],conduct:115,conf:[50,51],confer:23,config:88,config_fc:141,configur:[71,77,88,140],confirm:44,conflict:[6,27,54,57,61,96,100],conform:[21,27,92,115,138],confus:[3,49,54,100,120],conjunct:[86,104],conlict:57,connect:[31,50,55],consequenti:[56,75],conserv:[4,5,6,16,87,93,95,116,143,146],consid:[6,44,53,54,78,100,123,130,140],consider:[44,77],consist:[6,31,43,47,51,55,88,113,120,128,138,143],consol:[13,87,128],consolid:111,constant:[29,31,44,55,59,88,91,120,128,140,143],constant_storm_modul:111,constrain:104,constraint:[40,126,146],construc:55,construct:[21,29,49,77,83,98,134,135,138],construct_function_handl:98,constructor:95,consult:96,contact:[82,85,94],contain:[1,3,5,7,12,13,19,22,24,25,29,31,33,34,35,36,38,40,41,43,45,46,47,48,49,50,51,53,55,57,58,61,62,66,67,71,73,74,77,78,80,81,83,85,86,88,90,91,92,93,95,97,98,100,104,105,107,108,115,116,118,120,124,125,128,130,134,138,140,141,143],containing_rect:29,contains:28,containt:119,contamin:125,contan:47,content:[47,51,78,143,144],context:[26,47,143],contigu:[66,86,95],contingu:21,continu:[13,21,27,29,45,75,120,125,146],contour:[3,29,40,47,49,61,99,124,140],contour_color:3,contour_kwarg:[3,140],contour_level:[3,140],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[47,70],contract:[56,75],contrast:49,contribut:[4,23,24,53,75,78,85,90,93,102,105],contributor:[4,23,56,85],control:[6,7,22,24,37,40,50,52,54,61,73,76,81,83,85,86,87,88,90,104,113,128],conveni:[1,26,33,34,40,47,73,80,82,85,87,89,97,143,146],convens:138,convent:[3,21,29,42,49,64,91,138],converg:70,convers:[18,24,78,86,104,138,142],convert43to46:18,convert46to50:19,convert:[3,21,24,29,38,43,47,52,54,55,57,64,78,90,98,115,125,126,134,138,142],convert_fort_double_to_float:98,convert_readm:11,convert_to_standard_unit:29,convex:31,coodin:29,coord:[43,47],coordin:[22,29,31,43,66,70,77,83,87,88,97,104,128,140],coordinate_specif:[29,64],coordinate_system:[14,122,128],coorind:140,copi:[6,14,15,33,34,40,47,50,51,54,61,77,80,90,95,101,102,103,104,108,112,115,122,130,132,133,138,143],copyq1:58,copyright:[56,75],core:[4,67,105,115],corioli:[44,128,132,133],coriolis_forc:[44,128],corner:[3,29,31,49,64,66,83,125,127,129,138,140],correct:[19,27,37,51,58,59,61,71,77,83,88,92,98,107,108,112,125,127,128,129],correctli:[27,31,78,84,111,128],correspond:[3,6,22,24,26,29,40,43,44,49,50,55,61,64,71,77,81,83,86,87,90,92,95,104,105,120,121,125,126,127,128,129,134,138,142,143],cos:[43,45,77,90],cosin:77,cost:[13,93],could:[5,13,26,31,33,34,40,49,54,64,65,71,73,77,83,87,95,96,99,100,111,126,127,128,129,140,143],council:4,count:77,count_from_zero:77,counter:[98,140],counterclockwis:64,coupl:[113,146],courant:[4,6,104,114,125,126,127,129],cours:[13,25,31,40,42,64,88,89,97,102,128,138],cover:[6,26,27,29,31,47,55,64,104,108,113,127,128,138],coverag:[85,105],covert:11,cparam:[77,95],cpp:48,cpu:[13,48,112,115,117,137],crash:[112,125],creat:[0,1,2,3,5,6,7,18,23,24,27,29,33,34,36,38,40,41,42,46,48,50,53,54,55,57,64,66,70,71,73,78,79,82,83,85,86,89,92,95,96,97,98,104,105,107,111,112,113,115,116,117,124,125,126,127,130,131,134,140,142,143,144],create_dtopo_xi:[29,64],create_dtopographi:[29,64],create_topo_func:140,creation:[71,85,107],criteria:[6,7,21,24,95],criterion:[31,104,127],critic:[47,87,120],crop:[49,140],cross:27,crucial:[47,138],csdm:23,cse:23,csh:88,csv:[29,64,115],csvfault:[29,64],ctrl:[28,71],cube:61,cumul:115,current:[3,5,13,19,21,23,26,27,28,29,31,37,40,41,44,49,50,51,52,53,54,55,61,62,66,71,73,83,86,87,88,93,95,98,100,104,105,112,114,115,119,121,124,125,127,128,129,134,135,138,140,142],current_data:[0,3,24,40,70,71],curv:[3,40,70],custom:[0,13,15,19,21,24,58,61,67,70,78,84,90],custom_bc:90,customari:87,cut:126,cutoff:[6,127],cvf:51,cvs:47,cxx:88,cyber:16,cygwin:80,cython:88,dai:[6,13,47,128],dalcin:75,dam:47,damag:[6,56,75],damian:53,damiansra:90,darker:47,darryl:16,dart:41,dash:[3,88],daspect:61,dat:[29,134],data:[0,1,3,5,24,26,29,31,33,34,36,38,40,41,42,43,49,50,55,56,57,61,70,71,72,73,75,77,80,83,86,87,89,91,92,93,95,98,101,102,103,104,107,109,110,112,113,115,116,117,120,121,127,129,134,137,139,144],data_break:140,data_storm:134,data_typ:98,databas:[13,29,64,98,102,115,138],datadir:112,dataset:[138,140,142],date:[5,27,36,43,47,50,51,57,71,134,141],date_tim:43,datetiem:134,datetim:[43,134],datum:[43,44,91,121,128,142],dave:29,davi:[4,16],david:[4,16,75,85,93],davis2018:[5,16],davisleveque2016:[5,16],davisleveque2018:[5,16],dawson:16,daylight:55,dcp:55,deal:[29,44,70,87,88,95,134,140],dealt:31,debian:99,debug:[7,37,57,66,70,87,95,100,105,125,127],debugg:71,decid:[77,93],decim:[43,55],decimc:134,decis:47,declar:[19,21,95,143],decompos:[66,120,146],decomposit:125,decor:98,decoupl:50,decreas:[40,138],deduc:138,deep:[5,128],deep_depth:128,deeper:[128,138],deepli:97,def:[0,1,3,40,47,71,77,83,87,90,93,127,129,134],default_tfluct:93,defenc:4,defin:[0,1,3,5,6,21,26,29,31,37,47,55,57,61,64,71,73,77,80,83,89,90,92,93,95,97,98,104,107,115,120,127,129,134,138,140,141,143,146],definit:[29,61,77,104,110],deform:[16,29,64,142],deg2dm:55,degre:[29,43,47,55,64],delet:[19,27,52,54],delimit:29,delin:128,delta:[81,83,90,93,120,140,143,146],delta_h:91,delta_hu:91,delta_i:140,delta_limit:140,delta_x:140,dem:[49,55,115,138,140,142],demo:88,demonstr:[12,82,88],denot:[6,21,40,49,120,140],dens:135,densiti:[80,87,91,95,97,126,127,143],depart:[4,134],depdend:81,depend:[3,13,15,27,28,29,31,33,34,36,37,42,44,47,52,53,57,59,61,64,71,76,85,86,91,92,93,98,100,104,115,128,140,141,143,146],deprec:[7,29,32,111,115,128,138,140],depth:[4,5,15,16,21,29,31,40,41,44,59,64,70,72,121,128,138],deriv:[56,64,75,80,84,85,95,105],describ:[3,4,5,6,7,13,15,18,25,27,29,30,31,33,34,40,42,43,44,47,48,50,51,55,57,58,61,64,66,67,70,71,72,83,86,92,98,102,104,105,113,116,117,120,121,124,125,126,128,134,135,138,140,142,143,146],descript:[3,4,9,21,29,55,61,64,70,86,98,102,104,120,128,134,138,146],design:[4,26,27,47,75,77,97,121,142],desir:[0,1,2,3,6,7,15,21,24,25,29,31,38,40,51,52,54,55,64,69,70,71,73,77,78,80,87,92,93,101,113,115,123,125,127,129,134,138,140,141],desktop:88,destin:47,detail:[4,5,7,10,15,21,25,27,28,29,31,33,34,37,41,42,44,47,50,52,53,54,56,57,61,64,71,75,80,81,82,83,86,87,88,89,90,91,93,103,104,105,108,113,115,120,124,125,128,130,134,138,141,142,143,146],detect:[47,57,86,94,98,141],deterimin:[128,140],determin:[3,5,6,29,31,40,44,46,47,50,55,64,71,81,83,86,91,95,100,104,108,112,113,119,121,124,125,126,128,140,143],determine_topo_typ:140,dev:[17,23,27,50,88,115,116,118],develop:[4,6,7,13,17,21,22,28,44,48,50,53,54,56,61,70,74,75,78,85,90,93,94,100,105,115,116,120,121,127],dict:[29,80,86,91,92,95,134,140],dictionari:[0,1,2,3,29,40,71,77,80,86,91,92,95,97,100,134,138,140],dicuss:29,did:[115,138],didn:110,died:107,diff:[17,46,51,107,108,109,110,111,112,113,114,115,116,117],differ:[1,3,6,7,12,15,21,27,29,30,31,33,34,40,42,44,46,49,50,52,55,57,59,61,64,65,70,73,77,78,80,82,83,86,91,93,98,99,100,104,105,111,112,113,114,115,120,121,125,126,127,128,138,140,141,142,143,146],differenti:[16,29],difficult:40,difficulti:[94,96,100],diffus:90,digit:[49,55,71,113,114,115,140],dim:[90,91,93],dimens:[5,6,7,15,19,21,40,43,49,55,61,77,78,80,86,88,90,91,92,95,97,104,115,120,125,126,127,129,140,143],dimension:[3,7,8,16,21,24,29,31,33,34,40,44,48,61,83,90,111,112,114,117,127,128,129,140,143],dimensional_split:[83,111,125,127,129],dip:[29,64],dir:[51,88,144],direct:[6,8,15,21,29,31,33,34,40,43,47,51,55,56,57,61,64,65,71,75,80,90,97,104,114,120,125,126,128,140],directli:[8,18,22,44,52,61,64,71,73,77,78,81,85,95,98,100,115,140,144],directori:[1,3,5,6,11,12,13,14,15,18,19,21,22,24,27,28,30,31,33,34,35,36,38,40,41,43,46,47,50,51,52,53,55,58,61,62,65,69,70,73,80,82,83,85,86,87,90,97,100,101,102,104,105,107,112,113,114,115,117,119,120,122,123,124,125,126,130,132,133,136,137,138,141,143,144],directorti:102,disabl:[45,94,128],disable_petsc:98,discard:93,disclaim:[56,75],discontinu:[4,93,146],discov:59,discoveri:105,discret:93,discrib:4,discuss:[5,23,27,29,44,49,52,64,86,97,99,100,104,113,115,120,128,146],disk:[13,40,77,86,87,105,113],dispers:44,displac:[29,41,44,64,128,142],displai:[1,13,33,34,36,40,47,55,71,87,105,128],display_format:40,display_landfall_tim:128,dist:51,dist_latlong2met:43,dist_meters2latlong:43,distanc:[29,43,47,64,128,138,140],distant:[102,104],distinct:[40,113],distribut:[4,13,28,29,50,56,64,67,74,75,93,99],disturb:47,distutil:78,dive:99,divid:[104,125],divis:[4,47],dlgeorg:4,dms2decim:43,dnetcdf:[37,138],doc:[17,22,23,27,29,47,50,51,81,98,100,114,115,116,117,131],docker:[17,24,51,52,114,115,116,117,145],docker_imag:51,dockerfile_v5:28,dockerhub:[28,51],dockeril:28,docstr:[78,82,105],doctest:83,document:[0,1,2,3,6,7,17,20,21,22,23,24,27,28,31,41,44,49,54,56,64,70,71,72,73,75,81,83,86,87,88,89,93,95,98,100,108,118,124,127,144,145],doe:[4,5,11,15,19,26,27,31,36,44,47,49,52,61,67,71,74,83,85,92,95,98,104,105,108,113,117,119,120,134,140,141,143],doesn:[27,54,58,95],doflag:104,doi:[4,16,48,51,53,118],doing:[6,11,18,24,27,31,40,44,46,48,50,54,58,71,73,83,104,105,112,113,114,115],domain:[5,6,15,16,44,47,50,55,64,66,76,77,78,80,88,90,92,95,102,104,126,127,129,138],don:[13,26,27,50,51,71,87,88,94,105,127,141],done:[1,6,7,8,11,13,15,18,19,27,33,34,40,42,47,49,50,54,55,57,61,64,70,71,73,77,81,82,98,104,108,112,113,117,119,120,124,126,128,137,140,141,142],donna:[4,16],donnabois:4,donor:[125,127,129],dontflag:104,dot:[36,40,47,53,54,55,57,141],doubl:[61,78,83,98,120,126],down:[13,29,87,112,134,138,140],download:[12,13,27,28,29,34,35,41,47,51,52,53,54,62,82,88,94,115,116,118,136,140,141,142],downward:64,doxygen:[6,7,24,114],dpc:55,dpi:[47,55],dpng:61,dprint:[126,127],dq_src:[90,93],dqdt:93,draft:51,drag:128,drag_law:128,draw:3,drawback:100,drawcontourlin:61,drawn:[29,47,124],driver:[19,58],drop:[13,125],dry:[15,16,31,41,91],dry_toler:91,ds824:134,dst:55,dt_check:31,dt_initi:[107,125,127,128,129],dt_max:[125,127,129],dt_max_dtopo:[107,128],dt_variabl:[125,127,129],dtdtopo:110,dtdx1d:109,dtdx:81,dtdy1d:109,dtfe:93,dtopo2kml:55,dtopo:[24,29,41,44,49,55,64,100,107,109,110,128,138,140,142],dtopo_data:[107,128],dtopo_file_nam:55,dtopo_modul:107,dtopo_typ:[29,55,64],dtopofil:[55,64,128],dtopographi:[29,64],dtopotool:[41,64,109,110,112,115,116,138,139],dtopotools_exampl:[29,41,64,103],dtopotyp:[128,138],due:[16,29,43,64,105,114,115,141],dummi:[78,93,143],dump:[66,125],dumpgaug:111,duplic:[71,110,119],durat:[29,121],dure:[5,21,31,40,55,64,67,107,121,127,128,129,138],dx0xgftn3_x04rdx0_w5nq7w0000gn:[14,101,122,132,133],dxc:78,dyc:78,dylib:47,dynam:[6,19,29,44,64,67],dynamic_slip:[29,116],dz_at_t:29,dz_interv:29,dz_max:29,e15:40,e26:40,e68:[4,16],e_format_bst:134,e_l:91,e_r:91,each:[1,2,3,5,6,7,15,17,21,29,31,32,40,43,47,49,50,51,55,58,61,64,65,66,69,70,71,73,77,78,81,83,86,87,88,90,91,92,93,95,97,104,105,107,108,112,113,115,116,119,120,124,125,126,127,128,129,134,137,138,140,142,146],each_fram:40,each_gaug:40,ear:4,earli:[6,19],earlier:[5,19,21,29,31,49,64,77,90,107,114,138,140],earth:[24,41,48,55,64,111,113,128],earth_radiu:128,earthquak:[24,29,41,44,103,128,135,138],eas:55,easi:[4,6,11,28,54,61,74,78,87,88,89,130,143],easier:[54,70,113,115,143],easiest:[18,27,37,67,71,73,99,104,143],easili:[3,13,27,31,47,61,71,78,83,94,98,99,105,130,134],east:[13,138],easy_instal:88,ec2:24,echo:100,ecosystem:[4,16],edebug:[126,127],edg:[3,6,14,15,26,29,31,55,64,83,91,120,122,126,127,129,143],edit:[47,51,52,54,73],editabl:27,editor:66,edu:[29,47,62,86,117],effect:[40,47,59,61,83,87,99,104,105,121,128,140],effici:[44,48,75,85,86,87,95,104],effort:86,efix:91,egg:[52,54],eigenvalu:5,eigenvector:[5,120,146],either:[12,15,19,29,41,42,47,57,61,64,71,73,77,83,86,87,93,98,100,104,105,111,112,113,115,120,128,134,138,140,143,146],elast:[13,64],element:[0,3,21,55,91,93,95,125,126,127,128],elementwis:87,elev:[21,31,42,44,47,49,55,70,101,104,128,138,140,142],elif:[127,129],elimin:[8,21,78,100,115,128],ell:120,els:[26,27,52,54,95,115,129],elsewher:[5,23],emmanuel:128,emmett:[16,75,85],empir:[44,59],empti:[40,92,95,98,100,125,134,140],empyclaw:90,enabl:[83,87,94,98,113],encapsul:44,encount:[36,47,71,94,96],encourag:61,end:[13,28,29,31,40,43,47,51,55,80,87,91,97,101,102,104,106,107,108,109,110,112,113,115,119,127,129,134,137],end_dat:43,enddo:143,endian:86,endors:[56,75],energi:[87,91],enforc:128,eng:134,engin:[16,47],enhanc:[59,75,115],enlarg:113,enough:[5,135,137,138],ensembl:134,ensur:[33,34,61,102],enter:[61,86,88,94],enthought:[94,96,99],entir:[5,6,44,47,55,64,65,67,77,87,92,102,104,108,140],entireti:80,entri:[47,77,87,98,134],entropi:91,enumer:[83,93],environ:[24,27,33,34,36,46,47,50,52,53,54,61,63,65,67,89,96,98,100,113,140,141],envis:15,epd:96,eprint:[126,127],epsg:47,epsilon:81,eqn:146,eqnarrai:97,equal:[15,29,31,47,64,88,90,104,119,125,127,129,138,140],equat:[4,5,15,16,33,34,41,44,59,71,76,77,78,80,85,86,87,90,93,94,95,108,111,113,115,116,120,125,127,128,129,138,143,146],equiv:146,equival:[6,40,48,49,55,117,138],err:127,errest:104,erron:[29,64],error:[5,15,19,33,34,36,47,54,61,65,71,80,85,86,87,98,104,105,116,126,127,134,141],escap:[104,127],escienc:13,especi:[27,47,78,90],esri:[49,138],essenti:[5,49,61,93,128,138],est:127,establis:115,establish:4,estim:[5,59,104,126,128],estimat:[5,127],eta:[29,31,40,104,111],eta_tild:31,etc:[0,2,15,18,19,23,26,27,31,44,47,50,53,55,58,66,70,78,120,124,125,128,134,143],etopo1:[115,121,138,140,142],etopo_sample_2min:140,etopotool:[115,138],euler:[85,93,109,111,114,116,120,143],euler_1d_pi:91,euler_2d:[33,35,85,90],euler_exact_1d:91,euler_hll_1d:91,euler_hllc_1d:91,euler_roe_1d:91,evalu:[16,26,29,59,77,83,93,140,143],even:[44,47,54,56,64,75,98,104,126,127,138,141,143],evenli:[47,87],event:[41,44,55,56,64,75,121,125],event_tim:55,eventu:[13,41],ever:[124,128],everi:[6,27,31,40,57,58,77,80,82,86,87,95,104,105,113,114,120,123,125,127,129,134,138,140,143],everyth:[28,31,51,52,53,54,65,88,97,98,105,115],everywher:[43,59,95],evolv:[21,77,80,93],evolve_to_tim:[77,93],exact:91,exactli:[27,46,48,95,125],exam:71,examin:[15,33,34,40,100],exampl:[0,1,2,3,4,5,6,7,8,9,13,15,19,21,23,26,27,28,29,31,36,37,41,43,49,50,51,52,53,55,57,58,59,62,64,65,66,70,71,73,75,76,77,78,80,83,84,86,87,90,91,92,93,94,97,98,100,102,103,104,105,107,109,110,111,112,113,114,115,116,117,119,120,121,123,124,125,126,127,128,129,130,134,136,137,138,140,141,142,143],exce:[31,47,104,126],exceed:[104,115],except:[21,26,29,50,86,91,98,125,128,134,138],excerpt:88,exclud:[31,58],exclude_modul:58,exclude_sourc:58,exe:[33,34,80],exec:[0,1,3,71],execut:[0,1,3,15,18,26,33,34,40,55,61,71,73,80,82,88,100,105,120,123,141],exemplari:[56,75],exercis:[28,41,103,105],exist:[1,20,29,30,32,33,34,47,54,57,61,71,83,87,90,92,95,98,99,108,114,115,134,140,142],exit:[28,71,88,94],exp:[77,87,97],expand:[25,47,55],expect:[91,97,98,105,115,116,127,128,129,134],expens:[93,104,108,113],experi:[23,44,93],experiment:[5,75],expert:44,explain:[13,44,125,130],explan:27,explicit:[98,126],explicitli:[58,61,125,141,146],explor:[4,55,71,73],expon:59,expos:13,express:[4,29,56,75,94],extend:[8,15,21,55,61,83,115,128,138,140,146],extens:[4,16,21,23,27,29,44,47,50,54,58,61,78,85,86,98,113,114,125,136,140,146],extent:[44,54,55,59,61,77,83,95,107,128,138,140],extra:[3,47],extra_fil:50,extract:[47,51,86,134,140,142],extran:111,extrap:[15,90,97,125,127],extrapol:[5,15,21,31,90,97,115,125,126,127,129],extrem:[47,96],extropl:15,eye:[134,135],eye_loc:134,f2py:[52,54,78,90,98,120],f2py_flag:98,f2s:55,f49620:4,f77:[37,141],f90:[5,9,14,19,30,31,40,48,57,58,65,74,90,101,104,107,111,113,115,116,117,120,122,132,133,138,141,143],f95:98,f_file_nam:[80,87],f_path:80,facecolor:[2,71,124],facilit:[40,105,111,113,130,134],fact:[47,86,95,104],factor:[6,47,126,128,137,140],faculti:29,fade:71,fail:[14,27,86,88,98,101,105,111,122,132,133,134],failur:[105,116],fairli:[15,44,113],fall:[121,128],fals:[0,1,2,3,5,29,44,45,46,47,50,55,80,83,86,91,92,93,95,98,112,113,119,125,126,127,128,129,134,140],famili:[83,93,127,129],familiar:74,faq:[13,24,70,99],far:[15,38,70,116],fashion:119,faster:[117,140],fastest:[86,94],fault:[16,24,29,41,103,115,138,142],fault_plan:29,favor:[111,115,140],favorit:70,fbound:37,fc02:4,fcompil:141,fdefault:98,featur:[17,21,24,27,31,47,61,71,78,104,105,110,112,113,115,118,128,134,138],februari:[23,114],feet:[121,142],fellowship:4,fetch:[13,43],fetch_noaa_tide_data:43,fetch_topo_url:140,few:[6,12,13,21,25,28,34,44,50,61,78,93,97,104,105,121,136,138,143],fewer:[104,140],ff0000:[3,55],ff9999:124,ffff00:71,fflag:[27,36,57,62,65,78,98,138],ffpe:37,fg02:4,fg03:4,fg06:4,fg1:31,fg2:31,fg_maxnum_fgrid:31,fg_num_val:31,fgmax2kml:55,fgmax:[41,55,65,108,110,113,114,128],fgmax_data:[31,128],fgmax_fil:[31,128],fgmax_grid:55,fgmax_interpol:31,fgmax_interpolate0:31,fgmax_modul:31,fgmax_tool:[31,110],fgmax_tools_modul:31,fgmax_valu:31,fgmaxgrid:31,fgout2kml:55,fgout:55,fgout_grid:55,field:[40,55,90,92,95,101,106,107,108,109,110,113,115,134,135],fig:55,fig_kwarg:[29,140],fignam:[1,73],figno:[1,2,40,47,71,73,124],figsiz:[2,71,124],figur:[0,1,2,4,13,29,33,34,38,40,49,55,61,70,73,92,100,120,124,140],file1info:128,file2info:128,file:[1,5,6,8,9,11,14,17,18,19,21,22,24,26,27,29,33,34,36,37,38,40,41,42,44,46,48,52,54,55,57,62,64,66,67,70,72,75,78,80,82,83,86,87,88,89,90,92,95,96,98,100,101,102,104,107,108,110,111,112,113,114,115,116,117,118,121,122,123,124,125,126,127,129,131,132,133,134,135,137,140,141,142,144],file_format:[40,86,92,134],file_prefix:[86,92],file_prefix_p:80,fileio:66,filenam:[30,47,111,140],fill:[0,3,4,6,15,47,83,86,95,102,113,125,134,137,140,143],fill_between:3,fill_mwr:134,fill_rad_w_other_sourc:134,fill_topo:140,fill_valu:[86,140],fill_var2:3,fill_wher:3,filpatch:[9,113,117],filter:[86,140],filter_region:140,find:[1,3,4,6,23,26,27,28,29,43,47,52,54,57,62,64,67,70,75,82,90,95,96,98,99,100,102,115,134,141],fine:[3,31,50,63,67,90,104,113,125,128,138,143],finer:[3,7,47,104,107,108,125,126],finest:[3,40,115,137,140],finish:[13,71,77],finit:[4,16,31,38,49,55,61,64,93,137,138,143],finlin:98,first:[1,3,5,13,18,19,21,27,29,31,33,34,47,50,51,52,53,54,55,57,61,71,73,77,78,83,86,87,88,90,93,94,95,97,98,100,102,104,107,111,116,120,125,127,128,134,136,138,140,146],first_test:33,fit:[56,75],five:31,fix:[6,18,19,21,24,41,51,55,57,75,86,91,107,108,109,110,111,112,113,114,116,117,125,127,129,140],fixedgrid:128,flag2refin:[5,21,126,127],flag2refine_tol:[5,104,126,127],flag:[7,13,21,24,27,28,36,37,48,52,54,62,65,78,96,98,100,111,116,127,128],flag_richardson:[5,104,112,126,127],flag_richardson_tol:[5,104,126,127],flask_loc:50,flask_web:50,flat:64,flavor:[12,20,53,86],fletcher32:86,flexibl:[21,29,55,78,111,114,120],flood:47,floor:[29,41,64],flow:[4,15,16,22,31,41,42,44,85,102,120,125,128,138,143],flowchart:[6,7,24],fluctuat:[91,93,146],fluid:[44,121],flush:112,flux2:78,flux2_dimsplit:111,flux3_dimsplit:111,flux:[5,16,31,83,91,93,120,125,146],fly:24,fmt:3,fname:[55,127,128,129],focu:[4,41],fold:15,folder:[14,47,101,122,132,133],follow:[0,2,3,4,5,6,13,15,17,18,22,23,27,29,31,33,34,35,40,42,47,49,50,51,52,53,54,56,61,62,64,66,71,72,74,75,77,78,79,82,83,86,87,88,90,91,92,94,95,97,98,100,105,115,119,120,124,125,126,128,134,136,137,138,141,143,145],fontsiz:71,foot:64,fopenmp:[37,65,98],forbidden:104,forc:[21,36,57,98,104,128,135,140,141],force_dri:55,forecast:134,forestclaw:[100,111],forg:[53,85],forget:141,fork:[23,50,51],form:[0,2,3,4,5,6,8,18,19,21,27,28,29,31,33,34,38,40,43,47,50,51,56,59,64,66,75,78,87,91,93,97,98,104,108,115,116,117,119,120,125,126,127,128,132,138,140,143,146],format:[1,3,5,13,24,29,33,34,40,41,42,44,45,47,49,55,57,61,62,64,70,71,77,80,86,87,89,90,92,98,102,112,113,115,125,128,134,135,140,142,144],format_str:40,former:[71,143],formerli:111,formul:[4,5,44,59,120,125],formula:59,fort:[1,8,26,31,40,61,62,70,86,92,108,112,113,114,119,125,126,127,129,137,144],fortfil:[33,34],fortran:[6,9,11,13,19,22,26,27,29,31,33,40,42,49,52,54,57,58,59,65,66,67,70,73,75,77,78,80,83,85,86,88,90,91,93,94,95,98,111,112,113,115,116,117,120,123,127,128,129,134,136,137,138],fortran_modul:95,fortran_src_wrapp:78,forward:[5,93,104,116,143],found:[1,4,5,6,11,12,13,14,15,21,26,28,31,33,34,36,38,40,43,44,46,55,57,58,69,71,72,73,77,81,88,92,96,98,100,101,102,105,112,115,119,121,122,124,132,133,134,140,141],founder:4,four:[83,104,105],fourth:[31,49],fpe0:37,frac:[59,91,97,146],fraction:[6,13,29,104,125,143,146],fragil:95,fragment:3,frame0000:61,frame0005fig1:47,frame0005fig1_tmp:47,frame:[1,2,3,26,40,47,61,62,66,70,71,73,77,80,84,86,88,92,94,98,113,119,124,127,129,130],framecount:98,framenam:61,frameno:[1,3,26],framesoln_dict:1,frametool:[1,26,73],framework:[4,51,75,78,112,113],free:[13,47,57,64,75,79,90,94,96,99],frequenc:[64,93],frequent:[5,19,26,96,112],friction:[24,41,44,128,132,133],friction_depth:[59,128],friction_forc:128,friction_modul:111,friedemann:81,from:[0,1,3,4,5,6,7,12,15,16,17,22,25,26,28,31,32,33,34,40,44,47,48,49,50,51,53,54,56,57,58,61,63,64,66,70,71,75,76,77,79,80,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,111,112,113,115,118,119,120,121,125,126,127,128,129,134,135,136,138,141,142,143,144],frommm:81,front:[61,92,98],fset:95,fstr:61,ftrapuv:37,full:[5,6,51,53,54,55,71,80,87,93,97,123,138,143],fulli:[6,44,47,48,114,120,128,134,135],fun:98,func:[98,134],function_nam:98,fund:[24,54,85],funrol:98,further:[6,15,24,37,44,55,57,61,85,104,105],furthermor:[47,97],futur:[13,21,24,25,33,34,44,49,55,59,77,93,112,113,115,134,138],fvmbook:[12,38],fvmhp:[4,12,15,16,24,67,120,125,143,146],fwave:[83,91,93,120],g77:96,gain:86,galerkin:93,galleri:[12,33,34,35,39,51,69,70,82,85,99,105,110,114,130,136,143],gallery_al:85,gallery_classic_amrclaw:[8,33,34],gallery_fvmbook:[16,38],gallery_geoclaw:[31,41],gamma1:91,gamma:[59,91],gap:140,garret:128,gas:[6,91],gaug:[7,24,41,55,83,84,95,102,107,111,112,113,114,115,119,121,127],gauge00001:[40,113],gauge_coord:83,gauge_data:95,gauge_dir_nam:83,gauge_fil:83,gauge_file_nam:83,gauge_id:40,gaugedata:[40,127],gaugeno:[40,127],gauges2kml:55,gauges_modul:[40,111,113],gaugesolut:40,gaugetool:[40,111],gaugexxxxx:[40,113,119],gauss_pt:29,gaussian:[5,77,97,129],gave:115,gca:45,gcc:[88,94],gcs:47,gdal_data:47,gdal_test:47,ge_xlim:47,ge_ylim:47,gear:13,gen_vari:[98,105],gener:[0,1,2,3,4,5,6,7,9,11,13,15,16,18,19,23,24,27,28,31,36,37,41,44,47,49,51,52,57,58,59,64,65,66,70,71,72,73,75,78,79,81,83,88,89,90,92,93,94,97,98,99,100,102,104,107,111,113,119,121,123,125,126,130,135,137,138,143,144],generate_2d_coordin:140,generate_2d_topo:140,geo:[41,59],geo_data:128,geo_gpu_pap:48,geoclaw:[4,7,12,16,22,23,27,29,31,32,34,37,40,48,49,51,52,53,54,55,59,62,64,67,70,94,100,102,103,105,119,120,121,123,125,126,134,135,136,137,138,139,140,141,142,143],geoclaw_modul:111,geoclaw_riemann_util:114,geoda:121,geograph:47,geohazard:44,geol:29,geolib:[62,107,111],geom:[83,95],geometr:143,geometri:[24,29,64,85,86,90,92,95,111],geophi:16,geophys:[4,15,16,22,41,44,67,125],geoplot:[45,47,72],georefer:47,georeferenc:47,georg:[4,16,29],geoscientist:44,geospati:47,get:[0,10,13,23,27,36,41,47,49,52,53,54,57,58,70,74,77,78,83,86,87,88,94,96,97,98,99,102,103,105,114,120,134,140,141],get_aux_glob:95,get_auxbc_from_aux:95,get_cmap:71,get_count:98,get_dim_attribut:83,get_dt:93,get_dt_new:93,get_q_glob:95,get_qbc_from_q:95,get_remote_fil:140,get_topo:140,getax:1,getcwd:71,getfigur:1,getfram:[1,3,73],getgaug:40,gethandl:[0,2,3],getitem:1,getlogg:87,getsitepackag:100,getusersitepackag:100,gfortran:[13,52,54,65,74,76,96,123,141],gfortranbinari:94,ghamdi:4,ghost:[7,15,65,66,83,86,93,95,113,125,127,129,137,143,146],gica2937:29,gigabyt:138,gist:53,git:[12,13,22,23,24,25,48,50,51,52,54,94,105,117],git_statu:46,github:[12,21,22,23,24,25,28,48,50,52,53,54,82,90,94,105,110,112,113,114,118,120,141],gitter:23,give:[3,6,9,10,13,15,23,27,29,31,33,34,40,48,54,55,64,65,66,71,73,88,89,93,105,108,112,113,117,125,128,138,140,142],given:[5,29,43,47,49,55,59,61,64,81,88,92,93,95,98,104,121,128,134,138,140,143],glitch:110,global:[6,83,95,98,121,138,142,143],gloss:142,glu:15,gmt:43,gnu:94,gnufcompil:141,goal:6,godaddi:50,godunov:[4,83,93,125,127,129,143],goe:[29,41],going:[5,15,21,51,77,80,82,86,91,99,106,130,138,146],gone:87,good:[15,27,44,47,56,65,75,97,102,105,113,120],googl:[23,24,27,41,55,82,86,88,96,111,113,120],googlecod:88,googleearth:[47,55],googleearth_darkblu:47,googleearth_lightblu:47,googleearth_transpar:47,gori:10,gov:[29,43,64,88,134],govern:128,gprint:[126,127],gpu:[24,117],gradi:[4,16,75],gradient:[114,146],gradylemoin:4,grai:134,grant:[4,75],graph:9,graphic:[22,27,48,61,70],grav:91,gravit:[59,91,128,143],graviti:128,great:[43,82],greater:[5,31,55,59,94,99,104,119,125,126,128],greatest:104,greatli:[25,75,121],green:[55,64,71,105,134,140],grid1d:83,grid1info:128,grid2info:128,grid:[4,7,16,18,19,21,22,24,26,27,40,41,42,44,47,48,55,61,66,67,70,75,77,85,87,88,90,91,92,93,95,97,104,105,107,108,110,111,113,114,115,120,121,125,126,127,129,135,137,138,140,142,143,146],grid_files_scanf:144,grid_numb:66,grid_registr:[49,140],griddata:140,gride:135,grideges_show:21,gridlin:61,gridlines_show:21,ground:[31,64],groundoverlai:47,group:[3,13,23,27,29,44,82,86,88,96,112,120],guarante:[41,44,93,103],guard:112,gui:[21,144],guid:[7,13,16,17,22,23,24,41,42,48,53,85,99,104,114,131],guidelin:85,gzip:51,h_l:91,h_r:91,hack:95,had:[40,48,49,113,114,115,116],hadjimichael:[4,16,75],half:[0,15,16,64,93,125,143],halfspac:64,hand:[3,5,17,18,19,59,77,105],handi:[27,57],handl:[0,2,3,6,31,37,41,49,55,65,67,70,83,86,90,92,93,95,96,97,98,100,107,108,110,111,113,115,116,117,128,134,140],hang:64,happen:[30,47,57,77,92,95,141],har:120,harbor:31,hard:[45,65,71,140],hardcopi:[1,71,73,124],harder:125,hardest:[62,99],hardwir:65,harm:100,has:[0,4,5,6,8,13,15,17,19,20,21,22,26,27,31,32,33,34,46,47,48,49,51,55,57,59,61,64,66,67,71,75,78,80,83,87,90,91,92,95,96,98,99,100,101,102,104,105,106,107,108,113,114,115,116,117,118,120,121,125,126,128,134,137,138,140,143,144,146],hash:[46,50,105],hat:5,have:[0,1,2,3,4,5,6,8,9,11,13,15,17,19,21,22,23,24,26,27,28,29,31,33,34,37,38,40,41,44,47,48,50,51,52,54,57,58,59,61,62,64,65,66,70,71,73,74,75,77,78,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,102,104,105,107,108,110,111,112,113,114,115,117,119,120,121,125,126,128,130,134,138,140,141,143],haven:97,haversin:43,hazard:[31,41,59,121],hdf5:[85,87],hdf:86,head:[27,29],header:[11,29,40,49,64,66,86,92,111,113,115,134,138,140],header_styl:140,heat:91,heavili:78,height:[47,91,140],held:44,hello:88,help:[5,7,9,22,23,24,27,28,36,45,54,57,70,73,85,88,94,98,105,112,120,130,141],helzel:16,henc:[5,49,50,58,93,100,104],here:[4,13,15,28,31,44,50,51,54,55,67,71,73,77,80,85,86,88,90,91,96,97,100,102,111,120,135,140,146],heterogen:143,hex:[55,71],hidden:[3,57,71],hide:[47,61],hierarchi:[47,83,100],high:[4,16,44,47,64,67,78,85,93,120,121,128,142,143],higher:[3,6,47,83,93,94,104,120,121],highli:115,highlight:[11,13],hilo:[121,142],hint:[15,24,41,52,70,73,74,100,128,141],histor:[44,64,142],histori:[27,51,73,99],hit:[15,61,73,87,125],hko:134,hll:91,hllc:91,hlle:116,hmin:31,hoc:78,hold:[3,73,97,104],holder:[56,75],holland:[115,128,135],holland_storm_modul:111,home:[13,28,29,52,54,123],homebrew:47,homepag:20,homogen:[64,93,143,146],hood:70,hope:[25,105],horizont:[47,140],host:47,hour:[13,47,55],how:[1,6,7,12,15,21,23,27,29,31,33,34,37,40,42,47,51,55,57,64,65,66,70,80,82,84,86,90,93,97,98,100,102,103,104,105,108,113,115,117,119,120,124,125,128,130,138,140,144],howev:[6,13,15,21,33,34,37,42,44,47,54,56,58,64,65,66,75,78,104,105,113,115,117,121,124,128,137],hpc:23,hrd:134,html:[1,13,16,22,27,29,33,34,36,39,40,47,50,64,70,71,82,88,89,100,105,116,134],html_plot:89,html_theme:50,htmlplot:82,htpp:27,http:[4,12,13,16,23,25,27,28,29,39,43,47,48,50,51,52,53,54,56,62,64,74,75,78,79,86,88,90,100,110,112,113,114,116,117,118,134,140],huge:138,human:134,hurdat:[115,134,135],hurrican:[102,134],hurt:58,hwrf:[115,128,135],hydrodynam:16,hyperbe:81,hyperbee_limit:81,hyperbol:[4,5,6,16,38,67,78,85,90,91,97,120,125,128,143,146],hyperol:125,ibm:94,ibtrac:[115,134],ico:50,icon:50,idea:[10,23,29,61,67,77,97,108,140,146],ideal:[51,91,121],ident:[58,83,86,88,105,140],identifi:[5,33,34,47,78,104,134],idl:13,ids:40,ieee:16,ifort:37,igetsp:111,ignor:[15,47,55,86,111,121,140],iinstal:88,ike:102,illustr:[29,33,34,47,61,64,103,110,111,115,117,120,130,140],imag:[13,33,34,51,53,55,105,115],imd:[134,135],immedi:[23,44,61,77,79,80,87],impact:[5,64],impati:90,imped:[77,91,97],implement:[1,4,5,7,15,29,55,58,63,75,90,91,93,97,98,105,110,113,116,120,125,140,143,146],impli:[56,75,128],implicit:[75,93],importantli:88,impos:[15,78,104,128,132,133,146],imposs:[44,125],improv:[4,13,21,23,31,32,47,86,107,108,110,111,112,113,114,116,117,125],imshow:140,in_poli:140,inaccur:44,inaccuraci:44,inadequaci:59,inadvertantli:71,inbound:13,inc:[4,16,61],incept:4,inch:[2,47,55,71,124],incident:[56,75],includ:[4,6,13,14,17,20,21,22,26,27,28,29,31,33,34,36,37,40,44,47,49,50,51,52,54,55,56,58,59,61,62,64,65,67,70,71,73,75,77,78,82,83,85,86,87,88,89,90,91,92,93,94,95,97,99,100,101,102,104,105,107,113,114,115,116,117,120,122,125,127,128,130,131,132,133,134,135,137,138,140,143],incom:15,incompat:[27,47],incompress:16,inconsist:112,incorpor:[21,44,50,75,93,107,114,140],incorrect:[115,116,134],incorrectli:112,increas:[47,55,65,128],increasingli:27,increment:[31,40,47,83,98,125,127,129],ind:83,inde:[78,88],indent:[43,55],independ:[22,29],index:[1,6,13,21,22,26,31,39,40,50,51,71,83,85,88,90,91,98,115,125,127,128,129],indian:134,indic:[7,15,19,21,24,28,29,37,40,47,49,51,53,54,58,61,69,73,83,87,88,91,93,97,100,104,105,113,120,125,127,128,129,138,140,143],indirect:[56,75],individu:[4,21,22,47,55,57,58,61,83,104,105,134],inf:140,infer:140,infinit:125,inflat:15,info:[16,28,29,40,51,55,61,80,83,87,93,113,126,127,134],info_sz:29,inform:[13,21,24,33,34,42,43,44,45,46,52,54,58,66,71,72,73,74,77,78,83,87,88,89,91,92,98,100,112,115,116,119,120,123,125,126,128,134,137,138,141,142,143,144],inhabit:77,inherit:[71,83,93],init:[27,48,53],initi:[4,5,7,13,21,29,31,40,43,44,47,51,58,61,64,67,73,75,76,77,78,80,81,83,84,86,87,91,92,93,95,96,98,101,104,112,115,120,121,125,127,128,129,134,138,140],initialize_sourc:78,inlinelimit:58,inner:[5,104,116],innerprod_index:5,input:[7,15,19,22,24,26,29,36,41,47,55,58,61,77,80,81,83,85,91,92,93,98,102,112,115,116,117,120,127,128,129,134,135,138,140,143],input_filenam:78,input_unit:29,inputfil:[98,140],ins:21,insert:[11,15,64,86,138],insid:[83,88,92,120,140],insidi:113,inspect:[18,19,47],instabl:113,instal:[12,13,17,22,24,28,33,47,50,51,73,75,76,79,84,86,97,105,106,107,108,109,110,111,112,113,114,115,116,117,118,123,145],install_fortran:34,install_prerequisit:[33,34],installing_more_opt:51,installing_pip:51,instanc:[3,27,47,52,64,67,73,77,78,80,83,86,87,90,128],instantan:93,instanti:[80,88,90,93,95,127,129],instati:[64,140],instead:[3,13,28,31,33,34,37,40,48,51,53,54,57,58,62,94,95,98,100,112,113,116,119,120,123,138,140],institut:4,instruct:[13,17,23,24,33,34,47,48,50,51,52,53,62,77,79,85,88,94,97,100,114,118,119,123,141],insur:[46,57,73,104,107,111,126,128,138],int_a:5,intact:[63,112],integ:[3,31,40,47,55,59,71,78,92,104,114,117,120,125,128,134,140],integr:[5,21,49,75,85,87,93,107,108,112,127,129,137,138,143],intend:[44,78,115],intens:[78,134],intent:[78,120],inter:[27,114],interac:87,interact:[1,13,21,33,34,36,40,42,57,67,70,71,78,88,89,94,97,100,112,113],interactive_plot:[89,97],interactive_test:112,interdepend:95,interest:[5,12,15,17,22,26,31,45,61,78,95,102,104,105,114,115,116,117,125,134],interfac:[4,18,21,61,75,78,81,85,86,91,93,98,120,143,144,146],interface_funct:98,interior:[6,15,66,95],interleav:[75,91],intermedi:[18,31,64,143],intermit:[40,113],intern:[6,29,40,49,55,64,113,138,140,146],interp_kwarg:134,interp_unstructur:140,interpol:[5,6,15,29,32,40,41,49,55,61,64,71,113,121,128,134,135,140],interpret:[29,31,49,64,99,115,138],interrupt:[56,75],intersect:[31,64],intersphinx:50,intersphinx_map:50,interv:[5,40,43,77,97,104,125,128],introduc:[5,15,18,31,71,146],introductori:99,intuit:85,inund:[31,41,47,59,104,121,142],inundataion:[121,142],inv_haversin:43,invalid:[37,92],invert:43,invest:44,investig:105,invis:[36,111],invok:[11,65,141],involv:[23,90,93,102,135],ioerror:92,ioexcept:98,iout:129,ioutarrivaltim:128,ioutsurfacemax:128,ipdb:71,iplot:[33,35,82,85,88],iplotclaw:[1,13,21,33,34,40,42,70,71,89,100],iplotclaw_:71,iplotclaw_figno:1,ipynb:[28,29,64,103,112,140],ipynotebook:112,ipython:[13,67,71,73,78,79,85,87,94,97,99,100,111,112],ipython_displai:107,iqinit:[128,138],is_valid:[92,95],isn:[57,65,66,141],iso:134,isosurfac:61,isotrop:64,issu:[21,23,25,50,51,54,61,77,82,83,85,93,94,96,105,107,112,113,114,115,120,128,141],item1:[0,73],item:[0,1,3,61,70,73,98,124],itemnam:[1,73],iter:[29,91],ith:91,its:[4,6,13,21,28,32,44,47,53,56,58,64,66,75,80,81,82,83,85,90,92,93,95,98,104,127,140,146],itself:[4,64,70,120,128,140],ixi:120,jacobian:[120,146],jan:[4,51],januari:[106,113,118],japan:[47,55],japanes:134,javascript:130,jed:75,jet:[29,61],jma:[115,134,135],job:13,join:[23,71],journal:[4,16,48,85,130],jovyan:28,jpg:[50,61],jsanim:[107,111],jsanimation_frametool:109,juli:[108,109,118],jump:[4,5,50,61,73,83,93,113,125,146],junction:[31,128],june:[114,115,116,117,118],jupyt:[64,67,85,103,111,112],just:[0,6,27,36,51,77,78,80,82,85,86,87,88,89,90,95,98,99,108,115,125,143],justifi:64,kappa:[97,146],kappa_i:146,karg:92,katrina:102,kaust:[4,23],keep:[24,27,33,34,65,77,80,95,98,105,108,128],keep_copi:[77,80,87],keep_gaug:95,kei:[0,1,2,13,27,29,40,86,93,97,98,134,140],kemm:81,kemm_2009:81,kentzo:51,kernel:98,kernel_languag:[83,93,98,105],ketch:4,ketcheson:[4,16,68,75,85,93],ketchesonmandliet:[4,16],ketparlev13:[4,16,67,85,120],keyboard:61,keypair:13,keyword:[2,3,71,77,82,83,86,92,98,105,115,124,134,140],kind:[80,82,87,117,120],kinemat:[29,41],king:[4,75],klein:81,kml:[55,111,113,114,115],kml_build_colorbar:[47,55],kml_cb:55,kml_colorbar:47,kml_dpi:[47,55],kml_figsiz:47,kml_footer:55,kml_gaug:55,kml_header:55,kml_index_fnam:47,kml_map_topo_to_latlong:47,kml_name:47,kml_png:55,kml_publish:47,kml_region:55,kml_starttim:47,kml_tile_imag:47,kml_timespan:55,kml_timezon:47,kml_tz_offset:47,kml_use_figure_limit:47,kml_use_for_initial_view:47,kml_user_fil:47,kml_xlimit:47,kml_ylimit:47,kmltool:[41,139],kmz:[55,113],kneplei:[16,75,85],know:[44,54,57,64,75,102,114,120,121,140,141,142],knowledg:44,known:[37,61,64,65,71,94,96,105,114,125],kristof:75,kutta:[85,93],kwarg:[2,29,55,71,98,105,124,134],kyle:[4,16,75,81,85,86,91],label:[29,45,47,49,55,111,138,140],lack:3,lake:[41,138],lambda:[83,140],lambda_roe_1:91,lambda_roe_2:91,land:[15,41,42,47,50,55,72,128,140],landfal:115,landslid:44,langseth:[4,16],langsethleveque00:[4,16],langtangen:99,languag:[11,70,98,99],lapack:107,laptop:[28,85],larg:[5,6,19,31,33,34,44,47,49,50,61,65,70,85,87,88,104,105,112,119,125,140,142],larger:[13,19,31,47,55,64,65,66,71,83,107,113,128,138],largest:[104,121],last:[3,17,26,31,51,71,77,78,90,97,112,125,134],lat:[29,43,47,49,138,140],later:[13,46,47,54,73,93,119],latest:[22,39,47,51,53,54,79,88,94,108,112],latex:[1,47,70,89],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[14,29,31,42,43,49,64,70,111,122,128,134,140],latitude_max:47,latitude_min:47,latitudin:43,latitutd:29,latlong:[29,47],latter:[14,90,122,125,134,143],launch:[35,52,82,88,89,94],law:[4,16,55,128,146],lax:[83,93,125,127,129,146],layer:[16,40,55,83,107,109,112,113,115],layout:50,lbla:96,lead:[6,13,21,44,47,59,61,64,100,103,126],learn:[44,82,99],least:[4,5,6,13,47,55,61,96,104,105,112,113,125,127,138,140],least_significant_digit:86,leav:[13,15,40,52,54,126,140],lectur:23,led:[19,116],leer:[81,93,125,127,129],left:[3,5,10,13,15,17,24,26,31,49,66,73,83,90,91,97,114,118,119,120,121,126,138,140,142,146],legaci:[22,51],legend:114,legend_tool:114,lemoin:[4,16,75],len:[5,29,83,127,129,140],lenght:125,length:[14,29,44,55,64,90,95,113,122,125,126,127,128,143],leq:5,less:[44,47,59,65,93,104,105,125],let:[15,41,54,75,102,114,120],level:[3,6,7,15,22,26,28,31,40,42,43,44,47,51,52,54,61,65,66,78,80,83,86,87,93,100,101,104,105,107,108,112,113,115,119,121,123,125,126,127,128,129,137,138,140,142,143],levequ:[4,15,16,29,48,67,81,83,85,93,99,120,125,143,146],leveque09:16,leveque1996:16,leveque1997:85,leveque96:16,leveque97:[4,16],leveque_book_2002:91,levequegeorgeberg:[4,16],levyon03:16,lgomp:98,liabil:[41,44,56,75,103],liabl:[56,75],lib:[58,100],libgdal:47,liblzma:47,librari:[6,13,14,15,19,21,24,26,27,31,33,34,37,40,48,55,57,62,65,66,67,75,81,86,88,93,98,100,101,104,113,122,126,132,133,141,143],library_path:98,licens:[24,41,44,85,103,115],lie:[6,31,104],lies:[6,15,31,104,128],light:[47,61,104],lighter:47,like:[13,27,28,37,47,50,51,55,61,62,73,78,80,83,86,87,88,91,92,93,95,99,100,105,112,120,124,137,138,141],lim_typ:93,limit:[0,4,6,24,29,44,47,55,56,61,65,70,75,77,78,83,85,93,104,109,125,127,128,129,134,138,140,146],lin:128,line2kml:55,line:[1,3,4,15,27,28,29,31,37,40,41,42,43,46,47,49,51,55,57,58,61,62,66,70,71,85,86,88,93,97,98,100,101,106,107,108,109,110,111,113,124,125,127,134,138,140],linear:[4,5,16,29,31,47,64,71,77,81,93,116,120],liner:[0,29],linestyl:140,linewidth:71,link:[4,11,13,16,17,18,19,23,24,27,37,38,41,47,48,49,50,51,53,55,62,99,100,114,118,120,121,129,138,142],linspac:[61,80,97],linux:[13,53,63,74,96,99,105,123],lisandro:75,list:[1,3,4,7,8,9,11,13,17,21,24,27,28,29,31,33,34,35,36,40,47,49,50,51,52,53,54,55,56,57,58,59,61,64,65,71,73,75,77,80,81,83,86,87,89,90,91,92,93,95,96,98,100,101,104,106,107,108,109,110,111,113,115,119,123,125,126,127,128,129,134,135,137,140],listofgrid:115,literalinclud:50,literatur:[44,120],littl:[44,64,86,121],live:95,llapack:96,llcenter:[49,138,140],llcorner:[49,138,140],lmm:93,lnetcdf:[37,62],lnetcdff:62,load:[13,55,87,89,92,98,99,105,140,144],load_sift_unit_sourc:29,loc:140,local:[13,16,19,24,27,47,50,55,57,58,61,81,83,90,95,113,115,138,140,143],local_fnam:140,local_path:98,localhost:28,locat:[5,6,7,13,29,42,43,47,49,51,54,61,66,83,87,89,91,92,98,100,102,104,112,114,121,134,135,140],log:[24,27,28,83,84,85,92,93],logger:[87,95],logic:[6,15,16,31],logo:[50,114],lon:[49,138],long_lat:140,longer:[19,27,40,50,55,113,115,119,120,138,142],longitud:[29,31,42,43,49,64,70,111,128,134,140],longitude_max:47,longitude_min:47,longitude_shift:29,longitudin:43,longtitud:47,look:[13,21,24,27,29,47,50,51,55,61,62,71,73,78,83,88,92,93,97,98,99,100,105,108,115,125,126,128,137,140,141],lookup:115,loop:[40,61,70,98,104,115,120,124,125,143],lose:112,loss:[56,75],lossi:86,lot:27,love:[82,120],low:[47,78,140,142],lower:[3,21,29,31,49,66,83,88,125,127,129,138,140,142],lower_glob:83,lowerg:88,luna:[16,75,85],lxml:47,lying:6,m_w:146,mac:[53,65,74,96,99,105,123],machin:[13,24,53,65,67,99,105,113,123],macport:47,made:[4,17,21,27,29,54,92,95,107,108,113,115,128,135,138,140,143],magic:55,magnitud:[5,29,104,115,128],mai:[0,1,2,3,4,5,6,13,17,18,19,21,22,23,24,26,27,28,29,31,33,34,35,36,37,42,43,44,45,47,49,50,52,53,54,56,57,59,61,62,64,65,70,71,73,74,75,78,79,82,83,85,86,87,90,92,93,96,98,99,100,104,105,109,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,134,135,136,138,140,141,143],mail:[90,96],main:[5,11,18,27,50,51,61,67,78,80,86,90,97,98,105,114],mainli:88,maintain:[27,115,126,138,143],mainten:75,major:[4,21,51,75,78,106,107,108,109,114,116],make:[1,5,11,13,18,19,21,23,24,26,27,31,33,34,36,37,40,42,44,46,47,50,51,52,54,55,57,58,59,61,65,67,70,73,74,77,78,80,83,84,85,86,90,92,98,103,105,107,111,112,113,114,115,117,120,125,138,140,142,143],make_colormap:71,make_input_data_kml:55,make_lib:13,make_multi_structur:134,make_shoreline_xi:140,makefil:[5,6,11,14,15,18,19,22,24,27,31,33,34,37,52,54,62,65,67,71,73,78,84,104,107,111,113,115,116,122,125,127,128,129,130,132,133,138,141,143],makefile_kml:111,maketopo:[116,138],man:[16,24,41,44,128,132,133],manag:[13,47,53,87,134],mandli13a:16,mandli13b:16,mandli2016clawpack:[4,16],mandli:[4,16,75,81,85,86,91],mandlietal2016:16,mani:[1,3,4,6,12,13,19,20,21,27,31,33,34,35,37,38,42,47,48,50,55,57,58,64,65,66,71,73,75,77,82,85,90,92,97,98,99,104,106,107,113,115,116,117,120,124,125,126,128,138,143],manifold:61,manipul:[40,140],manner:[5,40,47,64,70,115,125,132,133,138],manning_break:128,manning_coeffici:128,manual:[35,78,87,94,96,105,136],manuel:[16,75,85],maojr:112,map2d_to_1d:26,map:[3,15,29,55,61,71,75,78,83,85,90,104,111,115,134,140,146],map_2d_to_1d:3,map_cart_to_latlong:47,map_topo_to_latlong:47,mapc2p:[3,24,26,61,78,83],mappedgrid:[3,61],march:[23,107,108,118],margin:[31,41],mark:[15,47,104,105],mark_cent:83,mark_nod:83,marker:55,markup:11,marsha:[4,6,16],mask:[45,140],mask_outside_zlim:55,maskedarrai:140,mass:[6,87],massiv:85,master:[13,24,28,50,51,54,90,112,113,114,115,116,117,118],match:[29,47,55,86,92,105,134,140],materi:[4,56,64,75],math:[16,47,97],mathemat:4,mathwork:61,matlab:[7,21,24,33,34,69,70,71,89,99,115],matlabpath:61,matplotlib:[0,2,3,13,29,45,47,70,71,74,76,79,99,124,134,140,141],matric:[5,120,146],matrix:91,matteo:[4,16,75,85],matter:[58,111],matthew:[16,75,85],maux:[21,120,143],max1d:65,max:[0,29,61,91,104,108,127,129,134,140,146],max_buff:[40,113],max_inch:55,max_level_deep:128,max_step:93,max_vertices_in_descript:55,max_wind_radiu:134,max_wind_radius_fil:134,max_wind_spe:134,maxgr:115,maxima:[31,65,128],maximum:[3,21,29,31,32,41,61,93,97,104,107,108,115,125,126,127,129,134,135],maxlevel:[61,104,126,127,128],maxm:120,maxmi:[19,78],maxmx:[19,78],maxmz:19,maxwell_1d_homogen:90,mayb:140,mbc:143,mc_limit:81,mcs:88,mean:[3,13,21,27,40,44,48,54,61,87,88,104,120,121,125,127,129,142],mean_latitud:45,meant:[37,83,93,134],measur:[29,40,43,64],mechan:[52,54,95,118],media:16,medium:[127,143],meet:23,member:[47,90,92,97],memori:[19,21,65,66,67,77,80,87,95,126,127],mention:[85,125,126],menu:[13,17,24,50,55,114,118,121,142],meqn:[40,66,120,143],merchant:[56,75],mercuri:88,merg:[6,13,24,27,48,50,51,54,111],mesh:[4,7,16,48,61,67,70,77,104,124,125,143],meshgrid:[77,90,140],messag:[27,36,43,50,54,61,65,80,83,87,89,92,93,95,96,125,127,129,141],met:[31,56,75],metadata:[66,138,140],meteorlog:134,meter:[29,43,47,64,104,121,128,134,140,142],meterolog:134,method:[4,5,16,38,40,49,71,73,77,80,81,83,88,92,93,98,104,105,111,120,124,125,126,127,129,134,137,138,140,143],metric:43,mhd:117,mhhw:121,mhw:[44,121,138,142],micro:13,mid:71,middl:[91,112],midpoint:83,might:[5,10,13,15,21,27,28,33,34,35,43,47,49,50,52,53,54,58,61,65,71,77,87,91,99,100,102,103,104,107,125,126,138,140,142,143],migrat:18,millimet:140,mimic:115,min:[0,91,134,140,146],min_level_check:31,min_time_incr:40,mind:27,minim:[6,54,86,126,140],minimum:[3,31,40,47,64,97,113,128,140],minisymposterium:23,minlevel:[104,126,127,128],minmod:[81,83,93,125,127,129],minmod_limit:81,minor:[11,47,87,107,108,109,110,111,112,113,114,115,116],minut:[43,47,50,55,121,140,142],mis:71,misc:[4,117],miscellan:91,miss:[21,86,117,134,138,140,141],mitig:44,mitran:[4,16],mix:[29,47,64],mjb:[6,16],mjberger:4,mlc:134,mllw:142,mode:[1,13,27,98,137],model:[5,15,16,23,24,29,31,37,41,42,48,49,59,87,104,112,117,121,128,134,135,138],modern:[94,115,120],modif:[27,36,56,61,71,75,81,128],modifi:[6,9,14,15,19,21,26,31,33,34,40,41,51,52,54,57,61,63,71,78,81,83,85,90,100,101,102,103,104,110,112,113,114,115,122,125,127,128,129,132,133,138,140,143],modul:[0,7,8,24,27,28,31,37,41,45,47,48,49,54,58,64,65,70,71,72,73,74,77,78,81,82,86,90,91,92,95,100,105,108,109,111,114,115,116,117,119,125,126,128,134,138,139],module_nam:98,modulu:[29,91,97,127,143],molsolv:93,moment:[26,29,116],momentum:[15,31,44,59,87,128,138],monitor:[21,24,32,41,65,108,110,113],monoton:[125,128],monster:10,month:[16,47,85],more:[1,2,3,4,5,7,10,12,13,15,16,19,21,25,27,28,29,31,33,40,41,42,44,47,49,50,51,52,53,54,55,56,57,61,64,70,71,72,73,74,75,78,80,81,83,86,87,88,89,90,91,93,94,95,97,98,100,103,104,105,107,108,111,113,114,115,116,117,120,121,123,124,125,126,127,128,130,134,136,137,138,140,141,142,143,146],moreov:64,most:[3,19,21,26,28,31,33,34,36,37,40,44,46,47,48,49,50,53,55,57,61,65,67,70,71,73,75,83,87,88,93,96,97,104,105,112,114,118,119,120,121,124,125,126,128,131,143],mostli:[3,70],motion:[64,138],motlei:48,movabl:29,move:[15,33,34,41,50,52,54,64,90,104,107,109,114,128,138,139],movement:29,movetopo:107,mparsani:4,mpi:[67,88],mpich:88,mpiexec:88,mpirun:[88,94,105],msl:[121,142],mthlim:[83,93],much:[13,27,31,37,47,50,66,67,70,99,104,107,111,125,128,137,140],muct:93,multi:[16,47,77,107,109,112,115,143],multicor:[65,113],multidimension:[78,85],multilay:[40,108,111,114,115,116],multipl:[5,6,13,22,27,40,52,70,77,83,86,87,98,100,105,107,113,117,119,120,134,135],multistep:93,must:[5,6,13,15,19,21,27,29,31,42,47,50,56,57,58,61,64,65,66,75,78,86,87,90,92,93,95,96,97,98,100,104,107,111,120,121,125,127,128,129,134,140,141,142,143,146],mwave:120,mx1d:143,mxnest:21,my_acoustics_rp:77,my_custom_bc:93,my_geoclaw_storm:134,my_initial_solut:80,my_riemann_solv:120,my_rp_modul:77,my_setplot_fil:73,my_solv:80,my_storm:134,n00014:4,n12:31,n23:31,nadi:134,name:[0,1,2,3,5,7,11,13,19,21,27,28,29,31,33,34,36,40,47,51,55,56,61,62,71,73,75,78,80,82,83,86,87,91,92,97,98,100,112,115,119,120,124,125,126,127,128,129,134,140,143,144],namespac:78,nan:[43,140],nation:[4,44,134],nativ:86,natur:[31,50,120,146],naux:66,navd88:138,navig:[12,28,130],nbtool:111,nbviewer:112,nc_param:140,ncar:4,ncei:[138,142],ncol:111,nctr:[29,64],ndarrai:[43,81,83,91,95,134,140],ndarrari:83,ndim:[21,66,73,125,126],ndip:29,nearbi:121,nearest:[40,140],nearli:83,nearshor:44,necessari:[5,6,13,31,33,34,42,44,47,51,52,53,54,55,61,64,66,67,73,77,78,83,86,111,113,115,119,120,124,125,138,141,143],necessarili:[4,86,105],necessit:27,need:[0,4,5,6,13,14,15,17,18,19,21,26,27,28,31,33,34,35,36,37,44,45,49,50,51,52,54,55,57,58,61,62,64,65,66,67,73,74,77,78,80,85,86,87,88,90,93,97,99,100,102,104,105,108,112,113,115,116,119,120,122,123,125,126,127,128,129,132,133,134,135,136,138,140,142,143,146],neg:[21,128,138,140],negat:[43,138],neglig:[56,65,75,128],neighbor:[4,31,104,113,126,127,140],neither:[47,55,56,75,113],ness:86,nest:[107,113,126,127],netcdf3:86,netcdf3_64bit:86,netcdf3_class:86,netcdf4:[86,138,140],netcdf4_class:86,netcdf4_dir:37,netcdf:[13,37,41,112,115,117,125,127,129,134,140,142],neumann:134,never:[31,90,95,101,104,125,127,129,141],nevertheless:47,new_featur:27,new_frame_num:98,new_plotax:[0,2,40,47,71,124],new_plotfgur:71,new_plotfigur:[1,2,40,47,71,124],new_plotitem:[0,3,40,47,71,124],new_userdata:[127,129],newdelhi:134,newdir:63,newer:[27,65,81,115],newton:91,next:[2,3,6,13,17,31,33,35,40,50,51,61,66,71,73,76,77,85,86,88,93,97,102,104,105,125,126,128],nfr:4,ngdc:121,nghost:66,ngrid:66,nhc:134,nhtmp:44,nice:[27,55,78,90,108],nicer:[73,99],nih:4,nnnnn:[119,125],no_data_valu:140,no_tran:83,noaa:[29,43,49,64,115,121,134,138,142],nodal:115,nodata_valu:140,nodataerror:134,nodatav:138,nodatavalu:[49,138],node:[83,115],nodes_with_ghost:83,nohup:108,non:[5,15,31,51,67,78,90,97,116,125,127,129,134,146],nonconserv:146,none:[0,1,2,3,15,23,26,29,40,43,47,55,80,83,86,87,92,93,95,98,105,107,113,115,116,117,119,125,127,129,134,140],nonexist:[7,24,41,85],nonlinear:[4,5,16,44,81,120,125,146],nonoverlap:6,nonphys:40,nonuniform:61,nor:[56,75],norm:[55,104,140],normal:[15,48,71,90,100,120,125,126,127,129],north:[43,64],northernmost:138,norwegian:4,nose:[27,34,35,76,88,105,136],nosetest:[27,34,35,88,94,105,136],notat:[29,43,55,120],note:[1,3,4,5,13,15,19,21,23,24,27,29,36,37,40,43,47,48,49,50,51,52,53,54,55,57,58,64,65,71,73,78,81,82,83,86,88,90,91,94,95,98,99,104,119,120,121,124,125,126,127,128,129,134,135,137,138,140,142,143],notebook:[29,50,64,67,79,85,87,103,111,112],noth:[14,95,116,122,132,133,140,143],notic:[47,56,75,97,105],nout:129,nov:[16,85],novemb:[112,113,118],now:[5,6,7,13,17,19,21,25,27,28,29,31,37,46,49,50,51,59,64,66,71,74,77,78,83,85,86,87,88,89,90,92,93,94,97,102,105,107,108,111,112,113,114,115,117,124,128,130,138,145],nprint:[126,127],npt:31,npy:140,nrm:55,nsf:4,nstate:86,nstepout:[80,87],nstrike:29,nthmp:44,ntime:127,ntot:129,num_aux:[5,78,86,88,90,91,95,120,125,126,127,129,143],num_cel:[8,21,83,120,125,126,127,129],num_cells_glob:83,num_digit:55,num_dim:[21,83,86,90,125,126,127,129],num_entri:98,num_eqn:[66,77,78,81,86,88,90,91,92,95,97,120,125,127,129,143],num_fgmax_v:[31,128],num_ghost:[78,83,86,90,91,93,95,120,125,127,129],num_output_tim:[5,77,80,87,119,125,127,129],num_proc:113,num_var:86,num_wav:[81,91,120,125,127,129],number:[1,2,3,4,6,8,15,16,18,21,26,27,28,29,31,33,34,40,47,50,51,55,57,61,65,66,67,73,77,78,80,81,82,83,85,86,87,88,90,92,93,95,97,98,102,104,105,107,108,110,111,112,113,114,115,117,119,120,125,126,127,128,129,134,135,136,140,143],numer:[4,16,47,99,116,134],numerica:16,numpi:[3,13,29,43,74,76,77,78,80,83,90,95,96,97,99,105,127,140,141],nxpoint:140,nypoint:140,nyu:4,object:[0,1,2,3,5,21,26,29,31,40,47,55,64,70,71,73,77,78,80,86,87,88,90,92,95,96,97,98,99,107,116,119,120,125,126,127,129,134,140],obliqu:15,obscur:21,observ:[31,44,107,121,125,128,135,142],observatori:4,observerd:135,obtain:[6,12,31,40,42,44,54,55,86,87,88,104,120,128,130,138,146],obviou:[8,47],occasion:[105,113],occupi:47,occur:[57,64,134,135],ocean:[5,15,16,44,47,102,104,128,132,133,138],octob:[17,109,110,111,117,118],off:[13,31,40,44,47,55,61,73,80,87,104,126,140],offer:[36,47,105],offici:[51,115],offset:[45,47,55,134,140],offshor:[55,59],oft:91,often:[6,11,13,15,19,26,28,31,33,34,36,37,40,41,44,45,46,55,59,64,66,87,99,100,104,105,119,120,121,124,125,128,134,138,142,143,146],okada85:[16,29,64],okada:[16,24,29,41,103,138,142],okadamap:29,olav:4,old:[1,7,19,21,24,51,73,80,88,89,90,93,105,112,114,115,120,138],older:[21,37,48,93,128],olig:[6,16],omega:77,omit:[52,54,105,113,119,128],omp_num_thread:[37,65,113,137],omp_stacks:65,on_lower_boundari:83,on_upper_boundari:83,onc:[1,5,13,21,27,28,33,34,47,51,52,53,54,61,64,73,77,87,88,89,90,95,98,113,115],ondrej:75,one:[0,1,2,3,4,5,6,8,13,14,15,19,21,23,24,26,27,28,29,31,33,34,40,42,47,49,51,52,53,54,55,59,61,62,63,64,66,67,70,71,77,83,86,87,88,90,92,93,94,97,98,100,102,104,105,112,113,115,119,120,122,124,125,126,127,128,129,130,132,133,134,138,140,143,144],ones:[28,77,78,95,115,125,126],onli:[1,3,5,6,8,13,15,18,21,26,27,29,31,39,40,44,47,50,51,53,55,58,59,61,64,65,66,67,71,77,80,83,86,87,88,90,92,93,94,95,97,98,102,104,107,112,113,114,115,119,120,121,123,124,125,126,127,128,129,134,138,140,141,142,143,146],onlin:[103,115,131,138],onr:4,onshor:[31,55,59],onto:[27,29,47,140],open:[4,13,16,27,28,29,47,55,70,75,79,83,86,98,123,142,144],opendatafil:58,opendiff:105,openli:22,openmp:[21,24,37,67,98,104,112,137],opensourc:[56,75],oper:[45,105,113],opinion:4,oppos:[27,135],opposit:[6,15,86],optim:[37,75,98],option:[2,13,15,19,21,24,27,29,31,33,34,36,37,43,46,49,54,57,61,62,70,71,77,78,80,82,83,84,85,86,87,89,92,93,94,97,98,101,104,105,108,111,112,113,116,124,125,127,128,129,130,134,140],orang:134,order:[4,5,6,13,15,16,28,29,31,44,49,50,52,54,58,61,64,66,67,71,73,74,75,77,80,81,83,85,86,87,89,90,93,97,98,100,104,111,115,120,124,125,126,127,129,134,138,140,141,143,146],ordinari:120,ordinarili:96,org:[4,16,39,41,48,50,51,56,75,78,79,83,86,88,100,112,114,116,140],organ:[21,22,33,34,80],orient:[64,78,99],origin:[3,6,13,15,19,27,29,32,40,48,50,65,66,78,93,98,107,113,119,126,127,129,140],orlean:102,oscil:[40,146],oscillatori:140,osher:93,osx:[47,74,99],other:[3,4,5,6,9,13,15,19,21,26,29,31,33,34,40,42,44,47,48,49,50,51,53,54,56,57,59,61,62,64,65,66,70,73,74,75,77,78,80,83,85,87,89,90,91,94,97,100,104,105,107,108,110,111,113,120,121,123,124,125,128,130,134,138,140,142,143,144],otherwis:[5,29,50,52,54,56,75,87,91,92,93,94,95,98,104,125,140],ought:93,ouput:80,our:[49,58,77,102],out1:58,out:[3,15,25,28,29,33,34,40,46,48,49,50,51,52,54,55,56,57,61,64,71,75,77,78,80,86,87,88,89,92,97,99,100,102,105,113,115,117,120,127,129,134,140,141],out_path:134,out_tim:80,outaux:26,outdir:[1,3,33,34,40,46,57,70,73,80,82,83,87,112,127,129,141],outdir_p:80,outfil:140,outflow:[15,125,127,129],outgo:15,outlin:[55,61,73,120,124],outn:26,output:[1,5,7,8,13,15,24,26,27,28,29,33,34,36,37,40,41,42,43,45,46,47,51,64,70,71,73,78,80,81,82,83,84,85,88,89,91,92,93,94,95,97,98,100,107,111,112,113,114,115,117,120,124,127,129,134,135,136,137,140,143,144],output_aux_compon:[125,127,129],output_aux_onlyonc:[125,127,129],output_file_prefix:[80,87],output_filenam:78,output_format:[5,80,87,125,127,129],output_opt:80,output_q_compon:[125,127,129],output_step_interv:[125,127,129],output_styl:[66,77,80,87,119,125,127,129],output_t0:[119,125,127,129],output_tim:[87,119,125,127],output_unit:29,outputdir:61,outputfil:140,outsid:[6,15,55,138,140],outsiz:55,over:[1,3,5,6,13,15,16,21,27,29,31,40,41,42,44,47,49,55,61,64,70,86,87,93,104,107,108,116,120,124,127,128,137,138,143,146],overal:[10,77],overflow:[37,114],overhead:[6,65,104,137],overlai:55,overlaid:[47,55],overland:47,overlap:[104,107,108,138],overrid:[27,37,47,77,78,98],overridden:[61,93,95],overrul:3,overview:[41,47,70,106,109],overwrit:[1,80,87,92],overwritten:[40,86,87,113,119,143],own:[15,19,23,27,54,77,78,84,85,94,95,102,104,115,120,130],owner:115,p_center:[83,97],p_function:87,p_l:91,p_node:83,p_r:91,p_t:97,p_x:97,packag:[4,24,27,33,34,47,51,52,53,58,67,70,74,75,77,83,85,87,89,90,92,94,97,99,100,117,134,141,144],page:[1,4,9,11,12,13,16,17,21,23,24,27,44,49,51,52,53,54,82,85,88,89,96,99,105,114,121,124,130,142,143],pair:[13,86,105,140],panel:47,paper:[4,5,6,15,29,41,50,81,85],paragraph:31,parallel:[4,21,22,40,52,65,76,82,84,85,87,90,92,94,98,104,105,113],paramet:[1,6,7,9,15,19,24,26,29,31,32,33,34,36,38,41,42,44,47,49,57,58,59,61,64,65,66,70,76,77,80,81,86,87,89,91,92,95,98,101,104,107,113,119,120,121,127,129,135,138,140,141,143],parameter:[102,115,128,134,135],parametr:135,paramt:31,parent:[3,26,83,95,98],pars:[40,98],parsani:[4,16,75,85],part:[4,5,21,23,29,41,44,52,54,55,62,75,78,88,94,95,97,99,103,105,117,128,143],partial:[16,67,102],particular:[6,12,19,21,27,29,31,37,40,41,42,44,47,48,51,52,56,57,58,61,71,72,74,75,77,91,92,93,95,97,102,103,104,105,108,111,112,113,114,115,117,124,128,134,135,146],particularli:[15,26,28,46,47,53,64,66,108,111,115,138],partit:88,pascal:[29,134],pass:[15,18,19,27,29,40,47,55,65,71,77,80,82,84,90,93,95,96,98,105,120,127,134,140,143],password:27,past:[20,24,50,92,113,116,118,121,128],patch:[3,6,7,15,21,26,31,47,61,64,65,66,70,71,86,88,92,95,104,113,115,124,126,128,137,138,143],patch_index:83,patchedges_show:[3,21],patchno:[3,26],path:[1,5,13,29,37,40,43,47,50,52,53,54,57,63,70,71,80,86,88,92,98,114,115,123,128,134,140,141],path_to_atcf:134,path_to_ibtrac:134,pathtool:61,pattern:[19,42,47,121],pcolor:[3,40,70,99,140],pcolor_cmap:[3,47],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcells_for_kml:55,pcolormesh:55,pdb:71,pde:[4,5,16,67,85,97,125,143],pdf:[1,29],pdflatex:1,peak:5,peanoclaw:75,pedant:37,peerj:[4,16],pem:13,pend:3,peopl:[4,13,75,99],pep8:27,per:[13,29,40,47,55,61,65,86,126],perfect:15,perfectli:15,perfom:105,perform:[5,6,16,21,26,44,47,49,65,67,70,71,80,83,86,90,93,98,105,117,119,120,123,128,136],perhap:[6,31,40,71,95,98,104],perimet:31,period:[5,6,15,31,57,77,90,104,125,127,129],perman:61,permiss:[51,54,56,75],permit:[56,75],permut:19,perturb:[101,128,138],petclaw:[75,88,89,90,92,98,100,105],peter:4,petsc4pi:[88,94,95,105],petsc:[21,22,52,67,75,77,84,85,87,94,95,96,98],petsc_arch:88,petsc_dir:88,petsc_hello_world:88,phase:[88,112],phd:16,phi:5,philim:78,phoni:71,photo:[23,24],php:[29,56,75],phy:16,physic:[15,31,40,47,78,83,85,97,104,146],pick:[77,93],piec:[15,44,83],piecewis:[29,31,49,64,108,120,138],pink:[55,71,124],pinkfig:71,pip3:51,pip:[17,24,27,47,50,51,53,79,85,88,94,96,100,114,115,116,117,118,123],pixel:[47,55],pkg:[51,129],place:[5,15,19,27,33,34,47,50,52,54,57,58,63,87,88,90,94,100,107,113,143],placemark:47,plaid:47,plain:45,plan:[23,27,44,52,53,59,86,93,134],planar:[64,120],plane:[29,64,112,142],platform:[13,47,80,88,99,105],pleas:[4,23,27,39,54,75,77,80,82,85,86,88,90,92,93,94,96,102,115,118,120,134],plot:[0,1,2,4,7,8,12,26,28,29,33,34,35,36,37,38,41,49,51,55,66,76,77,79,80,83,84,85,87,92,94,96,97,99,100,102,110,111,112,113,114,115,117,134,136,140],plot_box:[29,140],plot_centerlin:29,plot_dz_color:29,plot_dz_contour:29,plot_gauge_loc:40,plot_packag:134,plot_rak:29,plot_subfault:29,plot_subfaults_depth:29,plot_timing_stat:[115,117],plot_topo_fil:[72,111],plot_typ:[0,21,40,47,71,73,124],plot_var2:3,plot_var:[3,26,40,47,71,72],plotax:[3,40,71,124],plotclaw1:61,plotclaw2:61,plotclaw3:61,plotclaw:[40,70,71,73,124],plotdata:[26,40,62,71,73,80,112,113,124],plotdir:[1,73,124],plotexampl:71,plotfigur:[40,71,124],plotfram:1,plotgaug:40,plotitem:[3,26,40,71,124],plotloop:[71,73],plotstyl:[3,40,71,124],plotter:[1,3,26,73],plotting_makeplot:[33,34],plottyp:61,plt:55,plu:[71,107,127,129,140],pmel:[29,64],png2kml:55,png:[1,13,33,34,36,47,55,61,113],png_extent:55,png_file:55,png_filenam:55,png_name:55,point:[3,5,6,13,14,15,16,19,27,29,31,33,34,37,40,42,43,44,47,49,50,51,52,53,54,55,61,62,64,77,87,88,92,98,100,104,114,116,119,120,121,122,123,125,126,127,128,132,133,134,138,140,141,143],point_styl:[31,110],pointer:[4,15,50,64,70,73,93,98,111],pointwis:[24,49,95,111,138],poisson:64,poli:55,poly2kml:55,polygon:[3,47,55,140],polynomi:120,poor:27,poorest:86,popup:13,port:[13,28,84,85,90,126],portion:[6,47,78,137],posit:[47,64,67,98,128,138,140],possibl:[5,6,13,21,25,27,29,31,40,43,44,47,52,54,56,57,64,71,75,77,83,86,88,89,93,98,100,104,112,120,121,125,126,138,142,143],post:[23,24,25,27,47,88,130],poster:16,posteriori:93,postprocess:[66,87],potenti:[61,113,121],powel:128,power:[47,70,99],pprint:[126,127],practic:[27,100,102],pre:[3,13,51,79,86,99],preced:71,preceed:[31,66,143],precis:[37,55,78,83,86,120,140],predefin:71,predict:43,prefer:[55,88,90,99,123,134],prefix:[51,80,86,87,92],preliminari:[43,115,142],prepar:27,prepend:80,preprint:16,preprocess:111,prerequisit:[52,53,54],present:[6,55,83,91,92,93,98,130,143,146],preserv:[67,93],press:[16,88,94],pressur:[40,61,73,87,91,97,114,115,128,134,135],pressure_forc:128,pressure_index:128,presum:121,pretti:13,prevent:47,previou:[1,27,31,40,49,50,51,53,58,61,73,77,93,102,107,112,113,114,115,119,125,127,129,138,140],previous:[6,21,73,111],price:13,primari:[21,27,41,102,105,134],primarili:[48,115,116],prime:105,principl:[5,140,143],print:[1,3,7,28,47,49,55,61,71,83,87,88,89,95,97,100,107,108,111,113,114,115,125,127,129,134,141],print_figno:[1,47],print_format:[1,47],print_frameno:[1,47],print_funct:113,print_git_statu:46,printenv:141,printfig:1,printfram:[1,70],prior:[56,75,118,127,129,143],probabl:[13,27,47,59,100],probdata:[127,129],problem:[4,5,7,15,16,19,23,24,26,27,31,33,34,38,41,54,57,61,64,67,71,74,76,77,82,84,85,88,91,93,96,100,105,107,108,110,111,114,120,125,127,128,129,130,137,141],problem_data:[77,91,92,95,97],problemat:87,proce:[6,27],procedur:[6,15,41,51,143],proceed:50,process:[24,33,34,41,47,48,52,64,77,82,83,88,94,95,98,105,113,141],processor:95,procur:[56,75],produc:[1,3,21,26,29,33,34,36,40,47,49,50,55,61,65,69,70,86,104,105,124,128,140],product:[5,29,56,75,98,104,116],professorship:4,profil:[135,140],profit:[56,75],program:[4,42,44,58,67,99],programmat:75,progress:[23,27,93,102,111,138,140],prohibit:21,proj:127,project:[5,23,29,44,47,50,51,64,75,79,113,114,126,140],projection_zon:29,promot:[56,75],prompt:[27,28,61,71,73,82,85,97,99,140],propag:[4,5,6,16,24,29,44,47,48,64,83,85,93,104,113,120],proper:[6,14,40,48,49,55,59,61,86,98,107,113,122,126,127,132,133,134,143],properli:[19,31,33,34,36,44,47,49,50,54,55,63,80,99,105,107,110,115,123,125,128,138,140,141,143],properti:[29,61,77,80,83,92,95,140],propos:[27,146],provid:[0,2,4,7,10,15,19,26,27,29,37,41,42,43,44,47,49,50,55,56,58,64,66,70,75,78,80,81,87,88,90,92,93,97,98,99,102,103,105,112,118,120,125,133,134,137,138,140,143],proximity_radiu:140,prune:28,pseudo:[47,61],psi:[90,143,146],pth:54,pts:[126,127],pub:[29,134],publicli:130,publish:[4,16,50,85],pull:[23,25,28,50,51,53,82,90,105,110,113,114,120],pull_al:[27,51],pupyner:86,pure:[16,48,73,83,85,86,88,93,99,105],purpos:[31,41,44,49,56,61,66,75,83,99,103,105,119],push:[27,50,51],put:[1,11,15,27,37,50,51,52,54,55,61,77,82,90,113,123],pyclaw:[1,3,4,12,16,22,23,26,27,28,40,51,52,66,67,73,74,84,88,90,96,99,100,118,120,123],pyflak:85,pykml:47,pylab:[0,71],pylint:85,pypa:74,pypi:86,pyplot:[55,134,140],pyramid:47,python3:114,python:[3,4,7,8,11,13,16,18,21,22,24,26,27,28,29,31,33,34,35,36,38,40,41,42,43,46,47,49,51,52,53,54,55,64,66,67,70,71,72,75,76,78,82,83,85,86,88,89,90,91,93,96,97,98,105,108,109,111,113,114,115,116,117,120,123,128,138,140,141,144],python_io:66,pythonpath:[52,54],pyweno:[75,93],q0000:[61,125],q0001:[61,62],q000n:[1,8],q0_vs_radiu:3,q1d:143,q_hat:91,q_hat_l:91,q_hat_r:91,q_i:[120,146],q_l:[91,120],q_out_field:40,q_r:[91,120],q_t:[5,90,91,93,97,143,146],q_x:[5,91,97,146],qbc:[90,93,95],qcor:78,qin:[4,48],qinit:[5,19,21,41,57,58,78,121,143],qinitdata:128,qinitfil:128,qopenmp:37,qquad:146,qtrue:71,quad2kml:55,quad:55,quadrat:[29,64],quadrilater:[31,55],qualiti:47,quantiti:[14,31,55,61,80,84,85,91,95,122,128],quantiz:86,queri:[78,83,98],question:[23,27,92],quezada:[16,75,85],quick:[13,24,34,41,42,74,99,105,136],quicker:13,quickli:[40,55,79,113,140],quit:[28,61,71,73],quot:55,qxxxx:86,r_refin:128,radial:[3,43,128,143],radian:43,radii:134,radio:55,radio_styl:55,radiu:[3,128,134,135,140],rai:140,rais:[23,29,54,86,92,94,98,134,140],rake:[29,64],ran:[34,136],randal:[4,16,85],randi:[29,81,83],rang:[3,5,13,29,40,43,47,104,107,112],rare:[64,113],raster:[47,49,138],rate:13,rather:[5,6,19,21,27,28,31,50,51,52,54,57,58,59,63,64,83,88,90,93,101,111,112,113,115,117,118,119,124,125,126,134,135,138,140,143,146],ratio:[6,14,21,45,61,64,81,91,93,122,125,126,127],raw:125,rcl:47,reach:[5,104],reachabl:92,reaction:90,read:[1,4,5,14,27,29,31,33,34,40,44,45,49,52,54,55,58,61,64,66,70,78,80,86,87,92,98,101,112,113,115,116,122,127,128,129,132,133,134,138,140,143,144],read_:[86,92],read_arrai:86,read_atcf:134,read_aux:[86,92],read_data_lin:98,read_geoclaw:134,read_head:140,read_hurdat:134,read_ibtrac:134,read_imd:134,read_jma:134,read_netcdf:[115,116,138,140],read_output:31,read_patch_head:86,read_t:86,read_tcvit:134,readabl:[134,135],reader:144,readi:[77,78,80,94],readm:[50,51,120,123,143],real:[44,51,59,98,120,142],realist:47,realiti:44,realli:[6,105,143],rearrang:115,reason:[5,44,47,55,64,65,67,88,90,104,125],rebas:27,rebuild:50,recal:[1,12],recalcul:108,recangl:64,receiv:[47,105],recent:[4,13,21,26,29,46,50,53,57,59,65,71,73,74,112,116,117,118,120,142],recip:53,recogn:[42,49,138],recomil:31,recommend:[4,29,31,33,34,51,52,54,65,70,79,83,88,89,93,94,96,97,115,123,125,127,128,129,144],recompil:[27,36,37,57,65,98,143],recomput:[73,77,108,117],reconstruct:[85,93,134],record:[31,40,95,134,142],recov:27,recreat:[27,36,57],rect:29,rectangl:[6,29,64,104,140],rectangular:[6,7,15,16,29,31,41,42,55,83,104,115,126,128,138],recurs:[50,63,107],red:[2,3,27,40,55,71,105,124,134],redhat:99,redirect:50,redistribut:[56,75],redraw:[61,73],reduc:[6,15,47,112,114,146],redund:134,refactor:[107,108,109,111,113,114,116],refer:[5,7,19,24,29,33,34,41,42,47,57,58,61,64,77,81,83,86,87,91,93,95,100,102,115,117,119,120,128,134,138,140,142,143],referenc:[47,121,138],refin:[3,4,5,7,8,16,21,41,44,47,48,49,61,66,67,77,113,115,116,124,125,126,127,137,138,143],refinement_data:128,refinement_ratios_i:[8,126,127],refinement_ratios_t:[126,127,128],refinement_ratios_x:[126,127],refinementdata:110,reflect:[4,5,15,27,50,104,115,125,127,129],refresh:[13,40],regard:[4,112,134],regardless:[13,104,125,128],regener:57,region00:55,region:[3,6,7,13,15,21,31,41,44,45,47,55,59,64,67,102,115,121,126,127,138,140],regiondata:[104,127],regions2kml:55,regist:54,registr:[24,41,115,138,140],regress:[21,24,27,46,88,113,114,136],regression_test:[34,136],regrid:[5,10,104,107,108,113,116,117,126,127,137],regrid_buffer_width:[104,126,127],regrid_interv:[104,126,127],regular:[31,140],reiniti:113,reject:[87,93,125],rel:[13,19,29,36,42,44,47,50,64,65,71,98,100,105,108,109,110,111,112,113,114,115,116,117,121,126,128,130,138,142],relat:[3,21,50,67,91,114,121],releas:[4,17,21,24,28,39,47,50,52,53,54,79,93,94],release_5_x_x:51,relev:[21,26,37,41,47,50,86,104,105,134],reli:[67,78,89,113],relief:[121,142],reload:140,reltol:98,remain:[31,47,54,90,98,100,107,132,133,134],remak:50,rememb:[14,26,65,71,88,122,132,133],remot:[13,47,51,115,140,142],remote_directori:140,remote_topo_url:[138,140],remov:[1,3,19,28,36,48,54,55,57,62,73,88,100,107,110,111,140,141],renam:[19,21,33,34,57,90,93],render:[21,47,55,144],reorder:[19,21],reorgan:[21,78,106],repack:51,repeat:[73,119],repeatedli:[3,88,94],replac:[6,13,28,40,44,48,50,51,57,70,78,82,86,88,89,90,91,95,98,105,107,113,115,117,119,120,140,141],replace_no_data_valu:140,replace_valu:140,replot:73,repo:51,report:[23,29,31,46,100,105,112,115,123,125,127],repositori:[21,23,24,25,28,31,34,35,38,41,48,50,52,53,54,57,58,93,100,102,103,105,110,113,131],repres:[29,77,83,86,90,91,93,95,140,146],represent:[49,83,86,92,98,140],reprint:75,reproduc:[16,49,56,75],request:[23,25,29,50,53,66,77,82,83,87,90,92,105,113,115,120,128,134,140],requir:[3,4,15,19,21,24,26,29,33,34,36,41,43,44,51,52,54,61,64,67,70,73,74,77,78,83,85,86,89,90,93,94,95,97,98,104,105,107,108,111,113,116,120,124,125,126,127,128,129,134,135,138,141,144,146],rerun:[37,40,49,51,54],rescal:29,research:[4,16,41,44,75,93,103],reserv:[56,75],reset:[37,52,54,98],reset_count:98,resetplot:[71,73],resid:[50,57,83],resiz:115,resolut:[4,6,16,29,40,64,83,93,97,98,107,111,115,116,120,121,128,138,140,142,143],resolution_limit:140,resolv:[4,31,47,50,102,115],resourc:[16,27,42],resp:[19,29],respecitv:29,respect:[29,31,47,55,85,86,91,140],respons:[13,44,77,92],rest:[5,21,73,102,115,121,132,133,138,140],restart:[13,24,40,73,85,112,113,114,115,117,125,127,129],restart_fil:[119,125,127,129],restor:6,restrict:[47,115,128,138],restructur:[11,50],result:[1,3,4,7,9,12,16,24,25,28,29,31,32,33,34,35,40,41,43,44,49,50,51,54,55,57,59,61,64,70,71,72,73,76,80,82,85,87,91,94,98,104,105,107,111,113,114,115,116,125,126,127,128,129,136,138,140,142],retain:[56,75,86],retak:[125,127,129],retriev:[13,43,73,78,93,140,142],return_topo:140,return_xarrai:140,reunion:134,reutil:78,reveal:[40,97],revers:50,revert:47,review:[16,81],revis:[6,113],rewritten:29,rgb:71,rho:[61,91,97,127],rho_l:91,rho_r:91,rhou:61,rhov:61,richardson:[5,21,126,127],rid:27,ridg:47,riemann:[4,5,8,19,21,22,27,41,51,52,54,58,67,75,77,83,84,93,94,95,97,100,123,125,127,129,132,133,146],riemann_aug_jcp:114,riemann_interact:112,riemann_solv:93,riemann_tool:111,right:[5,31,56,59,64,75,83,88,90,91,95,97,119,120,146],rigid:[29,115],rigin:29,rigoutsi:6,rigoutso:16,rise:[29,64,121],rise_fract:[29,64],rise_shap:29,rise_tim:[29,64],rise_time_end:[29,64],rise_time_start:[29,64],risen:134,rjl:[6,16,100,117],rjlevequ:[4,27,28],rjlkei:13,rmi:28,rnode:115,robust:[41,115,140],robustli:116,rock:64,roe:[81,91,120],roman:53,root:[28,52,54,86,87,92],rossmanith:16,rotat:45,rough:59,roughli:[48,137],round:47,roundoff:83,routin:[4,5,6,15,19,24,26,29,31,33,34,40,41,42,47,48,57,61,62,65,66,67,70,73,75,78,80,83,86,89,90,93,95,96,99,104,107,108,111,113,115,116,120,125,127,129,134,140,141,143,144,146],row:[29,49,81,104,138,140],rp1:[120,146],rp1_acoustics_variable_adjoint:5,rp1_advect:58,rp1_ptwise:120,rp_:91,rp_sourc:90,rpn2:[5,120],rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:120,rpn2_vc_advect:109,rprint:[126,127],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:120,rsmc:134,rsphere:[43,78],rst:[50,51],rsync:50,rsync_clawpack:50,rule:[13,55,78],run1:57,run:[1,5,6,7,12,13,15,19,21,23,24,27,31,36,38,40,41,46,47,48,50,51,52,53,54,55,57,59,61,62,66,67,70,71,73,74,76,78,80,83,84,85,87,90,94,96,97,98,100,102,104,107,108,112,113,114,115,116,117,119,120,127,128,129,134,136,137,140,143],run_app_from_main:98,run_data:80,run_exampl:140,run_seri:98,runclaw:[46,108,117,120],rundata:[5,21,31,40,55,104,107,119,125,126,127,128,129],rundir:80,rung:[85,93],runmak:80,runnabl:98,runtest:[34,88,136],runtim:98,runup:59,ruptur:[29,41],rupture_tim:[29,64],rupture_typ:[29,64],s_1:91,s_2:91,s_3:91,s_l:91,s_m:91,s_r:91,safe:65,safer:57,safeti:81,sagemath:79,sagemathcloud:79,sai:[5,13,15,27,55,96,104],same:[3,5,6,8,13,15,21,24,27,30,31,37,40,42,43,44,47,49,50,51,54,55,57,59,62,64,67,70,71,72,73,77,81,83,85,86,87,90,91,93,98,99,107,108,112,113,119,120,125,126,127,128,132,138,140,143],sampl:[7,8,16,24,28,31,37,41,47,64,100,105,119,125,126,138,140,143],san:53,sanromd:53,santiago:47,satisfi:[93,104,146],save:[5,13,24,25,46,55,66,80,84,93,112,113,115,119,135,140],savecod:80,savefig:55,scalabl:[16,85],scalar:[26,29,87,95,120,125,146],scale:[4,29,45,47,61,67,85,86,107,113,115,128],scan:37,scatter:[3,21,61],scenario:[44,121],scheme:[81,91],schlieren:[3,61],schwarzschild:4,sci:16,scienc:[4,16,75],scientif:[4,16,85,88,99],scipi:[13,78,99,134,140],scp:13,scratch:[43,97],screen:[13,27,47,55,80,87,88,112,127,129],screenshot:[13,47],script:[11,18,19,27,29,36,40,47,50,53,57,61,67,70,75,78,82,84,85,87,88,93,98,99,100,105,115,120,124,128,129,140],scroll:13,sdist:51,sea:[29,40,41,42,44,47,64,101,111,121,128,138,140,142],sea_level:[31,44,55,91,128,138,140],seab:59,seafloor:[29,44,64,142],sealevel:[24,41,128],search:[1,13,54,70,85,98,100,113,115],sec:29,second:[3,15,29,31,34,40,43,47,51,55,61,77,83,87,93,104,107,113,119,125,128,134,136,137,140,143,146],section:[6,13,15,33,34,37,42,44,51,58,61,70,73,105,119,125,128,140],secur:13,see:[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,54,56,57,58,59,61,62,63,64,65,66,69,70,71,72,73,74,75,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146],seem:[95,100,124],seen:[12,21,31,33,34,35,44,50,65,90,125,130],segement:140,segmentedplanefault:[29,64],seism:[16,29],seismic:[29,64],select:[13,15,27,31,87,93,104,107,114,118,125,128,142],self:[29,93,140],semi:93,send:[13,23,90,120],sens:[26,47,115,146],sensit:[44,59],sent:[87,95],separ:[1,27,47,50,53,55,58,85,93,140],seper:98,sept:51,sequenc:[19,21,58,88,94,97,98,105,107,114,120,143],seri:134,serial:[88,92,98,137],serv:28,server:[13,28,47,50,51,115,138,142],servic:[24,56,75],session:[1,33,34,35,89,94],set:[0,1,2,3,5,6,8,13,14,15,21,24,26,27,29,31,33,34,36,37,38,40,41,43,44,45,46,47,50,51,52,53,54,55,57,58,63,64,65,66,67,69,70,77,78,80,82,83,84,85,86,87,88,91,92,93,94,95,96,97,98,100,101,104,105,107,108,111,112,113,115,117,119,120,122,124,125,126,127,128,129,130,134,135,138,140,142,143,146],set_all_st:92,set_aspect:45,set_aux_from_auxbc:95,set_corn:29,set_count:98,set_cparam:[77,95],set_dynamic_slip:29,set_num_ghost:95,set_printopt:83,set_q_from_qbc:95,set_subfault:29,set_xyz:140,setaux:[19,21,58,78,107,108,120,125,127,129],setaux_default:50,setenv:88,setgaug:[40,112],setlevel:87,setplot1:61,setplot2:61,setplot3:61,setplot:[0,1,2,3,7,18,19,21,24,38,40,62,69,70,89,90,98,113,141,144],setplot_fil:47,setplot_kml:47,setprob:[58,127,129,143],setrun:[5,6,7,8,15,18,19,24,31,33,34,36,38,41,42,44,55,57,59,66,67,71,101,102,104,107,111,112,113,116,119,120,121,134,138,141,143],setrun_setgeo:128,setup:[35,51,77,78,82,85,88,90,93,94,95,103,123,141],setup_gauge_fil:83,sever:[0,1,2,5,10,15,19,21,22,28,29,33,34,36,40,42,44,47,51,52,54,61,64,70,94,104,105,106,107,108,111,112,113,114,116,117,124,128,136,138,140,143],sftp:13,shaheen:87,shall:[56,75],shallow:[5,14,15,16,31,41,44,48,67,78,85,101,108,109,111,113,115,116,120,122,128,132,133,138,143],shallow_1d_pi:91,shallow_exact_1d:91,shallow_fwave_1d:91,shallow_hll_1d:91,shallow_roe_1d:91,shallow_spher:[78,105],shallow_water_riemann_solv:24,shallowest:64,shape:[29,43,55,78,83,88,95,140],shapshot:13,share:[24,25,47,52,54,65,67,83,86,88],sharp:55,sharpclaw:[4,22,24,67,75,82,84,85,90,107,120],sharpclawnd:93,sharpclawsolv:93,sharpclawsolver1d:93,sharpclawsolver2d:93,sharpen:81,sharper:[47,55],sharpli:5,shear:[16,29],shell:[27,52,53,54,65,71,73,88,94,97,99,100,113,123],shg:61,shift:[5,29,44,49],ship:31,shock:[6,16,44,93,104],shock_bubble_interact:[33,35,82,85,94],shockbubbl:90,shoot:[70,85],shore:[31,41,104,128],shorelin:[47,140],shoreline_xi:140,shorter:[3,104,140],shortli:[27,105],shot:13,should:[0,1,2,3,4,5,6,12,13,15,17,18,19,21,22,24,26,27,28,29,31,33,34,35,36,37,40,44,47,49,50,51,52,54,55,57,59,61,62,63,64,65,70,71,73,78,83,86,87,88,90,91,92,93,94,95,96,97,98,100,101,104,105,107,108,111,113,114,115,119,120,121,123,124,125,126,127,128,129,130,134,136,138,140,141,143,145,146],shouldn:82,show:[0,2,3,9,10,27,29,33,34,40,47,50,51,55,57,61,73,83,97,100,105,111,140,141,143],showcolor:71,showgridlin:61,showitem:1,shown:[3,13,50,55,58,59,61,67,87,108,109,110,111,112,113,114,115,116,117,140,143],showpatchbord:61,shrink:140,shu:93,shuffl:86,siam:[16,23,85],sid:134,side:[6,15,17,31,47,59,64,86,105,120,146],sidebar:47,sift:[29,64,115],sift_slip:29,siftfault:[29,64,115],sigma:77,sign:[13,23,71,134],signatur:[3,78,81,83,84,86,91,134],signific:[59,118,121,140],significantli:[86,115],signitur:92,silenc:87,silent:86,silo:144,similar:[4,13,15,27,31,34,40,47,77,78,86,90,93,97,115,128,134,135,136,138],similarli:[36,48,82,88,90,137],simpl:[28,31,33,34,51,64,78,85,90,91,93,98,103,105,140],simplest:[63,97],simpli:[5,13,31,33,34,35,40,47,49,52,53,57,58,77,79,80,82,87,88,94,105,120,130,134,140,143,144],simplifi:[64,70,71,86,105,114,115,143],simul:[33,34,35,42,44,47,61,80,83,85,87,88,90,94,97,102,113,114,115,117,128,134],simultan:[47,113],sin:[43,71],sinc:[0,3,4,5,6,15,19,21,27,31,37,43,44,47,49,50,51,54,55,57,58,64,65,66,70,71,77,78,79,86,87,99,104,105,107,111,112,113,114,116,117,118,119,120,121,125,126,128,138,141,142],singl:[0,1,2,3,5,6,15,18,21,22,26,27,29,40,42,47,49,55,57,61,64,65,66,77,83,86,87,92,98,105,110,111,113,120,125,126,127,128,138,140,142,143],single_storm:134,sisc:[16,85],sit:13,site:[27,47,52,54,100],situat:[47,61],size:[19,29,40,47,55,65,66,70,83,86,88,93,113,127,129,138,140],size_x_inch:47,size_y_inch:47,skinni:0,skip:29,skiprow:29,slice:[3,61,120],slide:99,slider:[47,55],slightli:[15,49,113,114],slip:[24,29,41,103,138,142],slip_along_strik:29,slip_at_dynamic_t:29,slip_color:29,slip_distribut:29,slip_down_dip:29,slip_funct:29,slip_tim:29,slope:[29,93],slope_i:47,slope_x:47,slosh:117,slow:[13,47,87,96],slowest:86,slowli:55,small:[5,15,40,59,104,105,107,112,119,125,127,128,138,140,142],smaller:[13,47,59,67,83,87,107,125,127,128,129,140],smallest:104,smear:55,smooth:[29,93,104,143],smooth_data:140,smoothli:49,snapshot:[5,27,87,116],soc:[16,29],softwar:[6,13,24,28,41,44,56,62,75,85,86,87,130,138],sol:77,sole:120,solid:[3,15,47,64,90,124,125,127,129],solitari:16,solut:[1,3,4,5,15,21,24,26,34,40,43,61,64,66,70,73,78,80,83,85,86,87,90,91,93,95,96,97,104,105,111,112,116,119,120,124,125,126,127,129,136,143,146],solv:[4,5,8,15,16,19,25,33,34,44,54,76,78,80,83,85,90,91,94,116,120,125,138,143,146],solver:[4,5,6,19,21,22,24,27,41,52,54,58,75,76,80,83,84,87,95,109,111,113,114,115,116,117,125,127,129,132,133,146],solver_nam:120,solver_typ:[82,93],some:[3,4,5,6,7,8,10,12,15,16,18,19,20,21,22,23,24,26,27,29,31,33,34,37,38,40,41,42,44,45,47,48,49,50,51,52,54,58,64,65,66,70,72,73,75,78,79,81,86,87,89,90,92,94,95,96,97,99,100,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,120,121,124,125,126,127,128,129,130,134,135,137,138,140,143],someon:[27,57],someth:[13,26,27,57,63,70,87,92,93,100,138,141,143],sometim:[31,54,57,71,77,87,115,121,135,142],somewhat:[65,70,104,105,113,125],somewher:[62,111],sonel:142,soon:93,sorin:4,sort:[13,52,115,124,141],sound:[77,91,97],sourc:[4,16,22,24,27,29,37,41,47,48,50,51,52,53,54,55,56,58,59,70,75,78,82,83,84,93,94,96,97,98,102,103,105,113,114,115,121,125,127,128,129,131,132,133,134,138],source_list:98,source_split:[83,93,125,127,129,143],south:138,space:[5,6,7,15,16,29,31,40,47,49,64,83,87,90,104,111,119,125,126,127,128,129,138,140,143],spacial:128,span:[43,47,55],spatial:[6,16,29,59,90,104,107,111,120,127,129,146],spawn:105,specfi:140,special:[4,7,15,41,42,47,56,67,75,99,104,140],specif:[3,5,21,27,29,40,41,43,47,48,54,56,58,59,75,76,78,80,85,86,87,91,92,98,102,113,114,115,124,125,126,127,129,135,138],specifi:[0,1,2,3,4,5,6,7,14,15,19,21,24,26,27,28,29,31,32,36,37,38,40,41,42,43,44,46,47,49,55,57,58,59,61,64,65,66,67,69,70,72,77,80,83,86,87,90,92,93,96,98,100,101,102,105,107,110,111,112,113,114,115,119,120,121,122,127,129,130,132,133,134,135,137,138,140,141,142,144,146],speed:[31,77,81,91,97,113,120,125,128,134,135,140,143,146],speed_toler:128,spell:71,spend:112,spent:137,sphere:[43,78,108,128],spheric:[16,47],sphinx:[11,22,24,51,114],sphinx_web:50,sphinxcontrib:50,spite:[58,100],split:[5,6,65,83,86,93,111,112,125,127,129,137,143,146],spot:71,sprint:[126,127],spuriou:[15,105],sqrt:[3,31,59,77,90,91,97,127],src1:[58,133,143,146],src1d:133,src2:[78,133,143],src3:[133,143],src:[5,6,11,14,15,18,19,27,29,31,36,37,43,46,48,51,52,54,55,57,58,61,64,65,72,89,90,98,100,101,104,105,108,111,112,114,115,116,117,120,122,125,127,129,132,140,141,146],src_split:[125,127,129],srcn:[125,143],ssh:[13,27],ssp104:93,ssp33:93,ssplmm32:93,ssplmm43:93,ssplmm:93,ssprk22:93,stabil:[93,125],stabl:[74,83],stack:[65,111],staff:117,stage:[93,121,138,140],stai:25,stand:4,standard:[6,15,29,47,49,61,66,78,81,93,99,100,104,105,127,128,129,130,138,143,146],start:[1,2,4,5,6,7,9,13,23,26,27,28,29,31,33,34,35,36,40,41,43,47,49,52,53,54,55,57,63,64,71,73,74,77,88,92,93,99,100,104,105,112,115,119,120,128,134,136,138,143],start_dat:134,start_fram:92,start_max:31,state:[13,16,24,27,50,64,71,77,78,80,83,85,86,87,88,90,91,92,93,96,97,105,120,125,138,146],statement:[33,34,52,54,61,66,99,100,113,127],station:[43,121,142],stationari:138,statist:[24,112],statu:[13,27,46,80,97],stdout:105,steadi:[64,138],steep:146,stencil:95,stencil_width:95,step1:58,step2:78,step2i:111,step2qcor:78,step2x:111,step3i:111,step3x:111,step3z:111,step:[5,6,10,15,18,27,31,33,34,35,40,47,50,51,61,70,73,75,76,77,78,80,87,90,93,95,97,102,104,107,112,113,119,120,123,125,126,127,128,129,138,146],step_hyperbol:93,step_index:93,step_interv:127,step_sourc:[83,90,93],stepgrid:137,stepgrid_dimsplit:111,steps_max:[125,127,129],stiff:125,still:[1,5,7,8,13,15,21,23,25,28,31,32,47,48,52,58,61,66,70,75,93,104,105,111,112,113,114,115,116,119,120,128,134],stnd:43,stommel_storm_modul:111,stop:[65,71,107,115,127,129,140],storag:112,store:[0,1,13,31,36,47,49,50,61,66,86,87,90,95,96,97,105,107,113,124,126,128,134,137,138,140],storm:[16,23,24,41,111,114,115,116,117],storm_atcf:134,storm_fil:[128,134],storm_ibtrac:134,storm_modul:111,storm_nam:134,storm_radiu:134,storm_radius_fil:134,storm_specif:128,storm_specification_typ:128,storm_targ:134,str:[0,1,3,29,55,86,125,126,134,140],strang:[83,93,125,127,129,143],strategi:6,stream:71,stress:[77,87],stretch:140,strict:[56,75],stride:[21,140],strike:[29,64],strike_direct:29,string:[0,1,3,7,29,40,43,47,49,55,71,78,80,81,83,86,87,92,98,100,125,128,134,140],strip:[55,140],strip_archive_extens:55,stripe:47,strong:93,strongli:61,structur:[7,10,21,31,51,54,57,67,92,93,113,124,140],stub:115,student:4,studi:[44,59],style:[6,21,27,29,45,47,66,71,75,80,115],sub:[29,105,140],subclass:29,subdirectori:[5,19,21,22,33,34,50,51,54,57,63,73,82,87,100,105,124,128,130,136,140],subdivid:[29,64],subdividedplanefault:29,subdivis:29,subduct:[44,64],subfault:[29,41,115,116,142],subject:[47,104,126,128],submodul:[25,27,48,51,53],subpackag:100,subplot:[0,29,73],subprocess:117,subrepo:51,subrepositori:[27,51],subroutin:[4,6,9,15,21,31,58,104,111,120,125,126,137,143,146],subsampl:[49,138,142],subsequ:[3,10,61],subset:[29,115,138,140,142],substanti:[27,75,111,117],substitut:[56,75],subsurfac:138,succeed:93,succesfulli:78,success:[61,92,140,143],successfulli:[57,92],suffici:[13,15,19,64,65,102,107,128],suffix:[57,140],suggest:[4,23,28,43,49,54,73,74,118,120,128,145],suit:[27,47,105],suitabl:[5,8,15,19,41,44,47,92,103,120,121,134,140],sum:[40,64,87,95,137],sum_:146,sum_p:146,summar:[3,27,30,52,104,106,143],summari:[23,24,51,115,125,126,127,128],superbe:[81,125,127,129],superbee_limit:81,superclass:93,supercomput:[85,87,88],superpack:99,superposit:64,superpow:81,superpower_limit:81,supplement:130,supplementari:105,suppli:[104,134,143,146],support:[4,8,13,21,37,44,47,50,54,64,75,77,78,83,86,87,89,91,93,111,113,114,115,116,120,125,134,135,138,141,144],suppos:[15,58,61,71,100,104],suppress:[0,2,3,27,47,55,112,114,125,126],sure:[1,19,27,36,50,51,61,67,77,86,88,90,92,96,98,121,140,141,142],surfac:[16,21,29,31,40,42,44,47,64,70,72,78,85,97,101,104,111,128,138],surface_or_depth:[47,72],surg:[16,23,24,41,111,114,115,116,117,134],surge_data:128,surround:[104,140],surviv:75,swap:140,swaphead:140,sweep:[8,120],symbol:[3,61,100],symmetr:[3,43,143],symmetri:15,syntax:11,sys:[80,127,129],system:[4,15,16,22,34,35,47,48,52,54,55,58,65,66,75,85,87,88,90,91,94,97,100,105,120,125,127,129,136,143,146],systemat:21,t0000:61,t0001:[61,62],t0002:61,t_end:93,t_r:5,tab:[13,50,118],tabl:[55,59,70,86],tackl:[23,27],tag:[47,50,51,126,127],take:[5,6,21,26,27,29,43,50,59,61,64,71,77,83,90,93,97,98,104,105,110,116,125,126,127,128,140,143,146],take_one_step:93,taken:[6,31,64,87,93,104,125,143],tall:0,tan:71,tank:[15,44],tar:[13,52,55,117,118],tarbal:[51,141],tarfil:[17,52,54,114,115,116,117],target:[5,52,54,71,78,90],task:70,tchknnnnn:119,tck00100:112,tck:112,tckaaaaa:112,tckbbbbb:112,tcp:13,tcsh:88,tcvital:[115,134,135],td9635:134,td9636:134,teach:[41,44,103],team:[4,23,56],techniqu:[16,25],technolog:[4,75],tell:[49,62,66,71,77,86,100,105],templat:78,temporari:95,temporarili:61,ten:[4,67],tend:93,tend_max:31,tensil:16,tensor:29,tensorproductfault:29,term:[4,24,41,44,56,64,78,83,84,93,104,114,115,125,127,128,129,132,133],termin:[53,79,123,125,126],terrain:59,terrel:4,test:[21,24,29,33,37,46,47,51,52,53,54,59,70,75,76,78,84,85,91,98,104,108,112,113,114,115,120,129,134,137,138,140],test_acoust:105,test_app:[98,105],test_bind:28,test_dtopotool:29,test_etopo1:[115,138],test_shallow_spher:105,test_topotool:[108,140],testpypi:51,teton:47,tex:1,text:[11,50,51,55,66,80,86,93,111],tfinal:[5,77,80,97,119,125,127,129],tfluct:93,tfluct_solv:93,than:[3,5,6,13,15,19,21,27,28,29,31,40,47,50,51,52,54,55,57,58,59,63,64,66,70,73,77,78,80,83,86,87,88,90,91,93,98,99,100,104,105,107,110,111,112,113,114,115,117,118,119,121,124,125,126,128,134,135,137,138,140,143,146],thank:[4,85],thei:[3,5,6,13,15,26,27,29,31,40,44,47,51,54,55,58,61,66,70,83,90,93,98,104,105,113,124,128,134,138,140,143],them:[5,13,17,21,27,29,31,40,47,50,52,61,62,67,75,77,82,86,87,88,90,98,102,105,108,117,131,134,140,143],theori:[56,75,146],therefor:[78,88,115,138],thereof:13,thesi:[16,93],theta:81,theta_limit:81,thi:[0,1,2,3,5,6,8,10,11,12,13,15,16,17,18,19,21,22,24,25,26,27,28,29,31,32,33,34,35,36,37,40,41,42,43,44,46,47,48,49,51,52,53,54,55,56,57,58,59,61,62,64,65,66,70,71,73,75,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,134,135,136,137,138,140,141,142,143,144,145,146],thing:[0,13,15,21,27,28,44,50,55,73,82,99,104,105,114,119],think:[54,59,91],third:[15,31,49,81,137,140],thn:125,thoroughli:86,those:[4,6,10,12,21,23,44,47,48,51,67,77,78,80,87,90,95,104,105,107,119,130,136,140,143],though:[3,67,134,138],thought:121,thousand:[4,67],thread:[37,65,104,137],thredd:[138,142],three:[3,13,16,21,29,31,44,47,58,61,64,88,92,98,105,125,128,138,140,143],threshold:59,through:[4,13,27,33,34,40,44,47,61,67,70,78,90,95,97,98,100,103,104],throughout:113,thu:[6,43,87,90,115,134],tick:47,ticklabel:110,ticklabel_format:45,tidal:[87,121],tide:[40,41,43,115,121,140],tidesandcurr:43,tier:13,tild:146,time:[0,1,5,6,7,10,15,19,21,24,26,27,29,31,32,33,34,36,37,38,40,41,42,43,44,47,49,55,61,62,64,65,66,67,71,75,77,80,81,85,86,87,93,95,97,104,105,107,110,112,113,115,116,117,119,120,123,124,127,129,134,138,141,142,146],time_files_scanf:144,time_integr:93,time_offset:134,time_zon:43,timer:114,timespan:55,timestep:[80,87,112,114,125,127,129,134],timezon:55,timing_plot:117,tip:[23,41,52,54,70,84,85,90,99],tipe:97,titl:[0,1,4,16,40,47,55,70,85,113,140],title_with_t:[0,71],toctre:[7,24,41,85],todo:[15,31,120,134,140,146],togeth:[5,15,27,29,50,64,104],toggl:127,token:28,tokyo:134,toler:[5,31,91,98,104,105,113,126,127,128],tolsp:104,too:[6,43,47,50,51,112,127,129],tool:[7,8,16,21,22,27,28,29,33,34,41,42,43,44,47,49,54,55,61,64,69,70,71,72,74,85,100,103,108,109,113,114,128,130,138,140,142,144],toolkit:[88,144],top:[0,1,3,11,22,28,29,47,50,51,52,54,64,71,90,91,100,105,119,123],topgraphi:140,topic:61,topo1:138,topo1writ:140,topo2kml:55,topo2kmz:55,topo2writ:140,topo3writ:140,topo:[24,41,44,47,49,55,72,100,107,109,115,117,121,128,138,140],topo_data:128,topo_fil:140,topo_file_nam:55,topo_fnam:140,topo_func:140,topo_miss:117,topo_typ:[49,55,111,112,115,138,140],topo_upd:107,topo_xlim:47,topo_ylim:47,topofil:[49,55,115,116,117,128,138,140],topograph:47,topographi:[15,16,24,31,40,41,44,49,55,59,64,72,102,103,107,108,109,111,112,115,121,132,133,139],topograpi:138,topoplotdata:111,topotool:[41,43,49,55,108,109,110,111,112,115,116,138,139],topotools_exampl:[41,103,140],topotyp:[128,138],topotype1:140,torrilhon:81,tort:[56,75],total:[6,29,47,64,87,93,125,126,127,129,137],total_energi:87,total_step:[125,127,129],tout:129,toward:[4,29],tprint:[126,127],trace:87,traceback:71,track:[23,24,27,47,50,54,65,77,98,105,107,116,128,134],track_color:134,tracker:27,tradeoff:104,tradit:[80,86],traffic:[120,143],trail:[53,54,55],tran:16,tranpsort:125,trans_cor:83,trans_inc:83,transect:[31,128],transfer:28,transform:[5,37],translat:[64,121],transmiss:93,transmit:125,transon:113,transpar:[47,55],transport:[125,127,129],transpos:5,transvers:[8,83,113,120,125,143,146],transverse_wav:[83,125,127,129],trap:37,travel:126,travi:21,tree:[48,54,90,123],tri:134,triangl:64,triangular:[29,41,115],trickeri:51,trigger:[86,128],troubl:[33,34,70,85],troubleshoot:[24,52,85],truli:92,truncat:[15,86],tscale:55,tstart:93,tstart_max:31,tsunami:[5,15,16,24,31,41,42,48,59,64,87,104,107,110,116,117,121,128,135,138],tt3:[64,140],tulan:23,tune:25,tupl:[3,29,43,55,64,71,83,87,140],turbul:[44,93],turn:[40,42,44,55,68,71,87,105,112],tutori:[13,28,51,73,76,80,85,94,100,103],tvd:[77,83,93,146],twice:[47,125],twine:51,twitter:23,two:[0,3,4,7,8,14,16,21,27,29,31,40,43,47,48,50,55,61,66,71,77,83,86,87,90,93,96,98,102,103,104,105,107,111,112,115,117,119,120,122,123,127,128,138,140,143,146],two_d_classic_sourc:78,txt:[27,40,46,51,75,87,113,114,115,119,134],txxxx:86,type:[3,4,7,13,19,27,29,33,34,36,40,47,57,61,71,72,73,77,78,79,81,83,88,89,93,94,97,98,99,126,127,128,134,135,138,140,146],typic:[3,19,57,58,61,64,66,67,73,78,88,90,93,95,104,126,127,137,138,141,142,143,146],typo:116,u_l:91,u_r:91,u_t:[91,97],u_x:97,ubar:91,ubuntu:[13,53,99],ucar:[62,86],ucsb:[29,64,142],ucsbfault:[29,64],ulimit:65,ultrabe:81,unaccept:47,unalt:47,unapp:47,unavail:26,uncertainti:[44,59],unchang:[5,61],uncommit:[27,46,51],undefin:96,under:[4,7,21,28,35,47,48,52,56,58,70,75,83,105,113,115,118],underflow:107,underli:[3,47,113],underlin:27,understand:[9,24,33,34,44,70,85,97,104,120],understood:44,underwat:[41,47],undesir:119,undivid:104,unexpect:[43,47,51,55,57,101,106,107,108,109,110,134],unidata:[62,86],uniform:[29,64,67,78,115,138],uniformli:138,unind:[51,55,101,106,107,108,109,110,134],uninstal:[51,54,100],union:138,uniqu:[1,66,112,134],unit:[29,42,43,48,64,83,113,134],univers:[4,16,23,50,56,75,92],unives:23,unix:[36,63,99],unknown:[29,95],unkown:95,unless:[6,36,37,55,91,121,125,140],unlik:[27,51,66],unlimit:[65,86],unmap:83,unnam:134,unnecessarili:108,unneed:112,unpack:51,unpredict:61,unrecogn:98,unset:104,unsplit:[83,125,127,129],unstabl:112,unstructur:140,unsuccess:92,unsur:125,untar:53,unterweg:75,until:13,unus:[2,86],unzip:47,upbnd:[126,127],updat:[6,13,21,22,24,31,45,48,52,53,54,73,93,95,96,102,107,111,113,114,115,116,117,120,126,127,129,131,134,137,143],update_saved_valu:93,updip:[29,64],upgrad:74,upload:51,upon:[5,95],upper:[21,31,81,83,90,125,127,129,138,140],upper_bound_limit:81,upper_glob:83,uprint:[126,127],upstream:51,upstrik:[29,64],upward:44,upwind:125,url:[4,16,47,51,115,116,138,140],usa:134,usa_ag:134,usag:[0,1,2,3,13,47,54,86,115,134,140],use:[3,4,5,12,13,19,20,21,24,25,27,28,29,31,32,33,34,36,37,40,42,43,44,47,48,49,51,52,53,54,56,57,58,59,61,62,64,65,66,69,70,71,73,74,75,77,78,79,80,81,82,83,85,86,87,88,90,91,93,94,95,96,97,98,99,100,102,104,105,108,110,111,112,113,114,115,118,120,121,123,125,126,127,128,129,134,138,140,141,142,143,144,145,146],use_adjoint:5,use_for_kml:47,use_fwav:[120,125,127,129],use_petsc:[82,88],used:[0,1,2,3,4,5,6,7,8,11,13,15,19,21,22,27,28,29,31,33,34,36,37,38,40,41,43,44,46,47,48,49,50,51,54,55,56,57,58,59,61,62,64,65,66,67,70,71,73,75,77,78,80,81,82,83,85,86,88,90,91,92,93,95,97,98,100,101,104,105,108,112,113,114,115,116,117,119,120,121,124,125,126,127,128,129,132,134,137,138,140,143,144,146],useful:[0,3,10,18,26,27,31,33,34,37,40,42,45,46,47,49,52,53,54,55,65,66,72,75,78,85,87,99,100,104,105,115,120,125,126,128,138,140,141,146],useoffset:45,user:[0,2,3,4,5,6,12,13,18,19,21,22,24,25,26,27,31,37,44,47,52,53,54,55,59,61,64,71,78,79,82,86,88,96,98,99,100,104,111,113,115,117,120,125,127,128,129,131,140,146],user_bc_low:90,usernam:[27,28],uservari:61,uservariablefil:61,uses:[28,29,31,33,34,41,47,49,50,61,67,78,80,83,88,98,105,113,120,128,137,140,146],usg:[4,29,142],using:[0,1,3,4,5,6,7,9,11,12,13,15,16,18,21,22,24,25,27,28,29,31,33,34,35,37,40,41,42,43,45,47,48,49,50,51,52,53,54,55,57,58,59,62,63,64,65,66,67,70,71,72,73,74,77,78,79,80,81,83,85,86,88,89,90,91,93,95,96,97,99,100,104,105,111,114,115,117,118,120,123,125,127,128,133,134,137,138,140,141,142,144,146],usr:62,usual:[0,2,3,5,6,29,40,42,47,55,57,62,64,66,82,83,88,90,91,93,98,102,104,113,120,125,126,127,128,129,141,143],utah:23,utc:[47,55],util:[22,24,27,41,47,66,70,73,85,100,105,124,139,140,141],uwamath:13,valid:[3,44,64,80,87,92,95,113,128,134,135,140],valout:[62,66,115,137],valout_geo:62,valout_nc:62,valout_nc_geo:62,valu:[3,5,6,7,15,19,21,26,29,32,33,34,37,40,41,43,45,46,47,49,55,57,59,61,64,65,66,71,78,83,85,86,87,90,91,92,93,95,97,98,104,105,107,108,110,111,113,115,117,119,120,121,125,126,127,128,129,134,135,138,140,141,143,146],valueerror:[29,134,140],valuemax:31,van:[81,93,125,127,129],van_leer_klein_sharpening_limit:81,vanish:5,vanleer:[77,93,125,127,129],vari:[3,14,16,29,41,49,59,90,92,111,120,121,122,146],variabl:[0,3,5,13,21,24,26,27,29,31,33,34,36,40,41,46,47,50,52,54,61,63,65,67,71,77,78,86,88,92,93,95,96,98,100,111,112,113,115,117,119,120,125,126,127,129,134,138,140,141,143],variable_dt_refinement_ratio:[126,128],variant:[19,52,98,105],varieti:[40,80,99],variou:[19,21,29,44,50,61,64,71,73,83,97,99,100,104,113,120,124,128,134],vastli:121,vector:[5,21,77,81,87,95,115,120],veloc:[15,31,43,61,73,90,91,97,113,121,125,126,127,128,129,143],verbatim:50,verbos:[27,29,43,55,80,83,87,93,105,125,127,129,134,140],verbosity_regrid:[126,127],veri:[3,5,15,21,31,44,47,51,54,55,64,71,75,78,86,87,88,89,90,93,105,108,112,125,135,138],verifi:[43,98,105,142],verifyerror:98,versa:5,version:[0,1,4,5,6,7,8,9,11,13,14,15,19,21,22,27,29,31,32,37,40,41,42,44,47,49,51,52,53,55,58,59,61,62,64,65,70,71,73,74,78,81,86,88,91,93,94,96,99,104,105,107,108,111,112,113,114,115,116,117,118,120,122,123,125,126,127,128,129,132,133,134,138,140,143,146],versu:140,vertic:[29,44,47,55,121,128,140,142],via:[5,13,21,22,27,28,29,33,34,37,38,40,42,44,47,50,51,52,53,54,57,61,64,65,67,71,74,77,83,86,89,92,94,96,100,104,105,115,120,123,130,132,133,138,140,143],vice:5,view:[3,4,21,33,34,40,41,47,49,50,55,66,70,72,73,77,88,94,111,115,130,131],viewabl:[47,80],viewable_attribut:80,vim:27,violat:[93,140],virtual:[4,13,24,26,95,99],vis:80,visclaw:[1,7,13,21,22,23,27,40,42,45,47,51,53,54,57,61,67,71,72,73,74,85,89,94,100,123,124,130],visibl:[13,47,103,130],visit:[21,24,70,118],visual:[22,23,27,33,34,40,41,54,61,66,67,70,85,89,90,100,111,144],vogl:4,volcano:4,volum:[4,16,28,31,38,49,55,61,85,126,137,138,143],vrt:47,w_1:91,w_2:91,w_3:91,wai:[5,6,13,15,25,27,33,34,40,47,49,54,55,56,57,71,73,74,75,77,80,82,83,88,90,92,94,97,99,100,102,103,107,113,114,115,118,120,124,125,131,135,138,143,145,146],wait:13,wall:[15,37,90,97,112,115,117,125,127,129,137],wang:29,want:[0,3,10,13,18,19,23,27,28,31,33,34,35,36,37,40,43,46,47,50,51,52,53,54,55,57,58,59,65,71,73,77,78,79,80,86,87,88,100,103,105,112,115,118,120,124,127,128,131,134,138,140,141],wari:91,warm:81,warn:[27,86,87,93,125,141],warp:47,warranti:[56,75],washington:[4,16,23,50,56,117,140],water:[5,15,16,40,41,42,43,44,55,67,70,78,85,108,109,113,115,116,120,121,128,138,140,142,143],water_level:43,wave:[4,5,6,15,16,24,31,44,47,48,64,81,83,85,90,91,93,104,111,113,114,121,125,126,127,128,129,143],wave_toler:[104,128],wavelength:44,web:[22,24,27,33,34,47,50,51,115,130,140],webpag:[21,33,34,38,42,47,51,57,116,121],webserv:13,websit:[15,47,50,130,140],weight:47,welcom:[23,75],well:[4,6,27,41,47,48,50,54,55,64,65,66,67,70,73,74,92,93,102,114,115,125,126,132,133,134,143,146],wellington:134,wendroff:[83,93,125,127,129,146],weno:[67,85,93],weno_ord:93,went:54,were:[4,6,19,40,50,58,61,62,78,104,107,113,116,138],west:138,western:140,wet:[31,41],what:[5,6,9,13,21,24,27,29,30,44,46,47,50,51,52,54,55,57,58,61,62,66,70,77,80,84,92,95,97,99,100,103,104,105,112,121,124,125,127,128,129,130,134,138,140,142,143],whatev:[28,62,77,92,120],when:[5,14,15,19,27,28,29,31,36,37,40,45,46,47,49,50,51,52,54,59,61,64,65,66,67,70,71,73,77,84,86,88,89,93,96,100,104,105,107,108,110,112,113,114,120,121,122,124,125,126,127,128,129,130,134,138,140,141,142,143,144,146],whenc:87,whenev:[27,112,143],where:[1,3,5,6,13,15,21,26,29,31,33,34,36,40,41,44,47,49,50,52,54,55,57,59,61,62,66,67,73,80,83,84,85,86,88,91,100,104,107,108,111,112,113,119,121,124,125,127,128,129,134,137,138,140,143,146],wherea:[40,47,70,88],wherev:[28,141],whether:[3,6,13,15,21,43,49,56,57,61,75,83,86,87,91,92,93,104,105,113,120,125,126,128,140],which:[0,1,3,4,5,6,7,11,13,15,19,21,24,27,28,29,31,33,34,35,40,42,44,47,49,50,51,52,53,54,55,57,59,61,64,65,66,71,73,74,77,78,80,81,82,83,85,86,87,88,89,90,91,92,93,94,96,97,98,99,102,104,105,107,108,111,113,115,116,119,120,121,125,126,127,128,134,135,138,140,142,143,145,146],whichclaw:141,white:55,whith:78,who:[10,18,21,23,31,37,44,54],whole:[27,47,87,88],whose:[3,71,78,90,91,125,126,140],wide:[54,99,100],wider:71,width:[29,47,55,64,66,83,90,95,104,127,129],wiki:94,wikipedia:49,wind:[115,128,134,135,140],wind_forc:128,wind_index:128,wind_refin:128,wind_spe:134,window:[13,29,61,73,99,123],wisdom:55,wise:[27,93],wish:[4,13,14,21,28,33,34,44,47,52,54,61,69,70,85,90,93,94,96,100,102,104,113,122,130,132,133,141],within:[6,15,27,52,54,67,71,89,98,100,104,120,124,130,140],without:[15,21,36,40,44,50,51,53,55,56,57,58,61,71,73,74,75,81,86,87,98,100,101,105,106,107,108,109,110,127,129,134,141,143],wkt:47,wmo:134,wmo_:134,wmo_ag:134,won:[13,78,140],woodward:114,word:[87,115,134],work:[3,5,8,13,15,18,19,21,23,24,25,27,31,33,34,36,41,44,47,48,49,50,51,52,53,54,55,61,63,64,65,71,74,75,76,77,79,80,81,85,86,87,88,91,93,94,99,100,102,103,104,105,109,110,111,112,113,114,115,118,120,124,125,126,128,130,135,138,141,145],workflow:[102,130,134],workspac:[61,95],world:[44,59,85,88,134],worst:121,worth:95,worthwhil:90,would:[2,3,13,15,26,27,31,37,47,49,51,52,54,57,58,64,66,71,75,77,80,83,87,98,105,113,121,124,125,128,134,138,143],wouldn:58,wpalg:16,wrap:[55,75,78,83,93,98,134],wrapper:140,write:[27,29,40,46,49,59,64,66,67,70,77,80,83,84,86,87,88,92,113,115,127,129,134,138,140],write_:86,write_arrai:86,write_atcf:134,write_aux:[86,92],write_aux_alwai:[77,80,87],write_aux_init:[77,80],write_aux_int:87,write_geoclaw:134,write_hurdat:134,write_imd:134,write_input_data:31,write_jma:134,write_p:[86,92],write_tcvit:134,written:[6,11,24,29,36,40,54,55,56,64,66,67,71,75,84,86,90,99,113,120,125,126,127,128,129,134,140,143],wrong:[54,58,61,87,100],www:[4,13,16,29,39,41,50,56,62,75,78,83,86,88,114,116,134,140],x_1:5,x_2:5,x_cell:55,x_edg:55,x_i:[120,143,146],x_inch:55,x_mask:140,xarr:83,xarrai:140,xarray_d:140,xclaw:[33,34,80],xclawcmd:80,xclawerr:80,xclawout:80,xcode:74,xdir:80,xiaom:29,xinsheng:[4,48],xinshengqin:[4,48],xleft:[126,127],xlf:94,xlimit:[0,40,47],xllcenter:[49,115,138],xllcorner:[49,138],xllower:115,xlow:66,xlower:[0,3,15,21,26,78,115,127,129,138,140,143],xlowerg:78,xmax:0,xmin:0,xpoint:128,xrang:90,xtick:45,xupper:[0,21,127,129,140],xxdiff:105,xxx:138,xxxx:61,xylim:29,xzf:53,y_cell:55,y_edg:55,y_inch:55,year:[4,16,21,47,55,85,106,116,134],yellow:[55,71,134],yellow_red_blu:71,yes:61,yet:[1,13,19,24,44,48,50,53,55,70,93,113,114,115,116,117,118,120,125,127,145],yianni:[4,16,75],yield:3,yleft:[126,127],ylimit:[0,40,47,124],yllcenter:[49,115,138],yllcorner:[49,138],yllower:115,ylow:66,ylower:[3,21,26,78,115,127,138,140],ylowerg:78,ymax:0,ymin:0,yml:105,yong:16,you:[0,3,4,5,13,14,15,17,18,19,21,22,23,24,25,26,27,28,31,33,34,35,36,37,38,40,43,46,47,48,49,50,51,52,53,54,55,57,58,61,62,63,64,65,66,67,69,70,71,73,74,75,77,78,79,80,82,85,86,87,88,89,90,91,93,94,95,96,97,99,100,102,103,105,107,112,113,114,115,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,136,138,141,142,143,145],your:[6,14,15,18,19,23,24,25,31,33,35,37,40,49,50,51,52,53,54,62,65,70,71,73,75,76,77,78,79,82,84,85,87,96,97,99,100,101,102,104,105,107,115,120,122,123,132,133,138,141,143],yourself:[37,40,53],ypoint:128,yupper:[21,127,140],z_format:140,zenodo:[4,53,118],zero:[3,15,29,37,55,61,77,90,91,95,97,121],zip:[12,47,51],zipinfo:47,zlib:86,zlim:55,zlower:21,zone:[44,47,55,126,127],zoom:47,zsh:88,zupper:21,zvar:140},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.6.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Setting sealevel","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"catch":27,"class":[77,80,134],"default":[14,101,122,132,133],"final":51,"function":[43,55,60,73,87,93,146],"import":100,"new":[42,63,82,105],"switch":61,"true":71,AWS:53,Adding:[27,47,82,90,120],For:6,Going:84,One:[120,146],The:[47,60,61,97],Use:96,Using:[5,13,24,48,53,54,58,62,65,87,90,93,120,124,143],about:[4,75],access:73,acoust:[91,97],adapt:[6,15,24],add:71,addit:[47,53,126,128],adjoint:5,advect:91,after:119,afterfram:61,algorithm:[6,16,67,146],alias:47,all:[3,54],amazon:13,ami:13,amr:[3,5,6,21,65,104,126,128],amrclaw:[7,8,9,10,17,24,106,107,108,109,110,111,112,113,114,115,116,117,126,127,143],anoth:71,app:51,applic:[11,12,16,24,25,57,63,88],approach:8,arrai:[66,96],arriv:128,artifact:47,ascii:[66,86],attribut:[0,1,2,3,26,47,71],author:4,auto:[29,43,55,140],aux:[66,77],auxiliari:90,avail:38,axes:45,b4step:[14,143],background:71,backward:[17,115,116,117],base:57,basic:[47,76,89],bathymetri:142,befor:143,better:28,between:[28,71],bibliographi:[16,24],binari:66,binder:28,book:38,boundari:[6,15,90,143,146],branch:27,bug:27,built:[50,82],buoi:142,burger:91,candid:51,capac:146,cautionari:44,cell:6,cfl:81,chang:[17,21,71,93,106,107,108,109,110,111,112,113,114,115,116,117],chardiff:105,check:[27,105],checkpoint:119,chile:47,choic:31,choos:6,cite:[4,85],clamshel:15,classic:[17,24,33,34,93,106,107,108,109,110,111,112,113,114,115,116,117,125,129,136],claw:[68,123],clawcode2html:11,clawpack:[12,13,16,17,18,19,20,21,22,23,24,28,48,50,51,52,53,57,67,68,78,81,93,94,114,115,116,117,118,129,145],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,71],clawutil:[17,107,108,109,110,111,112,113,114,115,116,117],clinic:23,clone:[27,53],cloud:79,code:[11,24,27,42,54,68,105,141,143],color:71,colorbar:47,colormap:71,command:[28,35,61,73,82,141],commit:27,commun:[23,27,68],comparison:105,compat:[17,115,116,117],compil:[37,53,57,62,96,131,141],compon:[22,71],comput:[67,119],conda:53,condit:[6,15,90,97,143,146],contain:28,content:[24,27,71,77,87,93,99,105],continu:105,contourf:71,contribut:[25,27],contributor:75,control:[77,80,97],convers:19,convert:[11,18,19],coordin:[45,47],copi:63,correctli:88,coverag:27,creat:[13,28,31,47,51,61,63,77],creation:77,criteria:104,current_data:[26,73],curv:71,custom:[93,120],dart:142,data:[47,66,124,128,135,138,140,141,142,143],debug:[71,126],defin:15,depend:[81,94],deprec:8,depth:45,deriv:[77,87],describ:16,desir:124,detail:6,dev:68,develop:[23,24,27,68],diff:105,differ:[47,54,58,67,71],dimens:[83,146],dimension:120,directli:13,directori:[54,57,63,71],displac:138,docker:[28,53],dockerfil:[28,51],docstr:[29,43,55,140],doctest:105,document:[9,11,29,43,50,51,55,85,114,115,131,140],doe:53,doing:51,domain:[83,97],done:143,download:138,doxygen:9,dtopo:139,dtopotool:29,duplic:57,each:[27,143],earth:47,earthquak:[64,142],easi:100,ec2:13,elev:45,environ:[37,123],equat:[91,97],error:[27,96],euler:91,event:[23,47],exampl:[12,24,25,33,34,35,38,40,42,47,54,61,63,69,82,85,88],exe:141,exist:63,experi:54,extra:50,extrapol:104,f2py:141,faq:71,faster:47,fault:64,featur:85,fflag:37,fgmax:31,figur:[47,71],file:[13,28,30,31,47,49,50,51,53,58,61,71,73,105,119,128,138,143],fileio:86,find:[13,71],finer:6,fix:[27,31,32,65,128],flag2refin:104,flag:[5,6,57,104,126],flow:[24,77],flowchart:10,fly:70,fork:27,format:[31,66,138],formul:146,fort:[66,71],fortran:[21,24,30,34,36,37,53,74,96,105,141,143],found:61,frame:87,friction:59,from:[13,18,19,21,24,27,29,35,38,43,55,73,78,82,89,140],full:24,fund:[4,75],further:84,fvmhp:38,galleri:[50,61],gaug:[40,47,87,142],gdal:47,gener:[17,21,29,43,50,55,115,116,117,128,140],geo:128,geoclaw:[5,14,15,17,21,24,28,41,42,43,44,45,47,65,68,72,101,104,106,107,108,109,110,111,112,113,114,115,116,117,122,128,132,133],geometri:83,geophys:24,get:[24,42,61],gfortran:[37,94],ghost:6,git:[27,46,53,74],github:[27,51],global:113,godunov:146,googl:47,gpu:48,grid:[6,15,31,32,49,65,83,128],guid:[5,27,50,51,102,103],guidelin:27,hack:68,hazard:44,hdf5:86,help:61,high:146,hint:[44,71,99],host:28,how:[71,73,87],hpc3:68,html:[11,73],imag:[28,47],imagediff:105,implement:104,includ:12,independ:81,indic:85,initi:[6,90,97,143],input:[21,31,86,125,126],instal:[27,34,35,52,53,54,62,67,74,85,88,94,96,99,100,136,141],instanc:[13,53],instruct:[27,54],integr:105,intel:37,interact:[73,82],interfac:67,interpol:31,interpret:35,iplotclaw:73,ipython:[35,82,130],issu:27,item:71,jupyt:[28,35],kaust:68,keep:46,kinemat:64,kml:47,kmltool:55,kmz:47,latest:27,latex:73,latitud:[45,47],launch:[13,53],level:27,lflag:37,librari:[47,58],licens:[4,56,75],limit:81,line:[35,73,82,105,141],link:20,load:47,local:131,locat:40,log:[13,87],longitud:[45,47],machin:[28,145],make:[71,88,130,141],makefil:[36,57,58,90,119],man:59,map:47,mapc2p:60,master:[17,27],math:79,matlab:61,matplotlib:94,maxfram:61,maximum:128,mesh:[6,24],method:[0,1,2,3,146],migrat:24,model:[44,64,102,103,142],modifi:[27,58,119],modul:[29,43,55,85,98,99,127,129,140],monitor:[31,128],more:[6,34,36],most:27,move:[28,29],multipl:47,name:[57,58],need:47,netcdf:[49,62,66,86,138],never:27,next:[52,53,54,94],nose:94,note:[106,107,108,109,110,111,112,113,114,115,116,117,118],notebook:[28,35,99,130],numpi:94,object:[83,124],obtain:94,okada:64,old:[8,50],older:24,onli:54,openmp:65,oper:74,option:[47,52,53,73,88,90],order:96,other:[16,17,22,23,28,52,71,114,115,116,117,118],out:27,outdir:71,output:[31,32,57,61,62,65,66,77,86,87,105,119,125,126,128,141],overlai:47,overview:[24,124],own:[13,28,90],packag:[21,54,86,91],page:50,paper:16,parallel:[53,67,83,88,89,95],paramet:[21,40,71,73,97,125,126,128],pass:88,patch:83,path:[61,100],pcolor:71,petclaw:[83,95],petsc:[53,88],photo:68,pip:[52,54,74,141],pixel:105,plot:[3,13,21,24,31,40,42,45,47,57,61,62,69,70,71,72,73,82,88,89,105,124,130,141,144],plot_typ:3,plotax:47,plotclaw:61,plotdata:47,plotfigur:47,plotitem:47,pointwis:120,port:78,post:70,ppflag:37,pre:37,prepar:51,prerequisit:74,previou:23,print:126,printfram:73,problem:[8,78,90,97,143],procedur:31,process:[31,53,70],processor:37,produc:73,propag:146,provid:71,pth:100,publish:47,pull:27,pyclaw:[17,21,24,33,35,53,54,75,76,77,78,79,80,81,82,83,85,86,87,89,92,93,94,95,97,98,105,106,107,108,109,110,111,112,113,114,115,116,117,136],pyflak:27,pylint:27,pypi:51,python:[19,73,74,94,99,100,139],pythonpath:[100,123],q0002:66,qinit:[101,128,138],quantiti:[77,87],quick:[54,102,103],raw:66,readm:11,recent:[23,27],rectangular:64,refer:[16,48,85,99],refin:[6,15,24,104,128],region:[104,128],registr:49,regress:105,releas:[51,106,107,108,109,110,111,112,113,114,115,116,117,118],remot:27,remov:47,replac:58,report:27,repositori:[12,17,22,27,46,51,114,115,116,117,120],request:27,requir:[47,53,99,143],resolut:[47,146],resourc:24,restart:[28,77,119],result:[13,42,47,62,89,130],richardson:104,riemann:[17,24,85,90,91,106,107,108,109,110,111,112,113,114,115,116,117,120,143],routin:[14,21,58,72,101,122,132,133],rst:11,run:[28,33,34,35,42,77,79,82,88,89,105,125,126,141],ruptur:64,sage:79,same:58,sampl:[127,129],save:[87,130],script:90,sealevel:121,search:61,serial:[83,95,105],servic:13,session:23,set:[42,61,71,73,90,121,123,141],setaux:[122,143],setplot:[61,71,73,124],setrun:[21,40,125,126,127,128,129],shallow:91,share:130,sharpclaw:93,shoot:[27,61],should:67,signatur:93,simul:77,simultan:105,sinc:17,size:71,slip:64,softwar:[4,16],solut:[71,77,92],solv:97,solver:[67,77,85,90,91,93,97,120,143],some:[28,71,142],someth:71,sourc:[57,64,90,135,142,143,146],space:146,spatial:143,special:[3,126],specif:[31,97,105,128,134,143],specifi:[71,73,104,124,125,126,128,143],sphere:15,sphinx:[50,131],sprint:[23,68],src1d:[132,143],src:[133,143],start:[24,42,102,103],state:95,statist:137,step:[52,53,54,94,143],stop:[13,28],storm:[102,128,134,135],subfault:64,surfac:45,surg:[102,135],sys:100,system:74,t0002:66,tabl:[24,85],tar:[51,53],term:[59,90,143,146],test:[27,34,35,88,94,105,136],than:71,thi:[4,50],tide:142,tile:47,time:[125,126,128,137,143],tip:[27,36,45,47,88],titl:71,tool:[19,24,31,40,45,105,134,139],top:27,topo:139,topographi:[29,42,47,128,138,140,142],topotool:140,track:46,transfer:13,travi:105,triangular:64,troubl:[27,61,141],troubleshoot:[54,96,141],tsunami:[44,47,103,142],tutori:[23,97,99],tvd:81,understand:77,univers:68,upcom:23,updat:[27,50,51],use:67,used:141,useful:28,user:[15,23,28,67,143],using:[44,61,143],utah:68,util:[43,55,98],valu:[31,77],vari:143,variabl:[37,57,90,123],version:[24,36,46,48,50,54,100],view:13,virtual:145,visclaw:[17,24,70,106,107,108,109,110,111,112,113,114,115,116,117],visit:144,visual:[24,47],washington:68,water:[45,91],wave:[120,146],web:13,webpag:[13,50,130],what:[71,73,87],when:87,where:87,which:[67,100],whichclaw:100,work:[4,82,139,140,143],workflow:27,workshop:[23,68],write:[90,105],written:87,your:[13,27,28,34,47,88,90,94,130,136],zenodo:51}}) \ No newline at end of file diff --git a/v5.6.x/setaux_defaults.html b/v5.6.x/setaux_defaults.html index 02774ec8d..5b3e98bec 100644 --- a/v5.6.x/setaux_defaults.html +++ b/v5.6.x/setaux_defaults.html @@ -82,17 +82,17 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/classic/src/1d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 19)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 19)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/2d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 25)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 25)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/setaux.f90’ not found or reading it failed

        $CLAW/classic/src/3d/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 31)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 31)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/setaux.f90’ not found or reading it failed

        @@ -104,7 +104,7 @@

        Navigation

        with latitude when coordinate_system == 2).

        $CLAW/geoclaw/src/2d/shallow/setaux.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 49)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/setaux_defaults.rst, line 49)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/setaux.f90’ not found or reading it failed

        diff --git a/v5.6.x/src1d_defaults.html b/v5.6.x/src1d_defaults.html index b13e8d914..7c1ec3a93 100644 --- a/v5.6.x/src1d_defaults.html +++ b/v5.6.x/src1d_defaults.html @@ -84,12 +84,12 @@

        Navigation

        as needed. Remember to change to Makefile to point to the proper version.

        $CLAW/amrclaw/src/2d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 22)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 22)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/2d/src1d.f90’ not found or reading it failed

        $CLAW/amrclaw/src/3d/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 29)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 29)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/amrclaw/src/3d/src1d.f90’ not found or reading it failed

        @@ -100,7 +100,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src1d.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 47)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src1d_defaults.rst, line 47)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src1d.f90’ not found or reading it failed

        diff --git a/v5.6.x/src_defaults.html b/v5.6.x/src_defaults.html index 617288649..b4549d894 100644 --- a/v5.6.x/src_defaults.html +++ b/v5.6.x/src_defaults.html @@ -85,17 +85,17 @@

        Navigation

        see Using src1d for source terms with AMRClaw.

        $CLAW/classic/src/1d/src1.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 24)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 24)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/1d/src1.f90’ not found or reading it failed

        $CLAW/classic/src/2d/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 30)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 30)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/2d/src2.f90’ not found or reading it failed

        $CLAW/classic/src/3d/src3.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 36)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 36)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/classic/src/3d/src3.f90’ not found or reading it failed

        @@ -106,7 +106,7 @@

        Navigation

        (an ocean at rest remains at rest).

        $CLAW/geoclaw/src/2d/shallow/src2.f90:

        -

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmp8prh_j6r/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 53)

        +

        System Message: WARNING/2 (/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/tmpp0jqt8z_/f252c5a15de9002dc8d27779e60acdf65e22a383/src_defaults.rst, line 53)

        Include file ‘/var/folders/_s/dx0xgftn3_x04rdx0_w5nq7w0000gn/T/geoclaw/src/2d/shallow/src2.f90’ not found or reading it failed

        diff --git a/v5.6.x/storm_module.html b/v5.6.x/storm_module.html index 0013095f0..9a9b2b62c 100644 --- a/v5.6.x/storm_module.html +++ b/v5.6.x/storm_module.html @@ -586,7 +586,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        Field list ends without a blank line; unexpected unindent.

          @@ -617,7 +617,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          Field list ends without a blank line; unexpected unindent.

            diff --git a/v5.7.x/.buildinfo b/v5.7.x/.buildinfo index c055d3b64..640cf2222 100644 --- a/v5.7.x/.buildinfo +++ b/v5.7.x/.buildinfo @@ -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: 68e92a515dcc5563ee56d6e1a2af8cdd +config: 34240ac7144b4675c25e674e82ddd72e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.7.x/.doctrees/ClawPlotAxes.doctree b/v5.7.x/.doctrees/ClawPlotAxes.doctree index 6c7b7c344..2170330ee 100644 Binary files a/v5.7.x/.doctrees/ClawPlotAxes.doctree and b/v5.7.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.7.x/.doctrees/ClawPlotData.doctree b/v5.7.x/.doctrees/ClawPlotData.doctree index 2bbc81edd..a1f73a252 100644 Binary files a/v5.7.x/.doctrees/ClawPlotData.doctree and b/v5.7.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.7.x/.doctrees/ClawPlotFigure.doctree b/v5.7.x/.doctrees/ClawPlotFigure.doctree index 5ecfcb7f9..7530ab48f 100644 Binary files a/v5.7.x/.doctrees/ClawPlotFigure.doctree and b/v5.7.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.7.x/.doctrees/ClawPlotItem.doctree b/v5.7.x/.doctrees/ClawPlotItem.doctree index 21afdf52b..276f9e50a 100644 Binary files a/v5.7.x/.doctrees/ClawPlotItem.doctree and b/v5.7.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.7.x/.doctrees/about.doctree b/v5.7.x/.doctrees/about.doctree index 1f8504e73..fa5263f5c 100644 Binary files a/v5.7.x/.doctrees/about.doctree and b/v5.7.x/.doctrees/about.doctree differ diff --git a/v5.7.x/.doctrees/adjoint.doctree b/v5.7.x/.doctrees/adjoint.doctree index 5418b8f88..a8f692011 100644 Binary files a/v5.7.x/.doctrees/adjoint.doctree and b/v5.7.x/.doctrees/adjoint.doctree differ diff --git a/v5.7.x/.doctrees/amr_algorithm.doctree b/v5.7.x/.doctrees/amr_algorithm.doctree index f4360829e..075ee066c 100644 Binary files a/v5.7.x/.doctrees/amr_algorithm.doctree and b/v5.7.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.7.x/.doctrees/amrclaw.doctree b/v5.7.x/.doctrees/amrclaw.doctree index d2832a1c7..2da44134d 100644 Binary files a/v5.7.x/.doctrees/amrclaw.doctree and b/v5.7.x/.doctrees/amrclaw.doctree differ diff --git a/v5.7.x/.doctrees/amrclaw1d.doctree b/v5.7.x/.doctrees/amrclaw1d.doctree index cbfa35780..0483741af 100644 Binary files a/v5.7.x/.doctrees/amrclaw1d.doctree and b/v5.7.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.7.x/.doctrees/amrclaw_doxygen.doctree b/v5.7.x/.doctrees/amrclaw_doxygen.doctree index e4cd56eb9..e3738e158 100644 Binary files a/v5.7.x/.doctrees/amrclaw_doxygen.doctree and b/v5.7.x/.doctrees/amrclaw_doxygen.doctree differ diff --git a/v5.7.x/.doctrees/amrclaw_flowcharts.doctree b/v5.7.x/.doctrees/amrclaw_flowcharts.doctree index a2354eec0..75c99bcd2 100644 Binary files a/v5.7.x/.doctrees/amrclaw_flowcharts.doctree and b/v5.7.x/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/v5.7.x/.doctrees/application_documentation.doctree b/v5.7.x/.doctrees/application_documentation.doctree index c107e3dad..96fd8e8e7 100644 Binary files a/v5.7.x/.doctrees/application_documentation.doctree and b/v5.7.x/.doctrees/application_documentation.doctree differ diff --git a/v5.7.x/.doctrees/apps.doctree b/v5.7.x/.doctrees/apps.doctree index 69878c93a..3a92aea38 100644 Binary files a/v5.7.x/.doctrees/apps.doctree and b/v5.7.x/.doctrees/apps.doctree differ diff --git a/v5.7.x/.doctrees/aws.doctree b/v5.7.x/.doctrees/aws.doctree index c71266b01..aa90d147f 100644 Binary files a/v5.7.x/.doctrees/aws.doctree and b/v5.7.x/.doctrees/aws.doctree differ diff --git a/v5.7.x/.doctrees/b4run.doctree b/v5.7.x/.doctrees/b4run.doctree index 1412740fd..c247603cb 100644 Binary files a/v5.7.x/.doctrees/b4run.doctree and b/v5.7.x/.doctrees/b4run.doctree differ diff --git a/v5.7.x/.doctrees/b4step_defaults.doctree b/v5.7.x/.doctrees/b4step_defaults.doctree index b6e7c7f6d..5db549722 100644 Binary files a/v5.7.x/.doctrees/b4step_defaults.doctree and b/v5.7.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.7.x/.doctrees/bc.doctree b/v5.7.x/.doctrees/bc.doctree index 2e16eeba7..4097c4edc 100644 Binary files a/v5.7.x/.doctrees/bc.doctree and b/v5.7.x/.doctrees/bc.doctree differ diff --git a/v5.7.x/.doctrees/biblio.doctree b/v5.7.x/.doctrees/biblio.doctree index 1b89d885b..7581f3172 100644 Binary files a/v5.7.x/.doctrees/biblio.doctree and b/v5.7.x/.doctrees/biblio.doctree differ diff --git a/v5.7.x/.doctrees/changes_to_master.doctree b/v5.7.x/.doctrees/changes_to_master.doctree index 834a93437..a11deda9b 100644 Binary files a/v5.7.x/.doctrees/changes_to_master.doctree and b/v5.7.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.7.x/.doctrees/claw43to46.doctree b/v5.7.x/.doctrees/claw43to46.doctree index 9372cb666..412a685c9 100644 Binary files a/v5.7.x/.doctrees/claw43to46.doctree and b/v5.7.x/.doctrees/claw43to46.doctree differ diff --git a/v5.7.x/.doctrees/claw46to50.doctree b/v5.7.x/.doctrees/claw46to50.doctree index 969f377db..0703122c6 100644 Binary files a/v5.7.x/.doctrees/claw46to50.doctree and b/v5.7.x/.doctrees/claw46to50.doctree differ diff --git a/v5.7.x/.doctrees/claw4x.doctree b/v5.7.x/.doctrees/claw4x.doctree index f36a79eb3..3a05c3d48 100644 Binary files a/v5.7.x/.doctrees/claw4x.doctree and b/v5.7.x/.doctrees/claw4x.doctree differ diff --git a/v5.7.x/.doctrees/clawpack5.doctree b/v5.7.x/.doctrees/clawpack5.doctree index f373c22ce..9f36b329c 100644 Binary files a/v5.7.x/.doctrees/clawpack5.doctree and b/v5.7.x/.doctrees/clawpack5.doctree differ diff --git a/v5.7.x/.doctrees/clawpack_components.doctree b/v5.7.x/.doctrees/clawpack_components.doctree index 505186ed5..83cf1969a 100644 Binary files a/v5.7.x/.doctrees/clawpack_components.doctree and b/v5.7.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.7.x/.doctrees/community.doctree b/v5.7.x/.doctrees/community.doctree index c0c5546e2..8db1c5b94 100644 Binary files a/v5.7.x/.doctrees/community.doctree and b/v5.7.x/.doctrees/community.doctree differ diff --git a/v5.7.x/.doctrees/contents.doctree b/v5.7.x/.doctrees/contents.doctree index 7c3260598..d4e6b5f18 100644 Binary files a/v5.7.x/.doctrees/contents.doctree and b/v5.7.x/.doctrees/contents.doctree differ diff --git a/v5.7.x/.doctrees/contribute_apps.doctree b/v5.7.x/.doctrees/contribute_apps.doctree index 7b020b543..7586cd06d 100644 Binary files a/v5.7.x/.doctrees/contribute_apps.doctree and b/v5.7.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.7.x/.doctrees/current_data.doctree b/v5.7.x/.doctrees/current_data.doctree index 8a590fa38..fb6689ff7 100644 Binary files a/v5.7.x/.doctrees/current_data.doctree and b/v5.7.x/.doctrees/current_data.doctree differ diff --git a/v5.7.x/.doctrees/developers.doctree b/v5.7.x/.doctrees/developers.doctree index b33a53226..93093b41a 100644 Binary files a/v5.7.x/.doctrees/developers.doctree and b/v5.7.x/.doctrees/developers.doctree differ diff --git a/v5.7.x/.doctrees/docker_image.doctree b/v5.7.x/.doctrees/docker_image.doctree index debbb0972..f09f542b8 100644 Binary files a/v5.7.x/.doctrees/docker_image.doctree and b/v5.7.x/.doctrees/docker_image.doctree differ diff --git a/v5.7.x/.doctrees/dtopotools_module.doctree b/v5.7.x/.doctrees/dtopotools_module.doctree index 5ee072723..3215638b3 100644 Binary files a/v5.7.x/.doctrees/dtopotools_module.doctree and b/v5.7.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.7.x/.doctrees/environment.pickle b/v5.7.x/.doctrees/environment.pickle index c6526b206..46a00da0c 100644 Binary files a/v5.7.x/.doctrees/environment.pickle and b/v5.7.x/.doctrees/environment.pickle differ diff --git a/v5.7.x/.doctrees/f77_vs_f90.doctree b/v5.7.x/.doctrees/f77_vs_f90.doctree index 711056d30..4c0b366b9 100644 Binary files a/v5.7.x/.doctrees/f77_vs_f90.doctree and b/v5.7.x/.doctrees/f77_vs_f90.doctree differ diff --git a/v5.7.x/.doctrees/fgmax.doctree b/v5.7.x/.doctrees/fgmax.doctree index 7b35f3b44..7306c3459 100644 Binary files a/v5.7.x/.doctrees/fgmax.doctree and b/v5.7.x/.doctrees/fgmax.doctree differ diff --git a/v5.7.x/.doctrees/fgmax_tools_module.doctree b/v5.7.x/.doctrees/fgmax_tools_module.doctree index 0c6de5f4e..aef64c67e 100644 Binary files a/v5.7.x/.doctrees/fgmax_tools_module.doctree and b/v5.7.x/.doctrees/fgmax_tools_module.doctree differ diff --git a/v5.7.x/.doctrees/fgout.doctree b/v5.7.x/.doctrees/fgout.doctree index ab0312673..c135fd468 100644 Binary files a/v5.7.x/.doctrees/fgout.doctree and b/v5.7.x/.doctrees/fgout.doctree differ diff --git a/v5.7.x/.doctrees/first_run.doctree b/v5.7.x/.doctrees/first_run.doctree index 21d793756..4a6edc3a4 100644 Binary files a/v5.7.x/.doctrees/first_run.doctree and b/v5.7.x/.doctrees/first_run.doctree differ diff --git a/v5.7.x/.doctrees/first_run_fortran.doctree b/v5.7.x/.doctrees/first_run_fortran.doctree index 80bd9ee0d..45ea33b60 100644 Binary files a/v5.7.x/.doctrees/first_run_fortran.doctree and b/v5.7.x/.doctrees/first_run_fortran.doctree differ diff --git a/v5.7.x/.doctrees/first_run_pyclaw.doctree b/v5.7.x/.doctrees/first_run_pyclaw.doctree index 30f7b2efc..1b4c6517f 100644 Binary files a/v5.7.x/.doctrees/first_run_pyclaw.doctree and b/v5.7.x/.doctrees/first_run_pyclaw.doctree differ diff --git a/v5.7.x/.doctrees/flagregions.doctree b/v5.7.x/.doctrees/flagregions.doctree index 16db97be7..adf9623fa 100644 Binary files a/v5.7.x/.doctrees/flagregions.doctree and b/v5.7.x/.doctrees/flagregions.doctree differ diff --git a/v5.7.x/.doctrees/force_dry.doctree b/v5.7.x/.doctrees/force_dry.doctree index 9225bc0d2..9858b7c26 100644 Binary files a/v5.7.x/.doctrees/force_dry.doctree and b/v5.7.x/.doctrees/force_dry.doctree differ diff --git a/v5.7.x/.doctrees/fortran.doctree b/v5.7.x/.doctrees/fortran.doctree index 9092a9e5b..354338dd1 100644 Binary files a/v5.7.x/.doctrees/fortran.doctree and b/v5.7.x/.doctrees/fortran.doctree differ diff --git a/v5.7.x/.doctrees/fortran_compilers.doctree b/v5.7.x/.doctrees/fortran_compilers.doctree index 06ff33d84..c0560cf54 100644 Binary files a/v5.7.x/.doctrees/fortran_compilers.doctree and b/v5.7.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.7.x/.doctrees/fvmbook.doctree b/v5.7.x/.doctrees/fvmbook.doctree index 59873dccb..30f9dc6ea 100644 Binary files a/v5.7.x/.doctrees/fvmbook.doctree and b/v5.7.x/.doctrees/fvmbook.doctree differ diff --git a/v5.7.x/.doctrees/galleries.doctree b/v5.7.x/.doctrees/galleries.doctree index 842da9ef3..a6a615642 100644 Binary files a/v5.7.x/.doctrees/galleries.doctree and b/v5.7.x/.doctrees/galleries.doctree differ diff --git a/v5.7.x/.doctrees/gauges.doctree b/v5.7.x/.doctrees/gauges.doctree index 3c077f690..8deab1956 100644 Binary files a/v5.7.x/.doctrees/gauges.doctree and b/v5.7.x/.doctrees/gauges.doctree differ diff --git a/v5.7.x/.doctrees/geoclaw.doctree b/v5.7.x/.doctrees/geoclaw.doctree index 16c092d10..c51d73da0 100644 Binary files a/v5.7.x/.doctrees/geoclaw.doctree and b/v5.7.x/.doctrees/geoclaw.doctree differ diff --git a/v5.7.x/.doctrees/geoclaw_started.doctree b/v5.7.x/.doctrees/geoclaw_started.doctree index f24df3ec9..56996a31c 100644 Binary files a/v5.7.x/.doctrees/geoclaw_started.doctree and b/v5.7.x/.doctrees/geoclaw_started.doctree differ diff --git a/v5.7.x/.doctrees/geoclaw_util_module.doctree b/v5.7.x/.doctrees/geoclaw_util_module.doctree index 9a11262aa..806c7302c 100644 Binary files a/v5.7.x/.doctrees/geoclaw_util_module.doctree and b/v5.7.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.7.x/.doctrees/geohints.doctree b/v5.7.x/.doctrees/geohints.doctree index ab7ffd76e..26add3253 100644 Binary files a/v5.7.x/.doctrees/geohints.doctree and b/v5.7.x/.doctrees/geohints.doctree differ diff --git a/v5.7.x/.doctrees/geoplot.doctree b/v5.7.x/.doctrees/geoplot.doctree index e54b09ce5..7541aa97c 100644 Binary files a/v5.7.x/.doctrees/geoplot.doctree and b/v5.7.x/.doctrees/geoplot.doctree differ diff --git a/v5.7.x/.doctrees/git_versions.doctree b/v5.7.x/.doctrees/git_versions.doctree index b0c9a77fd..f2217edec 100644 Binary files a/v5.7.x/.doctrees/git_versions.doctree and b/v5.7.x/.doctrees/git_versions.doctree differ diff --git a/v5.7.x/.doctrees/googleearth_plotting.doctree b/v5.7.x/.doctrees/googleearth_plotting.doctree index f31daae8b..5a08600c0 100644 Binary files a/v5.7.x/.doctrees/googleearth_plotting.doctree and b/v5.7.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.7.x/.doctrees/gpu.doctree b/v5.7.x/.doctrees/gpu.doctree index 3edd2cc25..42bf52da9 100644 Binary files a/v5.7.x/.doctrees/gpu.doctree and b/v5.7.x/.doctrees/gpu.doctree differ diff --git a/v5.7.x/.doctrees/grid_registration.doctree b/v5.7.x/.doctrees/grid_registration.doctree index db0def8b4..6692f3834 100644 Binary files a/v5.7.x/.doctrees/grid_registration.doctree and b/v5.7.x/.doctrees/grid_registration.doctree differ diff --git a/v5.7.x/.doctrees/howto_doc.doctree b/v5.7.x/.doctrees/howto_doc.doctree index b6a8c82d9..2afbfe46c 100644 Binary files a/v5.7.x/.doctrees/howto_doc.doctree and b/v5.7.x/.doctrees/howto_doc.doctree differ diff --git a/v5.7.x/.doctrees/howto_release.doctree b/v5.7.x/.doctrees/howto_release.doctree index da4e94b01..f4e482858 100644 Binary files a/v5.7.x/.doctrees/howto_release.doctree and b/v5.7.x/.doctrees/howto_release.doctree differ diff --git a/v5.7.x/.doctrees/installing.doctree b/v5.7.x/.doctrees/installing.doctree index f1df331ec..66c968a7a 100644 Binary files a/v5.7.x/.doctrees/installing.doctree and b/v5.7.x/.doctrees/installing.doctree differ diff --git a/v5.7.x/.doctrees/installing_more_options.doctree b/v5.7.x/.doctrees/installing_more_options.doctree index 37e282820..43df740f9 100644 Binary files a/v5.7.x/.doctrees/installing_more_options.doctree and b/v5.7.x/.doctrees/installing_more_options.doctree differ diff --git a/v5.7.x/.doctrees/installing_pip.doctree b/v5.7.x/.doctrees/installing_pip.doctree index 96b25d1ff..53de3c489 100644 Binary files a/v5.7.x/.doctrees/installing_pip.doctree and b/v5.7.x/.doctrees/installing_pip.doctree differ diff --git a/v5.7.x/.doctrees/kmltools_module.doctree b/v5.7.x/.doctrees/kmltools_module.doctree index 0ddde795f..8724b5929 100644 Binary files a/v5.7.x/.doctrees/kmltools_module.doctree and b/v5.7.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.7.x/.doctrees/lagrangian_gauges.doctree b/v5.7.x/.doctrees/lagrangian_gauges.doctree index 88ac0c7b0..b4ce69b9d 100644 Binary files a/v5.7.x/.doctrees/lagrangian_gauges.doctree and b/v5.7.x/.doctrees/lagrangian_gauges.doctree differ diff --git a/v5.7.x/.doctrees/license.doctree b/v5.7.x/.doctrees/license.doctree index 3ed0328fc..0c8c4486b 100644 Binary files a/v5.7.x/.doctrees/license.doctree and b/v5.7.x/.doctrees/license.doctree differ diff --git a/v5.7.x/.doctrees/makefiles.doctree b/v5.7.x/.doctrees/makefiles.doctree index bc165de43..67f022f2d 100644 Binary files a/v5.7.x/.doctrees/makefiles.doctree and b/v5.7.x/.doctrees/makefiles.doctree differ diff --git a/v5.7.x/.doctrees/makefiles_library.doctree b/v5.7.x/.doctrees/makefiles_library.doctree index 4fec3d3bc..cc92548da 100644 Binary files a/v5.7.x/.doctrees/makefiles_library.doctree and b/v5.7.x/.doctrees/makefiles_library.doctree differ diff --git a/v5.7.x/.doctrees/manning.doctree b/v5.7.x/.doctrees/manning.doctree index 7e58ad7bb..4a4c41614 100644 Binary files a/v5.7.x/.doctrees/manning.doctree and b/v5.7.x/.doctrees/manning.doctree differ diff --git a/v5.7.x/.doctrees/mapc2p.doctree b/v5.7.x/.doctrees/mapc2p.doctree index 38976b784..be7d6781b 100644 Binary files a/v5.7.x/.doctrees/mapc2p.doctree and b/v5.7.x/.doctrees/mapc2p.doctree differ diff --git a/v5.7.x/.doctrees/marching_front.doctree b/v5.7.x/.doctrees/marching_front.doctree index cd9fbc600..9723f3dd9 100644 Binary files a/v5.7.x/.doctrees/marching_front.doctree and b/v5.7.x/.doctrees/marching_front.doctree differ diff --git a/v5.7.x/.doctrees/matlab_plotting.doctree b/v5.7.x/.doctrees/matlab_plotting.doctree index d7c2fa6d6..7032386c2 100644 Binary files a/v5.7.x/.doctrees/matlab_plotting.doctree and b/v5.7.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.7.x/.doctrees/netcdf.doctree b/v5.7.x/.doctrees/netcdf.doctree index 56fa8ba32..c916f0309 100644 Binary files a/v5.7.x/.doctrees/netcdf.doctree and b/v5.7.x/.doctrees/netcdf.doctree differ diff --git a/v5.7.x/.doctrees/newapp.doctree b/v5.7.x/.doctrees/newapp.doctree index d297f5c95..9a9f60eea 100644 Binary files a/v5.7.x/.doctrees/newapp.doctree and b/v5.7.x/.doctrees/newapp.doctree differ diff --git a/v5.7.x/.doctrees/okada.doctree b/v5.7.x/.doctrees/okada.doctree index cc5057715..88b6781fd 100644 Binary files a/v5.7.x/.doctrees/okada.doctree and b/v5.7.x/.doctrees/okada.doctree differ diff --git a/v5.7.x/.doctrees/openmp.doctree b/v5.7.x/.doctrees/openmp.doctree index cad8e873b..140230f2a 100644 Binary files a/v5.7.x/.doctrees/openmp.doctree and b/v5.7.x/.doctrees/openmp.doctree differ diff --git a/v5.7.x/.doctrees/output_styles.doctree b/v5.7.x/.doctrees/output_styles.doctree index 06acfdc40..2beb6fd07 100644 Binary files a/v5.7.x/.doctrees/output_styles.doctree and b/v5.7.x/.doctrees/output_styles.doctree differ diff --git a/v5.7.x/.doctrees/packages.doctree b/v5.7.x/.doctrees/packages.doctree index 45ad87115..45ca8b1e3 100644 Binary files a/v5.7.x/.doctrees/packages.doctree and b/v5.7.x/.doctrees/packages.doctree differ diff --git a/v5.7.x/.doctrees/photos.doctree b/v5.7.x/.doctrees/photos.doctree index 861140b09..c35e6bcbf 100644 Binary files a/v5.7.x/.doctrees/photos.doctree and b/v5.7.x/.doctrees/photos.doctree differ diff --git a/v5.7.x/.doctrees/plotexamples.doctree b/v5.7.x/.doctrees/plotexamples.doctree index 66adc99f2..8f0eeda90 100644 Binary files a/v5.7.x/.doctrees/plotexamples.doctree and b/v5.7.x/.doctrees/plotexamples.doctree differ diff --git a/v5.7.x/.doctrees/plotting.doctree b/v5.7.x/.doctrees/plotting.doctree index 31ff42853..c22360c91 100644 Binary files a/v5.7.x/.doctrees/plotting.doctree and b/v5.7.x/.doctrees/plotting.doctree differ diff --git a/v5.7.x/.doctrees/plotting_faq.doctree b/v5.7.x/.doctrees/plotting_faq.doctree index 0e6c7576c..4a3494f3f 100644 Binary files a/v5.7.x/.doctrees/plotting_faq.doctree and b/v5.7.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.7.x/.doctrees/plotting_geoclaw.doctree b/v5.7.x/.doctrees/plotting_geoclaw.doctree index eaecde6c8..859883325 100644 Binary files a/v5.7.x/.doctrees/plotting_geoclaw.doctree and b/v5.7.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.7.x/.doctrees/plotting_python.doctree b/v5.7.x/.doctrees/plotting_python.doctree index d9ae40bab..7ee3eb32e 100644 Binary files a/v5.7.x/.doctrees/plotting_python.doctree and b/v5.7.x/.doctrees/plotting_python.doctree differ diff --git a/v5.7.x/.doctrees/prereqs.doctree b/v5.7.x/.doctrees/prereqs.doctree index 0e4b0981a..7d38e90cc 100644 Binary files a/v5.7.x/.doctrees/prereqs.doctree and b/v5.7.x/.doctrees/prereqs.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/about.doctree b/v5.7.x/.doctrees/pyclaw/about.doctree index 8a1b4d079..16c2271e0 100644 Binary files a/v5.7.x/.doctrees/pyclaw/about.doctree and b/v5.7.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/basics.doctree b/v5.7.x/.doctrees/pyclaw/basics.doctree index f5044d279..0b7b9fa8a 100644 Binary files a/v5.7.x/.doctrees/pyclaw/basics.doctree and b/v5.7.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/classes.doctree b/v5.7.x/.doctrees/pyclaw/classes.doctree index 69449b40a..0a2b6b1f6 100644 Binary files a/v5.7.x/.doctrees/pyclaw/classes.doctree and b/v5.7.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.7.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 071042933..3596c3698 100644 Binary files a/v5.7.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.7.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/cloud.doctree b/v5.7.x/.doctrees/pyclaw/cloud.doctree index fbc162b99..d3d2d8bf3 100644 Binary files a/v5.7.x/.doctrees/pyclaw/cloud.doctree and b/v5.7.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/controller.doctree b/v5.7.x/.doctrees/pyclaw/controller.doctree index 35def349d..f4bbc5841 100644 Binary files a/v5.7.x/.doctrees/pyclaw/controller.doctree and b/v5.7.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.7.x/.doctrees/pyclaw/evolve/limiters.doctree index 598fa86e2..206ec8968 100644 Binary files a/v5.7.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.7.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/examples.doctree b/v5.7.x/.doctrees/pyclaw/examples.doctree index f51be47a0..fe7973aa4 100644 Binary files a/v5.7.x/.doctrees/pyclaw/examples.doctree and b/v5.7.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/geometry.doctree b/v5.7.x/.doctrees/pyclaw/geometry.doctree index 2541d6f69..90f1c1c93 100644 Binary files a/v5.7.x/.doctrees/pyclaw/geometry.doctree and b/v5.7.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/going_further.doctree b/v5.7.x/.doctrees/pyclaw/going_further.doctree index 32c0cc76b..6e33e8b19 100644 Binary files a/v5.7.x/.doctrees/pyclaw/going_further.doctree and b/v5.7.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/index.doctree b/v5.7.x/.doctrees/pyclaw/index.doctree index e83cdf3f7..bd9f5d99f 100644 Binary files a/v5.7.x/.doctrees/pyclaw/index.doctree and b/v5.7.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/io.doctree b/v5.7.x/.doctrees/pyclaw/io.doctree index 05c9b80c2..cebbeca54 100644 Binary files a/v5.7.x/.doctrees/pyclaw/io.doctree and b/v5.7.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/output.doctree b/v5.7.x/.doctrees/pyclaw/output.doctree index 3218009fc..c52ccddd6 100644 Binary files a/v5.7.x/.doctrees/pyclaw/output.doctree and b/v5.7.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/parallel.doctree b/v5.7.x/.doctrees/pyclaw/parallel.doctree index aefd70cf8..3a18b9dae 100644 Binary files a/v5.7.x/.doctrees/pyclaw/parallel.doctree and b/v5.7.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/plotting.doctree b/v5.7.x/.doctrees/pyclaw/plotting.doctree index 5feeaa7c9..a2f005551 100644 Binary files a/v5.7.x/.doctrees/pyclaw/plotting.doctree and b/v5.7.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/problem.doctree b/v5.7.x/.doctrees/pyclaw/problem.doctree index 2ddbb3092..6ba1033ca 100644 Binary files a/v5.7.x/.doctrees/pyclaw/problem.doctree and b/v5.7.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/rp.doctree b/v5.7.x/.doctrees/pyclaw/rp.doctree index 5a45bf1cf..cf86613d6 100644 Binary files a/v5.7.x/.doctrees/pyclaw/rp.doctree and b/v5.7.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/solution.doctree b/v5.7.x/.doctrees/pyclaw/solution.doctree index 2eda952c2..143b9ac09 100644 Binary files a/v5.7.x/.doctrees/pyclaw/solution.doctree and b/v5.7.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/solvers.doctree b/v5.7.x/.doctrees/pyclaw/solvers.doctree index ab86e159c..023f4e04a 100644 Binary files a/v5.7.x/.doctrees/pyclaw/solvers.doctree and b/v5.7.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/started.doctree b/v5.7.x/.doctrees/pyclaw/started.doctree index 9452872ee..370a60603 100644 Binary files a/v5.7.x/.doctrees/pyclaw/started.doctree and b/v5.7.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/state.doctree b/v5.7.x/.doctrees/pyclaw/state.doctree index bcf421e6c..53772d235 100644 Binary files a/v5.7.x/.doctrees/pyclaw/state.doctree and b/v5.7.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.7.x/.doctrees/pyclaw/troubleshooting.doctree index b64273ad0..db9ca6b1e 100644 Binary files a/v5.7.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.7.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/tutorial.doctree b/v5.7.x/.doctrees/pyclaw/tutorial.doctree index e047c6ed7..5fb79383f 100644 Binary files a/v5.7.x/.doctrees/pyclaw/tutorial.doctree and b/v5.7.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.7.x/.doctrees/pyclaw/util.doctree b/v5.7.x/.doctrees/pyclaw/util.doctree index 9bbdbe9c3..9032a4502 100644 Binary files a/v5.7.x/.doctrees/pyclaw/util.doctree and b/v5.7.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.7.x/.doctrees/python.doctree b/v5.7.x/.doctrees/python.doctree index e17da9f8a..2ebfbd0e4 100644 Binary files a/v5.7.x/.doctrees/python.doctree and b/v5.7.x/.doctrees/python.doctree differ diff --git a/v5.7.x/.doctrees/python_path.doctree b/v5.7.x/.doctrees/python_path.doctree index 41ca409ff..2281f6e1d 100644 Binary files a/v5.7.x/.doctrees/python_path.doctree and b/v5.7.x/.doctrees/python_path.doctree differ diff --git a/v5.7.x/.doctrees/qinit_defaults.doctree b/v5.7.x/.doctrees/qinit_defaults.doctree index 59eb292ae..5973cf258 100644 Binary files a/v5.7.x/.doctrees/qinit_defaults.doctree and b/v5.7.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.7.x/.doctrees/quick_surge.doctree b/v5.7.x/.doctrees/quick_surge.doctree index dab0b12c9..0c1527174 100644 Binary files a/v5.7.x/.doctrees/quick_surge.doctree and b/v5.7.x/.doctrees/quick_surge.doctree differ diff --git a/v5.7.x/.doctrees/quick_tsunami.doctree b/v5.7.x/.doctrees/quick_tsunami.doctree index d993345dc..ed24f6139 100644 Binary files a/v5.7.x/.doctrees/quick_tsunami.doctree and b/v5.7.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.7.x/.doctrees/refinement.doctree b/v5.7.x/.doctrees/refinement.doctree index da38b7ea7..d43c354b9 100644 Binary files a/v5.7.x/.doctrees/refinement.doctree and b/v5.7.x/.doctrees/refinement.doctree differ diff --git a/v5.7.x/.doctrees/regression.doctree b/v5.7.x/.doctrees/regression.doctree index 868031463..b6099d620 100644 Binary files a/v5.7.x/.doctrees/regression.doctree and b/v5.7.x/.doctrees/regression.doctree differ diff --git a/v5.7.x/.doctrees/release_5_0_0.doctree b/v5.7.x/.doctrees/release_5_0_0.doctree index 35798d51d..9e5b1fd70 100644 Binary files a/v5.7.x/.doctrees/release_5_0_0.doctree and b/v5.7.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_1_0.doctree b/v5.7.x/.doctrees/release_5_1_0.doctree index 172f42fe3..8923f323c 100644 Binary files a/v5.7.x/.doctrees/release_5_1_0.doctree and b/v5.7.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_2_0.doctree b/v5.7.x/.doctrees/release_5_2_0.doctree index 9aeb14fc5..1b37f8a5c 100644 Binary files a/v5.7.x/.doctrees/release_5_2_0.doctree and b/v5.7.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_2_1.doctree b/v5.7.x/.doctrees/release_5_2_1.doctree index 366016a8d..fe4c59502 100644 Binary files a/v5.7.x/.doctrees/release_5_2_1.doctree and b/v5.7.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.7.x/.doctrees/release_5_2_2.doctree b/v5.7.x/.doctrees/release_5_2_2.doctree index 8a62936ba..577d66399 100644 Binary files a/v5.7.x/.doctrees/release_5_2_2.doctree and b/v5.7.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.7.x/.doctrees/release_5_3_0.doctree b/v5.7.x/.doctrees/release_5_3_0.doctree index 04e1ec511..d2f971e63 100644 Binary files a/v5.7.x/.doctrees/release_5_3_0.doctree and b/v5.7.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_3_1.doctree b/v5.7.x/.doctrees/release_5_3_1.doctree index ee791c3d3..fb35d7b0e 100644 Binary files a/v5.7.x/.doctrees/release_5_3_1.doctree and b/v5.7.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.7.x/.doctrees/release_5_4_0.doctree b/v5.7.x/.doctrees/release_5_4_0.doctree index a7c05379c..54956530e 100644 Binary files a/v5.7.x/.doctrees/release_5_4_0.doctree and b/v5.7.x/.doctrees/release_5_4_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_4_1.doctree b/v5.7.x/.doctrees/release_5_4_1.doctree index bfefb531c..940b77086 100644 Binary files a/v5.7.x/.doctrees/release_5_4_1.doctree and b/v5.7.x/.doctrees/release_5_4_1.doctree differ diff --git a/v5.7.x/.doctrees/release_5_5_0.doctree b/v5.7.x/.doctrees/release_5_5_0.doctree index 6c3126623..772352687 100644 Binary files a/v5.7.x/.doctrees/release_5_5_0.doctree and b/v5.7.x/.doctrees/release_5_5_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_6_0.doctree b/v5.7.x/.doctrees/release_5_6_0.doctree index d09173952..06b1a6bef 100644 Binary files a/v5.7.x/.doctrees/release_5_6_0.doctree and b/v5.7.x/.doctrees/release_5_6_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_6_1.doctree b/v5.7.x/.doctrees/release_5_6_1.doctree index 70caf25bb..06b27330d 100644 Binary files a/v5.7.x/.doctrees/release_5_6_1.doctree and b/v5.7.x/.doctrees/release_5_6_1.doctree differ diff --git a/v5.7.x/.doctrees/release_5_7_0.doctree b/v5.7.x/.doctrees/release_5_7_0.doctree index 39288e941..b19302cde 100644 Binary files a/v5.7.x/.doctrees/release_5_7_0.doctree and b/v5.7.x/.doctrees/release_5_7_0.doctree differ diff --git a/v5.7.x/.doctrees/release_5_7_1.doctree b/v5.7.x/.doctrees/release_5_7_1.doctree index 69d49f0ae..165322fbd 100644 Binary files a/v5.7.x/.doctrees/release_5_7_1.doctree and b/v5.7.x/.doctrees/release_5_7_1.doctree differ diff --git a/v5.7.x/.doctrees/releases.doctree b/v5.7.x/.doctrees/releases.doctree index 962723ff7..9a220a4d7 100644 Binary files a/v5.7.x/.doctrees/releases.doctree and b/v5.7.x/.doctrees/releases.doctree differ diff --git a/v5.7.x/.doctrees/restart.doctree b/v5.7.x/.doctrees/restart.doctree index 5c6a6591d..46d375370 100644 Binary files a/v5.7.x/.doctrees/restart.doctree and b/v5.7.x/.doctrees/restart.doctree differ diff --git a/v5.7.x/.doctrees/riemann.doctree b/v5.7.x/.doctrees/riemann.doctree index 1ea42b82e..b103faebe 100644 Binary files a/v5.7.x/.doctrees/riemann.doctree and b/v5.7.x/.doctrees/riemann.doctree differ diff --git a/v5.7.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree b/v5.7.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree index 45790063f..be621b23b 100644 Binary files a/v5.7.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree and b/v5.7.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree differ diff --git a/v5.7.x/.doctrees/ruled_rectangles.doctree b/v5.7.x/.doctrees/ruled_rectangles.doctree index 6a9c08a4f..54ba1c3a9 100644 Binary files a/v5.7.x/.doctrees/ruled_rectangles.doctree and b/v5.7.x/.doctrees/ruled_rectangles.doctree differ diff --git a/v5.7.x/.doctrees/sealevel.doctree b/v5.7.x/.doctrees/sealevel.doctree index 9d90424f7..4eddc702f 100644 Binary files a/v5.7.x/.doctrees/sealevel.doctree and b/v5.7.x/.doctrees/sealevel.doctree differ diff --git a/v5.7.x/.doctrees/set_eta_init.doctree b/v5.7.x/.doctrees/set_eta_init.doctree index 320b46e89..6bf6a3c02 100644 Binary files a/v5.7.x/.doctrees/set_eta_init.doctree and b/v5.7.x/.doctrees/set_eta_init.doctree differ diff --git a/v5.7.x/.doctrees/setaux_defaults.doctree b/v5.7.x/.doctrees/setaux_defaults.doctree index e633006e3..848353392 100644 Binary files a/v5.7.x/.doctrees/setaux_defaults.doctree and b/v5.7.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.7.x/.doctrees/setenv.doctree b/v5.7.x/.doctrees/setenv.doctree index f3f75401d..0dddec6f6 100644 Binary files a/v5.7.x/.doctrees/setenv.doctree and b/v5.7.x/.doctrees/setenv.doctree differ diff --git a/v5.7.x/.doctrees/setplot.doctree b/v5.7.x/.doctrees/setplot.doctree index 2d4bbcda7..f4fef9f2f 100644 Binary files a/v5.7.x/.doctrees/setplot.doctree and b/v5.7.x/.doctrees/setplot.doctree differ diff --git a/v5.7.x/.doctrees/setrun.doctree b/v5.7.x/.doctrees/setrun.doctree index b17a9be2e..9a2df3a56 100644 Binary files a/v5.7.x/.doctrees/setrun.doctree and b/v5.7.x/.doctrees/setrun.doctree differ diff --git a/v5.7.x/.doctrees/setrun_amrclaw.doctree b/v5.7.x/.doctrees/setrun_amrclaw.doctree index 92c91b5e0..4fa007111 100644 Binary files a/v5.7.x/.doctrees/setrun_amrclaw.doctree and b/v5.7.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.7.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.7.x/.doctrees/setrun_amrclaw_sample.doctree index 1fee4782e..473cfa334 100644 Binary files a/v5.7.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.7.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.7.x/.doctrees/setrun_geoclaw.doctree b/v5.7.x/.doctrees/setrun_geoclaw.doctree index 27a1bb24c..6ec32f54e 100644 Binary files a/v5.7.x/.doctrees/setrun_geoclaw.doctree and b/v5.7.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.7.x/.doctrees/setrun_sample.doctree b/v5.7.x/.doctrees/setrun_sample.doctree index 2d9576077..6188f546f 100644 Binary files a/v5.7.x/.doctrees/setrun_sample.doctree and b/v5.7.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.7.x/.doctrees/sharing.doctree b/v5.7.x/.doctrees/sharing.doctree index 902618d3f..d3a5913ac 100644 Binary files a/v5.7.x/.doctrees/sharing.doctree and b/v5.7.x/.doctrees/sharing.doctree differ diff --git a/v5.7.x/.doctrees/sphinxdoc.doctree b/v5.7.x/.doctrees/sphinxdoc.doctree index f2d72abda..2739fbfec 100644 Binary files a/v5.7.x/.doctrees/sphinxdoc.doctree and b/v5.7.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.7.x/.doctrees/src1d_defaults.doctree b/v5.7.x/.doctrees/src1d_defaults.doctree index 0b10aa19d..cef42c4cd 100644 Binary files a/v5.7.x/.doctrees/src1d_defaults.doctree and b/v5.7.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.7.x/.doctrees/src_defaults.doctree b/v5.7.x/.doctrees/src_defaults.doctree index e4a9c0d8f..66173bdac 100644 Binary files a/v5.7.x/.doctrees/src_defaults.doctree and b/v5.7.x/.doctrees/src_defaults.doctree differ diff --git a/v5.7.x/.doctrees/storm_module.doctree b/v5.7.x/.doctrees/storm_module.doctree index 90aa0934e..f1bf10dcd 100644 Binary files a/v5.7.x/.doctrees/storm_module.doctree and b/v5.7.x/.doctrees/storm_module.doctree differ diff --git a/v5.7.x/.doctrees/surgedata.doctree b/v5.7.x/.doctrees/surgedata.doctree index 73d575131..d34aa5f77 100644 Binary files a/v5.7.x/.doctrees/surgedata.doctree and b/v5.7.x/.doctrees/surgedata.doctree differ diff --git a/v5.7.x/.doctrees/testing.doctree b/v5.7.x/.doctrees/testing.doctree index c4c963722..9fe6a8155 100644 Binary files a/v5.7.x/.doctrees/testing.doctree and b/v5.7.x/.doctrees/testing.doctree differ diff --git a/v5.7.x/.doctrees/timing.doctree b/v5.7.x/.doctrees/timing.doctree index d47a63fa8..bd5457213 100644 Binary files a/v5.7.x/.doctrees/timing.doctree and b/v5.7.x/.doctrees/timing.doctree differ diff --git a/v5.7.x/.doctrees/topo.doctree b/v5.7.x/.doctrees/topo.doctree index 25ecab976..14679383c 100644 Binary files a/v5.7.x/.doctrees/topo.doctree and b/v5.7.x/.doctrees/topo.doctree differ diff --git a/v5.7.x/.doctrees/topotools.doctree b/v5.7.x/.doctrees/topotools.doctree index e06d12806..378f9ac0c 100644 Binary files a/v5.7.x/.doctrees/topotools.doctree and b/v5.7.x/.doctrees/topotools.doctree differ diff --git a/v5.7.x/.doctrees/topotools_module.doctree b/v5.7.x/.doctrees/topotools_module.doctree index 838fc7371..bb6204404 100644 Binary files a/v5.7.x/.doctrees/topotools_module.doctree and b/v5.7.x/.doctrees/topotools_module.doctree differ diff --git a/v5.7.x/.doctrees/trouble.doctree b/v5.7.x/.doctrees/trouble.doctree index 7ad8ad99a..735da837c 100644 Binary files a/v5.7.x/.doctrees/trouble.doctree and b/v5.7.x/.doctrees/trouble.doctree differ diff --git a/v5.7.x/.doctrees/tsunamidata.doctree b/v5.7.x/.doctrees/tsunamidata.doctree index 5edd0a084..dea1f6170 100644 Binary files a/v5.7.x/.doctrees/tsunamidata.doctree and b/v5.7.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.7.x/.doctrees/user_routines.doctree b/v5.7.x/.doctrees/user_routines.doctree index 28749d45b..e668a4beb 100644 Binary files a/v5.7.x/.doctrees/user_routines.doctree and b/v5.7.x/.doctrees/user_routines.doctree differ diff --git a/v5.7.x/.doctrees/visit_plotting.doctree b/v5.7.x/.doctrees/visit_plotting.doctree index 2bd33e9c9..cc56e3760 100644 Binary files a/v5.7.x/.doctrees/visit_plotting.doctree and b/v5.7.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.7.x/.doctrees/vm.doctree b/v5.7.x/.doctrees/vm.doctree index eda7cc5e2..5307ed14c 100644 Binary files a/v5.7.x/.doctrees/vm.doctree and b/v5.7.x/.doctrees/vm.doctree differ diff --git a/v5.7.x/.doctrees/wp_algorithms.doctree b/v5.7.x/.doctrees/wp_algorithms.doctree index cc6563938..83dca86f7 100644 Binary files a/v5.7.x/.doctrees/wp_algorithms.doctree and b/v5.7.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.7.x/genindex.html b/v5.7.x/genindex.html index 2e457b5bb..b07d96d01 100644 --- a/v5.7.x/genindex.html +++ b/v5.7.x/genindex.html @@ -109,6 +109,8 @@

            A

            @@ -212,17 +218,27 @@

            C

          • clawpack.geoclaw.topotools (module)
          • -
          - +

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/v5.7.x/searchindex.js b/v5.7.x/searchindex.js index 82fad88c5..2c61f9a62 100644 --- a/v5.7.x/searchindex.js +++ b/v5.7.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[151,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[145,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[145,5,1,""],Storm:[145,0,1,""],available_formats:[145,3,1,""],available_models:[145,3,1,""],fill_rad_w_other_source:[145,3,1,""],make_multi_structure:[145,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[145,2,1,""],plot:[145,2,1,""],read:[145,2,1,""],read_atcf:[145,2,1,""],read_geoclaw:[145,2,1,""],read_hurdat:[145,2,1,""],read_ibtracs:[145,2,1,""],read_imd:[145,2,1,""],read_jma:[145,2,1,""],read_tcvitals:[145,2,1,""],write:[145,2,1,""],write_atcf:[145,2,1,""],write_geoclaw:[145,2,1,""],write_hurdat:[145,2,1,""],write_imd:[145,2,1,""],write_jma:[145,2,1,""],write_tcvitals:[145,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[151,0,1,""],create_topo_func:[151,3,1,""],determine_topo_type:[151,3,1,""],fetch_topo_url:[151,3,1,""],get_topo:[151,3,1,""],read_netcdf:[151,3,1,""],swapheader:[151,3,1,""],topo1writer:[151,3,1,""],topo2writer:[151,3,1,""],topo3writer:[151,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[151,2,1,""],Y:[151,2,1,""],Z:[151,2,1,""],crop:[151,2,1,""],delta:[151,2,1,""],extent:[151,2,1,""],generate_2d_coordinates:[151,2,1,""],generate_2d_topo:[151,2,1,""],in_poly:[151,2,1,""],interp_unstructured:[151,2,1,""],make_shoreline_xy:[151,2,1,""],plot:[151,2,1,""],read:[151,2,1,""],read_header:[151,2,1,""],replace_no_data_values:[151,2,1,""],replace_values:[151,2,1,""],set_xyZ:[151,2,1,""],smooth_data:[151,2,1,""],write:[151,2,1,""],x:[151,2,1,""],y:[151,2,1,""],z:[151,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":138,"00000e":138,"0000ff":[3,59],"001000e":138,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":155,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":151,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,135],"1drad":154,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,136,138,140,154],"2013it":17,"2018300n26315":145,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":148,"27t06":59,"27t07":59,"288e":148,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,136,138,140,154],"301e":148,"30x30":51,"34kt":145,"360x360":51,"373e":148,"3rd":[96,99,129],"3x3":39,"40000000e":72,"4th":99,"50kt":145,"5_x_x":55,"5d0":154,"5e3":139,"5r01ar53652":4,"639s":[36,147],"64kt":145,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,136,137,139],"break":[28,30,48,51,59,70,111,118,132,139,151],"case":[5,6,8,13,16,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,127,130,131,139,145,149,151,152,154,157],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,127,130,135,136,137,138,139,140,151],"const":32,"default":[0,1,2,3,13,22,28,30,32,41,44,45,47,49,50,51,53,56,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,127,131,137,138,139,145,149,151,154],"export":[41,51,56,57,58,67,71,94,102,134],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,127,129,136,138,140,151],"float":[3,30,32,44,47,59,86,89,101,104,136,137,139,140,145,151],"function":[0,1,2,3,5,7,15,17,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,128,130,132,133,135,136,137,138,139,140,145,149,150,151,152,154],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,105,111,119,124,128,129,130,131,132,136,137,138,139,140,149,151,153,155],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,136,137,139,145,151],"long":[18,28,30,47,48,51,69,118,151],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,80,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,127,128,130,131,132,134,136,137,139,145,149,151,154],"ond\u0159ej":4,"public":[4,13,21,126],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,128,130,136,138,140,145,147,151,154,157],"short":[24,48,96],"static":[30,70,121],"super":[23,28,121,151],"switch":[29,51,56,58,96,106,111,120,131,153],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,127,128,130,132,133,136,137,138,139,140,145,151],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,105,106,111,136,147,151,152],"var":[0,3,13,27,145],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,128,132,139,153],AND:[61,81],ARE:[61,81],AWS:[13,56],Added:[87,113,115,117,118,120,124],Adding:[25,82,90],And:[6,20,54,56],Are:112,Axes:[135,145],BCs:[138,140],BUT:[61,81],But:[13,32,39,51,77,102,114,121,132],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,56,58,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,135,136,137,138,139,140,142,145,146,148,149,151,153,154,157],GIS:[51,119,149],Going:[13,25,91],Ike:108,Into:105,NOT:[59,61,77,81],Not:[30,51,89,119],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,151],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,149],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,147,148,149,151,152,153,154,155,156,157],Their:81,Then:[13,16,28,29,30,44,54,55,57,63,66,70,71,79,83,86,94,100,101,102,106,128,130,151,152],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,93,100,108,120,121,135,136,146,147,154,156],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,56,59,60,63,66,67,77,79,83,88,92,93,95,101,103,107,109,110,111,113,119,120,121,122,127,137,141,145,146,149,153,157],USE:[61,81],Use:[30,51,91,99,121,129,136,138,140,149,151],Used:129,Useful:[1,3,129,136],Uses:[30,129,151],Using:[0,1,2,3,7,17,22,41,42,51,53,56,75,76,77,79,80,89,90,91,123,136,143,144,148,151,152,157],WCS:153,Will:98,With:[6,22,28,44,49,51,66,73,105,110,118,128,130,136],__________________o:151,__file__:106,__future__:119,__init__:[55,96,106],__main__:[138,140],__name__:[138,140],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,152],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,135,141],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:128,_pyclaw_io:86,_static:54,_storm_modul:146,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,145,151],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,128,135,138,139,149,152,154,157],aboutu:30,abov:[3,5,13,14,16,20,28,29,32,35,36,38,39,40,41,44,48,51,53,54,55,56,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,105,110,119,121,128,130,132,134,135,136,138,139,140,145,148,149,151,154],abs:[30,52,96,104,110,130,151],absolut:[93,110,111,121,137,138],absolute_import:119,abspath:[5,38],abstol:104,academ:[102,105],acceler:52,accept:[44,83,93,99,136],accept_reject_step:99,access:[0,17,27,29,56,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,149],account:[13,24,28,55,85,94],accumul:[44,119,127],accur:[5,18,48,70,91,99,136,154,157],accuraci:[44,64,73,138,140],achiev:[20,84,143,144],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,128,138,154],acoustics1dheterogeneoustest:[36,147],acoustics3dheterogeneoustest:[36,147],acoustics_1d:[83,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,147,154],acoustics_1d_homogen:[88,111],acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[138,154],acoustics_3d_heterogen:[36,147],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,149,151],acsza1:30,acszb1:30,act:[87,151],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,139],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,131,139],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,128,130,135,136,154],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,129,140,145,149,151,155],add_colorbar:[30,151],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[138,140],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,127,132,136,137,139,145,148,151,155],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,23,24,25,28,29,32,36,37,38,45,46,56,58,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,128,130,136,140,145,148,149,154,155],addition:[94,145],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,132,136],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,131,136,154],adjust_fgmax_1d:33,admiralti:130,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,136,154],advantag:[12,76,92,105,111,130],advect:[17,77,91,94,128,129,140,154],advection2dannulustest:[36,147],advection_1d_example1:63,advection_2d_annulu:[36,147],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:154,advection_3d_swirl:[117,148],advis:[34,61,81],affect:[18,22,62,119,120,136,149,152],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,129,132,136,137,138,140,145,154],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,149,152],against:[104,111,118,147],agenc:[4,58,145,146],agency_pref:145,agre:[12,28,39,53,128,148,151,154],agreement:48,ahmadia:[4,17,81,91],aht:131,aid:84,aim:28,aks2203:4,albada:87,alg:138,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,128,130,136,138,140,151],align:[32,39,51,59,66,124,139],all:[0,1,4,6,11,12,13,16,18,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,127,128,129,130,132,135,136,138,139,140,141,146,147,148,149,151,152,154],alloc:[20,99,117],allocat:117,allot:59,allow:[4,6,13,22,27,28,29,32,38,39,44,45,47,50,51,53,54,56,58,64,66,67,70,71,73,76,77,86,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,128,130,136,138,139,140,141,145,149,151,153],almost:105,alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,68,70,106,110,117,127,130,132,139,145,153],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,57,58,59,60,66,79,80,94,98,100,103,105,114,122,151],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,136,138,139,140,141,143,144,145,146,147,148,149,151,152,153,154,156,157],alter:51,altern:[30,35,36,44,47,51,57,60,62,67,76,91,94,105,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,151],alwai:[16,18,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,132,138,139,140,149,154],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,128],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,132,135,136,138,140,148,154],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:138,amr_levels_max:[32,110,137,138],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,100,106,107,110,111,127,128,130,133,134,136,139,143,144,147,148,152],amrdata:[5,22,32,110,124,137,138,139],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,80,91,100,105],anal:17,analog:[136,137],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,56,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,127,130,131,132,135,136,137,139,145,154,157],anim:[12,16,42,51,117,124,125,141],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,57,58,59,72,76,80,88,99,102,111,121,145,154],answer:24,anyth:[3,6,28,29,56,58,63,111,121],anywher:110,aoml:145,apach:13,apdq:[97,128],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,70,108,109,116,120,121,122,123,124,125,129],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,57,59,62,65,77,93,98,101,119,139,141,149],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,127,128,138],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,127,136,139,154],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,45,46,55,56,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,128,130,132,133,136,139,143,144,149,151,152,154,155],appreci:81,approach:[5,7,13,28,29,38,44,54,56,69,76,84,94,96,104,110,117,119,120,122,128,129,135,139,154,157],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,56,58,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,128,131,134,136,145,154,157],approv:48,approxim:[6,16,25,33,48,51,70,128],april:[24,124,125,126],apt:[13,105],arbitrari:[32,59,99,113,130,139],arbitrarili:66,arc:131,arcgi:151,architectur:94,archiv:[12,21,36,51,55,111,141,147,151,153],arcminut:[70,149],arcsecond:[45,149],area:[15,22,45,99,108,119,132,133],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,128,130,135,136,137,145,151,154],argv:[138,140],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,137,138,145,151,154],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,128,129,130,133,136,137,138,139,140,145,149,151,154],arrang:151,arriv:[22,32,34,39,45,119,131,132],arrival_tol:32,articl:[4,17,91,141],artifici:[16,132],arxiv:52,asc:151,ascii:[44,53,67,83,86,93,98,119,127,136,138,140,149,155],ascii_output_format:68,ask:24,ask_us:151,aspect:[12,24,29,48,49,67,151],assembl:57,assert:[138,140],assess:[4,48,131],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,103,104,110,117,130,131,136,139,145,146,149,151,153,157],assumpt:[51,54],asteroid:4,astronom:131,atcf:[108,121,145,146],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,145,151,152],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,127,135,136,137,139,145,151],attributeerror:77,aug:[17,122],augment:[66,129],august:[24,121,126],austin:4,author:[17,25,45,48,87,91,92,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,136,137,139,149],autonom:5,aux1:32,aux1d:154,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,128,129,133,136,137,138,139,140,154],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,128],aux_out_field:44,aux_r:[97,128],aux_time_dep:99,aux_typ:[5,137,138],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,128,136,138,140,154],auxillari:[92,98],auxl:128,auxr:128,auxtyp:138,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,56,57,58,62,66,67,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,128,129,131,136,138,139,141,145,146,149],available_format:145,available_model:145,averag:[4,6,15,17,32,39,45,48,49,53,67,101,114,128,132,133,149,151,154],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,127,136,139,157],awai:[28,131],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,135,145,151],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,130],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,154],b4step2:[15,133,154],b4step3:15,b4stepn:154,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,135],backward:[5,28,30,47,59,70,92,105,114,115,151],bad:[106,111],bai:[66,131,153],balanc:[6,17,73,120,129,143,144],bale:17,balelevmitross02:[4,17,136,157],ball:151,band1:151,band:[51,151],bar:[13,54,145],barrier:[66,104],base:[5,6,13,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,131,136,137,138,139,140,145,151,154,157],base_subfault:30,baselin:51,basemap:145,bash:[41,51,56,58,67,71,94,106,134],bash_profil:[102,134],bashrc:[13,41,102,134],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,99,111,128,129,145,157],basin:108,bathymetri:[15,45,48,51,59,108,119,121,129,131,133,139,149,151],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,136,138,140],bc_upper:[16,83,96,103,136,138,140],bcn:[6,16,140,154],bcnamr:[6,16,121,136,138,154],beach:[39,66,129],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,128,131,136],becom:[48,102,157],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,127,128,130,136,137,139,149,151,154],befor:[1,3,4,6,14,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,126,128,131,132,136,137,139,149,151,152],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,103,129,145],begin_d:47,behav:44,behavior:[45,54,110,111,118,124],behaviour:83,behind:[39,66,132],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,128,130,132,136,139,145,152,154],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,29,30,32,39,45,51,52,54,55,56,58,59,64,67,70,79,81,83,85,93,103,105,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,133,135,136,137,138,139,140,143,144,145,149,151,154],benchmark:48,beowulf:57,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,62,69,71,76,77,92,96,108,109,110,111,121,126,128,139,142,145,149,154],besttrack:145,beta:[47,87,99,140],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,139],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,56,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,128,130,131,136,137,138,139,140,141,145,148,149,151,153,154],bewar:[106,151],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,149],bin:94,binari:[5,41,55,57,61,68,81,92,93,95,118,127,136,138,151,155],binary32:92,binary64:92,bind:[28,51,76,84,94],bisect:[137,138],bit:[16,22,30,55,92,94,102,129],bitbucket:94,black:[3,44],blank:[3,59,145],blast:120,blob:[118,129],block:[7,30,39,59,70,72,73,83,92,101,104,111,154],blossei:4,blue:[3,11,39,44,59,66,77,130,145,151],bmatrix:129,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:145,bomb:[62,71],book:[4,12,17,25,29,80,98,105,128],bool:[0,1,2,3,47,59,86,92,98,99,101,104,139,145,151],border:[67,154],bore:48,both:[3,16,28,30,33,35,36,38,39,44,48,53,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,128,129,130,132,136,138,140,143,149,154],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,133,143,144],boulder:24,bound:[33,84,87,94,130,136,151],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,130,136,138,140],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,130,151],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,133,143,144],brief:[4,55,129,139],briefli:157,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:151,broken:[19,20,28,68,70,111],brought:28,brown:[81,151],brows:[11,24,42,51,67,141,154],browser:[13,28,29,35,36,51,54,141],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,137,138,151],buffer_length:151,buffer_s:[30,70],bug:[4,8,12,18,22,24,41,51,64,71,77,81,116,117,118,119,121],build:[4,17,28,29,54,55,67,84,94,104,120,130],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,143,144],bulk:[19,83,103,128,138,154],bull:[17,30],buoi:45,burger:[91,128,154],busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_node:89,c_nodes_with_ghost:89,cach:[22,47,55,79,81,124],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[128,154,157],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,99,114,119,151],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,128,130,132,134,136,138,139,140,145,151,154],call_before_step_each_stag:99,call_setplot:77,callabl:104,cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,149,151,152,153,154,155,157],cannot:[52,58,92,132,145],canopi:100,capa:98,capa_index:[136,138,140],capab:151,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,22,32,34,48,52,66,73,84,113,118,119,121,122,123,124,125,151,153],capac:[15,133,136,137,138,140],captur:[32,48,130,149],car_nam:145,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,139],cartopi:145,cascad:4,cast:151,cat_nam:145,catalog:153,categor:145,categori:145,category_color:145,caus:[22,48,51,54,61,62,79,81,102,111,118,119,120,122,135,137,149,151],caut:87,caution:48,cautionari:[25,45,63,139],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:151,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:151,cdot:[64,96,130],ceas:105,cell:[3,4,5,7,8,15,16,18,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,128,131,132,133,136,137,138,139,140,146,148,149,154,157],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,149],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,130,132,137,138,139,145,146,149,154],centerlin:30,centers_with_ghost:89,central:[136,145,146],central_pressur:145,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,130,136],certainli:[94,105],certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,136,138,139,140],cfl_desir:[99,136,138,140],cfl_max:[99,136,138,140],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,56,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,126,128,132,133,136,137,138,139,140,143,144,149,152,154],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],changes_to_mast:55,channel:24,chapter:[16,128,136,154],char_decomp:99,charact:47,characterist:99,charg:13,chava:139,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,130,132,133,137,138,143,144,145,151,152,153,154],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55],checkpoint:[25,44,118,119,121,123,136,138,140],checkpt_interv:[136,138],checkpt_styl:[118,127,136,138],checkpt_tim:[136,138],checksum:92,chen:[30,153],chile2010:[51,109,110,113,116,122,149],chile2010_adjoint:5,chile2010_fgmax:32,chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[138,140],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[127,136,138,140],choic:[16,45,76,99,136,138,139,140,154],choos:[0,7,59,70,96,136,139],chose:64,chosen:[3,18,29,32,38,39,51,53,66,103,110,131,137],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,126],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:140,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,46,55,56,57,58,63,69,71,72,73,81,83,86,88,89,90,91,92,96,106,107,111,127,128,133,134,137,139,144,152,154],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,19,20,22,24,28,30,32,33,35,36,37,38,40,41,44,45,47,49,50,52,54,55,56,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,128,132,133,138,139,140,142,143,144,147,148,149,151,152,154,155],claw_1dnoncon:157,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[136,137,138,139,140],claw_topo_download:151,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,127,136,137,138,139,140],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,127,128,130,134,136,137,138,141,142,145,147,149,151,152,154,155,157],clawpack_gpu:52,clawpack_src:[56,58,106],clawplotax:[1,2,3,27,77,121,135],clawplotdata:[2,3,27,44,51,77,79,86,135],clawplotfigur:[0,1,51,77,135],clawplotitem:[0,1,7,22,27,76,78,118,121,135],clawrundata:[5,44,59,122,127,136,137,138,140],clawsolut:1,clawsolv:[99,128],clawsolver1d:[83,86,89,99,103,128],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,57,62,106,111,134,136,137,138,140,151,152],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,67,79],clearer:123,clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,130],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,126],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,151],clone:[12,18,23,24,42,52,54,55,56,58,80,94,100,109,152],close:[13,39,51,54,59,66,67,92,110,124,137,145],close_fig:59,closer:[70,138],closest:145,cloud:13,cluster:[6,17,57,110,137,138],clustering_cutoff:[110,137,138],cma:145,cmap:[39,51,59,66,77,130,151],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,18,32,51,110,119,136,149,154],coarsen:[53,110,121,122,137,149,151],coarsen_method:53,coarser:[3,16,53,119,132,136,137,154],coarsest:[6,51,72,113,127,136],coast:[39,66,110,132,151],coastal:[48,124,131,132,139,149],coastlin:[32,51,66,124,130,139,153],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,57,61,62,63,64,68,69,70,71,72,73,75,77,79,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,127,128,129,130,136,138,139,140,141,145,147,148,149],code_of_conduct:121,coeffici:[5,64,96,99,101,102,103,128,139],colella:[6,17],collabor:[51,141],collect:[12,25,26,28,30,32,70,76,83,99,141],collela:120,color:[3,30,39,51,59,66,67,76,130,135,145,151],colorado:24,colorbar:[3,39,59,66,121,124,130,151],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,151],column:[10,30,32,44,48,60,93,117,130,151],column_list:30,column_map:30,com:[12,13,23,24,26,28,29,52,54,55,56,57,58,92,94,96,100,116,118,119,120,126,129],combin:[20,54,59,118,153],combinatori:111,come:[3,28,77,79,88,94,99,117,149,154],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,56,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,128,134,135,136,137,149,151],commenc:127,comment:[5,11,24,49,55,120,127],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,152,154],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,149],compactli:130,compar:[5,22,36,44,48,51,55,77,93,110,111,131,137,139,147,153,157],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,105,114,115,119,120,151],compens:151,compil:[13,25,35,36,40,46,56,58,63,71,73,79,80,84,91,92,96,100,104,113,128,129,134],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,105,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,130,135],compon:[3,16,18,20,22,25,36,44,56,58,67,72,76,96,98,100,101,110,117,129,136,137,138,149,154],compos:[30,83],comprehens:111,compress:[30,92,151],compris:[22,91,151],comput:[3,4,5,6,13,16,17,27,29,30,32,33,39,44,47,51,53,56,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,105,106,108,110,113,114,118,119,123,128,132,136,138,139,140,146,149,154,157],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,128],concern:[22,45],conclus:[4,51],conda:[51,56,80,91],condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,131,136,138,139,140],conduct:121,conf:[54,55],confer:24,config:94,config_fc:152,configur:[77,83,94,151],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,149],confus:[3,53,58,106,128],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,130],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,129,154,157],consid:[6,39,48,57,58,66,84,106,134,141,151],consider:[48,83],consist:[6,25,32,47,51,55,59,94,105,119,128,130,139,149,154],consol:[13,93,139],consolid:117,constant:[30,32,48,59,64,94,128,129,130,132,139,151,154],constant_storm_modul:117,constrain:110,constraint:[39,44,130,137,157],construc:59,construct:[22,30,32,53,83,89,104,145,146,149],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,44,45,47,49,50,51,52,53,54,55,57,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,92,94,96,97,98,99,101,103,104,106,110,111,113,114,121,122,126,128,130,135,136,139,141,145,149,151,152,154],containing_rect:30,contains:29,containt:127,contamin:136,contan:51,content:[4,6,23,51,55,73,84,139,149,154,155],context:[27,51,154],contigu:[72,92,101,130],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,128,136,157],contour:[3,30,44,51,53,67,105,135,151],contour_color:3,contour_kwarg:[3,151],contour_level:[3,151],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,130],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,56,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,129,139],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,154,157],convens:149,convent:[3,22,30,46,53,70,97,149],converg:[66,76],convers:[19,25,84,92,110,130,149,153],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,56,58,59,62,70,84,96,104,105,121,124,136,137,145,149,153],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,130,139,151],coordinate_specif:[30,70],coordinate_system:[15,60,133,139],coorind:151,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,132,133,141,143,144,149,154],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,139,143,144],coriolis_forc:[48,139],corner:[3,30,32,53,70,72,89,130,136,138,140,149,151],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,132,136,138,139,140],correctli:[28,32,84,90,117,139],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,128,130,131,136,137,138,139,140,145,149,153,154],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:129,could:[5,12,13,18,27,32,35,36,39,44,53,58,60,66,70,71,77,79,83,89,93,101,102,105,106,117,130,132,137,138,139,140,151,154],council:4,count:83,count_from_zero:83,counter:[104,151],counterclockwis:70,coupl:[119,157],courant:[4,6,110,120,136,137,138,140],cours:[13,26,32,44,46,60,70,94,95,103,105,108,139,149],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,132,138,139,149],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,148],crash:[118,136],creat:[0,1,2,3,5,6,7,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,57,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,130,135,136,137,138,141,142,145,151,153,154,155],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:151,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,138],critic:[51,93,128],crop:[53,151],cross:28,crucial:[51,149],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,56,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,127,131,135,136,138,139,140,145,146,149,151,153],current_data:[0,3,25,44,76,77],curv:[3,44,76,130],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,132],custom_bc:96,customari:93,cut:137,cutoff:[6,138],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,139],dalcin:81,dam:[51,132],dam_break:129,damag:[6,61,81],damian:57,damiansra:96,dark:130,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,145],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,128,130,131,138,140,145,148,150,155],data_break:[39,66,151],data_fil:33,data_limit:[39,66],data_storm:145,data_typ:104,databas:[13,30,70,104,108,121,149],datadir:118,dataset:[149,151,153],date:[5,28,40,47,51,54,55,62,77,145,152],date_tim:47,datetiem:145,datetim:[47,145],datum:[47,48,131,139,153],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,145,151],dealt:[32,39],debian:105,debug:[7,41,62,72,76,93,101,106,111,136,138],debugg:77,decid:[83,99],decim:[47,59],decimc:145,decis:51,declar:[20,22,101,154],decompos:[72,128,157],decomposit:136,decor:104,decoupl:54,decreas:[44,132,149],deduc:149,deep:[5,66,139],deep_depth:139,deeper:[130,139,149],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,138,140,145],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,128,138,140,145,149,151,152,154,157],definit:[30,67,83,110,116],deform:[17,30,33,45,70,153],deg2dm:59,degener:130,degre:[30,47,51,59,70],delet:[20,28,56,58],delimit:30,delin:139,delta:[87,89,96,99,128,151,154,157],delta_i:151,delta_limit:151,delta_x:151,dem:[32,45,53,59,121,149,151,153],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,128,151],dens:146,densiti:[86,93,101,103,137,138,154],depart:[4,145],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,56,57,62,64,67,70,77,82,91,92,97,98,99,104,106,110,121,132,139,151,152,154,157],deprec:[7,30,34,54,117,121,139,149,151],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,129,131,132,139,149],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,59,60,62,63,66,67,70,72,73,76,77,78,89,92,98,104,108,110,111,119,122,123,128,130,131,135,136,137,139,145,146,149,151,153,154,157],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,92,104,108,110,128,129,139,145,149,157],design:[4,27,28,51,81,83,103,130,153],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,56,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,132,134,136,138,140,145,149,151,152],desktop:94,destin:51,detail:[4,5,10,16,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,56,57,58,61,62,66,67,70,73,77,81,86,87,88,89,92,93,94,95,96,97,99,109,110,111,114,119,121,128,130,135,136,139,141,145,149,152,153,154,157],detect:[51,62,92,100,104,152],deterimin:[139,151],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,101,106,110,114,118,119,127,130,131,135,136,137,139,151,154],determine_topo_typ:151,dev:[18,24,28,54,55,94,121,122,126],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,128,131,132,138],dict:[30,86,92,97,98,101,145,151],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,145,149,151],dicuss:30,did:[121,130,149],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125],differ:[1,3,6,7,12,15,16,18,22,28,30,31,35,36,39,44,46,48,50,53,56,59,62,64,66,67,70,71,76,79,83,84,86,88,89,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,128,131,132,133,136,137,138,139,143,144,149,151,152,153,154,157],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,151],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,128,136,137,138,140,151,154],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,138,139,140,151,154],dimensional_split:[89,117,136,138,140],dip:[30,70],dir:[55,94,155],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,128,136,137,139,151],directli:[8,19,23,32,48,56,67,70,77,79,83,84,87,91,101,104,106,121,151,155],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,44,45,47,50,51,54,55,56,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,127,128,132,133,134,135,136,137,141,143,144,147,148,149,152,154,155],directorti:108,disabl:[49,100,139],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,157],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,56,66,70,92,103,105,106,110,119,121,128,139,157],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,132,139,153],displai:[1,13,35,36,40,44,51,59,77,93,111,139],display_format:[44,60],display_landfall_tim:139,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,139,149,151],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,80,81,99,105,124],disturb:51,distutil:84,dive:105,divid:[110,136],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,149],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,142],docker:[18,25,55,56,120,121,122,123,124,125,156],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,126,135,138,155,156],dodsc:[39,66],doe:[4,5,11,16,20,27,28,39,40,48,51,53,54,56,67,73,77,80,89,91,98,101,104,110,111,114,119,123,127,128,129,132,145,151,152,154],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126],doing:[6,11,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,137,138,140,149],don:[13,27,28,54,55,77,93,94,100,111,138,152],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,58,59,62,66,67,70,76,77,79,83,87,88,104,110,114,118,119,123,127,128,130,135,137,139,148,151,152,153],donna:[4,17],donnabois:4,donor:[136,138,140],dontflag:110,dot:[40,44,51,57,58,59,62,152],doubl:[67,84,89,104,128,137],down:[13,30,93,118,145,149,151],download:[12,13,28,29,30,36,37,39,45,51,55,56,57,58,68,88,94,100,121,122,126,147,151,152,153],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[137,138],dq_src:[96,99],dqdt:99,draft:55,drag:139,drag_law:139,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,135],driver:[20,63],drop:[13,54,124,132,136],dry:[16,17,25,32,45,124,129,132],dry_point:39,dry_points_sum:39,ds824:145,dst:59,dt_check:32,dt_initi:[113,136,138,139,140],dt_max:[136,138,140],dt_max_dtopo:[113,139],dt_variabl:[136,138,140],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,132,139,149,151,153],dtopo_data:[113,139],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,139],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,149,150],dtopotools_exampl:[30,70,109],dtopotyp:[139,149],due:[17,24,30,39,47,70,111,120,121,132,152],dummi:[84,99,154],dump:[72,136],dumpgaug:117,duplic:[77,116,127],durat:[30,131],dure:[5,22,32,39,44,59,70,73,113,131,132,138,139,140,149],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:145,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,127,128,129,130,132,135,136,137,138,139,140,145,148,149,151,153,157],each_fram:44,each_gaug:44,ear:4,earli:[6,20,132],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,149,151],earth:[25,39,45,52,59,66,70,117,119,130,139],earth_radiu:139,earthquak:[25,30,45,48,109,132,139,146,149],eas:59,easi:[4,6,11,29,38,58,67,80,84,93,94,95,130,141,154],easier:[58,76,119,121,130,154],easiest:[19,28,41,73,77,79,105,110,154],easili:[3,13,28,32,51,54,67,77,84,89,100,104,105,111,124,141,145],east:[13,149],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[137,138],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,128,130,133,137,138,140,154],edgecolor:130,edit:[51,54,55,56,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,105,110,111,131,139,151],effici:[48,52,81,91,92,93,101,110,130],effort:92,efix:129,egg:[56,58],eigenvalu:5,eigenvector:[5,128,157],either:[12,16,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,92,93,99,104,106,110,111,117,118,119,121,128,130,132,139,145,149,151,154,157],elast:[13,70],element:[0,3,22,59,97,99,101,136,137,138,139],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,130,131,139,149,151,153],elif:[138,140],elimin:[8,22,66,84,106,121,139],ell:128,els:[27,28,56,58,66,101,121,130,132,140],elsewher:[5,24,39,130],emerg:4,emmanuel:139,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,136,145,151],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,103,105,108,110,118,119,121,127,129,130,138,140,145,148],end_dat:47,enddo:154,endian:92,endors:[61,81],energi:93,enforc:[130,139],eng:145,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,146,148,149],ensembl:145,ensur:[35,36,67,108],enter:[67,92,94,100],enthought:[100,102,105],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,130,151],entireti:86,entri:[51,60,83,93,104,145],entropi:129,enumer:[89,99],environ:[14,25,28,35,36,40,50,51,54,56,57,58,67,69,71,73,95,102,104,106,119,151,152],envis:16,epd:102,eprint:[137,138],epsg:51,epsilon:87,eqn:157,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,127,130,136,138,140,149,151],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,128,136,138,139,140,149,154,157],equiv:157,equival:[6,44,52,53,59,60,123,149],err:138,errest:110,erron:[30,70],error:[5,16,18,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,137,138,145,152],escap:[110,138],escienc:13,especi:[28,51,84,96],esri:[53,149],essenti:[5,53,67,99,139,149],est:138,establis:121,establish:4,estim:[5,64,110,137,139],estimat:[5,138],eta:[25,30,32,39,44,45,110,117,124,131],eta_init:132,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,128,135,136,139,145,154],etopo1:[121,130,131,149,151,153],etopo_sample_2min:151,etopotool:[121,149],euler:[60,91,99,115,117,120,122,128,154],euler_2d:[35,37,91,96],evalu:[17,27,30,64,83,89,99,151,154],even:[39,48,51,58,61,70,81,104,110,124,137,138,149,152,154],evenli:[51,93],event:[33,45,48,59,61,70,81,131,132,136],event_tim:59,eventu:[13,45,124],ever:[135,139],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,128,132,134,136,138,140,145,149,151,154],everyth:[32,55,56,57,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,132],evolv:[22,83,86,99],evolve_to_tim:[83,99],exactli:[28,33,50,52,101,130,136],exam:77,examin:[16,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,20,22,24,27,28,29,30,38,40,41,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,127,128,129,131,132,134,135,136,137,138,139,140,141,145,147,148,149,151,152,153,154],exce:[32,51,110,137],exceed:[110,121],except:[22,27,30,39,92,97,104,124,136,139,145,149],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,128,134,152],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,105,114,120,121,132,145,151,153],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,103,104,105,111,121,122,124,138,139,140,145],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,136,141],explan:28,explicit:[104,137],explicitli:[32,63,67,136,152,157],explor:[4,59,77,79],expon:64,expos:13,express:[4,30,61,81,100,130],extend:[8,16,22,39,59,66,67,89,121,130,132,139,149,151,157],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,136,147,151,157],extent:[38,39,48,58,59,64,66,67,83,89,101,113,130,139,149,151],extra:[3,51,129],extra_fil:54,extract:[51,55,92,145,151,153],extran:117,extrap:[16,96,103,136,138],extrapol:[5,7,16,22,96,103,121,136,137,138,140],extrem:[51,102],extropl:16,eye:[145,146],eye_loc:145,f2py:[56,58,84,96,104,128],f2py_flag:104,f2s:59,f49620:4,f77:[41,152],f90:[5,9,15,18,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,128,129,132,133,143,144,149,152,154],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,135],facilit:[44,60,111,117,119,124,141,145],fact:[51,92,101,105,110,132],factor:[6,51,137,139,148,151],faculti:30,fade:77,fail:[28,92,94,104,111,117,145],failur:[111,122,132],fairli:[16,48,119],fall:[131,139],fals:[0,1,2,3,5,30,39,48,49,50,51,59,66,86,89,92,98,99,101,104,118,119,124,127,129,136,137,138,139,140,145,151],famili:[89,99,138,140],familiar:80,faq:[13,25,76,105],far:[16,18,38,42,66,76,122,124],farther:66,fashion:127,faster:[123,124,151],fastest:[92,100],fault:[17,25,30,45,109,121,149,153],fault_plan:30,favor:[117,121,151],favorit:76,fbound:41,fc02:4,fcompil:152,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,139,145,149],februari:[24,120],feet:[131,153],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:151,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,131,147,149,154],fewer:[66,110,151],ff0000:[3,59],ff9999:135,ffff00:77,fflag:[28,40,62,68,71,84,104,149],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,139],fgmax_data:[32,139],fgmax_fil:139,fgmax_grid:[32,33,59,124],fgmax_interp:[18,32],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fid:33,field:[44,59,96,98,101,119,121,145,146],fig:[59,130],fig_kwarg:[30,151],fignam:[1,79],figno:[1,2,44,51,77,79,135],figsiz:[2,39,66,77,130,135],figur:[0,1,2,4,13,30,35,36,39,42,44,53,59,66,67,76,79,98,106,128,130,135,151],file1info:139,file2info:139,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,56,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,129,131,132,133,134,135,136,137,138,140,142,143,144,145,146,148,151,152,153,155],file_format:[44,92,98,145],file_prefix:[92,98],file_prefix_p:86,fileio:72,filenam:[31,51,117,151],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,132,136,145,148,151,154],fill_between:3,fill_mwr:145,fill_rad_w_other_sourc:145,fill_topo:151,fill_valu:[92,151],fill_var2:3,fill_wher:3,filpatch:[9,18,39,119,123],filter:[92,151],filter_region:151,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,56,58,62,68,70,73,76,81,88,96,101,102,104,105,106,108,121,145,152],fine:[3,18,32,33,39,54,69,73,96,110,119,130,132,136,139,149,154],finer:[3,7,32,51,110,113,114,130,136,137],finest:[3,32,39,44,121,148,151],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,130,148,149,154],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,38,39,51,54,55,56,57,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,128,129,130,132,136,138,139,145,147,149,151,157],first_test:35,fist:66,fit:[61,81],fix:[6,18,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,113,114,115,116,117,118,119,120,122,123,124,125,129,136,138,140,151],fix_links_top_level:54,fixedgrid:139,flag2refin:[5,7,22,137,138],flag2refine_tol:[5,110,137,138],flag:[7,12,13,22,25,28,29,38,40,41,45,52,56,58,68,71,84,102,104,106,117,122,138,139],flag_richardson:[5,110,118,137,138],flag_richardson_tol:[5,110,137,138],flagregion:[7,25,66,110,124,130],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,57,92],fletcher32:92,flexibl:[22,30,59,84,117,120,128,130],flood:[51,66,132],floor:[30,45,70],flow:[4,16,17,23,32,33,45,46,48,91,108,124,128,136,139,149,154],flowchart:[6,7,25],fluctuat:[97,99,157],fluid:[32,48,60,131],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,99,128,136,157],fly:25,fmt:3,fname:[39,59,130,138,139,140],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,30,32,35,36,37,39,44,46,51,53,54,55,56,57,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,127,128,130,135,136,137,139,145,147,148,149,152,154,156],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forc:[22,25,40,45,62,66,104,110,124,129,132,139,146,151,152],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:145,forestclaw:[106,117],forg:[57,91],forget:152,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,44,47,51,55,60,61,64,70,72,81,84,93,99,103,104,110,114,121,122,123,124,127,128,130,136,137,138,139,143,149,151,154,157],format:[1,3,5,13,14,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,136,139,145,146,151,153,155],format_str:44,former:[77,154],formerli:117,formul:[4,5,48,64,128,136],formula:[64,132],fort:[1,8,27,32,44,67,68,76,92,98,114,118,119,120,127,136,137,138,140,148,155],fortfil:[35,36],fortran:[6,9,11,13,14,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,117,118,119,121,122,123,128,129,134,138,139,140,145,147,148,149],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,154],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,127,131,135,145,151,152],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,103,157],fraction:[6,13,30,110,136,154,157],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,127,135,138,140,141],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,55,81,84,118,119],free:[13,51,62,70,81,85,96,100,102,105],frequenc:[60,70,99],frequent:[5,20,27,102,118],friction:[25,45,48,139,143,144],friction_depth:[64,139],friction_forc:139,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,44,45,48,51,52,53,55,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,127,128,129,131,132,133,136,137,138,139,140,143,144,145,146,147,149,152,153,154,155],frommm:87,front:[25,32,38,39,45,67,98,104,130],fset:101,fstr:67,ftrapuv:41,fuca:130,fuction:39,full:[5,6,14,55,57,58,59,77,86,93,99,103,134,149,154],fulli:[6,48,51,52,120,124,128,139,145,146],fun:104,func:[104,145],function_nam:104,fund:[25,58,91],funrol:104,further:[6,16,25,32,41,48,59,62,67,91,105,110,111],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,145,149],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,128,136,154,157],fwave:[89,99,128],g77:102,gain:92,galerkin:99,galleri:[12,35,36,37,42,43,55,75,76,88,91,105,111,116,120,141,147,154],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma:64,gap:151,garret:139,gas:6,gaug:[7,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,127,131,138],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,138],gaugeno:[44,60,138],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,127],gauss_pt:30,gaussian:[5,83,103,140],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,56,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,105,106,108,110,113,117,119,127,130,131,134,136,137,141,146,148,149,154,155],generate_2d_coordin:[39,66,151],generate_2d_topo:151,geo:[45,64],geo_data:[60,139],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,100,106,108,109,111,127,128,129,131,132,134,136,137,145,146,147,148,149,150,151,152,153,154],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:154,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,136],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,128,130,145,151,152],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,151],get_topo:151,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,56,58,71,80,82,102,134,152],gfortranbinari:100,ghamdi:4,ghost:[7,16,18,71,72,89,92,99,101,119,136,138,140,148,154,157],gica2937:30,gigabyt:149,gist:57,git:[12,13,23,24,25,26,52,55,56,58,91,100,111,123],git_statu:50,github:[12,15,22,23,24,25,26,29,52,54,56,57,58,88,96,100,107,111,116,118,119,120,126,128,129,133,143,144,152],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,58,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,130,136,139,149,151,153],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,130,131,132,139,145,149,151,154],glitch:116,global:[6,14,89,101,104,131,149,153,154],gloss:153,glu:16,gmt:47,gnu:100,gnufcompil:152,goal:6,godaddi:54,godunov:[4,89,99,136,138,140,154],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,105,112,141,149,157],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,128],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,128,130],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,145],govern:[32,139],gprint:[137,138],gpu:[25,123],gradi:[4,17,81],gradient:[120,157],gradylemoin:4,grai:145,grant:[4,81],graph:9,graphic:[23,28,52,67,76],grav:129,gravit:[64,139,154],graviti:[129,139],great:[47,88],greater:[5,32,59,64,66,100,105,110,127,136,137,139],greatest:110,greatli:[26,81,131],green:[12,59,66,70,77,111,145,151],grid1d:89,grid1info:139,grid2info:139,grid:[4,7,17,18,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,128,129,130,131,132,136,137,138,140,146,148,149,151,153,154,157],grid_files_scanf:155,grid_numb:72,grid_registr:[53,151],griddata:151,gride:146,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,128],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,155],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,142],guidelin:91,gzip:[55,124],h_l:129,h_r:129,hack:101,had:[18,44,52,53,119,120,121,122,132],hadjimichael:[4,17,81],half:[0,16,17,70,99,136,154],halfspac:70,hand:[3,5,18,19,20,64,83,111,130],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,129,132,139,145,151],hang:70,happen:[31,51,62,83,98,101,124,152],har:128,harbor:32,hard:[49,54,71,77,151],hardcopi:[1,77,79,135],harder:136,hardest:[68,105],hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,105,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,128,130,131,136,137,139,145,148,149,151,154,155,157],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,127,128,129,130,131,136,137,139,141,145,149,151,152,154],haven:[103,105],haversin:47,hazard:[4,32,45,64,131],hdf5:[91,93],hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,145,149,151],header_styl:151,heavili:84,height:[51,151],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,58,62,76,79,91,94,100,104,111,118,124,128,141,152],helzel:17,henc:[5,32,53,54,63,99,105,106,110,132],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,128,129,130,146,151,157],heterogen:154,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,128,131,132,139,153,154],higher:[3,6,32,51,89,99,100,110,124,128,130,131,132],highli:[121,132],highlight:[11,13],hilo:[131,153],hint:[16,25,45,56,76,79,80,106,139,152],histor:[48,70,153],histori:[28,55,79,105],hit:[16,67,79,93,136],hko:145,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,139,146],holland_storm_modul:117,home:[13,29,30,56,58,134],homebrew:51,homepag:[21,25],homogen:[70,99,154,157],hood:76,hope:[26,111],horizont:[51,151],host:51,hour:[13,51,59],how:[1,6,7,12,16,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,126,127,128,135,136,139,141,149,151,155],howev:[6,13,16,22,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,110,111,119,121,123,131,132,135,139,148],howto:105,hpc:24,hrd:145,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,145],html_plot:95,html_theme:54,htmlplot:88,htpp:28,http:[4,12,13,17,24,26,28,29,30,39,43,47,51,52,54,55,56,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,129,145,151],huge:[60,66,132,149],human:145,hurdat:[121,145,146],hurrican:[108,145],hurt:[12,63],hwrf:[121,139,146],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,128,136,139,154,157],hyperol:136,ian:4,ibm:100,ibtrac:[121,145],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,151,157],ideal:[55,131],ident:[39,63,89,92,94,111,151],identifi:[5,35,36,39,51,66,84,110,124,145],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,131,151],iinstal:94,ike:108,illustr:[12,25,30,32,35,51,66,67,70,109,116,117,121,123,128,130,141,151],imag:[13,35,36,39,55,57,59,66,111,121,130],imd:[145,146],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,99,103,104,111,116,119,122,124,128,129,136,151,154,157],impli:[61,81,139],implicit:[81,99],importantli:94,impos:[16,84,110,139,143,144,157],imposs:[48,136],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,136],imread:[39,66],imshow:[39,66,151],in_poli:151,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,135],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,44,48,51,53,55,56,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,98,99,100,101,103,105,106,108,110,111,113,119,120,121,122,123,124,125,128,129,130,136,138,139,141,142,145,146,148,149,151,154],inclus:130,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,129,151],incorrect:[121,122,132,145],incorrectli:118,increas:[51,59,71,130,139],increasingli:28,increment:[32,44,51,89,104,136,138,140],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,18,22,23,27,43,44,54,55,77,89,91,94,96,97,104,121,136,138,139,140],indian:145,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,57,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,128,129,136,138,139,140,149,151,154],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,145],inf:151,infer:151,infinit:136,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,137,138,145],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,56,58,63,72,77,78,79,80,83,84,89,93,94,95,97,98,104,106,118,121,122,124,126,127,128,131,134,136,137,139,145,148,149,152,153,154,155],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,131],initi:[4,5,7,12,13,18,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,98,99,101,102,104,107,110,118,121,124,128,131,136,138,139,140,145,149,151],initialize_sourc:84,inland:[39,66],inlet:130,inlin:[39,129],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,128,138,139,140,145,146,149,151,154],input_filenam:84,input_unit:30,inputfil:[104,151],ins:22,insert:[11,16,70,92,149],insid:[38,89,94,98,128,130,151],insidi:119,inspect:[19,20,51],instabl:119,instal:[12,13,18,23,25,29,35,51,54,55,79,81,82,85,90,92,103,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,134,156],install_fortran:36,install_prerequisit:[35,36],installing_more_opt:55,installing_pip:55,instanc:[3,28,51,56,70,73,79,83,84,86,89,92,93,96,130,139],instantan:99,instanti:[7,86,94,96,99,101,138,140],instati:[70,151],instead:[3,13,32,35,36,39,41,44,52,54,55,57,58,62,63,68,100,101,104,106,118,119,122,127,128,129,130,134,149,151],institut:4,instruct:[13,18,24,25,35,36,39,51,52,54,55,56,57,68,83,85,91,94,100,103,106,120,126,127,134,152],insur:[50,54,62,79,110,113,117,137,139,149],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,128,136,139,145,151],integr:[5,22,53,60,81,91,93,99,113,114,118,138,140,148,149,154],intend:[48,84,121],intens:[84,145],intent:[84,128],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,130],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,132,136,145],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,128,154,155,157],interface_funct:104,interior:[6,16,39,72,101],interleav:81,intermedi:[19,32,70,154],intermit:[44,119],intern:[6,30,44,53,59,70,119,149,151,157],interp_dz:33,interp_kwarg:145,interp_method:32,interp_unstructur:151,interpol:[5,6,16,18,30,33,34,39,44,45,53,59,67,70,77,119,130,131,132,139,145,146,151],interpret:[30,53,70,105,121,149],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,130,136,139],introduc:[5,16,19,32,33,39,77,124,130,132,157],introduct:25,introductori:[24,105],intuit:91,inund:[32,45,51,64,110,124,131,153],inundataion:[131,153],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,132,152],involv:[24,96,99,108,146],ioerror:98,ioexcept:104,iout:140,ioutarrivaltim:139,ioutsurfacemax:139,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,129,130],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,105,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,130],isn:[62,71,72,152],iso:145,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,128,139,152],item1:[0,79],item:[0,1,3,67,76,79,104,135],itemnam:[1,79],iter:[30,39,66],ith:97,its:[4,6,13,22,29,34,39,48,51,57,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,138,151,157],itself:[4,70,76,105,124,128,139,151],ixi:[38,66,128,130],jacobian:[128,157],jan:[4,55],januari:[105,112,119,126],japan:[51,59],japanes:145,javascript:141,jed:81,jet:[30,67],jma:[121,145,146],job:13,join:[24,77],journal:[4,17,52,91,141],jovyan:29,jpg:[54,67],jsanim:[113,117],jsanimation_frametool:115,juan:130,juli:[114,115,126],jump:[4,5,67,79,89,99,119,136,157],junction:[32,139],june:[120,121,122,123,126],jupyt:[25,70,73,91,105,109,117,118,124,128],just:[0,6,28,32,40,55,83,84,86,88,91,92,93,94,95,96,101,104,105,114,121,136,154],justifi:70,kappa:[103,157],kappa_i:157,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,139],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,145,151],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,128],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,135,145,151],kind:[86,88,93,123,128],kinemat:[30,45],king:[4,81],kitsap:130,klein:87,kml:[59,117,119,120,121,124,125,130],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,150],kmw6h:[4,126],kmz:[59,119],kneplei:[17,81,91],know:[18,48,58,62,70,81,108,120,124,128,131,151,152,153],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,136],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,135,145],kyle:[4,17,81,87,91,92],label:[30,49,51,53,59,117,130,149,151],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,132,149],lambda:[89,151],land:[16,39,45,46,51,54,55,59,66,78,124,132,139,151],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],langtangen:105,languag:[11,76,104,105],lapack:113,laptop:[29,91],larg:[5,6,12,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,127,130,132,136,151,153],larger:[13,20,32,51,59,70,71,72,77,89,113,119,139,149],largest:[110,131],last:[3,18,27,32,55,77,83,84,96,103,118,136,145],lat:[30,47,51,53,149,151],later:[13,39,50,51,58,79,99,127],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,130,133,139,145,151],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,130,133,136,145,154],launch:[37,56,88,94,95,100],law:[4,17,59,139,157],lax:[89,99,136,138,140,157],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:130,lead:[6,13,18,22,32,48,51,64,67,70,106,109,132,137],learn:[48,88,105],least:[4,5,6,13,18,51,59,66,67,102,110,111,118,119,136,138,149,151],least_significant_digit:92,leav:[12,13,16,44,56,58,137,151],lectur:24,led:[20,122],leer:[87,99,136,138,140],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,127,128,131,137,149,151,153,157],legaci:[23,55],legend:[120,130],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,138,140,151],lenght:136,length:[15,30,48,59,70,96,101,119,133,136,137,138,139,154],leq:[5,130],less:[39,48,51,60,64,71,99,110,111,136],let:[16,18,45,58,81,108,120,128],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,56,58,67,71,72,84,86,89,92,93,99,106,107,110,111,113,114,118,119,121,124,127,130,131,134,136,137,138,139,140,148,149,151,153,154],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,128,136,154,157],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,132,133,137,143,144,152,154],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,130],lies:[6,16,32,110,130,139],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,128,130,135,148,149,152],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,130,136,138,139,140,145,149,151,157],lin:139,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,130,135,136,138,145,149,151],linear:[4,5,17,30,32,51,70,77,83,87,99,122,128,129,130],liner:[0,30],linestyl:151,linewidth:[77,130],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,126,128,129,131,133,140,143,144,149,153],linspac:[33,67,86,103,130],linux:[13,57,69,80,102,105,111,134],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,127,130,134,136,137,138,139,140,145,146,148,151],listofgrid:121,literalinclud:54,literatur:[48,128],littl:[48,70,92,131],live:101,llapack:102,llcenter:[53,149,151],llcorner:[53,149,151],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,105,111,151,155],load_sift_unit_sourc:30,loc:[130,151],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,132,149,151,154],local_fnam:151,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,131,132,145,146,151],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32],logical_and:[39,66],logical_not:[39,66],logical_or:130,logo:[54,120],lon:[53,149],long_lat:151,longer:[20,28,44,54,59,105,119,121,124,127,128,149,153],longitud:[30,32,46,47,53,66,70,76,117,130,139,145,151],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,105,106,111,114,121,130,136,137,139,148,151,152],lookup:121,loop:[18,44,67,76,104,110,121,124,128,132,135,136,154],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,128],low:[51,66,84,151,153],lower:[3,22,30,32,33,38,53,66,72,89,94,130,132,136,138,140,149,151,153],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:157,mac:[57,71,80,102,105,111,134],machin:[13,25,57,71,73,105,111,119,134],macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,130,132,139,146,149,151,154],magic:59,magnitud:[5,30,110,121,139],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,56,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,105,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,134,135,136,137,138,139,145,146,147,149,151,152,154],mail:[96,102],main:[5,11,12,19,28,39,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,137,149,154],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122],make:[1,5,11,13,14,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,56,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,128,130,136,149,151,153,154],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:145,make_shoreline_xi:151,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,56,58,68,71,73,77,79,84,90,110,113,117,119,121,122,124,132,133,136,138,139,140,141,143,144,149,152,154],makefile_kml:117,maketopo:[122,149],man:[17,25,45,48,139,143,144],manag:[4,12,13,51,57,93,145],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,46,51,52,54,59,60,62,63,66,70,71,72,77,79,81,83,88,91,96,98,103,104,105,110,112,113,119,121,122,123,124,128,130,135,136,137,139,149,154],manifold:67,manipul:[44,151],manner:[5,39,44,51,60,66,70,76,121,132,136,143,144,149],manning_break:139,manning_coeffici:139,manual:[37,84,93,100,102,111,147],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,129,145,151,157],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,126,130],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,130,151],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,130],maskedarrai:151,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,129,133,143,144],match:[30,38,51,59,92,98,111,145,151],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,129,135,145,151,152],matric:[5,128,157],matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,128,154],max1d:[71,124],max:[0,30,32,39,67,110,114,132,138,140,145,151,157],max_buff:[44,119],max_inch:59,max_it:[39,66],max_level_deep:139,max_step:99,max_vertices_in_descript:59,max_wind_radiu:145,max_wind_radius_fil:145,max_wind_spe:145,maxgr:121,maxima:[32,71,139],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,136,137,138,140,145,146],maxlevel:[38,67,110,130,137,138,139],maxm:128,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:151,mbc:154,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,128,131,136,138,140,153],mean_latitud:49,meant:[41,89,99,145],measur:[30,44,47,70],mechan:[56,58,101,126],media:17,medium:[138,154],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,137,138],mention:[91,136,137],menu:[13,18,25,54,59,120,126,131,153],meqn:[44,72,128,154],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,135,136,154],meshgrid:[83,96,130,151],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,136,138,140,152],met:[32,61,81],metadata:[72,149,151],meteorlog:145,meter:[30,47,51,66,70,110,131,139,145,151,153],meterolog:145,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,128,135,136,137,138,140,145,148,149,151,154],metric:47,mhd:123,mhhw:131,mhw:[39,45,48,131,149,153],micro:13,mid:77,middl:118,midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,56,57,58,63,66,67,71,77,83,93,105,106,108,109,110,113,136,137,149,151,153,154],migrat:19,millimet:151,million:124,mimic:121,min:[0,145,151,157],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,130,137,151],minimum:[3,32,44,51,70,103,119,139,151],minisymposterium:24,minlevel:[38,110,130,137,138,139],minmod:[87,89,99,136,138,140],minmod_limit:87,minor:[11,18,51,54,93,113,114,115,116,117,118,119,120,121,122,124],minut:[39,47,51,54,59,131,151,153],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,145,149,151,152],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:145,mllw:153,mode:[1,13,28,104,148],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,130,131,132,139,145,146,149],modern:[100,121,128],modif:[28,40,61,67,77,81,87,139],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,56,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,130,132,133,136,138,139,140,143,144,149,151,154],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,80,83,84,87,88,92,96,97,98,101,106,111,114,115,117,120,121,122,123,124,127,130,136,137,139,145,149,150],module_nam:104,modulu:[30,103,138,154],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,18,32,48,60,64,93,129,139,149],monitor:[22,25,33,34,38,45,66,71,114,116,119],monoton:[136,139],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,56,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,128,130,131,132,134,135,136,137,138,139,141,145,147,148,149,151,152,153,154,157],moreov:70,most:[3,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,127,128,129,130,131,135,136,137,139,142,154],mostli:[3,76,124],motion:[70,149],motlei:52,movabl:30,move:[16,32,35,36,45,54,56,58,60,70,96,110,113,115,120,139,149,150],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[131,153],mthlim:[89,99],much:[13,28,32,41,51,54,72,73,76,105,110,113,117,124,130,136,139,148,151],muct:99,multi:[17,51,83,113,115,118,121,154],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,56,76,83,89,92,93,104,106,111,113,119,123,127,128,145,146],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,46,51,54,61,62,63,66,67,70,71,72,81,84,92,93,96,98,99,101,102,103,104,106,110,113,117,128,130,131,132,136,138,139,140,145,151,152,153,154,157],mwave:128,mx1d:154,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:145,my_initial_solut:86,my_riemann_solv:128,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:145,n00014:4,n12:32,n23:32,nadi:145,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,127,128,130,135,136,137,138,139,140,145,151,154,155],namespac:84,nan:[47,151],nasa:4,nation:[4,48,145],nativ:92,natur:[32,54,128,157],naux:72,navd88:149,navig:[12,29,54,141],nbconvert:124,nbtool:117,nbviewer:118,nc_param:151,ncar:4,ncei:[39,66,131,149,153],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,145,151],ndarrari:89,ndim:[22,72,79,136,137],ndip:30,nearbi:131,nearest:[39,44,151],nearfield:132,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,56,57,58,59,67,70,72,73,79,83,84,89,92,117,119,121,127,128,135,136,149,152,154],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,127,128,130,132,133,134,136,137,138,139,140,143,144,145,146,147,149,151,153,154,157],neg:[22,39,132,139,149,151],negat:[47,149],neglig:[61,71,81,139],neighbor:[4,32,39,66,110,119,132,137,138,151],neither:[51,59,61,81,119],ness:92,nest:[113,119,137,138],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,149,151],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,136,138,140,145,151,153],neumann:145,never:[32,96,101,107,110,124,130,136,138,140,152],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,135],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,135],new_plotitem:[0,3,44,51,77,135],new_userdata:[138,140],newdelhi:145,newdir:69,newer:[28,71,87,121],next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,136,137,139],nfr:4,ngdc:[39,66,131],nghost:72,ngrid:72,nhc:145,nhtmp:48,nice:[28,59,84,96,114,130],nicer:[79,105],nih:4,nnnnn:[127,136],no_data_valu:151,no_tran:89,noaa:[30,39,47,53,66,70,121,131,145,149,153],nodal:121,nodata_valu:[39,151],nodataerror:145,nodatav:149,nodatavalu:[53,149],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,136,138,140,145,157],nonconserv:157,none:[0,1,2,3,16,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,127,136,138,140,145,151],nonlinear:[4,5,17,48,87,128,136,157],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,151],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,128,129,136,137,138,140],north:[32,39,47,66,70],northernmost:149,norwegian:4,nose:[28,36,37,82,94,111,147],nosetest:[28,36,37,94,100,111,147],notat:[30,47,59,128],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,92,94,96,100,101,104,105,107,110,127,128,130,131,132,133,135,136,137,138,139,140,143,144,145,146,148,149,151,153,154],notebook:[25,30,32,39,54,66,70,73,85,91,93,109,117,118,124,128,129,130,151],notebook_html:124,noth:[15,60,101,122,133,143,144,151,154],notic:[51,61,81,103,111],nout:140,nov:[17,91],novemb:[118,119,126],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,80,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,131,135,139,141,149,156],npoint:33,nprint:[137,138],npt:32,npy:151,nrm:59,nrow:39,nrule:130,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:138,ntot:140,num_aux:[5,84,92,94,96,97,101,128,136,137,138,140,154],num_cel:[8,22,89,128,136,137,138,140],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,136,137,138,140],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,128,136,138,140,154],num_fgmax_v:[32,139],num_ghost:[84,89,92,96,97,99,101,128,136,138,140],num_output_tim:[5,83,86,93,127,136,138,140],num_proc:119,num_var:92,num_wav:[87,97,128,136,138,140],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,108,110,111,113,114,116,117,118,119,120,121,123,127,128,130,136,137,138,139,140,145,146,147,151,154],numer:[4,17,51,105,122,145],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,129,130,138,151,152],nxpoint:151,nypoint:151,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,105,113,122,127,128,136,137,138,140,145,151],obliqu:16,obscur:22,observ:[32,48,113,131,136,139,146,153],observatori:4,observerd:146,obtain:[4,6,12,18,32,44,46,48,58,59,92,93,94,110,128,132,139,141,149,157],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,145,146],ocean:[5,16,17,32,48,51,108,110,130,139,143,144,149],octob:[115,116,117,123,124,126],off:[12,13,44,48,51,59,67,79,86,93,110,137,151],offer:[40,51,111],offic:4,offici:[55,121],offset:[49,51,59,145,151],offshor:[59,64,66,130,132],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,127,128,130,131,132,135,136,139,145,149,153,154,157],okada85:[17,30,70],okada:[17,25,30,45,109,149,153],okadamap:30,olav:4,old:[1,7,18,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,128,149],older:[22,41,52,54,99,125,139],olig:[6,17],omega:83,omit:[56,58,111,119,127,139],omp_num_thread:[41,71,119,148],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,127,128,129,130,132,133,135,136,137,138,139,140,141,143,144,145,149,151,154,155],ones:[29,83,84,101,121,136,137],onli:[1,3,5,6,8,12,13,16,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,57,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,127,128,129,130,131,132,134,135,136,137,138,139,140,145,149,151,152,153,154,157],onlin:[24,105,109,121,142,149],onr:4,onshor:[32,59,64,66,130,132],onto:[28,30,51,132,151],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,130,134,153,155],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,148],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,146],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,20,22,25,28,29,30,32,35,36,40,41,47,50,53,58,62,67,68,76,77,83,84,86,88,89,90,91,92,93,95,98,99,100,103,104,107,110,111,114,117,118,119,122,124,130,135,136,138,139,140,141,145,151],orang:145,order:[4,5,6,13,16,17,29,30,32,48,53,56,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,128,130,132,135,136,137,138,140,145,149,151,152,154,157],ordinari:128,ordinarili:102,org:[4,17,43,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,151],organ:[22,23,35,36,86],orient:[70,84,105],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,127,137,138,140,151],orlean:108,oscil:[44,157],oscillatori:151,osf:[4,126],osher:99,osx:[51,80,105],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,57,58,61,62,64,66,67,68,70,71,72,76,79,80,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,128,131,134,135,136,139,141,145,149,151,153,154,155],otherwis:[5,30,54,56,58,61,66,81,93,98,99,100,101,104,110,136,151],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,56,58,59,60,61,62,67,70,77,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,128,130,138,140,145,151,152],out_path:145,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,138,140,152],outdir_p:86,outfil:151,outflow:[16,136,138,140],outgo:16,outlin:[59,67,79,124,128,135],outn:27,output:[1,5,7,8,13,14,16,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,128,135,138,140,145,146,147,148,151,154,155],output_aux_compon:[136,138,140],output_aux_onlyonc:[136,138,140],output_file_prefix:[86,93],output_filenam:84,output_format:[5,86,93,136,138,140],output_opt:86,output_q_compon:[136,138,140],output_step_interv:[136,138,140],output_styl:[72,83,86,93,127,136,138,140],output_t0:[127,136,138,140],output_tim:[93,127,136,138],output_unit:30,outputdir:67,outputfil:151,outsid:[6,16,38,59,66,124,130,132,149,151],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,128,130,132,135,138,139,148,149,154,157],overal:[10,83],overflow:[41,120],overhead:[6,71,110,148],overlai:59,overlaid:[51,59],overland:51,overlap:[110,113,114,149],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,127,154],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,128,141],owner:121,p_center:[89,103],p_function:93,p_node:89,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,57,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,145,152,155],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,131,133,135,141,143,144,153,154],pair:[13,92,111,151],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,56,71,82,88,90,91,93,96,98,100,104,110,111,119],paramet:[1,6,7,9,16,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,98,101,104,107,110,113,119,124,127,128,129,131,132,138,140,146,149,151,152,154],parameter:[108,121,130,139,145,146],parametr:146,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,56,58,59,60,68,81,84,94,100,101,103,105,109,111,123,139,154],partial:[17,73,108],particl:[25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,56,61,62,63,67,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,135,139,145,146,157],particularli:[16,27,29,32,50,51,57,70,72,114,117,121,132,149],partit:94,pascal:[30,145],pass:[16,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,128,138,145,151,154],passiv:129,password:28,past:[4,21,25,54,60,66,98,119,122,126,130,131,139],patch:[3,6,7,16,18,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,132,135,137,139,148,149,154],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,56,57,58,60,62,66,69,76,77,86,92,94,98,104,120,121,124,134,139,145,151,152],path_to_atcf:145,path_to_ibtrac:145,pathtool:67,pattern:[20,46,51,131],pcolor:[3,44,76,105,151],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcel:[39,66,124,130],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,73,91,103,136,154],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:130,peopl:[4,12,13,81,105],pep8:28,per:[13,30,44,51,59,67,71,92,137],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,18,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,127,128,134,139,147],perhap:[6,12,32,39,44,54,77,101,104,110,130],perimet:32,period:[5,6,16,32,62,83,96,110,136,138,140],perman:[67,124,125],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,139,149],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,56,73,81,83,90,91,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,157],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,128,130,149],piecewiselinear:38,pink:[39,59,77,135],pinkfig:77,pip3:55,pip:[18,25,28,51,55,57,85,91,94,100,102,106,120,121,122,123,124,125,126,134],pixel:[51,59],pkg:[55,140],place:[5,16,20,24,28,35,36,51,54,56,58,62,63,69,93,94,96,100,106,113,119,154],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,64,92,99,145],planar:[70,128,129],plane:[30,70,118,130,153],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,18,24,28,43,54,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,128,145],plot:[0,1,2,4,7,8,12,27,29,30,35,36,37,39,40,41,42,45,53,55,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,130,145,147,151],plot_box:[30,151],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:145,plot_phas:129,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,135],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,135],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,135],plotdata:[27,44,68,77,79,86,118,119,135],plotdir:[1,79,135],plotexampl:77,plotfigur:[44,77,135],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,135],plotloop:[77,79],plotstyl:[3,44,77,135],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,129],plu:[77,113,138,140,151],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,130],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,56,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,127,128,130,131,132,133,134,136,137,138,139,143,144,145,149,151,152,154],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,149],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,151],polynomi:128,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,137],portion:[6,39,51,66,84,148],posit:[32,39,51,70,73,104,139,149,151],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,56,58,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,128,130,131,132,136,137,149,153,154],post:[24,25,26,28,51,94,141],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,131],powel:139,power:[51,76,105],pprint:[137,138],practic:[28,106,108],pre:[3,13,33,55,85,92,105],preced:77,preceed:[72,154],precis:[41,59,84,89,92,128,151],predefin:77,predict:47,prefer:[59,94,96,105,134,145],prefix:[55,86,92,93,98],preliminari:[47,121,153],prepar:28,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[56,57,58],present:[6,24,59,89,98,99,104,141,154,157],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,103,120,121,139,145,146],pressure_forc:139,pressure_index:139,presum:131,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,18,28,29,44,53,55,57,63,66,67,79,83,99,108,113,118,119,120,121,127,132,136,138,140,149,151],previous:[6,22,32,66,79,117,124,132],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,145],primarili:[52,121,122],prime:111,principl:[5,151,154],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,130,136,138,140,145,152],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:152,printfig:1,printfram:[1,76],prior:[61,81,126,132,138,140,154],probabl:[13,28,51,64,66,105,106],probdata:[138,140],problem:[4,5,7,16,17,18,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,128,130,132,136,138,139,140,141,148,152],problem_data:[83,97,98,101,103,129],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,154],proceed:54,process:[25,35,36,45,51,52,56,70,83,88,89,94,100,101,104,111,119,152],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,135,139,151],product:[5,30,61,81,104,110,122],professorship:4,profil:[146,151],profit:[61,81],program:[4,46,48,63,73,105],programmat:81,progress:[24,28,99,108,117,149,151],prohibit:22,proj:138,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,137,151],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,105,151],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,128],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,133,137,138,143,144,145,154],properli:[18,20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,105,111,113,116,121,124,134,136,139,149,151,152,154],properti:[30,60,67,83,86,89,98,101,151],propos:[28,157],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,128,136,144,145,148,149,151,154],proximity_radiu:151,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,154,157],pt_chosen:66,pth:58,pts:[137,138],pts_chosen:[66,130],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,145],publicli:141,publish:[4,17,54,91],puget:[39,66,130],puget_sound_13_mhw_2014:[39,66],pull:[12,24,26,29,54,55,57,88,96,111,116,119,120,128],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,105,111,129],purpos:[32,45,48,53,61,67,72,81,89,105,109,111,127,130],push:[28,54,55],put:[1,11,16,28,29,41,54,55,56,58,59,67,83,88,96,119,134],pyclaw:[1,3,4,12,17,23,24,27,28,29,44,55,56,72,73,79,80,90,94,96,102,105,106,126,128,129,134],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:92,pyplot:[59,129,145,151],pyport:105,pyramid:51,python3:120,python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,128,129,134,139,149,151,152,155],python_io:72,pythonpath:[56,58],pyweno:[81,99],q0000:[67,136],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:154,q_i:[128,157],q_l:[97,128,129],q_out_field:44,q_r:[97,128,129],q_t:[5,96,99,103,154,157],q_x:[5,103,157],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,131,132,154],qinit_data:[39,132],qinit_modul:39,qinit_typ:[139,149],qinitdata:139,qinitfil:139,qoi:32,qopenmp:41,qquad:157,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,129,133,139],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,80,105,111,147],quicker:[13,130],quickli:[44,54,59,85,119,132,151],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:139,radial:[3,32,47,139,154],radial_dam_break:129,radian:47,radii:145,radio:59,radio_styl:59,radiu:[3,139,145,146,151],rai:151,rais:[24,30,58,92,98,100,104,145,151],rake:[30,70],ran:[36,147],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,129,130],rare:[70,119],raster:[51,53,149],rate:13,rather:[5,6,20,22,28,29,32,39,54,55,56,58,62,63,64,69,70,89,94,96,99,107,110,117,118,119,121,123,124,126,127,130,135,136,137,145,146,149,151,154,157],ratio:[6,15,22,49,67,70,87,99,133,136,137,138],raw:136,rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,28,30,32,33,35,36,44,45,48,49,53,56,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,138,139,140,145,149,151,154,155],read_:[92,98],read_arrai:92,read_atcf:145,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:145,read_head:151,read_hurdat:145,read_ibtrac:145,read_imd:145,read_jma:145,read_netcdf:[39,66,121,122,149,151],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:145,readabl:[145,146],reader:155,readi:[83,84,86,100],readlin:130,readm:[54,55,124,128,134,154],real:[48,55,64,104,128,153],realist:51,realiti:48,realli:[6,111,154],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,136],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,128,153],recip:57,recogn:[46,53,149],recomil:32,recommend:[4,30,32,35,36,54,55,56,58,71,76,85,89,94,95,99,100,102,103,110,121,134,136,138,139,140,155],recompil:[28,40,41,62,71,104,124,154],recomput:[79,83,114,123],reconstruct:[91,99,145],record:[32,44,60,101,145,153],recov:[28,33],recreat:[28,40,62,124],rect:[30,130],rectangl:[6,7,25,30,66,70,110,124,151],rectangular:[6,7,16,17,30,32,38,39,45,46,59,66,89,110,121,124,137,139,149],recurs:[54,69,113],red:[2,3,28,44,59,77,111,135,145],redhat:105,redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,39,51,118,120,157],redund:145,refactor:[113,114,115,117,119,120,122],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,127,128,130,139,145,149,151,153,154],referenc:[51,126,131,149],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,130,132,135,136,137,138,148,149,154],refinement_data:139,refinement_ratios_i:[8,137,138],refinement_ratios_t:[137,138,139],refinement_ratios_x:[137,138],refinementdata:116,reflect:[4,5,16,28,110,121,136,138,140],refresh:[13,44],regard:[4,38,118,145],regardless:[13,39,66,110,136,139],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,131,132,137,138,149,151],region_domain:38,region_tool:[38,39,66,124,125,130],region_trapezoid:38,regiondata:[38,110,138],regions2kml:59,regist:58,registr:[25,45,121,149,151],regress:[22,25,28,50,91,94,119,120,147],regression_test:[36,147],regrid:[5,10,110,113,114,119,122,123,137,138,148],regrid_buffer_width:[110,137,138],regrid_interv:[110,137,138],regular:[32,151],reiniti:[32,119],reject:[93,99,136],rel:[13,20,30,40,46,48,51,70,71,77,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,131,137,139,141,149,153],relat:[3,7,18,22,24,54,73,97,108,120,124,131],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,145],reli:[73,84,95,105,119],relief:[131,153],reload:151,reltol:104,remain:[51,58,96,104,106,113,143,144,145],remak:54,rememb:[15,27,71,77,94,133,143,144],remot:[13,51,55,121,151,153],remote_directori:151,remote_topo_url:[149,151],remov:[1,3,20,29,40,52,58,59,62,68,79,94,106,113,116,117,132,151,152],renam:[20,22,35,36,62,96,99],render:[12,22,51,59,155],reorder:[20,22],reorgan:[22,84,112],repack:55,repeat:[39,66,79,127],repeatedli:[3,94,100],replac:[6,13,29,38,44,48,52,54,55,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,127,128,132,151,152],replace_no_data_valu:151,replace_valu:151,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,134,136,138],repositori:[22,24,25,26,29,32,36,37,42,45,52,56,57,58,62,63,91,99,106,108,109,111,116,119,142],repres:[30,83,89,92,96,97,99,101,151,157],represent:[53,89,92,98,104,151],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,128,139,145,151],requir:[3,4,16,20,22,25,27,30,32,35,36,40,45,47,48,55,56,58,66,67,70,73,76,79,80,83,84,89,91,92,95,96,99,100,101,103,104,110,111,113,114,117,119,122,124,128,129,130,135,136,137,138,139,140,145,146,149,152,155,157],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,56,58,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,30,32,39,44,70,89,99,103,104,113,117,121,122,128,131,139,149,151,153,154],resolution_limit:151,resolv:[4,32,51,54,108,121,132],resourc:[17,24,28,46,105],resp:[20,30],respecitv:30,respect:[30,32,51,59,91,92,97,151],respons:[13,48,83,98],rest:[5,22,79,108,121,131,143,144,149,151],restart:[13,25,44,79,91,118,119,120,121,123,136,138,140],restart_fil:[127,136,138,140],restor:6,restrict:[38,51,121,130,139,149],restructur:[11,54],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,35,36,37,42,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,132,136,137,138,139,140,147,149,151,153],retain:[61,81,92],retak:[136,138,140],retir:54,retriev:[13,47,79,84,99,151,153],return_topo:151,return_xarrai:151,reunion:145,reutil:84,reval:129,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,103,138],rhou:67,rhov:67,richardson:[5,7,22,137,138],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,56,58,63,73,81,83,89,90,99,100,101,103,106,134,136,138,140,143,144,157],riemann_aug_jcp:120,riemann_book:129,riemann_interact:118,riemann_solut:129,riemann_solv:99,riemann_tool:[117,129],right:[5,32,61,64,70,81,89,94,96,97,101,103,127,128,130,157],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,131,132],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:145,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,129,151],robustli:122,rock:70,roe:[87,128],roman:57,root:[29,56,58,92,93,98],rossby_wav:129,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,130,148],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,105,110,113,114,117,119,121,122,124,128,132,136,138,140,145,151,152,154,155,157],row:[30,32,53,87,110,149,151],rp1:[128,157],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:128,rp1_shallow_bathymetry_fwav:129,rp1_shallow_roe_trac:129,rp1_shallow_roe_with_efix:129,rp_:97,rp_sourc:96,rpn2:[5,128],rpn2_geoclaw:129,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:128,rpn2_shallow_bathymetry_fwav:129,rpn2_shallow_roe_with_efix:129,rpn2_shallow_spher:129,rpn2_sw_aug:129,rpn2_vc_advect:115,rprint:[137,138],rpt2_geoclaw:[18,129],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:128,rpt2_shallow_roe_with_efix:129,rpt2_shallow_spher:129,rr2:130,rr_admiralti:130,rr_name:130,rrzigzag:130,rsmc:145,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,130],ruledrectangle_admiraltyinlet:130,ruledrectangle_covering_selected_point:[66,130],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,18,20,22,24,25,28,32,33,39,40,42,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,127,128,138,139,140,145,147,148,151,154],run_app_from_main:104,run_data:86,run_exampl:151,run_seri:104,runclaw:[14,50,114,123,125,128],rundata:[5,22,32,38,39,44,59,60,110,113,124,127,132,136,137,138,139,140],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,147],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:130,s_2:130,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,127,128,130,136,137,138,139,143,149,151,154],sampl:[7,8,14,17,25,29,32,41,45,51,70,106,111,127,130,136,137,149,151,154],san:57,sanromd:57,santiago:51,satisfi:[32,39,66,99,110,130,157],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,127,146,151],savecod:86,savefig:59,scalabl:[17,91],scalar:[27,30,39,93,101,128,132,136,157],scale:[4,30,49,51,67,73,91,92,113,119,121,139],scan:41,scatter:[3,22,67],scenario:[48,131],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,91,94,105],scipi:[13,84,105,145,151],scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,138,140],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,57,62,67,73,76,81,84,88,90,91,93,94,99,104,105,106,111,121,125,128,135,139,140,151],scriptstyl:130,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,131,139,149,151,153],sea_cmap:39,sea_cmap_dri:39,sea_level:[32,39,48,59,124,132,139,149,151],seab:64,seafloor:[30,48,70,132,153],sealevel:[25,45,139],search:[1,13,14,58,76,91,104,106,119,121,130],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,127,136,139,145,147,148,151,154,157],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,111,127,136,139,151],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,135,136,137,138,139,141,142,143,144,145,147,148,149,151,152,153,154,155,156,157],seem:[101,106,124,135],seen:[12,22,32,35,36,37,48,71,96,136,141],segement:151,segment:130,segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,126,133,136,139,143,144,153],select_by_flood:[39,66],self:[30,33,99,151],semi:99,send:[13,24,96,128],sens:[27,51,60,121,157],sensit:[48,64],sent:[93,101],separ:[1,28,32,51,54,57,59,63,91,99,130,151],seper:104,sept:55,septemb:[18,125,126],sequenc:[20,22,63,66,94,100,103,104,111,113,120,128,154],sequenti:32,seri:145,serial:[94,98,104,148],serv:29,server:[13,29,39,51,54,55,66,121,149,153],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,22,25,27,28,30,32,33,35,36,38,39,40,41,42,44,45,47,48,49,50,51,54,55,56,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,127,128,129,130,133,135,136,137,138,139,140,141,145,146,149,151,153,154,157],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,132],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,151],setaux:[20,22,63,84,113,114,128,136,138,140],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,19,20,22,25,42,44,68,75,76,95,96,104,119,152,155],setplot_fil:51,setplot_kml:51,setprob:[39,63,138,140,154],setrun:[5,6,7,8,14,16,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,107,108,110,113,117,118,119,122,124,127,128,131,132,145,149,152,154],setrun_setgeo:139,setup:[37,55,83,84,88,91,94,96,99,100,101,109,134,152],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,18,20,22,23,24,29,30,35,36,40,44,46,48,51,55,56,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,130,135,139,147,149,151,154],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,128,132,133,139,143,144,149,154],shallow_1d:129,shallow_1d_pi:129,shallow_2d:129,shallow_bathymetry_fwave_1d:129,shallow_bathymetry_fwave_2d:129,shallow_fwave_1d:129,shallow_hll_1d:129,shallow_roe_1d:129,shallow_roe_tracer_1d:129,shallow_roe_with_efix_1d:129,shallow_roe_with_efix_2d:129,shallow_spher:[84,111,129],shallow_sphere_2d:129,shallow_trac:129,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,130,151],shapshot:13,share:[25,26,51,56,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,128],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,56,57,58,71,77,79,94,100,103,105,106,119,134],shg:67,shift:[5,30,48,53],ship:32,shoal:130,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,132,139],shorelin:[39,51,151],shoreline_xi:151,shorter:[3,110,151],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,92,93,94,96,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,127,128,129,131,132,134,135,136,137,138,139,140,141,145,147,149,151,152,154,156,157],shouldn:88,show:[0,2,3,9,10,12,14,28,30,35,36,39,44,51,54,55,59,62,66,67,79,89,103,106,111,117,130,151,152,154],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,130,151,154],showpatchbord:67,shrink:151,shu:99,shuffl:92,siam:[17,24,25,91,128],sid:145,side:[6,16,18,32,51,54,64,70,92,111,128,157],sidebar:[51,54],siesmic:132,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,18,24,77,145],signatur:[3,84,87,89,90,92,97,145],signific:[64,126,131,151],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:129,silo:155,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,139,145,146,147,149],similarli:[40,52,88,94,96,130,148],simpl:[7,29,35,36,38,45,55,70,84,91,96,99,104,109,111,151],simplest:[69,103],simpli:[5,13,35,36,37,39,44,51,53,56,57,62,63,66,83,85,86,88,93,94,100,111,128,130,141,145,151,154,155],simplifi:[70,76,77,92,111,120,121,154],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,130,132,139,145],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,105,110,111,113,117,118,119,120,122,123,124,125,126,127,128,130,131,136,137,139,149,152,153],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,59,60,62,67,70,71,72,83,89,92,93,98,104,111,116,117,119,126,128,132,136,137,138,139,149,151,153,154],single_storm:145,sisc:[17,91],sit:13,site:[28,51,56,58,106],situat:[51,66,67],size:[20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,138,140,149,151],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:124,skiprow:30,slack:24,slice:[3,67,128],slide:[24,105],slider:[51,59],slightli:[16,18,39,53,119,120,130],slip:[25,30,45,109,149,153],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[18,30,99],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,127,136,138,139,149,151,153],smaller:[13,51,64,73,89,93,113,132,136,138,139,140,151],smallest:[110,130],smear:59,smooth:[30,99,110,154],smooth_data:151,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,141,149],sol:83,sole:128,solid:[3,16,51,70,96,135,136,138,140],solitari:17,solut:[1,3,4,5,16,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,99,101,102,103,110,111,117,118,122,127,128,135,136,137,138,140,147,154,157],solv:[4,5,8,16,17,20,26,35,36,48,58,60,82,84,86,89,91,96,97,100,122,128,129,136,149,154,157],solver:[4,5,6,20,22,23,25,28,45,56,58,63,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,136,138,140,143,144,157],solver_nam:128,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,56,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,135,136,137,138,139,140,141,145,146,148,149,151,154],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,149,152,154],sometim:[58,62,66,77,83,93,121,131,132,146,153],somewhat:[71,76,110,111,119,136],somewher:[68,117],sonel:153,soon:99,sorin:4,sort:[13,39,56,121,135,152],sound:[39,66,83,103,130],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,56,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,129,131,136,138,139,140,142,143,144,145,149],source_list:104,source_split:[89,99,136,138,140,154],south:[32,149],space:[5,6,7,16,17,30,32,33,44,51,53,70,89,93,96,110,117,127,130,136,137,138,139,140,149,151,154],spacial:[132,139],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,128,131,138,140,157],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:151,special:[4,7,16,45,46,51,61,73,81,105,110,130,151],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,98,104,108,119,120,121,124,135,136,137,138,140,146,149],specifi:[0,1,2,3,4,5,6,7,15,16,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,127,128,130,131,132,133,138,140,141,143,144,145,146,148,149,151,152,153,155,157],speed:[32,83,87,97,103,119,124,128,129,136,139,145,146,151,154,157],speed_toler:139,spell:77,spend:118,spent:148,sphere:[47,84,114,129,139],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,136,138,140,148,154,157],spot:77,sprint:[137,138],spuriou:[16,32,111],sqrt:[3,32,64,83,96,103,138],src1:[63,144,154,157],src1d:144,src2:[84,144,154],src3:[144,154],src:[5,6,11,14,15,16,18,19,20,28,30,32,33,39,40,41,47,50,52,55,56,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,128,132,133,136,138,140,143,151,152,157],src_split:[136,138,140],srcn:[136,154],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,136],stabl:[80,89],stack:[71,117,130],staff:123,stage:[99,131,132,149,151],stai:[26,32],stand:[4,18],standard:[6,16,30,32,51,53,67,72,84,87,99,105,106,110,111,138,139,140,141,149,154,157],start:[1,2,4,5,6,7,9,13,14,18,24,27,28,29,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,80,83,94,98,99,105,106,110,111,118,121,127,128,130,132,139,145,147,149,154],start_dat:145,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,128,129,130,136,149,157],statement:[35,36,56,58,67,72,105,106,119,138],station:[47,131,153],stationari:[60,149],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,149],steep:[66,157],steepli:132,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,19,28,32,35,36,37,44,51,54,55,60,67,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,127,128,134,136,137,138,139,140,149,157],step_hyperbol:99,step_index:99,step_interv:138,step_sourc:[89,96,99],stepgrid:148,stepgrid_dimsplit:117,steps_max:[136,138,140],stiff:136,still:[1,5,7,8,13,16,22,24,26,32,34,39,51,52,56,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,127,128,139,145],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,138,140,151],storag:118,store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,135,137,139,145,148,149,151],storm:[12,17,24,25,45,117,120,121,122,123,125],storm_atcf:145,storm_fil:[139,145],storm_ibtrac:145,storm_modul:117,storm_nam:145,storm_radiu:145,storm_radius_fil:145,storm_specif:139,storm_specification_typ:139,storm_targ:145,str:[0,1,3,30,59,92,136,137,145,151],strait:130,strang:[89,99,136,138,140,154],strategi:6,stream:77,stress:[83,93],stretch:[66,151],strict:[61,81],stride:[22,151],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,136,139,145,151],strip:[59,130,151],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,130,135,151],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121],sub:[30,111,151],subclass:30,subdirectori:[5,12,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,135,139,141,147,151],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,153],subject:[51,66,110,137,139],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,130],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,128,136,137,148,154,157],subsampl:[53,149,153],subsequ:[3,10,67],subset:[30,32,39,66,121,130,149,151,153],subsid:[124,132],substanti:[28,54,81,117,123],substitut:[61,81],subsurfac:149,subtleti:66,succeed:99,succesfulli:84,success:[67,98,151,154],successfulli:[62,98],suffici:[13,16,20,70,71,108,113,139],suffix:[62,151],suggest:[4,24,29,47,53,54,58,79,80,105,126,128,139,156],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,128,131,145,151],sum:[39,44,70,93,101,148],sum_:157,sum_p:157,summar:[3,28,31,56,110,112,154],summari:[24,25,55,121,136,137,138,139],superbe:[87,136,138,140],superbee_limit:87,superclass:99,supercomput:[91,93,94],superpack:105,superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,141],supplementari:111,suppli:[110,145,154,157],support:[4,8,13,22,38,41,48,51,58,70,81,83,84,89,92,93,95,99,110,117,119,120,121,122,128,130,136,145,146,149,152,155],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,136,137],sure:[1,20,28,40,54,55,67,73,83,92,94,96,98,102,104,131,151,152,153],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,130,131,139,149],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,145],surge_data:139,surround:[110,151],surviv:81,sw_aug_2d:129,swag:24,swap:151,swaphead:151,sweep:[8,128],symbol:[3,67,106],symmetr:[3,47,154],symmetri:16,syntax:11,sys:[39,66,86,138,140],system:[4,16,17,23,36,37,51,52,56,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,128,136,138,140,147,154,157],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,126],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,107,133,137,138,143,144],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,132,136,137,138,139,151,154,157],take_one_step:99,taken:[6,32,66,70,93,99,110,136,154],tall:0,tan:77,tank:[16,48],tar:[13,56,59,123,126],tarbal:[55,152],tarfil:[18,56,58,120,121,122,123,124,125],target:[5,56,58,77,84,96,124],task:76,tchknnnnn:127,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,145,146],td9635:145,td9636:145,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,129,136,138,139,140,143,144],termin:[57,85,134,136,137],terrain:64,terrel:4,test:[18,22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,104,105,110,114,118,119,120,121,124,128,140,145,148,149,151],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,149],test_shallow_spher:111,test_topotool:[114,151],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,127,136,138,140],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,18,20,22,28,29,30,32,39,44,51,54,55,56,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,105,106,110,111,113,116,117,118,119,120,121,123,124,126,127,130,131,132,135,136,137,139,145,146,148,149,151,154,157],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,96,99,104,110,111,119,132,135,139,145,149,151,154],them:[5,13,18,22,28,29,30,32,44,51,54,56,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,130,142,145,151,154],theori:[61,81,157],therefor:[84,94,121,149],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,145,146,147,148,149,151,152,153,154,155,156,157],thing:[0,13,16,22,28,29,39,48,54,59,79,88,105,110,111,120,125,127],think:[58,64,66],third:[16,32,53,87,148,151],thn:136,thoroughli:92,those:[4,6,10,12,18,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,127,141,147,151,154],though:[3,39,73,145,149],thought:[18,131],thousand:[4,73],thread:[41,71,110,124,148],threat:4,thredd:[39,66,149,153],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,130,136,139,149,151,154],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,145],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,131],tide:[44,45,47,121,131,151],tidesandcurr:47,tier:13,tild:157,time:[0,1,5,6,7,10,14,16,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,127,128,130,132,134,135,138,140,145,149,152,153,157],time_files_scanf:155,time_integr:99,time_offset:145,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,136,138,140,145],timezon:59,timing_plot:123,tip:[24,45,56,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,130,151],title_with_t:[0,77],todo:[16,128,145,151,157],togeth:[5,16,28,29,30,54,70,110],toggl:138,token:29,tokyo:145,toler:[5,32,104,110,111,119,137,138,139],tolsp:110,too:[6,47,51,54,55,118,130,138,140],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,139,141,149,151,153,155],toolkit:[94,155],top:[0,1,3,11,23,29,30,51,54,55,56,58,70,77,96,97,106,111,127,134],topgraphi:151,topic:67,topo1:149,topo1writ:151,topo2kml:59,topo2kmz:59,topo2writ:151,topo3writ:151,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,131,139,149,151],topo_data:139,topo_fgmax_mask:66,topo_fil:151,topo_file_nam:59,topo_fnam:151,topo_func:151,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,149,151],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,139,149,151],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,130,131,132,143,144,150],topograpi:149,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,149,150],topotools_exampl:[109,151],topotyp:[139,149],topotype1:151,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,136,137,138,140,148],total_energi:93,total_step:[136,138,140],touch:66,tout:140,toward:[4,30],tprint:[137,138],trace:93,traceback:77,tracer:129,track:[24,25,28,32,33,45,51,54,58,71,83,91,104,111,113,122,124,129,139,145],track_color:145,tracker:28,tradeoff:110,tradit:[86,92],traffic:[128,154],trail:[57,58,59],tran:17,tranpsort:136,trans_cor:89,trans_inc:89,transect:[32,139],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:136,transon:119,transpar:[51,59],transport:[136,138,140],transpos:5,transvers:[8,89,119,128,129,136,154,157],transverse_wav:[89,136,138,140],trap:41,trapezoid:38,travel:137,travi:22,tree:[52,58,96,134],tri:145,triangl:70,triangular:[30,45,121],trickeri:55,trigger:[92,139],troubl:[35,36,76,91],troubleshoot:[25,56,91],truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,130,131,132,139,146,149],tt3:[70,151],tulan:24,tune:26,tupl:[3,30,47,59,70,77,89,93,151],turbul:[48,99],turn:[44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,157],twice:[51,136],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,127,128,130,133,134,138,139,149,151,154,157],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,127,145],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,105,130,137,138,139,145,146,149,151,157],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,137,138,148,149,152,153,154,157],typo:122,u_l:129,u_r:129,u_t:103,u_x:103,ubuntu:[13,57,105],ucar:[68,92],ucsb:[30,70,153],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,56,61,63,76,81,89,111,119,121,126],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,128],understood:48,underwat:[45,51],undesir:127,undivid:110,unequ:130,unexpect:[47,51,59,62,145],unidata:[68,92],uniform:[30,32,66,70,73,84,121,149],uniformli:149,unind:[59,145],uninstal:[55,58,106],union:[130,149],uniqu:[1,72,118,145],unit:[30,46,47,52,70,89,119,145],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69,105],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,105,131,136,151],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:145,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,136,138,140],unstabl:118,unstructur:151,unsuccess:98,unsur:136,untar:57,unterweg:81,until:[13,32,60,66,132],unus:[2,92],unzip:51,upbnd:[137,138],updat:[6,12,13,22,23,25,32,49,52,56,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,128,137,138,140,142,145,148,154],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,132],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,130,136,138,140,149,151],upper_bound_limit:87,upper_glob:89,uprint:[137,138],upstream:55,upstrik:[30,70],upward:48,upwind:136,url:[4,12,17,51,55,121,122,149,151],usa:145,usa_ag:145,usag:[0,1,2,3,13,45,51,58,92,121,145,151],use:[3,4,5,12,13,14,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,128,129,130,131,134,136,137,138,139,140,145,149,151,152,153,154,155,156,157],use_adjoint:5,use_for_kml:51,use_fwav:[128,136,138,140],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,127,128,130,131,132,135,136,137,138,139,140,143,145,148,149,151,154,155,157],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,58,59,66,71,72,78,81,84,91,93,105,106,110,111,121,124,128,130,136,137,139,149,151,152,157],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,57,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,128,136,138,139,140,142,151,157],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,128,129,132,139,148,151,157],usg:[4,30,153],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,99,101,102,103,105,106,110,111,117,120,121,123,124,126,128,130,132,134,136,138,139,144,145,148,149,151,152,153,155,157],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,128,136,137,138,139,140,152,154],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,135,150,151,152],uwamath:13,valid:[3,48,70,86,93,98,101,119,139,145,146,151],valout:[68,72,121,124,148],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,127,128,130,131,132,136,137,138,139,140,145,146,149,151,152,154,157],valueerror:[30,145,151],valuemax:32,van:[87,99,136,138,140],van_leer_klein_sharpening_limit:87,vancouv:130,vanish:5,vanleer:[83,99,136,138,140],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,128,129,131,133,157],variabl:[0,3,5,13,14,22,25,27,28,30,32,35,36,40,44,45,50,51,54,56,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,127,128,136,137,138,140,145,149,151,152,154],variable_dt_refinement_ratio:[137,139],variable_eta_init:132,variant:[20,56,104,111],varieti:[44,86,105],variou:[12,20,22,30,38,48,54,67,70,77,79,89,103,105,106,110,119,128,135,139,145],vastli:131,vector:[5,22,83,87,93,101,121,128,129],veloc:[16,32,47,60,67,79,96,103,119,131,136,137,138,139,140,154],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,130,136,138,140,145,151],verbosity_regrid:[125,137,138],veri:[3,5,16,22,48,51,55,58,59,70,77,81,84,92,93,94,95,96,99,111,114,118,130,132,136,146,149],verifi:[47,104,111,153],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,76,77,79,80,84,87,91,92,94,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,128,129,130,132,133,134,136,137,138,139,140,143,144,145,149,151,154,157],versu:151,vertic:[30,38,48,51,59,66,130,131,139,151,153],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,56,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,128,130,134,141,143,144,149,151,154],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,141,142],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,151],virtual:[4,13,25,27,101,105],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,57,58,62,66,67,73,77,78,79,80,91,95,100,106,134,135,141],visibl:[12,13,51,109,141],visit:[22,25,76,126],visual:[23,24,28,35,36,44,45,58,67,72,73,76,91,95,96,106,117,124,155],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,130,137,148,149,154],vrt:51,vstack:130,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,126,128,130,135,136,142,146,149,154,156,157],wait:13,wall:[16,41,96,103,118,121,123,136,138,140,148],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,56,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,126,128,129,130,135,138,139,142,145,149,151,152],warm:87,warn:[24,28,92,93,99,136,152],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,130,151],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,128,130,131,132,139,149,151,153,154],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,129,130,131,136,137,138,139,140,154],wave_toler:[110,139],wavelength:48,web:[23,25,28,35,36,51,54,55,121,141,151],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,131],webserv:13,websit:[16,51,54,141,151],weight:51,welcom:[24,81],well:[4,6,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,129,132,136,137,143,144,145,154,157],wellington:145,wendroff:[89,99,136,138,140,157],weno:[73,91,99],weno_ord:99,went:[58,129],were:[4,6,14,18,20,32,44,54,60,63,67,68,84,110,113,119,122,130,132,149],weren:125,west:149,western:151,wet:[32,39,45,66,130],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,56,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,130,131,135,136,138,139,140,141,145,149,151,153,154],whatev:[29,68,83,98,128],when:[5,14,15,16,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,56,58,60,64,66,67,70,71,72,73,76,77,79,83,90,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,128,130,131,132,133,135,136,137,138,139,140,141,145,149,151,152,153,154,155,157],whenc:93,whenev:[28,118,154],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,56,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,127,129,130,131,132,135,136,138,139,140,145,148,149,151,154,157],wherea:[44,51,76,94],wherev:[29,152],whether:[3,6,13,16,22,47,53,60,61,62,67,81,89,92,93,98,99,110,111,119,128,130,136,137,139,151],which:[0,1,3,4,5,6,7,11,12,13,14,16,20,22,25,28,29,30,32,33,35,36,37,38,39,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,127,128,129,130,131,132,136,137,138,139,145,146,149,151,153,154,156,157],whichclaw:152,whidbei:[39,66,130],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,58],whole:[28,51,93,94],whose:[3,77,84,96,97,132,136,137,151],wide:[58,105,106,129],wider:77,width:[30,51,59,70,72,89,96,101,110,130,138,140],wiki:100,wikipedia:53,wind:[121,139,145,146,151],wind_forc:139,wind_index:139,wind_refin:139,wind_spe:145,window:[13,30,67,79,105,134],wip:18,wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,56,58,67,75,76,91,96,99,100,102,106,108,110,119,133,141,143,144,152],within:[6,16,28,54,56,58,66,73,77,95,104,106,110,128,130,135,141,151],without:[16,22,40,44,48,57,59,61,62,63,66,67,77,79,80,81,87,92,93,104,106,111,130,138,140,145,152,154],wkt:51,wmo:145,wmo_:145,wmo_ag:145,won:[12,13,66,84,151],woodward:120,word:[93,121,145],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,128,135,136,137,139,141,146,149,152,156],workflow:[108,141,145],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,145],worst:131,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,56,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,130,131,132,135,136,139,145,149,154],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,145],wrapper:151,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,138,140,145,149,151],write_:92,write_arrai:92,write_atcf:145,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:145,write_hurdat:145,write_imd:145,write_jma:145,write_p:[92,98],write_tcvit:145,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,92,96,105,119,128,136,137,138,139,140,145,151,154],wrong:[58,63,67,93,106],www:[4,13,17,30,39,43,45,54,60,61,66,68,81,84,89,92,94,120,122,145,151],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,130],x_2:[5,130],x_c:130,x_cell:59,x_center:130,x_edg:[59,130],x_i:[128,154,157],x_inch:59,x_mask:151,xarr:89,xarrai:151,xarray_d:151,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[137,138],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,149],xllcorner:[53,149],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,138,140,149,151,154],xlowerg:84,xmax:0,xmin:0,xpoint:139,xrang:96,xtick:[39,49],xupper:[0,22,138,140,151],xxdiff:111,xxx:149,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:130,y_cell:59,y_center:130,y_edg:[59,130],y_inch:59,year:[4,17,22,51,59,91,112,122,145],yellow:[59,77,145],yellow_red_blu:77,yes:67,yet:[1,13,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,128,136,138,156],yianni:[4,17,81],yield:3,yleft:[137,138],ylimit:[0,44,51,124,135],yllcenter:[53,121,149],yllcorner:[53,149],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,138,149,151],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,127,128,129,130,131,132,133,134,135,138,139,140,141,142,143,144,145,147,149,152,153,154,156],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,128,133,134,143,144,149,152,154],yourself:[41,44,57],youtub:[24,108,124],ypoint:139,yupper:[22,138,151],z_allow_wet:39,z_dry:39,z_format:[39,66,151],zdry:[39,66],zenodo:[4,57,124,125,126],zero:[3,16,18,30,32,39,41,59,67,83,96,101,103,130,131],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,137,138],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:151},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.7.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sealevel","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":132,"catch":28,"class":[83,86,145],"default":[15,107,132,133,143,144],"final":55,"function":[14,47,59,65,66,79,93,99,157],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,AWS:57,Adding:[28,51,88,96,128],For:6,Going:90,One:[128,129,157],The:[51,65,66,67,103],Use:102,Using:[5,13,25,38,52,57,58,63,68,71,93,96,99,128,135,154],about:[4,81],access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,57,137,139],adjoint:5,adjust:132,advect:97,after:127,afterfram:67,algorithm:[6,17,66,73,157],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,130,137,139],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,137,138,154],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:139,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,130],author:4,auto:[30,33,47,59,151],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,154],background:77,backward:[18,121,122,123,124,125],base:62,basic:[51,82,95],bathymetri:153,befor:154,behavior:132,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,154,157],bounding_box:130,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:153,burger:97,candid:55,capac:157,cautionari:48,cell:[6,39,130],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125],chardiff:111,check:[28,111],checkpoint:127,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,136,140,147],claw:[74,134],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,129,140,156],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,58,74,111,152,154],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,152],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125],compil:[41,57,62,68,102,142,152],compon:[23,77],comput:[73,127],conda:57,condit:[6,16,96,103,154,157],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,105,111,130],continent:130,continu:111,contourf:77,contribut:[26,28,129],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:130,coordin:[49,51],copi:69,correctli:94,cover:130,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,128],dart:153,data:[33,51,72,135,139,146,149,151,152,153,154],debug:[77,137],defin:[16,130],deform:132,dem:[39,66],demonstr:129,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:135,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,129,157],dimension:128,directli:13,directori:[58,62,69,77],displac:149,doc:54,docker:[29,57],dockerfil:[29,55],docstr:[30,33,47,59,151],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,142,151],doe:57,doing:55,domain:[89,103],done:154,download:149,doxygen:9,drop:105,dry:[39,66],dtopo:150,dtopotool:30,duplic:62,each:[28,154],earth:51,earthquak:[70,153],easi:106,ec2:13,elev:[49,66,132],environ:[41,134],equat:[97,103,129],error:[28,102],eta:132,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,130],exe:152,exist:69,experi:58,extra:54,extrapol:110,f2py:152,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,127,130,139,149,154],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,139],flag2refin:110,flag:[5,6,62,66,110,130,137],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,149],formul:157,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,152,154],found:67,frame:93,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,130,151],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[54,67],gaug:[44,51,60,93,153],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,139,151],geo:139,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,130,133,139,143,144],geometri:89,geophys:25,get:[25,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:157,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,139],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:157,hint:[48,77,105],hll:129,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:132,initi:[6,39,66,96,103,132,154],input:[22,32,92,136,137],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,105,106,147,152],instanc:[13,57],instanti:130,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88,141],issu:28,item:77,jupyt:[12,29,37],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:[13,57],layer:129,level:[28,132],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,152],link:21,load:51,local:142,locat:44,log:[13,93],longitud:[49,51],machin:[29,156],make:[77,94,141,152],make_kml:130,makefil:[40,62,63,96,127],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:130,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:139,mesh:[6,25],method:[0,1,2,3,130,157],mhw:66,migrat:25,miss:129,model:[48,70,108,109,153],modif:39,modifi:[28,63,127],modul:[30,33,47,59,91,104,105,138,140,151],monitor:[32,139],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,149],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],notebook:[12,29,37,105,141],number:55,numpi:100,object:[89,135],obtain:100,okada:70,old:8,older:25,onli:[58,66],openmp:71,oper:80,option:[51,56,57,79,94,96],order:102,other:[17,18,23,24,29,32,54,56,77,120,121,122,123,124,125,126,130,132],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,127,136,137,139,152],overlai:51,overview:[25,135],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[57,73,89,94,95,101],paramet:[22,44,77,79,103,136,137,139],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:[57,94],photo:74,pip:[56,58,80,152],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,135,141,152,155],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:128,polygon:130,port:84,post:76,potenti:129,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:137,printfram:79,problem:[8,84,96,103,154],procedur:32,process:[32,57,76],processor:41,produc:79,propag:157,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,57,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,147],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,150],pythonpath:[106,134],q0002:72,qinit:[107,139,149],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,130],readm:11,recent:[24,28],rectangl:[38,130],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,139],region:[66,110,130,139],registr:53,regress:111,relat:130,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,128],request:28,requir:[51,57,105,154],resolut:[51,157],resourc:25,restart:[29,83,127],result:[13,46,51,68,95,141],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,128,129,154],roe:129,routin:[15,22,63,78,107,133,143,144],rst:11,rule:[38,130],run:[29,35,36,37,46,83,85,88,94,95,111,136,137,152],ruptur:70,sage:85,same:63,sampl:[39,66,138,140],save:[93,141],script:96,sea:132,sealevel:131,search:67,seismic:132,select:130,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,131,132,134,152],setaux:[133,154],setplot:[67,77,79,135],setrun:[22,44,136,137,138,139,140],shallow:[97,129],share:141,sharpclaw:99,shelf:130,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,130],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:130,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,128,129,154],some:[29,77,153],someth:77,sourc:[62,70,96,146,153,154,157],space:157,spatial:[132,154],special:[3,137],specif:[32,103,111,139,145,154],specifi:[38,60,77,79,110,135,136,137,139,154],sphere:16,sphinx:[54,142],sprint:[24,74],src1d:[143,154],src:[144,154],start:[25,46,108,109],state:101,statist:148,step:[56,57,58,100,154],stop:[13,29],storm:[108,139,145,146],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,132],surg:[108,146],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,154,157],test:[28,36,37,94,100,111,147],than:77,thi:[4,54],tide:153,tile:51,time:[136,137,139,148,154],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,145,150],top:28,topo:150,topofil:66,topographi:[30,33,39,46,51,66,139,149,151,153],topotool:151,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,152],troubleshoot:[58,102,152],tsunami:[48,51,109,153],tutori:[24,103,105],tvd:87,two:129,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,132],used:152,useful:[29,129],user:[16,24,29,73,154],using:[48,67,154],utah:74,util:[47,59,104],valu:[32,83],vari:[132,154],variabl:[41,62,96,134],version:[25,40,50,52,54,55,58,106],view:13,virtual:156,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125],visit:155,visual:[25,51],washington:74,water:[49,97,129],wave:[128,157],web:13,webpag:[13,54,141],what:[77,79,93,105,129],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,150,151,154],workflow:28,workshop:[24,74],write:[66,96,111,130],written:93,your:[13,28,29,36,51,94,96,100,141,147],zenodo:55,zone:66}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_more_options","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_more_options.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[151,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],fgout2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[145,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[145,5,1,""],Storm:[145,0,1,""],available_formats:[145,3,1,""],available_models:[145,3,1,""],fill_rad_w_other_source:[145,3,1,""],make_multi_structure:[145,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[145,2,1,""],plot:[145,2,1,""],read:[145,2,1,""],read_atcf:[145,2,1,""],read_geoclaw:[145,2,1,""],read_hurdat:[145,2,1,""],read_ibtracs:[145,2,1,""],read_imd:[145,2,1,""],read_jma:[145,2,1,""],read_tcvitals:[145,2,1,""],write:[145,2,1,""],write_atcf:[145,2,1,""],write_geoclaw:[145,2,1,""],write_hurdat:[145,2,1,""],write_imd:[145,2,1,""],write_jma:[145,2,1,""],write_tcvitals:[145,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[151,0,1,""],create_topo_func:[151,3,1,""],determine_topo_type:[151,3,1,""],fetch_topo_url:[151,3,1,""],get_topo:[151,3,1,""],read_netcdf:[151,3,1,""],swapheader:[151,3,1,""],topo1writer:[151,3,1,""],topo2writer:[151,3,1,""],topo3writer:[151,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[151,2,1,""],Y:[151,2,1,""],Z:[151,2,1,""],crop:[151,2,1,""],delta:[151,2,1,""],extent:[151,2,1,""],generate_2d_coordinates:[151,2,1,""],generate_2d_topo:[151,2,1,""],in_poly:[151,2,1,""],interp_unstructured:[151,2,1,""],make_shoreline_xy:[151,2,1,""],plot:[151,2,1,""],read:[151,2,1,""],read_header:[151,2,1,""],replace_no_data_values:[151,2,1,""],replace_values:[151,2,1,""],set_xyZ:[151,2,1,""],smooth_data:[151,2,1,""],write:[151,2,1,""],x:[151,2,1,""],y:[151,2,1,""],z:[151,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[97,1,0,"-"],advection_1D_py:[97,1,0,"-"],burgers_1D_py:[97,1,0,"-"],euler_1D_py:[97,1,0,"-"],shallow_1D_py:[97,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[97,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[97,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[97,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[97,3,1,""],euler_hll_1D:[97,3,1,""],euler_hllc_1D:[97,3,1,""],euler_roe_1D:[97,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[97,3,1,""],shallow_fwave_1d:[97,3,1,""],shallow_hll_1D:[97,3,1,""],shallow_roe_1D:[97,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":138,"00000e":138,"0000ff":[3,59],"001000e":138,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":155,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":151,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,135],"1drad":154,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,136,138,140,154],"2013it":17,"2018300n26315":145,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":148,"27t06":59,"27t07":59,"288e":148,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,136,138,140,154],"301e":148,"30x30":51,"34kt":145,"360x360":51,"373e":148,"3rd":[96,99,129],"3x3":39,"40000000e":72,"4th":99,"50kt":145,"5_x_x":55,"5d0":154,"5e3":139,"5r01ar53652":4,"639s":[36,147],"64kt":145,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,97,136,137,139],"break":[28,30,48,51,59,70,111,118,132,139,151],"case":[5,6,8,13,16,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,127,130,131,139,145,149,151,152,154,157],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,127,130,135,136,137,138,139,140,151],"const":32,"default":[0,1,2,3,13,22,28,30,32,41,44,45,47,49,50,51,53,56,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,127,131,137,138,139,145,149,151,154],"export":[41,51,56,57,58,67,71,94,102,134],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,127,129,136,138,140,151],"float":[3,30,32,44,47,59,86,89,97,101,104,136,137,139,140,145,151],"function":[0,1,2,3,5,7,15,17,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,128,130,132,133,135,136,137,138,139,140,145,149,150,151,152,154],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,105,111,119,124,128,129,130,131,132,136,137,138,139,140,149,151,153,155],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,136,137,139,145,151],"long":[18,28,30,47,48,51,69,118,151],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,80,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,127,128,130,131,132,134,136,137,139,145,149,151,154],"ond\u0159ej":4,"public":[4,13,21,126],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,128,130,136,138,140,145,147,151,154,157],"short":[24,48,96],"static":[30,70,121],"super":[23,28,121,151],"switch":[29,51,56,58,96,106,111,120,131,153],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,127,128,130,132,133,136,137,138,139,140,145,151],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,105,106,111,136,147,151,152],"var":[0,3,13,27,145],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,128,132,139,153],AND:[61,81],ARE:[61,81],AWS:[13,56],Added:[87,113,115,117,118,120,124],Adding:[25,82,90],And:[6,20,54,56],Are:112,Axes:[135,145],BCs:[138,140],BUT:[61,81],But:[13,32,39,51,77,102,114,121,132],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,56,58,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,135,136,137,138,139,140,142,145,146,148,149,151,153,154,157],GIS:[51,119,149],Going:[13,25,91],Ike:108,Into:105,NOT:[59,61,77,81],Not:[30,51,89,119],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,151],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,149],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,147,148,149,151,152,153,154,155,156,157],Their:81,Then:[13,16,28,29,30,44,54,55,57,63,66,70,71,79,83,86,94,100,101,102,106,128,130,151,152],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,93,100,108,120,121,135,136,146,147,154,156],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,56,59,60,63,66,67,77,79,83,88,92,93,95,101,103,107,109,110,111,113,119,120,121,122,127,137,141,145,146,149,153,157],USE:[61,81],Use:[30,51,91,97,99,121,129,136,138,140,149,151],Used:129,Useful:[1,3,129,136],Uses:[30,129,151],Using:[0,1,2,3,7,17,22,41,42,51,53,56,75,76,77,79,80,89,90,91,123,136,143,144,148,151,152,157],WCS:153,Will:98,With:[6,22,28,44,49,51,66,73,105,110,118,128,130,136],__________________o:151,__file__:106,__future__:119,__init__:[55,96,106],__main__:[138,140],__name__:[138,140],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,152],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,135,141],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:128,_pyclaw_io:86,_static:54,_storm_modul:146,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,145,151],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,128,135,138,139,149,152,154,157],aboutu:30,abov:[3,5,13,14,16,20,28,29,32,35,36,38,39,40,41,44,48,51,53,54,55,56,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,105,110,119,121,128,130,132,134,135,136,138,139,140,145,148,149,151,154],abs:[30,52,96,104,110,130,151],absolut:[93,110,111,121,137,138],absolute_import:119,abspath:[5,38],abstol:104,academ:[102,105],acceler:[52,97],accept:[44,83,93,99,136],accept_reject_step:99,access:[0,17,27,29,56,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,149],account:[13,24,28,55,85,94],accumul:[44,119,127],accur:[5,18,48,70,91,99,136,154,157],accuraci:[44,64,73,138,140],achiev:[20,84,143,144],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,128,138,154],acoustics1dheterogeneoustest:[36,147],acoustics3dheterogeneoustest:[36,147],acoustics_1d:[83,97,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,147,154],acoustics_1d_homogen:[88,111],acoustics_1d_pi:97,acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[138,154],acoustics_3d_heterogen:[36,147],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,149,151],acsza1:30,acszb1:30,act:[87,151],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,139],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,131,139],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,128,130,135,136,154],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,129,140,145,149,151,155],add_colorbar:[30,151],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[138,140],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,127,132,136,137,139,145,148,151,155],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,23,24,25,28,29,32,36,37,38,45,46,56,58,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,128,130,136,140,145,148,149,154,155],addition:[94,145],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,132,136],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,131,136,154],adjust_fgmax_1d:33,admiralti:130,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,136,154],advantag:[12,76,92,105,111,130],advect:[17,77,91,94,128,129,140,154],advection2dannulustest:[36,147],advection_1d:97,advection_1d_example1:63,advection_1d_pi:97,advection_2d_annulu:[36,147],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:154,advection_3d_swirl:[117,148],advis:[34,61,81],affect:[18,22,62,119,120,136,149,152],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,129,132,136,137,138,140,145,154],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,149,152],against:[104,111,118,147],agenc:[4,58,145,146],agency_pref:145,agre:[12,28,39,53,128,148,151,154],agreement:48,ahmadia:[4,17,81,91],aht:131,aid:84,aim:28,aks2203:4,albada:87,alg:138,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,128,130,136,138,140,151],align:[32,39,51,59,66,124,139],all:[0,1,4,6,11,12,13,16,18,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,127,128,129,130,132,135,136,138,139,140,141,146,147,148,149,151,152,154],alloc:[20,99,117],allocat:117,allot:59,allow:[4,6,13,22,27,28,29,32,38,39,44,45,47,50,51,53,54,56,58,64,66,67,70,71,73,76,77,86,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,128,130,136,138,139,140,141,145,149,151,153],almost:105,alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,68,70,106,110,117,127,130,132,139,145,153],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,57,58,59,60,66,79,80,94,98,100,103,105,114,122,151],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,136,138,139,140,141,143,144,145,146,147,148,149,151,152,153,154,156,157],alter:51,altern:[30,35,36,44,47,51,57,60,62,67,76,91,94,105,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,151],alwai:[16,18,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,132,138,139,140,149,154],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,128],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,132,135,136,138,140,148,154],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:138,amr_levels_max:[32,110,137,138],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,100,106,107,110,111,127,128,130,133,134,136,139,143,144,147,148,152],amrdata:[5,22,32,110,124,137,138,139],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,80,91,100,105],anal:17,analog:[136,137],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,56,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,127,130,131,132,135,136,137,139,145,154,157],anim:[12,16,42,51,117,124,125,141],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,57,58,59,72,76,80,88,99,102,111,121,145,154],answer:24,anyth:[3,6,28,29,56,58,63,111,121],anywher:110,aoml:145,apach:13,apdq:[97,128],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,70,108,109,116,120,121,122,123,124,125,129],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,57,59,62,65,77,93,98,101,119,139,141,149],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,127,128,138],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,127,136,139,154],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,45,46,55,56,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,128,130,132,133,136,139,143,144,149,151,152,154,155],appreci:81,approach:[5,7,13,28,29,38,44,54,56,69,76,84,94,96,104,110,117,119,120,122,128,129,135,139,154,157],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,56,58,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,128,131,134,136,145,154,157],approv:48,approxim:[6,16,25,33,48,51,70,128],april:[24,124,125,126],apt:[13,105],arbitrari:[32,59,99,113,130,139],arbitrarili:66,arc:131,arcgi:151,architectur:94,archiv:[12,21,36,51,55,111,141,147,151,153],arcminut:[70,149],arcsecond:[45,149],area:[15,22,45,99,108,119,132,133],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,128,130,135,136,137,145,151,154],argv:[138,140],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,137,138,145,151,154],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,128,129,130,133,136,137,138,139,140,145,149,151,154],arrang:151,arriv:[22,32,34,39,45,119,131,132],arrival_tol:32,articl:[4,17,91,141],artifici:[16,132],arxiv:52,asc:151,ascii:[44,53,67,83,86,93,98,119,127,136,138,140,149,155],ascii_output_format:68,ask:24,ask_us:151,aspect:[12,24,29,48,49,67,151],assembl:57,assert:[138,140],assess:[4,48,131],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,97,103,104,110,117,130,131,136,139,145,146,149,151,153,157],assumpt:[51,54],asteroid:4,astronom:131,atcf:[108,121,145,146],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,145,151,152],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,127,135,136,137,139,145,151],attributeerror:77,aug:[17,122],aug_glob:97,augment:[66,129],august:[24,121,126],austin:4,author:[17,25,45,48,87,91,92,97,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,136,137,139,149],autonom:5,aux1:32,aux1d:154,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,128,129,133,136,137,138,139,140,154],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,128],aux_out_field:44,aux_r:[97,128],aux_time_dep:99,aux_typ:[5,137,138],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,128,136,138,140,154],auxillari:[92,98],auxl:128,auxr:128,auxtyp:138,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,56,57,58,62,66,67,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,128,129,131,136,138,139,141,145,146,149],available_format:145,available_model:145,averag:[4,6,15,17,32,39,45,48,49,53,67,97,101,114,128,132,133,149,151,154],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,127,136,139,157],awai:[28,131],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,135,145,151],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,130],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,154],b4step2:[15,133,154],b4step3:15,b4stepn:154,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,135],backward:[5,28,30,47,59,70,92,105,114,115,151],bad:[106,111],bai:[66,131,153],balanc:[6,17,73,120,129,143,144],bale:17,balelevmitross02:[4,17,136,157],ball:151,band1:151,band:[51,151],bar:[13,54,145],barrier:[66,104],base:[5,6,13,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,131,136,137,138,139,140,145,151,154,157],base_subfault:30,baselin:51,basemap:145,bash:[41,51,56,58,67,71,94,106,134],bash_profil:[102,134],bashrc:[13,41,102,134],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,97,99,111,128,129,145,157],basin:108,bathymetri:[15,45,48,51,59,97,108,119,121,129,131,133,139,149,151],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,136,138,140],bc_upper:[16,83,96,103,136,138,140],bcn:[6,16,140,154],bcnamr:[6,16,121,136,138,154],beach:[39,66,129],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,128,131,136],becom:[48,102,157],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,97,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,127,128,130,136,137,139,149,151,154],befor:[1,3,4,6,14,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,126,128,131,132,136,137,139,149,151,152],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,97,103,129,145],begin_d:47,behav:44,behavior:[45,54,110,111,118,124],behaviour:83,behind:[39,66,132],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,128,130,132,136,139,145,152,154],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,29,30,32,39,45,51,52,54,55,56,58,59,64,67,70,79,81,83,85,93,97,103,105,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,133,135,136,137,138,139,140,143,144,145,149,151,154],benchmark:48,beowulf:57,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,62,69,71,76,77,92,96,108,109,110,111,121,126,128,139,142,145,149,154],besttrack:145,beta:[47,87,99,140],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,139],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,56,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,128,130,131,136,137,138,139,140,141,145,148,149,151,153,154],bewar:[106,151],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,149],bin:94,binari:[5,41,55,57,61,68,81,92,93,95,118,127,136,138,151,155],binary32:92,binary64:92,bind:[28,51,76,84,94],bisect:[137,138],bit:[16,22,30,55,92,94,102,129],bitbucket:94,black:[3,44],blank:[3,59,145],blast:120,blob:[118,129],block:[7,30,39,59,70,72,73,83,92,101,104,111,154],blossei:4,blue:[3,11,39,44,59,66,77,130,145,151],bmatrix:129,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:145,bomb:[62,71],book:[4,12,17,25,29,80,98,105,128],bool:[0,1,2,3,47,59,86,92,97,98,99,101,104,139,145,151],border:[67,154],bore:48,both:[3,16,28,30,33,35,36,38,39,44,48,53,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,128,129,130,132,136,138,140,143,149,154],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,133,143,144],boulder:24,bound:[33,84,87,94,130,136,151],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,130,136,138,140],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,130,151],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,133,143,144],brief:[4,55,129,139],briefli:157,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:151,broken:[19,20,28,68,70,111],brought:28,brown:[81,151],brows:[11,24,42,51,67,141,154],browser:[13,28,29,35,36,51,54,141],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,137,138,151],buffer_length:151,buffer_s:[30,70],bug:[4,8,12,18,22,24,41,51,64,71,77,81,116,117,118,119,121],build:[4,17,28,29,54,55,67,84,94,104,120,130],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,143,144],bulk:[19,83,97,103,128,138,154],bull:[17,30],buoi:45,burger:[91,128,154],burgers_1d:97,burgers_1d_pi:97,busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_l:97,c_node:89,c_nodes_with_ghost:89,c_r:97,cach:[22,47,55,79,81,124],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[128,154,157],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,97,99,114,119,151],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,128,130,132,134,136,138,139,140,145,151,154],call_before_step_each_stag:99,call_setplot:77,callabl:104,calucl:97,cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,149,151,152,153,154,155,157],cannot:[52,58,92,132,145],canopi:100,capa:98,capa_index:[136,138,140],capab:151,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,22,32,34,48,52,66,73,84,113,118,119,121,122,123,124,125,151,153],capac:[15,97,133,136,137,138,140],captur:[32,48,130,149],car_nam:145,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,139],cartopi:145,cascad:4,cast:151,cat_nam:145,catalog:153,categor:145,categori:145,category_color:145,caus:[22,48,51,54,61,62,79,81,102,111,118,119,120,122,135,137,149,151],caut:87,caution:48,cautionari:[25,45,63,139],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:151,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:[97,151],cdot:[64,96,130],ceas:105,cell:[3,4,5,7,8,15,16,18,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,128,131,132,133,136,137,138,139,140,146,148,149,154,157],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,149],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,130,132,137,138,139,145,146,149,154],centerlin:30,centers_with_ghost:89,central:[136,145,146],central_pressur:145,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,130,136],certainli:[94,105],certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,136,138,139,140],cfl_desir:[99,136,138,140],cfl_max:[99,136,138,140],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,56,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,126,128,132,133,136,137,138,139,140,143,144,149,152,154],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],changes_to_mast:55,channel:24,chapter:[16,128,136,154],char_decomp:99,charact:47,characterist:99,charg:13,chava:139,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,130,132,133,137,138,143,144,145,151,152,153,154],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55],checkpoint:[25,44,118,119,121,123,136,138,140],checkpt_interv:[136,138],checkpt_styl:[118,127,136,138],checkpt_tim:[136,138],checksum:92,chen:[30,153],chile2010:[51,109,110,113,116,122,149],chile2010_adjoint:5,chile2010_fgmax:32,chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[138,140],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[127,136,138,140],choic:[16,45,76,99,136,138,139,140,154],choos:[0,7,59,70,96,136,139],chose:64,chosen:[3,18,29,32,38,39,51,53,66,103,110,131,137],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,126],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:140,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,46,55,56,57,58,63,69,71,72,73,81,83,86,88,89,90,91,92,96,106,107,111,127,128,133,134,137,139,144,152,154],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,19,20,22,24,28,30,32,33,35,36,37,38,40,41,44,45,47,49,50,52,54,55,56,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,128,132,133,138,139,140,142,143,144,147,148,149,151,152,154,155],claw_1dnoncon:157,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[136,137,138,139,140],claw_topo_download:151,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,127,136,137,138,139,140],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,127,128,130,134,136,137,138,141,142,145,147,149,151,152,154,155,157],clawpack_gpu:52,clawpack_src:[56,58,106],clawplotax:[1,2,3,27,77,121,135],clawplotdata:[2,3,27,44,51,77,79,86,135],clawplotfigur:[0,1,51,77,135],clawplotitem:[0,1,7,22,27,76,78,118,121,135],clawrundata:[5,44,59,122,127,136,137,138,140],clawsolut:1,clawsolv:[99,128],clawsolver1d:[83,86,89,99,103,128],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,57,62,106,111,134,136,137,138,140,151,152],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,67,79],clearer:123,clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,130],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,126],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,151],clone:[12,18,23,24,42,52,54,55,56,58,80,94,100,109,152],close:[13,39,51,54,59,66,67,92,110,124,137,145],close_fig:59,closer:[70,138],closest:145,cloud:13,cluster:[6,17,57,110,137,138],clustering_cutoff:[110,137,138],cma:145,cmap:[39,51,59,66,77,130,151],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,18,32,51,110,119,136,149,154],coarsen:[53,110,121,122,137,149,151],coarsen_method:53,coarser:[3,16,53,119,132,136,137,154],coarsest:[6,51,72,113,127,136],coast:[39,66,110,132,151],coastal:[48,124,131,132,139,149],coastlin:[32,51,66,124,130,139,153],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,57,61,62,63,64,68,69,70,71,72,73,75,77,79,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,127,128,129,130,136,138,139,140,141,145,147,148,149],code_of_conduct:121,coeffici:[5,64,96,97,99,101,102,103,128,139],colella:[6,17],collabor:[51,141],collect:[12,25,26,28,30,32,70,76,83,99,141],collela:120,color:[3,30,39,51,59,66,67,76,130,135,145,151],colorado:24,colorbar:[3,39,59,66,121,124,130,151],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,151],column:[10,30,32,44,48,60,93,97,117,130,151],column_list:30,column_map:30,com:[12,13,23,24,26,28,29,52,54,55,56,57,58,92,94,96,100,116,118,119,120,126,129],combin:[20,54,59,118,153],combinatori:111,come:[3,28,77,79,88,94,99,117,149,154],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,56,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,128,134,135,136,137,149,151],commenc:127,comment:[5,11,24,49,55,120,127],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,152,154],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,149],compactli:130,compar:[5,22,36,44,48,51,55,77,93,110,111,131,137,139,147,153,157],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,105,114,115,119,120,151],compens:151,compil:[13,25,35,36,40,46,56,58,63,71,73,79,80,84,91,92,96,100,104,113,128,129,134],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,105,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,130,135],compon:[3,16,18,20,22,25,36,44,56,58,67,72,76,96,98,100,101,110,117,129,136,137,138,149,154],compos:[30,83],comprehens:111,compress:[30,92,151],compris:[22,91,151],comput:[3,4,5,6,13,16,17,27,29,30,32,33,39,44,47,51,53,56,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,105,106,108,110,113,114,118,119,123,128,132,136,138,139,140,146,149,154,157],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,128],concern:[22,45],conclus:[4,51],conda:[51,56,80,91],condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,131,136,138,139,140],conduct:121,conf:[54,55],confer:24,config:94,config_fc:152,configur:[77,83,94,151],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,149],confus:[3,53,58,106,128],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,130],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,129,154,157],consid:[6,39,48,57,58,66,84,106,134,141,151],consider:[48,83],consist:[6,25,32,47,51,55,59,94,105,119,128,130,139,149,154],consol:[13,93,139],consolid:117,constant:[30,32,48,59,64,94,97,128,129,130,132,139,151,154],constant_storm_modul:117,constrain:110,constraint:[39,44,130,137,157],construc:59,construct:[22,30,32,53,83,89,104,145,146,149],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,44,45,47,49,50,51,52,53,54,55,57,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,92,94,96,97,98,99,101,103,104,106,110,111,113,114,121,122,126,128,130,135,136,139,141,145,149,151,152,154],containing_rect:30,contains:29,containt:127,contamin:136,contan:51,content:[4,6,23,51,55,73,84,139,149,154,155],context:[27,51,154],contigu:[72,92,101,130],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,128,136,157],contour:[3,30,44,51,53,67,105,135,151],contour_color:3,contour_kwarg:[3,151],contour_level:[3,151],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,130],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,56,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,129,139],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,154,157],convens:149,convent:[3,22,30,46,53,70,97,149],converg:[66,76],convers:[19,25,84,92,110,130,149,153],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,56,58,59,62,70,84,96,104,105,121,124,136,137,145,149,153],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,130,139,151],coordinate_specif:[30,70],coordinate_system:[15,60,133,139],coorind:151,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,132,133,141,143,144,149,154],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,139,143,144],coriolis_forc:[48,139],corner:[3,30,32,53,70,72,89,130,136,138,140,149,151],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,132,136,138,139,140],correctli:[28,32,84,90,117,139],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,128,130,131,136,137,138,139,140,145,149,153,154],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:129,could:[5,12,13,18,27,32,35,36,39,44,53,58,60,66,70,71,77,79,83,89,93,101,102,105,106,117,130,132,137,138,139,140,151,154],council:4,count:83,count_from_zero:83,counter:[104,151],counterclockwis:70,coupl:[119,157],courant:[4,6,110,120,136,137,138,140],cours:[13,26,32,44,46,60,70,94,95,103,105,108,139,149],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,132,138,139,149],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,148],crash:[118,136],creat:[0,1,2,3,5,6,7,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,57,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,130,135,136,137,138,141,142,145,151,153,154,155],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:151,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,138],critic:[51,93,128],crop:[53,151],cross:28,crucial:[51,149],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,56,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,127,131,135,136,138,139,140,145,146,149,151,153],current_data:[0,3,25,44,76,77],curv:[3,44,76,130],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,132],custom_bc:96,customari:93,cut:137,cutoff:[6,138],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,139],dalcin:81,dam:[51,132],dam_break:129,damag:[6,61,81],damian:57,damiansra:96,dark:130,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,145],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,128,130,131,138,140,145,148,150,155],data_break:[39,66,151],data_fil:33,data_limit:[39,66],data_storm:145,data_typ:104,databas:[13,30,70,104,108,121,149],datadir:118,dataset:[149,151,153],date:[5,28,40,47,51,54,55,62,77,145,152],date_tim:47,datetiem:145,datetim:[47,145],datum:[47,48,97,131,139,153],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,145,151],dealt:[32,39],debian:105,debug:[7,41,62,72,76,93,101,106,111,136,138],debugg:77,decid:[83,99],decim:[47,59],decimc:145,decis:51,declar:[20,22,101,154],decompos:[72,128,157],decomposit:136,decor:104,decoupl:54,decreas:[44,132,149],deduc:149,deep:[5,66,139],deep_depth:139,deeper:[130,139,149],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,138,140,145],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,128,138,140,145,149,151,152,154,157],definit:[30,67,83,110,116],deform:[17,30,33,45,70,153],deg2dm:59,degener:130,degre:[30,47,51,59,70],delet:[20,28,56,58],delimit:30,delin:139,delta:[87,89,96,99,128,151,154,157],delta_h:97,delta_hu:97,delta_i:151,delta_limit:151,delta_x:151,dem:[32,45,53,59,121,149,151,153],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,128,151],dens:146,densiti:[86,93,97,101,103,137,138,154],depart:[4,145],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,56,57,62,64,67,70,77,82,91,92,97,98,99,104,106,110,121,132,139,151,152,154,157],deprec:[7,30,34,54,117,121,139,149,151],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,129,131,132,139,149],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,59,60,62,63,66,67,70,72,73,76,77,78,89,92,98,104,108,110,111,119,122,123,128,130,131,135,136,137,139,145,146,149,151,153,154,157],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,92,104,108,110,128,129,139,145,149,157],design:[4,27,28,51,81,83,103,130,153],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,56,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,132,134,136,138,140,145,149,151,152],desktop:94,destin:51,detail:[4,5,10,16,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,56,57,58,61,62,66,67,70,73,77,81,86,87,88,89,92,93,94,95,96,97,99,109,110,111,114,119,121,128,130,135,136,139,141,145,149,152,153,154,157],detect:[51,62,92,100,104,152],deterimin:[139,151],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,97,101,106,110,114,118,119,127,130,131,135,136,137,139,151,154],determine_topo_typ:151,dev:[18,24,28,54,55,94,121,122,126],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,128,131,132,138],dict:[30,86,92,97,98,101,145,151],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,145,149,151],dicuss:30,did:[121,130,149],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125],differ:[1,3,6,7,12,15,16,18,22,28,30,31,35,36,39,44,46,48,50,53,56,59,62,64,66,67,70,71,76,79,83,84,86,88,89,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,128,131,132,133,136,137,138,139,143,144,149,151,152,153,154,157],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,151],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,128,136,137,138,140,151,154],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,138,139,140,151,154],dimensional_split:[89,117,136,138,140],dip:[30,70],dir:[55,94,155],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,128,136,137,139,151],directli:[8,19,23,32,48,56,67,70,77,79,83,84,87,91,101,104,106,121,151,155],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,44,45,47,50,51,54,55,56,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,127,128,132,133,134,135,136,137,141,143,144,147,148,149,152,154,155],directorti:108,disabl:[49,100,139],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,157],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,56,66,70,92,103,105,106,110,119,121,128,139,157],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,132,139,153],displai:[1,13,35,36,40,44,51,59,77,93,111,139],display_format:[44,60],display_landfall_tim:139,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,139,149,151],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,80,81,99,105,124],disturb:51,distutil:84,dive:105,divid:[110,136],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,149],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,142],docker:[18,25,55,56,120,121,122,123,124,125,156],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,126,135,138,155,156],dodsc:[39,66],doe:[4,5,11,16,20,27,28,39,40,48,51,53,54,56,67,73,77,80,89,91,98,101,104,110,111,114,119,123,127,128,129,132,145,151,152,154],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126],doing:[6,11,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,137,138,140,149],don:[13,27,28,54,55,77,93,94,100,111,138,152],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,58,59,62,66,67,70,76,77,79,83,87,88,104,110,114,118,119,123,127,128,130,135,137,139,148,151,152,153],donna:[4,17],donnabois:4,donor:[136,138,140],dontflag:110,dot:[40,44,51,57,58,59,62,152],doubl:[67,84,89,104,128,137],down:[13,30,93,118,145,149,151],download:[12,13,28,29,30,36,37,39,45,51,55,56,57,58,68,88,94,100,121,122,126,147,151,152,153],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[137,138],dq_src:[96,99],dqdt:99,draft:55,drag:139,drag_law:139,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,135],driver:[20,63],drop:[13,54,124,132,136],dry:[16,17,25,32,45,97,124,129,132],dry_point:39,dry_points_sum:39,dry_toler:97,ds824:145,dst:59,dt_check:32,dt_initi:[113,136,138,139,140],dt_max:[136,138,140],dt_max_dtopo:[113,139],dt_variabl:[136,138,140],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,132,139,149,151,153],dtopo_data:[113,139],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,139],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,149,150],dtopotools_exampl:[30,70,109],dtopotyp:[139,149],due:[17,24,30,39,47,70,111,120,121,132,152],dummi:[84,99,154],dump:[72,136],dumpgaug:117,duplic:[77,116,127],durat:[30,131],dure:[5,22,32,39,44,59,70,73,113,131,132,138,139,140,149],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:145,e_l:97,e_r:97,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,127,128,129,130,132,135,136,137,138,139,140,145,148,149,151,153,157],each_fram:44,each_gaug:44,ear:4,earli:[6,20,132],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,149,151],earth:[25,39,45,52,59,66,70,117,119,130,139],earth_radiu:139,earthquak:[25,30,45,48,109,132,139,146,149],eas:59,easi:[4,6,11,29,38,58,67,80,84,93,94,95,130,141,154],easier:[58,76,119,121,130,154],easiest:[19,28,41,73,77,79,105,110,154],easili:[3,13,28,32,51,54,67,77,84,89,100,104,105,111,124,141,145],east:[13,149],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[137,138],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,128,130,133,137,138,140,154],edgecolor:130,edit:[51,54,55,56,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,105,110,111,131,139,151],effici:[48,52,81,91,92,93,101,110,130],effort:92,efix:[97,129],egg:[56,58],eigenvalu:5,eigenvector:[5,128,157],either:[12,16,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,92,93,99,104,106,110,111,117,118,119,121,128,130,132,139,145,149,151,154,157],elast:[13,70],element:[0,3,22,59,97,99,101,136,137,138,139],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,130,131,139,149,151,153],elif:[138,140],elimin:[8,22,66,84,106,121,139],ell:128,els:[27,28,56,58,66,101,121,130,132,140],elsewher:[5,24,39,130],emerg:4,emmanuel:139,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,136,145,151],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,97,103,105,108,110,118,119,121,127,129,130,138,140,145,148],end_dat:47,enddo:154,endian:92,endors:[61,81],energi:[93,97],enforc:[130,139],eng:145,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,146,148,149],ensembl:145,ensur:[35,36,67,108],enter:[67,92,94,100],enthought:[100,102,105],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,130,151],entireti:86,entri:[51,60,83,93,104,145],entropi:[97,129],enumer:[89,99],environ:[14,25,28,35,36,40,50,51,54,56,57,58,67,69,71,73,95,102,104,106,119,151,152],envis:16,epd:102,eprint:[137,138],epsg:51,epsilon:87,eqn:157,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,127,130,136,138,140,149,151],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,128,136,138,139,140,149,154,157],equiv:157,equival:[6,44,52,53,59,60,123,149],err:138,errest:110,erron:[30,70],error:[5,16,18,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,137,138,145,152],escap:[110,138],escienc:13,especi:[28,51,84,96],esri:[53,149],essenti:[5,53,67,99,139,149],est:138,establis:121,establish:4,estim:[5,64,110,137,139],estimat:[5,138],eta:[25,30,32,39,44,45,110,117,124,131],eta_init:132,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,128,135,136,139,145,154],etopo1:[121,130,131,149,151,153],etopo_sample_2min:151,etopotool:[121,149],euler:[60,91,99,115,117,120,122,128,154],euler_1d_pi:97,euler_2d:[35,37,91,96],euler_exact_1d:97,euler_hll_1d:97,euler_hllc_1d:97,euler_roe_1d:97,evalu:[17,27,30,64,83,89,99,151,154],even:[39,48,51,58,61,70,81,104,110,124,137,138,149,152,154],evenli:[51,93],event:[33,45,48,59,61,70,81,131,132,136],event_tim:59,eventu:[13,45,124],ever:[135,139],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,128,132,134,136,138,140,145,149,151,154],everyth:[32,55,56,57,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,132],evolv:[22,83,86,99],evolve_to_tim:[83,99],exact:97,exactli:[28,33,50,52,101,130,136],exam:77,examin:[16,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,20,22,24,27,28,29,30,38,40,41,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,127,128,129,131,132,134,135,136,137,138,139,140,141,145,147,148,149,151,152,153,154],exce:[32,51,110,137],exceed:[110,121],except:[22,27,30,39,92,97,104,124,136,139,145,149],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,128,134,152],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,105,114,120,121,132,145,151,153],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,97,103,104,105,111,121,122,124,138,139,140,145],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,136,141],explan:28,explicit:[104,137],explicitli:[32,63,67,136,152,157],explor:[4,59,77,79],expon:64,expos:13,express:[4,30,61,81,100,130],extend:[8,16,22,39,59,66,67,89,121,130,132,139,149,151,157],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,136,147,151,157],extent:[38,39,48,58,59,64,66,67,83,89,101,113,130,139,149,151],extra:[3,51,129],extra_fil:54,extract:[51,55,92,145,151,153],extran:117,extrap:[16,96,103,136,138],extrapol:[5,7,16,22,96,103,121,136,137,138,140],extrem:[51,102],extropl:16,eye:[145,146],eye_loc:145,f2py:[56,58,84,96,104,128],f2py_flag:104,f2s:59,f49620:4,f77:[41,152],f90:[5,9,15,18,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,128,129,132,133,143,144,149,152,154],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,135],facilit:[44,60,111,117,119,124,141,145],fact:[51,92,101,105,110,132],factor:[6,51,137,139,148,151],faculti:30,fade:77,fail:[28,92,94,104,111,117,145],failur:[111,122,132],fairli:[16,48,119],fall:[131,139],fals:[0,1,2,3,5,30,39,48,49,50,51,59,66,86,89,92,97,98,99,101,104,118,119,124,127,129,136,137,138,139,140,145,151],famili:[89,99,138,140],familiar:80,faq:[13,25,76,105],far:[16,18,38,42,66,76,122,124],farther:66,fashion:127,faster:[123,124,151],fastest:[92,100],fault:[17,25,30,45,109,121,149,153],fault_plan:30,favor:[117,121,151],favorit:76,fbound:41,fc02:4,fcompil:152,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,139,145,149],februari:[24,120],feet:[131,153],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:151,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,131,147,149,154],fewer:[66,110,151],ff0000:[3,59],ff9999:135,ffff00:77,fflag:[28,40,62,68,71,84,104,149],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,139],fgmax_data:[32,139],fgmax_fil:139,fgmax_grid:[32,33,59,124],fgmax_interp:[18,32],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fgout2kml:59,fgout:59,fgout_grid:59,fid:33,field:[44,59,96,98,101,119,121,145,146],fig:[59,130],fig_kwarg:[30,151],fignam:[1,79],figno:[1,2,44,51,77,79,135],figsiz:[2,39,66,77,130,135],figur:[0,1,2,4,13,30,35,36,39,42,44,53,59,66,67,76,79,98,106,128,130,135,151],file1info:139,file2info:139,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,56,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,129,131,132,133,134,135,136,137,138,140,142,143,144,145,146,148,151,152,153,155],file_format:[44,92,98,145],file_prefix:[92,98],file_prefix_p:86,fileio:72,filenam:[31,51,117,151],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,132,136,145,148,151,154],fill_between:3,fill_mwr:145,fill_rad_w_other_sourc:145,fill_topo:151,fill_valu:[92,151],fill_var2:3,fill_wher:3,filpatch:[9,18,39,119,123],filter:[92,151],filter_region:151,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,56,58,62,68,70,73,76,81,88,96,101,102,104,105,106,108,121,145,152],fine:[3,18,32,33,39,54,69,73,96,110,119,130,132,136,139,149,154],finer:[3,7,32,51,110,113,114,130,136,137],finest:[3,32,39,44,121,148,151],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,130,148,149,154],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,38,39,51,54,55,56,57,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,128,129,130,132,136,138,139,145,147,149,151,157],first_test:35,fist:66,fit:[61,81],fix:[6,18,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,97,113,114,115,116,117,118,119,120,122,123,124,125,129,136,138,140,151],fix_links_top_level:54,fixedgrid:139,flag2refin:[5,7,22,137,138],flag2refine_tol:[5,110,137,138],flag:[7,12,13,22,25,28,29,38,40,41,45,52,56,58,68,71,84,102,104,106,117,122,138,139],flag_richardson:[5,110,118,137,138],flag_richardson_tol:[5,110,137,138],flagregion:[7,25,66,110,124,130],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,57,92],fletcher32:92,flexibl:[22,30,59,84,117,120,128,130],flood:[51,66,132],floor:[30,45,70],flow:[4,16,17,23,32,33,45,46,48,91,108,124,128,136,139,149,154],flowchart:[6,7,25],fluctuat:[97,99,157],fluid:[32,48,60,131],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,97,99,128,136,157],fly:25,fmt:3,fname:[39,59,130,138,139,140],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,30,32,35,36,37,39,44,46,51,53,54,55,56,57,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,127,128,130,135,136,137,139,145,147,148,149,152,154,156],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forc:[22,25,40,45,62,66,104,110,124,129,132,139,146,151,152],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:145,forestclaw:[106,117],forg:[57,91],forget:152,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,44,47,51,55,60,61,64,70,72,81,84,93,97,99,103,104,110,114,121,122,123,124,127,128,130,136,137,138,139,143,149,151,154,157],format:[1,3,5,13,14,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,136,139,145,146,151,153,155],format_str:44,former:[77,154],formerli:117,formul:[4,5,48,64,128,136],formula:[64,132],fort:[1,8,27,32,44,67,68,76,92,98,114,118,119,120,127,136,137,138,140,148,155],fortfil:[35,36],fortran:[6,9,11,13,14,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,117,118,119,121,122,123,128,129,134,138,139,140,145,147,148,149],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,154],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,127,131,135,145,151,152],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,97,103,157],fraction:[6,13,30,110,136,154,157],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,127,135,138,140,141],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,55,81,84,118,119],free:[13,51,62,70,81,85,96,100,102,105],frequenc:[60,70,99],frequent:[5,20,27,102,118],friction:[25,45,48,139,143,144],friction_depth:[64,139],friction_forc:139,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,44,45,48,51,52,53,55,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,127,128,129,131,132,133,136,137,138,139,140,143,144,145,146,147,149,152,153,154,155],frommm:87,front:[25,32,38,39,45,67,98,104,130],fset:101,fstr:67,ftrapuv:41,fuca:130,fuction:39,full:[5,6,14,55,57,58,59,77,86,93,99,103,134,149,154],fulli:[6,48,51,52,120,124,128,139,145,146],fun:104,func:[104,145],function_nam:104,fund:[25,58,91],funrol:104,further:[6,16,25,32,41,48,59,62,67,91,105,110,111],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,145,149],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,128,136,154,157],fwave:[89,97,99,128],g77:102,gain:92,galerkin:99,galleri:[12,35,36,37,42,43,55,75,76,88,91,105,111,116,120,141,147,154],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma1:97,gamma:[64,97],gap:151,garret:139,gas:[6,97],gaug:[7,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,127,131,138],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,138],gaugeno:[44,60,138],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,127],gauss_pt:30,gaussian:[5,83,103,140],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,56,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,105,106,108,110,113,117,119,127,130,131,134,136,137,141,146,148,149,154,155],generate_2d_coordin:[39,66,151],generate_2d_topo:151,geo:[45,64],geo_data:[60,139],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,100,106,108,109,111,127,128,129,131,132,134,136,137,145,146,147,148,149,150,151,152,153,154],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:154,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,136],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,128,130,145,151,152],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,151],get_topo:151,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,56,58,71,80,82,102,134,152],gfortranbinari:100,ghamdi:4,ghost:[7,16,18,71,72,89,92,99,101,119,136,138,140,148,154,157],gica2937:30,gigabyt:149,gist:57,git:[12,13,23,24,25,26,52,55,56,58,91,100,111,123],git_statu:50,github:[12,15,22,23,24,25,26,29,52,54,56,57,58,88,96,100,107,111,116,118,119,120,126,128,129,133,143,144,152],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,58,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,130,136,139,149,151,153],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,130,131,132,139,145,149,151,154],glitch:116,global:[6,14,89,101,104,131,149,153,154],gloss:153,glu:16,gmt:47,gnu:100,gnufcompil:152,goal:6,godaddi:54,godunov:[4,89,99,136,138,140,154],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,105,112,141,149,157],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,128],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,128,130],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,145],govern:[32,139],gprint:[137,138],gpu:[25,123],gradi:[4,17,81],gradient:[120,157],gradylemoin:4,grai:145,grant:[4,81],graph:9,graphic:[23,28,52,67,76],grav:[97,129],gravit:[64,97,139,154],graviti:[129,139],great:[47,88],greater:[5,32,59,64,66,100,105,110,127,136,137,139],greatest:110,greatli:[26,81,131],green:[12,59,66,70,77,111,145,151],grid1d:89,grid1info:139,grid2info:139,grid:[4,7,17,18,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,128,129,130,131,132,136,137,138,140,146,148,149,151,153,154,157],grid_files_scanf:155,grid_numb:72,grid_registr:[53,151],griddata:151,gride:146,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,128],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,155],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,142],guidelin:91,gzip:[55,124],h_l:[97,129],h_r:[97,129],hack:101,had:[18,44,52,53,119,120,121,122,132],hadjimichael:[4,17,81],half:[0,16,17,70,99,136,154],halfspac:70,hand:[3,5,18,19,20,64,83,111,130],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,129,132,139,145,151],hang:70,happen:[31,51,62,83,98,101,124,152],har:128,harbor:32,hard:[49,54,71,77,151],hardcopi:[1,77,79,135],harder:136,hardest:[68,105],hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,105,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,128,130,131,136,137,139,145,148,149,151,154,155,157],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,127,128,129,130,131,136,137,139,141,145,149,151,152,154],haven:[103,105],haversin:47,hazard:[4,32,45,64,131],hdf5:[91,93],hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,145,149,151],header_styl:151,heat:97,heavili:84,height:[51,97,151],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,58,62,76,79,91,94,100,104,111,118,124,128,141,152],helzel:17,henc:[5,32,53,54,63,99,105,106,110,132],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,128,129,130,146,151,157],heterogen:154,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,128,131,132,139,153,154],higher:[3,6,32,51,89,99,100,110,124,128,130,131,132],highli:[121,132],highlight:[11,13],hilo:[131,153],hint:[16,25,45,56,76,79,80,106,139,152],histor:[48,70,153],histori:[28,55,79,105],hit:[16,67,79,93,136],hko:145,hll:97,hllc:97,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,139,146],holland_storm_modul:117,home:[13,29,30,56,58,134],homebrew:51,homepag:[21,25],homogen:[70,99,154,157],hood:76,hope:[26,111],horizont:[51,151],host:51,hour:[13,51,59],how:[1,6,7,12,16,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,126,127,128,135,136,139,141,149,151,155],howev:[6,13,16,22,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,110,111,119,121,123,131,132,135,139,148],howto:105,hpc:24,hrd:145,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,145],html_plot:95,html_theme:54,htmlplot:88,htpp:28,http:[4,12,13,17,24,26,28,29,30,39,43,47,51,52,54,55,56,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,129,145,151],huge:[60,66,132,149],human:145,hurdat:[121,145,146],hurrican:[108,145],hurt:[12,63],hwrf:[121,139,146],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,128,136,139,154,157],hyperol:136,ian:4,ibm:100,ibtrac:[121,145],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,151,157],ideal:[55,97,131],ident:[39,63,89,92,94,111,151],identifi:[5,35,36,39,51,66,84,110,124,145],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,131,151],iinstal:94,ike:108,illustr:[12,25,30,32,35,51,66,67,70,109,116,117,121,123,128,130,141,151],imag:[13,35,36,39,55,57,59,66,111,121,130],imd:[145,146],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,97,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,97,99,103,104,111,116,119,122,124,128,129,136,151,154,157],impli:[61,81,139],implicit:[81,99],importantli:94,impos:[16,84,110,139,143,144,157],imposs:[48,136],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,136],imread:[39,66],imshow:[39,66,151],in_poli:151,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,135],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,44,48,51,53,55,56,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,97,98,99,100,101,103,105,106,108,110,111,113,119,120,121,122,123,124,125,128,129,130,136,138,139,141,142,145,146,148,149,151,154],inclus:130,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,129,151],incorrect:[121,122,132,145],incorrectli:118,increas:[51,59,71,130,139],increasingli:28,increment:[32,44,51,89,104,136,138,140],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,18,22,23,27,43,44,54,55,77,89,91,94,96,97,104,121,136,138,139,140],indian:145,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,57,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,128,129,136,138,139,140,149,151,154],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,145],inf:151,infer:151,infinit:136,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,137,138,145],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,56,58,63,72,77,78,79,80,83,84,89,93,94,95,97,98,104,106,118,121,122,124,126,127,128,131,134,136,137,139,145,148,149,152,153,154,155],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,131],initi:[4,5,7,12,13,18,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,97,98,99,101,102,104,107,110,118,121,124,128,131,136,138,139,140,145,149,151],initialize_sourc:84,inland:[39,66],inlet:130,inlin:[39,129],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,128,138,139,140,145,146,149,151,154],input_filenam:84,input_unit:30,inputfil:[104,151],ins:22,insert:[11,16,70,92,149],insid:[38,89,94,98,128,130,151],insidi:119,inspect:[19,20,51],instabl:119,instal:[12,13,18,23,25,29,35,51,54,55,79,81,82,85,90,92,103,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,134,156],install_fortran:36,install_prerequisit:[35,36],installing_more_opt:55,installing_pip:55,instanc:[3,28,51,56,70,73,79,83,84,86,89,92,93,96,130,139],instantan:99,instanti:[7,86,94,96,99,101,138,140],instati:[70,151],instead:[3,13,32,35,36,39,41,44,52,54,55,57,58,62,63,68,100,101,104,106,118,119,122,127,128,129,130,134,149,151],institut:4,instruct:[13,18,24,25,35,36,39,51,52,54,55,56,57,68,83,85,91,94,100,103,106,120,126,127,134,152],insur:[50,54,62,79,110,113,117,137,139,149],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,128,136,139,145,151],integr:[5,22,53,60,81,91,93,99,113,114,118,138,140,148,149,154],intend:[48,84,121],intens:[84,145],intent:[84,128],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,130],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,132,136,145],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,128,154,155,157],interface_funct:104,interior:[6,16,39,72,101],interleav:[81,97],intermedi:[19,32,70,154],intermit:[44,119],intern:[6,30,44,53,59,70,119,149,151,157],interp_dz:33,interp_kwarg:145,interp_method:32,interp_unstructur:151,interpol:[5,6,16,18,30,33,34,39,44,45,53,59,67,70,77,119,130,131,132,139,145,146,151],interpret:[30,53,70,105,121,149],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,130,136,139],introduc:[5,16,19,32,33,39,77,124,130,132,157],introduct:25,introductori:[24,105],intuit:91,inund:[32,45,51,64,110,124,131,153],inundataion:[131,153],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,132,152],involv:[24,96,99,108,146],ioerror:98,ioexcept:104,iout:140,ioutarrivaltim:139,ioutsurfacemax:139,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,129,130],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,105,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,130],isn:[62,71,72,152],iso:145,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,128,139,152],item1:[0,79],item:[0,1,3,67,76,79,104,135],itemnam:[1,79],iter:[30,39,66,97],ith:97,its:[4,6,13,22,29,34,39,48,51,57,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,138,151,157],itself:[4,70,76,105,124,128,139,151],ixi:[38,66,128,130],jacobian:[128,157],jan:[4,55],januari:[105,112,119,126],japan:[51,59],japanes:145,javascript:141,jed:81,jet:[30,67],jma:[121,145,146],job:13,join:[24,77],journal:[4,17,52,91,141],jovyan:29,jpg:[54,67],jsanim:[113,117],jsanimation_frametool:115,juan:130,juli:[114,115,126],jump:[4,5,67,79,89,99,119,136,157],junction:[32,139],june:[120,121,122,123,126],jupyt:[25,70,73,91,105,109,117,118,124,128],just:[0,6,28,32,40,55,83,84,86,88,91,92,93,94,95,96,101,104,105,114,121,136,154],justifi:70,kappa:[103,157],kappa_i:157,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,139],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,145,151],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,128],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,135,145,151],kind:[86,88,93,123,128],kinemat:[30,45],king:[4,81],kitsap:130,klein:87,kml:[59,117,119,120,121,124,125,130],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,150],kmw6h:[4,126],kmz:[59,119],kneplei:[17,81,91],know:[18,48,58,62,70,81,108,120,124,128,131,151,152,153],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,136],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,135,145],kyle:[4,17,81,87,91,92,97],label:[30,49,51,53,59,117,130,149,151],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,132,149],lambda:[89,151],lambda_roe_1:97,lambda_roe_2:97,land:[16,39,45,46,51,54,55,59,66,78,124,132,139,151],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],langtangen:105,languag:[11,76,104,105],lapack:113,laptop:[29,91],larg:[5,6,12,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,127,130,132,136,151,153],larger:[13,20,32,51,59,70,71,72,77,89,113,119,139,149],largest:[110,131],last:[3,18,27,32,55,77,83,84,96,103,118,136,145],lat:[30,47,51,53,149,151],later:[13,39,50,51,58,79,99,127],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,130,133,139,145,151],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,130,133,136,145,154],launch:[37,56,88,94,95,100],law:[4,17,59,139,157],lax:[89,99,136,138,140,157],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:130,lead:[6,13,18,22,32,48,51,64,67,70,106,109,132,137],learn:[48,88,105],least:[4,5,6,13,18,51,59,66,67,102,110,111,118,119,136,138,149,151],least_significant_digit:92,leav:[12,13,16,44,56,58,137,151],lectur:24,led:[20,122],leer:[87,99,136,138,140],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,127,128,131,137,149,151,153,157],legaci:[23,55],legend:[120,130],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,138,140,151],lenght:136,length:[15,30,48,59,70,96,101,119,133,136,137,138,139,154],leq:[5,130],less:[39,48,51,60,64,71,99,110,111,136],let:[16,18,45,58,81,108,120,128],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,56,58,67,71,72,84,86,89,92,93,99,106,107,110,111,113,114,118,119,121,124,127,130,131,134,136,137,138,139,140,148,149,151,153,154],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,128,136,154,157],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,132,133,137,143,144,152,154],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,130],lies:[6,16,32,110,130,139],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,128,130,135,148,149,152],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,130,136,138,139,140,145,149,151,157],lin:139,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,130,135,136,138,145,149,151],linear:[4,5,17,30,32,51,70,77,83,87,99,122,128,129,130],liner:[0,30],linestyl:151,linewidth:[77,130],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,126,128,129,131,133,140,143,144,149,153],linspac:[33,67,86,103,130],linux:[13,57,69,80,102,105,111,134],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,127,130,134,136,137,138,139,140,145,146,148,151],listofgrid:121,literalinclud:54,literatur:[48,128],littl:[48,70,92,131],live:101,llapack:102,llcenter:[53,149,151],llcorner:[53,149,151],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,105,111,151,155],load_sift_unit_sourc:30,loc:[130,151],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,132,149,151,154],local_fnam:151,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,131,132,145,146,151],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32],logical_and:[39,66],logical_not:[39,66],logical_or:130,logo:[54,120],lon:[53,149],long_lat:151,longer:[20,28,44,54,59,105,119,121,124,127,128,149,153],longitud:[30,32,46,47,53,66,70,76,117,130,139,145,151],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,105,106,111,114,121,130,136,137,139,148,151,152],lookup:121,loop:[18,44,67,76,104,110,121,124,128,132,135,136,154],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,128],low:[51,66,84,151,153],lower:[3,22,30,32,33,38,53,66,72,89,94,130,132,136,138,140,149,151,153],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:157,mac:[57,71,80,102,105,111,134],machin:[13,25,57,71,73,105,111,119,134],macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,130,132,139,146,149,151,154],magic:59,magnitud:[5,30,110,121,139],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,56,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,105,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,134,135,136,137,138,139,145,146,147,149,151,152,154],mail:[96,102],main:[5,11,12,19,28,39,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,137,149,154],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122],make:[1,5,11,13,14,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,56,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,128,130,136,149,151,153,154],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:145,make_shoreline_xi:151,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,56,58,68,71,73,77,79,84,90,110,113,117,119,121,122,124,132,133,136,138,139,140,141,143,144,149,152,154],makefile_kml:117,maketopo:[122,149],man:[17,25,45,48,139,143,144],manag:[4,12,13,51,57,93,145],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92,97],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,46,51,52,54,59,60,62,63,66,70,71,72,77,79,81,83,88,91,96,98,103,104,105,110,112,113,119,121,122,123,124,128,130,135,136,137,139,149,154],manifold:67,manipul:[44,151],manner:[5,39,44,51,60,66,70,76,121,132,136,143,144,149],manning_break:139,manning_coeffici:139,manual:[37,84,93,100,102,111,147],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,129,145,151,157],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,126,130],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,130,151],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,130],maskedarrai:151,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,129,133,143,144],match:[30,38,51,59,92,98,111,145,151],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,129,135,145,151,152],matric:[5,128,157],matrix:97,matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,128,154],max1d:[71,124],max:[0,30,32,39,67,97,110,114,132,138,140,145,151,157],max_buff:[44,119],max_inch:59,max_it:[39,66],max_level_deep:139,max_step:99,max_vertices_in_descript:59,max_wind_radiu:145,max_wind_radius_fil:145,max_wind_spe:145,maxgr:121,maxima:[32,71,139],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,136,137,138,140,145,146],maxlevel:[38,67,110,130,137,138,139],maxm:128,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:151,mbc:154,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,128,131,136,138,140,153],mean_latitud:49,meant:[41,89,99,145],measur:[30,44,47,70],mechan:[56,58,101,126],media:17,medium:[138,154],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,137,138],mention:[91,136,137],menu:[13,18,25,54,59,120,126,131,153],meqn:[44,72,128,154],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,135,136,154],meshgrid:[83,96,130,151],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,136,138,140,152],met:[32,61,81],metadata:[72,149,151],meteorlog:145,meter:[30,47,51,66,70,110,131,139,145,151,153],meterolog:145,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,128,135,136,137,138,140,145,148,149,151,154],metric:47,mhd:123,mhhw:131,mhw:[39,45,48,131,149,153],micro:13,mid:77,middl:[97,118],midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,56,57,58,63,66,67,71,77,83,93,97,105,106,108,109,110,113,136,137,149,151,153,154],migrat:19,millimet:151,million:124,mimic:121,min:[0,97,145,151,157],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,130,137,151],minimum:[3,32,44,51,70,103,119,139,151],minisymposterium:24,minlevel:[38,110,130,137,138,139],minmod:[87,89,99,136,138,140],minmod_limit:87,minor:[11,18,51,54,93,113,114,115,116,117,118,119,120,121,122,124],minut:[39,47,51,54,59,131,151,153],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,145,149,151,152],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:145,mllw:153,mode:[1,13,28,104,148],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,130,131,132,139,145,146,149],modern:[100,121,128],modif:[28,40,61,67,77,81,87,139],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,56,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,130,132,133,136,138,139,140,143,144,149,151,154],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,80,83,84,87,88,92,96,97,98,101,106,111,114,115,117,120,121,122,123,124,127,130,136,137,139,145,149,150],module_nam:104,modulu:[30,97,103,138,154],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,18,32,48,60,64,93,129,139,149],monitor:[22,25,33,34,38,45,66,71,114,116,119],monoton:[136,139],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,56,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,128,130,131,132,134,135,136,137,138,139,141,145,147,148,149,151,152,153,154,157],moreov:70,most:[3,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,127,128,129,130,131,135,136,137,139,142,154],mostli:[3,76,124],motion:[70,149],motlei:52,movabl:30,move:[16,32,35,36,45,54,56,58,60,70,96,110,113,115,120,139,149,150],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[131,153],mthlim:[89,99],much:[13,28,32,41,51,54,72,73,76,105,110,113,117,124,130,136,139,148,151],muct:99,multi:[17,51,83,113,115,118,121,154],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,56,76,83,89,92,93,104,106,111,113,119,123,127,128,145,146],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,46,51,54,61,62,63,66,67,70,71,72,81,84,92,93,96,98,99,101,102,103,104,106,110,113,117,128,130,131,132,136,138,139,140,145,151,152,153,154,157],mwave:128,mx1d:154,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:145,my_initial_solut:86,my_riemann_solv:128,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:145,n00014:4,n12:32,n23:32,nadi:145,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,127,128,130,135,136,137,138,139,140,145,151,154,155],namespac:84,nan:[47,151],nasa:4,nation:[4,48,145],nativ:92,natur:[32,54,128,157],naux:72,navd88:149,navig:[12,29,54,141],nbconvert:124,nbtool:117,nbviewer:118,nc_param:151,ncar:4,ncei:[39,66,131,149,153],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,145,151],ndarrari:89,ndim:[22,72,79,136,137],ndip:30,nearbi:131,nearest:[39,44,151],nearfield:132,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,56,57,58,59,67,70,72,73,79,83,84,89,92,117,119,121,127,128,135,136,149,152,154],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,127,128,130,132,133,134,136,137,138,139,140,143,144,145,146,147,149,151,153,154,157],neg:[22,39,132,139,149,151],negat:[47,149],neglig:[61,71,81,139],neighbor:[4,32,39,66,110,119,132,137,138,151],neither:[51,59,61,81,119],ness:92,nest:[113,119,137,138],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,149,151],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,136,138,140,145,151,153],neumann:145,never:[32,96,101,107,110,124,130,136,138,140,152],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,135],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,135],new_plotitem:[0,3,44,51,77,135],new_userdata:[138,140],newdelhi:145,newdir:69,newer:[28,71,87,121],newton:97,next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,136,137,139],nfr:4,ngdc:[39,66,131],nghost:72,ngrid:72,nhc:145,nhtmp:48,nice:[28,59,84,96,114,130],nicer:[79,105],nih:4,nnnnn:[127,136],no_data_valu:151,no_tran:89,noaa:[30,39,47,53,66,70,121,131,145,149,153],nodal:121,nodata_valu:[39,151],nodataerror:145,nodatav:149,nodatavalu:[53,149],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,136,138,140,145,157],nonconserv:157,none:[0,1,2,3,16,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,127,136,138,140,145,151],nonlinear:[4,5,17,48,87,128,136,157],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,151],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,128,129,136,137,138,140],north:[32,39,47,66,70],northernmost:149,norwegian:4,nose:[28,36,37,82,94,111,147],nosetest:[28,36,37,94,100,111,147],notat:[30,47,59,128],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,92,94,96,97,100,101,104,105,107,110,127,128,130,131,132,133,135,136,137,138,139,140,143,144,145,146,148,149,151,153,154],notebook:[25,30,32,39,54,66,70,73,85,91,93,109,117,118,124,128,129,130,151],notebook_html:124,noth:[15,60,101,122,133,143,144,151,154],notic:[51,61,81,103,111],nout:140,nov:[17,91],novemb:[118,119,126],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,80,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,131,135,139,141,149,156],npoint:33,nprint:[137,138],npt:32,npy:151,nrm:59,nrow:39,nrule:130,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:138,ntot:140,num_aux:[5,84,92,94,96,97,101,128,136,137,138,140,154],num_cel:[8,22,89,128,136,137,138,140],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,136,137,138,140],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,128,136,138,140,154],num_fgmax_v:[32,139],num_ghost:[84,89,92,96,97,99,101,128,136,138,140],num_output_tim:[5,83,86,93,127,136,138,140],num_proc:119,num_var:92,num_wav:[87,97,128,136,138,140],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,108,110,111,113,114,116,117,118,119,120,121,123,127,128,130,136,137,138,139,140,145,146,147,151,154],numer:[4,17,51,105,122,145],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,129,130,138,151,152],nxpoint:151,nypoint:151,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,105,113,122,127,128,136,137,138,140,145,151],obliqu:16,obscur:22,observ:[32,48,113,131,136,139,146,153],observatori:4,observerd:146,obtain:[4,6,12,18,32,44,46,48,58,59,92,93,94,110,128,132,139,141,149,157],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,145,146],ocean:[5,16,17,32,48,51,108,110,130,139,143,144,149],octob:[115,116,117,123,124,126],off:[12,13,44,48,51,59,67,79,86,93,110,137,151],offer:[40,51,111],offic:4,offici:[55,121],offset:[49,51,59,145,151],offshor:[59,64,66,130,132],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,127,128,130,131,132,135,136,139,145,149,153,154,157],okada85:[17,30,70],okada:[17,25,30,45,109,149,153],okadamap:30,olav:4,old:[1,7,18,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,128,149],older:[22,41,52,54,99,125,139],olig:[6,17],omega:83,omit:[56,58,111,119,127,139],omp_num_thread:[41,71,119,148],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,127,128,129,130,132,133,135,136,137,138,139,140,141,143,144,145,149,151,154,155],ones:[29,83,84,101,121,136,137],onli:[1,3,5,6,8,12,13,16,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,57,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,127,128,129,130,131,132,134,135,136,137,138,139,140,145,149,151,152,153,154,157],onlin:[24,105,109,121,142,149],onr:4,onshor:[32,59,64,66,130,132],onto:[28,30,51,132,151],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,130,134,153,155],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,148],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,146],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,20,22,25,28,29,30,32,35,36,40,41,47,50,53,58,62,67,68,76,77,83,84,86,88,89,90,91,92,93,95,98,99,100,103,104,107,110,111,114,117,118,119,122,124,130,135,136,138,139,140,141,145,151],orang:145,order:[4,5,6,13,16,17,29,30,32,48,53,56,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,128,130,132,135,136,137,138,140,145,149,151,152,154,157],ordinari:128,ordinarili:102,org:[4,17,43,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,151],organ:[22,23,35,36,86],orient:[70,84,105],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,127,137,138,140,151],orlean:108,oscil:[44,157],oscillatori:151,osf:[4,126],osher:99,osx:[51,80,105],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,57,58,61,62,64,66,67,68,70,71,72,76,79,80,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,128,131,134,135,136,139,141,145,149,151,153,154,155],otherwis:[5,30,54,56,58,61,66,81,93,97,98,99,100,101,104,110,136,151],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,56,58,59,60,61,62,67,70,77,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,128,130,138,140,145,151,152],out_path:145,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,138,140,152],outdir_p:86,outfil:151,outflow:[16,136,138,140],outgo:16,outlin:[59,67,79,124,128,135],outn:27,output:[1,5,7,8,13,14,16,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,128,135,138,140,145,146,147,148,151,154,155],output_aux_compon:[136,138,140],output_aux_onlyonc:[136,138,140],output_file_prefix:[86,93],output_filenam:84,output_format:[5,86,93,136,138,140],output_opt:86,output_q_compon:[136,138,140],output_step_interv:[136,138,140],output_styl:[72,83,86,93,127,136,138,140],output_t0:[127,136,138,140],output_tim:[93,127,136,138],output_unit:30,outputdir:67,outputfil:151,outsid:[6,16,38,59,66,124,130,132,149,151],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,128,130,132,135,138,139,148,149,154,157],overal:[10,83],overflow:[41,120],overhead:[6,71,110,148],overlai:59,overlaid:[51,59],overland:51,overlap:[110,113,114,149],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,127,154],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,128,141],owner:121,p_center:[89,103],p_function:93,p_l:97,p_node:89,p_r:97,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,57,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,145,152,155],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,131,133,135,141,143,144,153,154],pair:[13,92,111,151],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,56,71,82,88,90,91,93,96,98,100,104,110,111,119],paramet:[1,6,7,9,16,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,97,98,101,104,107,110,113,119,124,127,128,129,131,132,138,140,146,149,151,152,154],parameter:[108,121,130,139,145,146],parametr:146,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,56,58,59,60,68,81,84,94,100,101,103,105,109,111,123,139,154],partial:[17,73,108],particl:[25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,56,61,62,63,67,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,135,139,145,146,157],particularli:[16,27,29,32,50,51,57,70,72,114,117,121,132,149],partit:94,pascal:[30,145],pass:[16,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,128,138,145,151,154],passiv:129,password:28,past:[4,21,25,54,60,66,98,119,122,126,130,131,139],patch:[3,6,7,16,18,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,132,135,137,139,148,149,154],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,56,57,58,60,62,66,69,76,77,86,92,94,98,104,120,121,124,134,139,145,151,152],path_to_atcf:145,path_to_ibtrac:145,pathtool:67,pattern:[20,46,51,131],pcolor:[3,44,76,105,151],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcel:[39,66,124,130],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,73,91,103,136,154],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:130,peopl:[4,12,13,81,105],pep8:28,per:[13,30,44,51,59,67,71,92,137],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,18,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,127,128,134,139,147],perhap:[6,12,32,39,44,54,77,101,104,110,130],perimet:32,period:[5,6,16,32,62,83,96,110,136,138,140],perman:[67,124,125],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,139,149],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,56,73,81,83,90,91,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,157],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,128,130,149],piecewiselinear:38,pink:[39,59,77,135],pinkfig:77,pip3:55,pip:[18,25,28,51,55,57,85,91,94,100,102,106,120,121,122,123,124,125,126,134],pixel:[51,59],pkg:[55,140],place:[5,16,20,24,28,35,36,51,54,56,58,62,63,69,93,94,96,100,106,113,119,154],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,64,92,99,145],planar:[70,128,129],plane:[30,70,118,130,153],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,18,24,28,43,54,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,128,145],plot:[0,1,2,4,7,8,12,27,29,30,35,36,37,39,40,41,42,45,53,55,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,130,145,147,151],plot_box:[30,151],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:145,plot_phas:129,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,135],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,135],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,135],plotdata:[27,44,68,77,79,86,118,119,135],plotdir:[1,79,135],plotexampl:77,plotfigur:[44,77,135],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,135],plotloop:[77,79],plotstyl:[3,44,77,135],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,129],plu:[77,113,138,140,151],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,130],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,56,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,127,128,130,131,132,133,134,136,137,138,139,143,144,145,149,151,152,154],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,149],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,151],polynomi:128,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,137],portion:[6,39,51,66,84,148],posit:[32,39,51,70,73,104,139,149,151],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,56,58,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,128,130,131,132,136,137,149,153,154],post:[24,25,26,28,51,94,141],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,131],powel:139,power:[51,76,105],pprint:[137,138],practic:[28,106,108],pre:[3,13,33,55,85,92,105],preced:77,preceed:[72,154],precis:[41,59,84,89,92,128,151],predefin:77,predict:47,prefer:[59,94,96,105,134,145],prefix:[55,86,92,93,98],preliminari:[47,121,153],prepar:28,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[56,57,58],present:[6,24,59,89,97,98,99,104,141,154,157],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,97,103,120,121,139,145,146],pressure_forc:139,pressure_index:139,presum:131,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,18,28,29,44,53,55,57,63,66,67,79,83,99,108,113,118,119,120,121,127,132,136,138,140,149,151],previous:[6,22,32,66,79,117,124,132],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,145],primarili:[52,121,122],prime:111,principl:[5,151,154],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,130,136,138,140,145,152],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:152,printfig:1,printfram:[1,76],prior:[61,81,126,132,138,140,154],probabl:[13,28,51,64,66,105,106],probdata:[138,140],problem:[4,5,7,16,17,18,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,128,130,132,136,138,139,140,141,148,152],problem_data:[83,97,98,101,103,129],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,154],proceed:54,process:[25,35,36,45,51,52,56,70,83,88,89,94,100,101,104,111,119,152],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,135,139,151],product:[5,30,61,81,104,110,122],professorship:4,profil:[146,151],profit:[61,81],program:[4,46,48,63,73,105],programmat:81,progress:[24,28,99,108,117,149,151],prohibit:22,proj:138,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,137,151],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,105,151],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,128],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,133,137,138,143,144,145,154],properli:[18,20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,105,111,113,116,121,124,134,136,139,149,151,152,154],properti:[30,60,67,83,86,89,98,101,151],propos:[28,157],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,128,136,144,145,148,149,151,154],proximity_radiu:151,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,154,157],pt_chosen:66,pth:58,pts:[137,138],pts_chosen:[66,130],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,145],publicli:141,publish:[4,17,54,91],puget:[39,66,130],puget_sound_13_mhw_2014:[39,66],pull:[12,24,26,29,54,55,57,88,96,111,116,119,120,128],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,105,111,129],purpos:[32,45,48,53,61,67,72,81,89,105,109,111,127,130],push:[28,54,55],put:[1,11,16,28,29,41,54,55,56,58,59,67,83,88,96,119,134],pyclaw:[1,3,4,12,17,23,24,27,28,29,44,55,56,72,73,79,80,90,94,96,102,105,106,126,128,129,134],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:92,pyplot:[59,129,145,151],pyport:105,pyramid:51,python3:120,python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,128,129,134,139,149,151,152,155],python_io:72,pythonpath:[56,58],pyweno:[81,99],q0000:[67,136],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:154,q_hat:97,q_hat_l:97,q_hat_r:97,q_i:[128,157],q_l:[97,128,129],q_out_field:44,q_r:[97,128,129],q_t:[5,96,97,99,103,154,157],q_x:[5,97,103,157],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,131,132,154],qinit_data:[39,132],qinit_modul:39,qinit_typ:[139,149],qinitdata:139,qinitfil:139,qoi:32,qopenmp:41,qquad:157,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,129,133,139],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,80,105,111,147],quicker:[13,130],quickli:[44,54,59,85,119,132,151],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:139,radial:[3,32,47,139,154],radial_dam_break:129,radian:47,radii:145,radio:59,radio_styl:59,radiu:[3,139,145,146,151],rai:151,rais:[24,30,58,92,98,100,104,145,151],rake:[30,70],ran:[36,147],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,129,130],rare:[70,119],raster:[51,53,149],rate:13,rather:[5,6,20,22,28,29,32,39,54,55,56,58,62,63,64,69,70,89,94,96,99,107,110,117,118,119,121,123,124,126,127,130,135,136,137,145,146,149,151,154,157],ratio:[6,15,22,49,67,70,87,97,99,133,136,137,138],raw:136,rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,28,30,32,33,35,36,44,45,48,49,53,56,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,138,139,140,145,149,151,154,155],read_:[92,98],read_arrai:92,read_atcf:145,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:145,read_head:151,read_hurdat:145,read_ibtrac:145,read_imd:145,read_jma:145,read_netcdf:[39,66,121,122,149,151],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:145,readabl:[145,146],reader:155,readi:[83,84,86,100],readlin:130,readm:[54,55,124,128,134,154],real:[48,55,64,104,128,153],realist:51,realiti:48,realli:[6,111,154],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,136],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,128,153],recip:57,recogn:[46,53,149],recomil:32,recommend:[4,30,32,35,36,54,55,56,58,71,76,85,89,94,95,99,100,102,103,110,121,134,136,138,139,140,155],recompil:[28,40,41,62,71,104,124,154],recomput:[79,83,114,123],reconstruct:[91,99,145],record:[32,44,60,101,145,153],recov:[28,33],recreat:[28,40,62,124],rect:[30,130],rectangl:[6,7,25,30,66,70,110,124,151],rectangular:[6,7,16,17,30,32,38,39,45,46,59,66,89,110,121,124,137,139,149],recurs:[54,69,113],red:[2,3,28,44,59,77,111,135,145],redhat:105,redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,39,51,118,120,157],redund:145,refactor:[113,114,115,117,119,120,122],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,127,128,130,139,145,149,151,153,154],referenc:[51,126,131,149],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,130,132,135,136,137,138,148,149,154],refinement_data:139,refinement_ratios_i:[8,137,138],refinement_ratios_t:[137,138,139],refinement_ratios_x:[137,138],refinementdata:116,reflect:[4,5,16,28,110,121,136,138,140],refresh:[13,44],regard:[4,38,118,145],regardless:[13,39,66,110,136,139],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,131,132,137,138,149,151],region_domain:38,region_tool:[38,39,66,124,125,130],region_trapezoid:38,regiondata:[38,110,138],regions2kml:59,regist:58,registr:[25,45,121,149,151],regress:[22,25,28,50,91,94,119,120,147],regression_test:[36,147],regrid:[5,10,110,113,114,119,122,123,137,138,148],regrid_buffer_width:[110,137,138],regrid_interv:[110,137,138],regular:[32,151],reiniti:[32,119],reject:[93,99,136],rel:[13,20,30,40,46,48,51,70,71,77,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,131,137,139,141,149,153],relat:[3,7,18,22,24,54,73,97,108,120,124,131],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,145],reli:[73,84,95,105,119],relief:[131,153],reload:151,reltol:104,remain:[51,58,96,104,106,113,143,144,145],remak:54,rememb:[15,27,71,77,94,133,143,144],remot:[13,51,55,121,151,153],remote_directori:151,remote_topo_url:[149,151],remov:[1,3,20,29,40,52,58,59,62,68,79,94,106,113,116,117,132,151,152],renam:[20,22,35,36,62,96,99],render:[12,22,51,59,155],reorder:[20,22],reorgan:[22,84,112],repack:55,repeat:[39,66,79,127],repeatedli:[3,94,100],replac:[6,13,29,38,44,48,52,54,55,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,127,128,132,151,152],replace_no_data_valu:151,replace_valu:151,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,134,136,138],repositori:[22,24,25,26,29,32,36,37,42,45,52,56,57,58,62,63,91,99,106,108,109,111,116,119,142],repres:[30,83,89,92,96,97,99,101,151,157],represent:[53,89,92,98,104,151],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,128,139,145,151],requir:[3,4,16,20,22,25,27,30,32,35,36,40,45,47,48,55,56,58,66,67,70,73,76,79,80,83,84,89,91,92,95,96,99,100,101,103,104,110,111,113,114,117,119,122,124,128,129,130,135,136,137,138,139,140,145,146,149,152,155,157],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,56,58,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,30,32,39,44,70,89,99,103,104,113,117,121,122,128,131,139,149,151,153,154],resolution_limit:151,resolv:[4,32,51,54,108,121,132],resourc:[17,24,28,46,105],resp:[20,30],respecitv:30,respect:[30,32,51,59,91,92,97,151],respons:[13,48,83,98],rest:[5,22,79,108,121,131,143,144,149,151],restart:[13,25,44,79,91,118,119,120,121,123,136,138,140],restart_fil:[127,136,138,140],restor:6,restrict:[38,51,121,130,139,149],restructur:[11,54],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,35,36,37,42,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,132,136,137,138,139,140,147,149,151,153],retain:[61,81,92],retak:[136,138,140],retir:54,retriev:[13,47,79,84,99,151,153],return_topo:151,return_xarrai:151,reunion:145,reutil:84,reval:129,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,97,103,138],rho_l:97,rho_r:97,rhou:67,rhov:67,richardson:[5,7,22,137,138],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,56,58,63,73,81,83,89,90,99,100,101,103,106,134,136,138,140,143,144,157],riemann_aug_jcp:120,riemann_book:129,riemann_interact:118,riemann_solut:129,riemann_solv:99,riemann_tool:[117,129],right:[5,32,61,64,70,81,89,94,96,97,101,103,127,128,130,157],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,131,132],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:145,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,129,151],robustli:122,rock:70,roe:[87,97,128],roman:57,root:[29,56,58,92,93,98],rossby_wav:129,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,130,148],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,105,110,113,114,117,119,121,122,124,128,132,136,138,140,145,151,152,154,155,157],row:[30,32,53,87,110,149,151],rp1:[128,157],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:128,rp1_shallow_bathymetry_fwav:129,rp1_shallow_roe_trac:129,rp1_shallow_roe_with_efix:129,rp_:97,rp_sourc:96,rpn2:[5,128],rpn2_geoclaw:129,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:128,rpn2_shallow_bathymetry_fwav:129,rpn2_shallow_roe_with_efix:129,rpn2_shallow_spher:129,rpn2_sw_aug:129,rpn2_vc_advect:115,rprint:[137,138],rpt2_geoclaw:[18,129],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:128,rpt2_shallow_roe_with_efix:129,rpt2_shallow_spher:129,rr2:130,rr_admiralti:130,rr_name:130,rrzigzag:130,rsmc:145,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,130],ruledrectangle_admiraltyinlet:130,ruledrectangle_covering_selected_point:[66,130],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,18,20,22,24,25,28,32,33,39,40,42,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,127,128,138,139,140,145,147,148,151,154],run_app_from_main:104,run_data:86,run_exampl:151,run_seri:104,runclaw:[14,50,114,123,125,128],rundata:[5,22,32,38,39,44,59,60,110,113,124,127,132,136,137,138,139,140],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,147],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:[97,130],s_2:[97,130],s_3:97,s_l:97,s_m:97,s_r:97,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,127,128,130,136,137,138,139,143,149,151,154],sampl:[7,8,14,17,25,29,32,41,45,51,70,106,111,127,130,136,137,149,151,154],san:57,sanromd:57,santiago:51,satisfi:[32,39,66,99,110,130,157],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,127,146,151],savecod:86,savefig:59,scalabl:[17,91],scalar:[27,30,39,93,101,128,132,136,157],scale:[4,30,49,51,67,73,91,92,113,119,121,139],scan:41,scatter:[3,22,67],scenario:[48,131],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,91,94,105],scipi:[13,84,105,145,151],scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,138,140],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,57,62,67,73,76,81,84,88,90,91,93,94,99,104,105,106,111,121,125,128,135,139,140,151],scriptstyl:130,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,131,139,149,151,153],sea_cmap:39,sea_cmap_dri:39,sea_level:[32,39,48,59,97,124,132,139,149,151],seab:64,seafloor:[30,48,70,132,153],sealevel:[25,45,139],search:[1,13,14,58,76,91,104,106,119,121,130],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,127,136,139,145,147,148,151,154,157],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,111,127,136,139,151],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,135,136,137,138,139,141,142,143,144,145,147,148,149,151,152,153,154,155,156,157],seem:[101,106,124,135],seen:[12,22,32,35,36,37,48,71,96,136,141],segement:151,segment:130,segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,126,133,136,139,143,144,153],select_by_flood:[39,66],self:[30,33,99,151],semi:99,send:[13,24,96,128],sens:[27,51,60,121,157],sensit:[48,64],sent:[93,101],separ:[1,28,32,51,54,57,59,63,91,99,130,151],seper:104,sept:55,septemb:[18,125,126],sequenc:[20,22,63,66,94,100,103,104,111,113,120,128,154],sequenti:32,seri:145,serial:[94,98,104,148],serv:29,server:[13,29,39,51,54,55,66,121,149,153],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,22,25,27,28,30,32,33,35,36,38,39,40,41,42,44,45,47,48,49,50,51,54,55,56,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,127,128,129,130,133,135,136,137,138,139,140,141,145,146,149,151,153,154,157],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,132],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,151],setaux:[20,22,63,84,113,114,128,136,138,140],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,19,20,22,25,42,44,68,75,76,95,96,104,119,152,155],setplot_fil:51,setplot_kml:51,setprob:[39,63,138,140,154],setrun:[5,6,7,8,14,16,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,107,108,110,113,117,118,119,122,124,127,128,131,132,145,149,152,154],setrun_setgeo:139,setup:[37,55,83,84,88,91,94,96,99,100,101,109,134,152],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,18,20,22,23,24,29,30,35,36,40,44,46,48,51,55,56,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,130,135,139,147,149,151,154],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,128,132,133,139,143,144,149,154],shallow_1d:129,shallow_1d_pi:[97,129],shallow_2d:129,shallow_bathymetry_fwave_1d:129,shallow_bathymetry_fwave_2d:129,shallow_exact_1d:97,shallow_fwave_1d:[97,129],shallow_hll_1d:[97,129],shallow_roe_1d:[97,129],shallow_roe_tracer_1d:129,shallow_roe_with_efix_1d:129,shallow_roe_with_efix_2d:129,shallow_spher:[84,111,129],shallow_sphere_2d:129,shallow_trac:129,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,130,151],shapshot:13,share:[25,26,51,56,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,128],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,56,57,58,71,77,79,94,100,103,105,106,119,134],shg:67,shift:[5,30,48,53],ship:32,shoal:130,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,132,139],shorelin:[39,51,151],shoreline_xi:151,shorter:[3,110,151],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,92,93,94,96,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,127,128,129,131,132,134,135,136,137,138,139,140,141,145,147,149,151,152,154,156,157],shouldn:88,show:[0,2,3,9,10,12,14,28,30,35,36,39,44,51,54,55,59,62,66,67,79,89,103,106,111,117,130,151,152,154],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,130,151,154],showpatchbord:67,shrink:151,shu:99,shuffl:92,siam:[17,24,25,91,128],sid:145,side:[6,16,18,32,51,54,64,70,92,111,128,157],sidebar:[51,54],siesmic:132,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,18,24,77,145],signatur:[3,84,87,89,90,92,97,145],signific:[64,126,131,151],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:129,silo:155,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,139,145,146,147,149],similarli:[40,52,88,94,96,130,148],simpl:[7,29,35,36,38,45,55,70,84,91,96,97,99,104,109,111,151],simplest:[69,103],simpli:[5,13,35,36,37,39,44,51,53,56,57,62,63,66,83,85,86,88,93,94,100,111,128,130,141,145,151,154,155],simplifi:[70,76,77,92,111,120,121,154],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,130,132,139,145],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,105,110,111,113,117,118,119,120,122,123,124,125,126,127,128,130,131,136,137,139,149,152,153],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,59,60,62,67,70,71,72,83,89,92,93,98,104,111,116,117,119,126,128,132,136,137,138,139,149,151,153,154],single_storm:145,sisc:[17,91],sit:13,site:[28,51,56,58,106],situat:[51,66,67],size:[20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,138,140,149,151],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:124,skiprow:30,slack:24,slice:[3,67,128],slide:[24,105],slider:[51,59],slightli:[16,18,39,53,119,120,130],slip:[25,30,45,109,149,153],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[18,30,99],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,127,136,138,139,149,151,153],smaller:[13,51,64,73,89,93,113,132,136,138,139,140,151],smallest:[110,130],smear:59,smooth:[30,99,110,154],smooth_data:151,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,141,149],sol:83,sole:128,solid:[3,16,51,70,96,135,136,138,140],solitari:17,solut:[1,3,4,5,16,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,97,99,101,102,103,110,111,117,118,122,127,128,135,136,137,138,140,147,154,157],solv:[4,5,8,16,17,20,26,35,36,48,58,60,82,84,86,89,91,96,97,100,122,128,129,136,149,154,157],solver:[4,5,6,20,22,23,25,28,45,56,58,63,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,136,138,140,143,144,157],solver_nam:128,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,56,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,135,136,137,138,139,140,141,145,146,148,149,151,154],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,149,152,154],sometim:[58,62,66,77,83,93,121,131,132,146,153],somewhat:[71,76,110,111,119,136],somewher:[68,117],sonel:153,soon:99,sorin:4,sort:[13,39,56,121,135,152],sound:[39,66,83,97,103,130],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,56,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,129,131,136,138,139,140,142,143,144,145,149],source_list:104,source_split:[89,99,136,138,140,154],south:[32,149],space:[5,6,7,16,17,30,32,33,44,51,53,70,89,93,96,110,117,127,130,136,137,138,139,140,149,151,154],spacial:[132,139],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,128,131,138,140,157],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:151,special:[4,7,16,45,46,51,61,73,81,105,110,130,151],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,97,98,104,108,119,120,121,124,135,136,137,138,140,146,149],specifi:[0,1,2,3,4,5,6,7,15,16,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,127,128,130,131,132,133,138,140,141,143,144,145,146,148,149,151,152,153,155,157],speed:[32,83,87,97,103,119,124,128,129,136,139,145,146,151,154,157],speed_toler:139,spell:77,spend:118,spent:148,sphere:[47,84,114,129,139],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,136,138,140,148,154,157],spot:77,sprint:[137,138],spuriou:[16,32,111],sqrt:[3,32,64,83,96,97,103,138],src1:[63,144,154,157],src1d:144,src2:[84,144,154],src3:[144,154],src:[5,6,11,14,15,16,18,19,20,28,30,32,33,39,40,41,47,50,52,55,56,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,128,132,133,136,138,140,143,151,152,157],src_split:[136,138,140],srcn:[136,154],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,136],stabl:[80,89],stack:[71,117,130],staff:123,stage:[99,131,132,149,151],stai:[26,32],stand:[4,18],standard:[6,16,30,32,51,53,67,72,84,87,99,105,106,110,111,138,139,140,141,149,154,157],start:[1,2,4,5,6,7,9,13,14,18,24,27,28,29,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,80,83,94,98,99,105,106,110,111,118,121,127,128,130,132,139,145,147,149,154],start_dat:145,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,128,129,130,136,149,157],statement:[35,36,56,58,67,72,105,106,119,138],station:[47,131,153],stationari:[60,149],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,149],steep:[66,157],steepli:132,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,19,28,32,35,36,37,44,51,54,55,60,67,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,127,128,134,136,137,138,139,140,149,157],step_hyperbol:99,step_index:99,step_interv:138,step_sourc:[89,96,99],stepgrid:148,stepgrid_dimsplit:117,steps_max:[136,138,140],stiff:136,still:[1,5,7,8,13,16,22,24,26,32,34,39,51,52,56,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,127,128,139,145],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,138,140,151],storag:118,store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,135,137,139,145,148,149,151],storm:[12,17,24,25,45,117,120,121,122,123,125],storm_atcf:145,storm_fil:[139,145],storm_ibtrac:145,storm_modul:117,storm_nam:145,storm_radiu:145,storm_radius_fil:145,storm_specif:139,storm_specification_typ:139,storm_targ:145,str:[0,1,3,30,59,92,136,137,145,151],strait:130,strang:[89,99,136,138,140,154],strategi:6,stream:77,stress:[83,93],stretch:[66,151],strict:[61,81],stride:[22,151],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,136,139,145,151],strip:[59,130,151],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,130,135,151],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121],sub:[30,111,151],subclass:30,subdirectori:[5,12,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,135,139,141,147,151],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,153],subject:[51,66,110,137,139],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,130],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,128,136,137,148,154,157],subsampl:[53,149,153],subsequ:[3,10,67],subset:[30,32,39,66,121,130,149,151,153],subsid:[124,132],substanti:[28,54,81,117,123],substitut:[61,81],subsurfac:149,subtleti:66,succeed:99,succesfulli:84,success:[67,98,151,154],successfulli:[62,98],suffici:[13,16,20,70,71,108,113,139],suffix:[62,151],suggest:[4,24,29,47,53,54,58,79,80,105,126,128,139,156],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,128,131,145,151],sum:[39,44,70,93,101,148],sum_:157,sum_p:157,summar:[3,28,31,56,110,112,154],summari:[24,25,55,121,136,137,138,139],superbe:[87,136,138,140],superbee_limit:87,superclass:99,supercomput:[91,93,94],superpack:105,superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,141],supplementari:111,suppli:[110,145,154,157],support:[4,8,13,22,38,41,48,51,58,70,81,83,84,89,92,93,95,97,99,110,117,119,120,121,122,128,130,136,145,146,149,152,155],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,136,137],sure:[1,20,28,40,54,55,67,73,83,92,94,96,98,102,104,131,151,152,153],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,130,131,139,149],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,145],surge_data:139,surround:[110,151],surviv:81,sw_aug_2d:129,swag:24,swap:151,swaphead:151,sweep:[8,128],symbol:[3,67,106],symmetr:[3,47,154],symmetri:16,syntax:11,sys:[39,66,86,138,140],system:[4,16,17,23,36,37,51,52,56,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,128,136,138,140,147,154,157],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,126],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,107,133,137,138,143,144],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,132,136,137,138,139,151,154,157],take_one_step:99,taken:[6,32,66,70,93,99,110,136,154],tall:0,tan:77,tank:[16,48],tar:[13,56,59,123,126],tarbal:[55,152],tarfil:[18,56,58,120,121,122,123,124,125],target:[5,56,58,77,84,96,124],task:76,tchknnnnn:127,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,145,146],td9635:145,td9636:145,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,129,136,138,139,140,143,144],termin:[57,85,134,136,137],terrain:64,terrel:4,test:[18,22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,97,104,105,110,114,118,119,120,121,124,128,140,145,148,149,151],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,149],test_shallow_spher:111,test_topotool:[114,151],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,127,136,138,140],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,18,20,22,28,29,30,32,39,44,51,54,55,56,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,105,106,110,111,113,116,117,118,119,120,121,123,124,126,127,130,131,132,135,136,137,139,145,146,148,149,151,154,157],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,96,99,104,110,111,119,132,135,139,145,149,151,154],them:[5,13,18,22,28,29,30,32,44,51,54,56,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,130,142,145,151,154],theori:[61,81,157],therefor:[84,94,121,149],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,145,146,147,148,149,151,152,153,154,155,156,157],thing:[0,13,16,22,28,29,39,48,54,59,79,88,105,110,111,120,125,127],think:[58,64,66,97],third:[16,32,53,87,148,151],thn:136,thoroughli:92,those:[4,6,10,12,18,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,127,141,147,151,154],though:[3,39,73,145,149],thought:[18,131],thousand:[4,73],thread:[41,71,110,124,148],threat:4,thredd:[39,66,149,153],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,130,136,139,149,151,154],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,145],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,131],tide:[44,45,47,121,131,151],tidesandcurr:47,tier:13,tild:157,time:[0,1,5,6,7,10,14,16,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,127,128,130,132,134,135,138,140,145,149,152,153,157],time_files_scanf:155,time_integr:99,time_offset:145,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,136,138,140,145],timezon:59,timing_plot:123,tip:[24,45,56,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,130,151],title_with_t:[0,77],todo:[16,128,145,151,157],togeth:[5,16,28,29,30,54,70,110],toggl:138,token:29,tokyo:145,toler:[5,32,97,104,110,111,119,137,138,139],tolsp:110,too:[6,47,51,54,55,118,130,138,140],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,139,141,149,151,153,155],toolkit:[94,155],top:[0,1,3,11,23,29,30,51,54,55,56,58,70,77,96,97,106,111,127,134],topgraphi:151,topic:67,topo1:149,topo1writ:151,topo2kml:59,topo2kmz:59,topo2writ:151,topo3writ:151,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,131,139,149,151],topo_data:139,topo_fgmax_mask:66,topo_fil:151,topo_file_nam:59,topo_fnam:151,topo_func:151,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,149,151],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,139,149,151],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,130,131,132,143,144,150],topograpi:149,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,149,150],topotools_exampl:[109,151],topotyp:[139,149],topotype1:151,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,136,137,138,140,148],total_energi:93,total_step:[136,138,140],touch:66,tout:140,toward:[4,30],tprint:[137,138],trace:93,traceback:77,tracer:129,track:[24,25,28,32,33,45,51,54,58,71,83,91,104,111,113,122,124,129,139,145],track_color:145,tracker:28,tradeoff:110,tradit:[86,92],traffic:[128,154],trail:[57,58,59],tran:17,tranpsort:136,trans_cor:89,trans_inc:89,transect:[32,139],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:136,transon:119,transpar:[51,59],transport:[136,138,140],transpos:5,transvers:[8,89,119,128,129,136,154,157],transverse_wav:[89,136,138,140],trap:41,trapezoid:38,travel:137,travi:22,tree:[52,58,96,134],tri:145,triangl:70,triangular:[30,45,121],trickeri:55,trigger:[92,139],troubl:[35,36,76,91],troubleshoot:[25,56,91],truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,130,131,132,139,146,149],tt3:[70,151],tulan:24,tune:26,tupl:[3,30,47,59,70,77,89,93,151],turbul:[48,99],turn:[44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,157],twice:[51,136],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,127,128,130,133,134,138,139,149,151,154,157],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,127,145],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,105,130,137,138,139,145,146,149,151,157],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,137,138,148,149,152,153,154,157],typo:122,u_l:[97,129],u_r:[97,129],u_t:[97,103],u_x:103,ubar:97,ubuntu:[13,57,105],ucar:[68,92],ucsb:[30,70,153],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,56,61,63,76,81,89,111,119,121,126],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,128],understood:48,underwat:[45,51],undesir:127,undivid:110,unequ:130,unexpect:[47,51,59,62,145],unidata:[68,92],uniform:[30,32,66,70,73,84,121,149],uniformli:149,unind:[59,145],uninstal:[55,58,106],union:[130,149],uniqu:[1,72,118,145],unit:[30,46,47,52,70,89,119,145],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69,105],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,97,105,131,136,151],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:145,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,136,138,140],unstabl:118,unstructur:151,unsuccess:98,unsur:136,untar:57,unterweg:81,until:[13,32,60,66,132],unus:[2,92],unzip:51,upbnd:[137,138],updat:[6,12,13,22,23,25,32,49,52,56,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,128,137,138,140,142,145,148,154],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,132],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,130,136,138,140,149,151],upper_bound_limit:87,upper_glob:89,uprint:[137,138],upstream:55,upstrik:[30,70],upward:48,upwind:136,url:[4,12,17,51,55,121,122,149,151],usa:145,usa_ag:145,usag:[0,1,2,3,13,45,51,58,92,121,145,151],use:[3,4,5,12,13,14,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,97,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,128,129,130,131,134,136,137,138,139,140,145,149,151,152,153,154,155,156,157],use_adjoint:5,use_for_kml:51,use_fwav:[128,136,138,140],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,127,128,130,131,132,135,136,137,138,139,140,143,145,148,149,151,154,155,157],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,58,59,66,71,72,78,81,84,91,93,105,106,110,111,121,124,128,130,136,137,139,149,151,152,157],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,57,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,128,136,138,139,140,142,151,157],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,128,129,132,139,148,151,157],usg:[4,30,153],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,97,99,101,102,103,105,106,110,111,117,120,121,123,124,126,128,130,132,134,136,138,139,144,145,148,149,151,152,153,155,157],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,128,136,137,138,139,140,152,154],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,135,150,151,152],uwamath:13,valid:[3,48,70,86,93,98,101,119,139,145,146,151],valout:[68,72,121,124,148],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,127,128,130,131,132,136,137,138,139,140,145,146,149,151,152,154,157],valueerror:[30,145,151],valuemax:32,van:[87,99,136,138,140],van_leer_klein_sharpening_limit:87,vancouv:130,vanish:5,vanleer:[83,99,136,138,140],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,128,129,131,133,157],variabl:[0,3,5,13,14,22,25,27,28,30,32,35,36,40,44,45,50,51,54,56,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,127,128,136,137,138,140,145,149,151,152,154],variable_dt_refinement_ratio:[137,139],variable_eta_init:132,variant:[20,56,104,111],varieti:[44,86,105],variou:[12,20,22,30,38,48,54,67,70,77,79,89,103,105,106,110,119,128,135,139,145],vastli:131,vector:[5,22,83,87,93,101,121,128,129],veloc:[16,32,47,60,67,79,96,97,103,119,131,136,137,138,139,140,154],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,130,136,138,140,145,151],verbosity_regrid:[125,137,138],veri:[3,5,16,22,48,51,55,58,59,70,77,81,84,92,93,94,95,96,99,111,114,118,130,132,136,146,149],verifi:[47,104,111,153],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,76,77,79,80,84,87,91,92,94,97,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,128,129,130,132,133,134,136,137,138,139,140,143,144,145,149,151,154,157],versu:151,vertic:[30,38,48,51,59,66,130,131,139,151,153],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,56,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,128,130,134,141,143,144,149,151,154],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,141,142],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,151],virtual:[4,13,25,27,101,105],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,57,58,62,66,67,73,77,78,79,80,91,95,100,106,134,135,141],visibl:[12,13,51,109,141],visit:[22,25,76,126],visual:[23,24,28,35,36,44,45,58,67,72,73,76,91,95,96,106,117,124,155],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,130,137,148,149,154],vrt:51,vstack:130,w_1:97,w_2:97,w_3:97,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,126,128,130,135,136,142,146,149,154,156,157],wait:13,wall:[16,41,96,103,118,121,123,136,138,140,148],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,56,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,126,128,129,130,135,138,139,142,145,149,151,152],wari:97,warm:87,warn:[24,28,92,93,99,136,152],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,130,151],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,128,130,131,132,139,149,151,153,154],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,129,130,131,136,137,138,139,140,154],wave_toler:[110,139],wavelength:48,web:[23,25,28,35,36,51,54,55,121,141,151],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,131],webserv:13,websit:[16,51,54,141,151],weight:51,welcom:[24,81],well:[4,6,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,129,132,136,137,143,144,145,154,157],wellington:145,wendroff:[89,99,136,138,140,157],weno:[73,91,99],weno_ord:99,went:[58,129],were:[4,6,14,18,20,32,44,54,60,63,67,68,84,110,113,119,122,130,132,149],weren:125,west:149,western:151,wet:[32,39,45,66,130],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,56,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,130,131,135,136,138,139,140,141,145,149,151,153,154],whatev:[29,68,83,98,128],when:[5,14,15,16,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,56,58,60,64,66,67,70,71,72,73,76,77,79,83,90,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,128,130,131,132,133,135,136,137,138,139,140,141,145,149,151,152,153,154,155,157],whenc:93,whenev:[28,118,154],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,56,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,127,129,130,131,132,135,136,138,139,140,145,148,149,151,154,157],wherea:[44,51,76,94],wherev:[29,152],whether:[3,6,13,16,22,47,53,60,61,62,67,81,89,92,93,97,98,99,110,111,119,128,130,136,137,139,151],which:[0,1,3,4,5,6,7,11,12,13,14,16,20,22,25,28,29,30,32,33,35,36,37,38,39,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,127,128,129,130,131,132,136,137,138,139,145,146,149,151,153,154,156,157],whichclaw:152,whidbei:[39,66,130],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,58],whole:[28,51,93,94],whose:[3,77,84,96,97,132,136,137,151],wide:[58,105,106,129],wider:77,width:[30,51,59,70,72,89,96,101,110,130,138,140],wiki:100,wikipedia:53,wind:[121,139,145,146,151],wind_forc:139,wind_index:139,wind_refin:139,wind_spe:145,window:[13,30,67,79,105,134],wip:18,wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,56,58,67,75,76,91,96,99,100,102,106,108,110,119,133,141,143,144,152],within:[6,16,28,54,56,58,66,73,77,95,104,106,110,128,130,135,141,151],without:[16,22,40,44,48,57,59,61,62,63,66,67,77,79,80,81,87,92,93,104,106,111,130,138,140,145,152,154],wkt:51,wmo:145,wmo_:145,wmo_ag:145,won:[12,13,66,84,151],woodward:120,word:[93,121,145],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,128,135,136,137,139,141,146,149,152,156],workflow:[108,141,145],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,145],worst:131,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,56,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,130,131,132,135,136,139,145,149,154],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,145],wrapper:151,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,138,140,145,149,151],write_:92,write_arrai:92,write_atcf:145,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:145,write_hurdat:145,write_imd:145,write_jma:145,write_p:[92,98],write_tcvit:145,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,92,96,105,119,128,136,137,138,139,140,145,151,154],wrong:[58,63,67,93,106],www:[4,13,17,30,39,43,45,54,60,61,66,68,81,84,89,92,94,120,122,145,151],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,130],x_2:[5,130],x_c:130,x_cell:59,x_center:130,x_edg:[59,130],x_i:[128,154,157],x_inch:59,x_mask:151,xarr:89,xarrai:151,xarray_d:151,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[137,138],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,149],xllcorner:[53,149],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,138,140,149,151,154],xlowerg:84,xmax:0,xmin:0,xpoint:139,xrang:96,xtick:[39,49],xupper:[0,22,138,140,151],xxdiff:111,xxx:149,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:130,y_cell:59,y_center:130,y_edg:[59,130],y_inch:59,year:[4,17,22,51,59,91,112,122,145],yellow:[59,77,145],yellow_red_blu:77,yes:67,yet:[1,13,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,128,136,138,156],yianni:[4,17,81],yield:3,yleft:[137,138],ylimit:[0,44,51,124,135],yllcenter:[53,121,149],yllcorner:[53,149],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,138,149,151],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,97,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,127,128,129,130,131,132,133,134,135,138,139,140,141,142,143,144,145,147,149,152,153,154,156],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,128,133,134,143,144,149,152,154],yourself:[41,44,57],youtub:[24,108,124],ypoint:139,yupper:[22,138,151],z_allow_wet:39,z_dry:39,z_format:[39,66,151],zdry:[39,66],zenodo:[4,57,124,125,126],zero:[3,16,18,30,32,39,41,59,67,83,96,97,101,103,130,131],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,137,138],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:151},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.7.1","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","<no title>","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Additional options for installing Clawpack","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","Pyclaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sealevel","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":132,"catch":28,"class":[83,86,145],"default":[15,107,132,133,143,144],"final":55,"function":[14,47,59,65,66,79,93,99,157],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,AWS:57,Adding:[28,51,88,96,128],For:6,Going:90,One:[128,129,157],The:[51,65,66,67,103],Use:102,Using:[5,13,25,38,52,57,58,63,68,71,93,96,99,128,135,154],about:[4,81],access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,57,137,139],adjoint:5,adjust:132,advect:97,after:127,afterfram:67,algorithm:[6,17,66,73,157],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,130,137,139],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,137,138,154],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:139,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,130],author:4,auto:[30,33,47,59,151],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,154],background:77,backward:[18,121,122,123,124,125],base:62,basic:[51,82,95],bathymetri:153,befor:154,behavior:132,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,154,157],bounding_box:130,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:153,burger:97,candid:55,capac:157,cautionari:48,cell:[6,39,130],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125],chardiff:111,check:[28,111],checkpoint:127,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,136,140,147],claw:[74,134],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,129,140,156],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,58,74,111,152,154],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,152],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125],compil:[41,57,62,68,102,142,152],compon:[23,77],comput:[73,127],conda:57,condit:[6,16,96,103,154,157],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,105,111,130],continent:130,continu:111,contourf:77,contribut:[26,28,129],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:130,coordin:[49,51],copi:69,correctli:94,cover:130,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,128],dart:153,data:[33,51,72,135,139,146,149,151,152,153,154],debug:[77,137],defin:[16,130],deform:132,dem:[39,66],demonstr:129,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:135,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,129,157],dimension:128,directli:13,directori:[58,62,69,77],displac:149,doc:54,docker:[29,57],dockerfil:[29,55],docstr:[30,33,47,59,151],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,142,151],doe:57,doing:55,domain:[89,103],done:154,download:149,doxygen:9,drop:105,dry:[39,66],dtopo:150,dtopotool:30,duplic:62,each:[28,154],earth:51,earthquak:[70,153],easi:106,ec2:13,elev:[49,66,132],environ:[41,134],equat:[97,103,129],error:[28,102],eta:132,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,130],exe:152,exist:69,experi:58,extra:54,extrapol:110,f2py:152,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,127,130,139,149,154],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,139],flag2refin:110,flag:[5,6,62,66,110,130,137],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,149],formul:157,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,152,154],found:67,frame:93,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,130,151],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[54,67],gaug:[44,51,60,93,153],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,139,151],geo:139,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,130,133,139,143,144],geometri:89,geophys:25,get:[25,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:157,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,139],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:157,hint:[48,77,105],hll:129,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:132,initi:[6,39,66,96,103,132,154],input:[22,32,92,136,137],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,105,106,147,152],instanc:[13,57],instanti:130,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88,141],issu:28,item:77,jupyt:[12,29,37],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:[13,57],layer:129,level:[28,132],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,152],link:21,load:51,local:142,locat:44,log:[13,93],longitud:[49,51],machin:[29,156],make:[77,94,141,152],make_kml:130,makefil:[40,62,63,96,127],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:130,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:139,mesh:[6,25],method:[0,1,2,3,130,157],mhw:66,migrat:25,miss:129,model:[48,70,108,109,153],modif:39,modifi:[28,63,127],modul:[30,33,47,59,91,104,105,138,140,151],monitor:[32,139],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,149],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],notebook:[12,29,37,105,141],number:55,numpi:100,object:[89,135],obtain:100,okada:70,old:8,older:25,onli:[58,66],openmp:71,oper:80,option:[51,56,57,79,94,96],order:102,other:[17,18,23,24,29,32,54,56,77,120,121,122,123,124,125,126,130,132],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,127,136,137,139,152],overlai:51,overview:[25,135],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[57,73,89,94,95,101],paramet:[22,44,77,79,103,136,137,139],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:[57,94],photo:74,pip:[56,58,80,152],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,135,141,152,155],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:128,polygon:130,port:84,post:76,potenti:129,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:137,printfram:79,problem:[8,84,96,103,154],procedur:32,process:[32,57,76],processor:41,produc:79,propag:157,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,57,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,147],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,150],pythonpath:[106,134],q0002:72,qinit:[107,139,149],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,130],readm:11,recent:[24,28],rectangl:[38,130],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,139],region:[66,110,130,139],registr:53,regress:111,relat:130,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,128],request:28,requir:[51,57,105,154],resolut:[51,157],resourc:25,restart:[29,83,127],result:[13,46,51,68,95,141],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,128,129,154],roe:129,routin:[15,22,63,78,107,133,143,144],rst:11,rule:[38,130],run:[29,35,36,37,46,83,85,88,94,95,111,136,137,152],ruptur:70,sage:85,same:63,sampl:[39,66,138,140],save:[93,141],script:96,sea:132,sealevel:131,search:67,seismic:132,select:130,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,131,132,134,152],setaux:[133,154],setplot:[67,77,79,135],setrun:[22,44,136,137,138,139,140],shallow:[97,129],share:141,sharpclaw:99,shelf:130,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,130],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:130,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,128,129,154],some:[29,77,153],someth:77,sourc:[62,70,96,146,153,154,157],space:157,spatial:[132,154],special:[3,137],specif:[32,103,111,139,145,154],specifi:[38,60,77,79,110,135,136,137,139,154],sphere:16,sphinx:[54,142],sprint:[24,74],src1d:[143,154],src:[144,154],start:[25,46,108,109],state:101,statist:148,step:[56,57,58,100,154],stop:[13,29],storm:[108,139,145,146],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,132],surg:[108,146],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,154,157],test:[28,36,37,94,100,111,147],than:77,thi:[4,54],tide:153,tile:51,time:[136,137,139,148,154],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,145,150],top:28,topo:150,topofil:66,topographi:[30,33,39,46,51,66,139,149,151,153],topotool:151,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,152],troubleshoot:[58,102,152],tsunami:[48,51,109,153],tutori:[24,103,105],tvd:87,two:129,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,132],used:152,useful:[29,129],user:[16,24,29,73,154],using:[48,67,154],utah:74,util:[47,59,104],valu:[32,83],vari:[132,154],variabl:[41,62,96,134],version:[25,40,50,52,54,55,58,106],view:13,virtual:156,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125],visit:155,visual:[25,51],washington:74,water:[49,97,129],wave:[128,157],web:13,webpag:[13,54,141],what:[77,79,93,105,129],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,150,151,154],workflow:28,workshop:[24,74],write:[66,96,111,130],written:93,your:[13,28,29,36,51,94,96,100,141,147],zenodo:55,zone:66}}) \ No newline at end of file diff --git a/v5.7.x/storm_module.html b/v5.7.x/storm_module.html index 03d4d254b..92d1485a5 100644 --- a/v5.7.x/storm_module.html +++ b/v5.7.x/storm_module.html @@ -586,7 +586,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        Field list ends without a blank line; unexpected unindent.

          @@ -617,7 +617,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          Field list ends without a blank line; unexpected unindent.

            diff --git a/v5.8.x/.buildinfo b/v5.8.x/.buildinfo index e14703c45..06cdfb25f 100644 --- a/v5.8.x/.buildinfo +++ b/v5.8.x/.buildinfo @@ -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: d7bd9a628c008e76069a6cd800ead03d +config: d80c035e4d83d7e979b3893e547ea73c tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/v5.8.x/.doctrees/ClawPlotAxes.doctree b/v5.8.x/.doctrees/ClawPlotAxes.doctree index a2b140686..a5816f4bd 100644 Binary files a/v5.8.x/.doctrees/ClawPlotAxes.doctree and b/v5.8.x/.doctrees/ClawPlotAxes.doctree differ diff --git a/v5.8.x/.doctrees/ClawPlotData.doctree b/v5.8.x/.doctrees/ClawPlotData.doctree index d63f34ea2..dd441858f 100644 Binary files a/v5.8.x/.doctrees/ClawPlotData.doctree and b/v5.8.x/.doctrees/ClawPlotData.doctree differ diff --git a/v5.8.x/.doctrees/ClawPlotFigure.doctree b/v5.8.x/.doctrees/ClawPlotFigure.doctree index b5babb7dd..4002e87ec 100644 Binary files a/v5.8.x/.doctrees/ClawPlotFigure.doctree and b/v5.8.x/.doctrees/ClawPlotFigure.doctree differ diff --git a/v5.8.x/.doctrees/ClawPlotItem.doctree b/v5.8.x/.doctrees/ClawPlotItem.doctree index bb225c49c..9f338c097 100644 Binary files a/v5.8.x/.doctrees/ClawPlotItem.doctree and b/v5.8.x/.doctrees/ClawPlotItem.doctree differ diff --git a/v5.8.x/.doctrees/about.doctree b/v5.8.x/.doctrees/about.doctree index 3a3c0f091..6a05d4a6a 100644 Binary files a/v5.8.x/.doctrees/about.doctree and b/v5.8.x/.doctrees/about.doctree differ diff --git a/v5.8.x/.doctrees/adjoint.doctree b/v5.8.x/.doctrees/adjoint.doctree index 0dfc9c778..8ef7ae88b 100644 Binary files a/v5.8.x/.doctrees/adjoint.doctree and b/v5.8.x/.doctrees/adjoint.doctree differ diff --git a/v5.8.x/.doctrees/amr_algorithm.doctree b/v5.8.x/.doctrees/amr_algorithm.doctree index 530e5ca72..5da8bd844 100644 Binary files a/v5.8.x/.doctrees/amr_algorithm.doctree and b/v5.8.x/.doctrees/amr_algorithm.doctree differ diff --git a/v5.8.x/.doctrees/amrclaw.doctree b/v5.8.x/.doctrees/amrclaw.doctree index ecd298e06..b91b4fe2b 100644 Binary files a/v5.8.x/.doctrees/amrclaw.doctree and b/v5.8.x/.doctrees/amrclaw.doctree differ diff --git a/v5.8.x/.doctrees/amrclaw1d.doctree b/v5.8.x/.doctrees/amrclaw1d.doctree index c5d650487..5fd594bbd 100644 Binary files a/v5.8.x/.doctrees/amrclaw1d.doctree and b/v5.8.x/.doctrees/amrclaw1d.doctree differ diff --git a/v5.8.x/.doctrees/amrclaw_doxygen.doctree b/v5.8.x/.doctrees/amrclaw_doxygen.doctree index 03c697ea1..9f4d05ebd 100644 Binary files a/v5.8.x/.doctrees/amrclaw_doxygen.doctree and b/v5.8.x/.doctrees/amrclaw_doxygen.doctree differ diff --git a/v5.8.x/.doctrees/amrclaw_flowcharts.doctree b/v5.8.x/.doctrees/amrclaw_flowcharts.doctree index 4976f112c..54242acd5 100644 Binary files a/v5.8.x/.doctrees/amrclaw_flowcharts.doctree and b/v5.8.x/.doctrees/amrclaw_flowcharts.doctree differ diff --git a/v5.8.x/.doctrees/application_documentation.doctree b/v5.8.x/.doctrees/application_documentation.doctree index 370d61abd..559aa40d8 100644 Binary files a/v5.8.x/.doctrees/application_documentation.doctree and b/v5.8.x/.doctrees/application_documentation.doctree differ diff --git a/v5.8.x/.doctrees/apps.doctree b/v5.8.x/.doctrees/apps.doctree index b532efdeb..b9db0e6d1 100644 Binary files a/v5.8.x/.doctrees/apps.doctree and b/v5.8.x/.doctrees/apps.doctree differ diff --git a/v5.8.x/.doctrees/aws.doctree b/v5.8.x/.doctrees/aws.doctree index 055c25772..203fcd839 100644 Binary files a/v5.8.x/.doctrees/aws.doctree and b/v5.8.x/.doctrees/aws.doctree differ diff --git a/v5.8.x/.doctrees/b4run.doctree b/v5.8.x/.doctrees/b4run.doctree index 525be9626..aa915499c 100644 Binary files a/v5.8.x/.doctrees/b4run.doctree and b/v5.8.x/.doctrees/b4run.doctree differ diff --git a/v5.8.x/.doctrees/b4step_defaults.doctree b/v5.8.x/.doctrees/b4step_defaults.doctree index 2e2fa1836..32bb9d480 100644 Binary files a/v5.8.x/.doctrees/b4step_defaults.doctree and b/v5.8.x/.doctrees/b4step_defaults.doctree differ diff --git a/v5.8.x/.doctrees/bc.doctree b/v5.8.x/.doctrees/bc.doctree index 4c7008203..f57f93f27 100644 Binary files a/v5.8.x/.doctrees/bc.doctree and b/v5.8.x/.doctrees/bc.doctree differ diff --git a/v5.8.x/.doctrees/biblio.doctree b/v5.8.x/.doctrees/biblio.doctree index fe0e1694d..f82494f4d 100644 Binary files a/v5.8.x/.doctrees/biblio.doctree and b/v5.8.x/.doctrees/biblio.doctree differ diff --git a/v5.8.x/.doctrees/changes_to_master.doctree b/v5.8.x/.doctrees/changes_to_master.doctree index 7488da810..c5b8188aa 100644 Binary files a/v5.8.x/.doctrees/changes_to_master.doctree and b/v5.8.x/.doctrees/changes_to_master.doctree differ diff --git a/v5.8.x/.doctrees/claw43to46.doctree b/v5.8.x/.doctrees/claw43to46.doctree index 05d87e643..8e789c143 100644 Binary files a/v5.8.x/.doctrees/claw43to46.doctree and b/v5.8.x/.doctrees/claw43to46.doctree differ diff --git a/v5.8.x/.doctrees/claw46to50.doctree b/v5.8.x/.doctrees/claw46to50.doctree index 1dc4a8c91..953353d6b 100644 Binary files a/v5.8.x/.doctrees/claw46to50.doctree and b/v5.8.x/.doctrees/claw46to50.doctree differ diff --git a/v5.8.x/.doctrees/claw4x.doctree b/v5.8.x/.doctrees/claw4x.doctree index d3a0f9e1c..09ea44037 100644 Binary files a/v5.8.x/.doctrees/claw4x.doctree and b/v5.8.x/.doctrees/claw4x.doctree differ diff --git a/v5.8.x/.doctrees/clawpack5.doctree b/v5.8.x/.doctrees/clawpack5.doctree index 13363d4f7..72310d937 100644 Binary files a/v5.8.x/.doctrees/clawpack5.doctree and b/v5.8.x/.doctrees/clawpack5.doctree differ diff --git a/v5.8.x/.doctrees/clawpack_components.doctree b/v5.8.x/.doctrees/clawpack_components.doctree index 96a03a85c..0e8357ac1 100644 Binary files a/v5.8.x/.doctrees/clawpack_components.doctree and b/v5.8.x/.doctrees/clawpack_components.doctree differ diff --git a/v5.8.x/.doctrees/community.doctree b/v5.8.x/.doctrees/community.doctree index aebc8a470..322898935 100644 Binary files a/v5.8.x/.doctrees/community.doctree and b/v5.8.x/.doctrees/community.doctree differ diff --git a/v5.8.x/.doctrees/contents.doctree b/v5.8.x/.doctrees/contents.doctree index 9096a1c6e..ee64cb256 100644 Binary files a/v5.8.x/.doctrees/contents.doctree and b/v5.8.x/.doctrees/contents.doctree differ diff --git a/v5.8.x/.doctrees/contribute_apps.doctree b/v5.8.x/.doctrees/contribute_apps.doctree index a0f3c02b3..dd1d712d4 100644 Binary files a/v5.8.x/.doctrees/contribute_apps.doctree and b/v5.8.x/.doctrees/contribute_apps.doctree differ diff --git a/v5.8.x/.doctrees/current_data.doctree b/v5.8.x/.doctrees/current_data.doctree index 499d52352..a29a65406 100644 Binary files a/v5.8.x/.doctrees/current_data.doctree and b/v5.8.x/.doctrees/current_data.doctree differ diff --git a/v5.8.x/.doctrees/developers.doctree b/v5.8.x/.doctrees/developers.doctree index 05e68b42a..f1982ee03 100644 Binary files a/v5.8.x/.doctrees/developers.doctree and b/v5.8.x/.doctrees/developers.doctree differ diff --git a/v5.8.x/.doctrees/docker_image.doctree b/v5.8.x/.doctrees/docker_image.doctree index d3c6037b8..e7aa1b6e4 100644 Binary files a/v5.8.x/.doctrees/docker_image.doctree and b/v5.8.x/.doctrees/docker_image.doctree differ diff --git a/v5.8.x/.doctrees/dtopotools_module.doctree b/v5.8.x/.doctrees/dtopotools_module.doctree index 445071bde..69bdf26e3 100644 Binary files a/v5.8.x/.doctrees/dtopotools_module.doctree and b/v5.8.x/.doctrees/dtopotools_module.doctree differ diff --git a/v5.8.x/.doctrees/environment.pickle b/v5.8.x/.doctrees/environment.pickle index 4a15efd29..5fb28d632 100644 Binary files a/v5.8.x/.doctrees/environment.pickle and b/v5.8.x/.doctrees/environment.pickle differ diff --git a/v5.8.x/.doctrees/f77_vs_f90.doctree b/v5.8.x/.doctrees/f77_vs_f90.doctree index 87789b9de..7517d9608 100644 Binary files a/v5.8.x/.doctrees/f77_vs_f90.doctree and b/v5.8.x/.doctrees/f77_vs_f90.doctree differ diff --git a/v5.8.x/.doctrees/fgmax.doctree b/v5.8.x/.doctrees/fgmax.doctree index e11e6c86d..aeadac3fe 100644 Binary files a/v5.8.x/.doctrees/fgmax.doctree and b/v5.8.x/.doctrees/fgmax.doctree differ diff --git a/v5.8.x/.doctrees/fgmax_tools_module.doctree b/v5.8.x/.doctrees/fgmax_tools_module.doctree index b0da397b1..a3e33db11 100644 Binary files a/v5.8.x/.doctrees/fgmax_tools_module.doctree and b/v5.8.x/.doctrees/fgmax_tools_module.doctree differ diff --git a/v5.8.x/.doctrees/fgout.doctree b/v5.8.x/.doctrees/fgout.doctree index 0c2b272b2..43e653631 100644 Binary files a/v5.8.x/.doctrees/fgout.doctree and b/v5.8.x/.doctrees/fgout.doctree differ diff --git a/v5.8.x/.doctrees/first_run.doctree b/v5.8.x/.doctrees/first_run.doctree index ff7c7c177..96f4e98e7 100644 Binary files a/v5.8.x/.doctrees/first_run.doctree and b/v5.8.x/.doctrees/first_run.doctree differ diff --git a/v5.8.x/.doctrees/first_run_fortran.doctree b/v5.8.x/.doctrees/first_run_fortran.doctree index 4aa7aec9c..c976b3c4f 100644 Binary files a/v5.8.x/.doctrees/first_run_fortran.doctree and b/v5.8.x/.doctrees/first_run_fortran.doctree differ diff --git a/v5.8.x/.doctrees/first_run_pyclaw.doctree b/v5.8.x/.doctrees/first_run_pyclaw.doctree index c1d7ec8e2..4bab1dab8 100644 Binary files a/v5.8.x/.doctrees/first_run_pyclaw.doctree and b/v5.8.x/.doctrees/first_run_pyclaw.doctree differ diff --git a/v5.8.x/.doctrees/flagregions.doctree b/v5.8.x/.doctrees/flagregions.doctree index 5106b1d6d..4d24c69de 100644 Binary files a/v5.8.x/.doctrees/flagregions.doctree and b/v5.8.x/.doctrees/flagregions.doctree differ diff --git a/v5.8.x/.doctrees/force_dry.doctree b/v5.8.x/.doctrees/force_dry.doctree index db93c46a1..50fffdd12 100644 Binary files a/v5.8.x/.doctrees/force_dry.doctree and b/v5.8.x/.doctrees/force_dry.doctree differ diff --git a/v5.8.x/.doctrees/fortran.doctree b/v5.8.x/.doctrees/fortran.doctree index 61fe8408f..cb983815f 100644 Binary files a/v5.8.x/.doctrees/fortran.doctree and b/v5.8.x/.doctrees/fortran.doctree differ diff --git a/v5.8.x/.doctrees/fortran_compilers.doctree b/v5.8.x/.doctrees/fortran_compilers.doctree index cc9b596da..f14deb7d4 100644 Binary files a/v5.8.x/.doctrees/fortran_compilers.doctree and b/v5.8.x/.doctrees/fortran_compilers.doctree differ diff --git a/v5.8.x/.doctrees/fvmbook.doctree b/v5.8.x/.doctrees/fvmbook.doctree index cbea63cd0..bac352670 100644 Binary files a/v5.8.x/.doctrees/fvmbook.doctree and b/v5.8.x/.doctrees/fvmbook.doctree differ diff --git a/v5.8.x/.doctrees/galleries.doctree b/v5.8.x/.doctrees/galleries.doctree index 4cc3f6df3..1439a1cd2 100644 Binary files a/v5.8.x/.doctrees/galleries.doctree and b/v5.8.x/.doctrees/galleries.doctree differ diff --git a/v5.8.x/.doctrees/gauges.doctree b/v5.8.x/.doctrees/gauges.doctree index 79ed4454f..0e48a35c8 100644 Binary files a/v5.8.x/.doctrees/gauges.doctree and b/v5.8.x/.doctrees/gauges.doctree differ diff --git a/v5.8.x/.doctrees/geoclaw.doctree b/v5.8.x/.doctrees/geoclaw.doctree index d54ddaadb..5c4f00a67 100644 Binary files a/v5.8.x/.doctrees/geoclaw.doctree and b/v5.8.x/.doctrees/geoclaw.doctree differ diff --git a/v5.8.x/.doctrees/geoclaw_started.doctree b/v5.8.x/.doctrees/geoclaw_started.doctree index f77cb433c..005e4ebc7 100644 Binary files a/v5.8.x/.doctrees/geoclaw_started.doctree and b/v5.8.x/.doctrees/geoclaw_started.doctree differ diff --git a/v5.8.x/.doctrees/geoclaw_util_module.doctree b/v5.8.x/.doctrees/geoclaw_util_module.doctree index 66ac30412..79b174462 100644 Binary files a/v5.8.x/.doctrees/geoclaw_util_module.doctree and b/v5.8.x/.doctrees/geoclaw_util_module.doctree differ diff --git a/v5.8.x/.doctrees/geohints.doctree b/v5.8.x/.doctrees/geohints.doctree index 57d26771a..e52ed91a7 100644 Binary files a/v5.8.x/.doctrees/geohints.doctree and b/v5.8.x/.doctrees/geohints.doctree differ diff --git a/v5.8.x/.doctrees/geoplot.doctree b/v5.8.x/.doctrees/geoplot.doctree index e8d654c9a..9642107f2 100644 Binary files a/v5.8.x/.doctrees/geoplot.doctree and b/v5.8.x/.doctrees/geoplot.doctree differ diff --git a/v5.8.x/.doctrees/git_versions.doctree b/v5.8.x/.doctrees/git_versions.doctree index 5c582aece..4eccd374e 100644 Binary files a/v5.8.x/.doctrees/git_versions.doctree and b/v5.8.x/.doctrees/git_versions.doctree differ diff --git a/v5.8.x/.doctrees/googleearth_plotting.doctree b/v5.8.x/.doctrees/googleearth_plotting.doctree index e31f6d84a..b7f7b26ee 100644 Binary files a/v5.8.x/.doctrees/googleearth_plotting.doctree and b/v5.8.x/.doctrees/googleearth_plotting.doctree differ diff --git a/v5.8.x/.doctrees/gpu.doctree b/v5.8.x/.doctrees/gpu.doctree index 3b6b2dcb4..c774883f2 100644 Binary files a/v5.8.x/.doctrees/gpu.doctree and b/v5.8.x/.doctrees/gpu.doctree differ diff --git a/v5.8.x/.doctrees/grid_registration.doctree b/v5.8.x/.doctrees/grid_registration.doctree index fd5835b39..361138fa0 100644 Binary files a/v5.8.x/.doctrees/grid_registration.doctree and b/v5.8.x/.doctrees/grid_registration.doctree differ diff --git a/v5.8.x/.doctrees/howto_doc.doctree b/v5.8.x/.doctrees/howto_doc.doctree index b2ddb7f77..5115ffc8f 100644 Binary files a/v5.8.x/.doctrees/howto_doc.doctree and b/v5.8.x/.doctrees/howto_doc.doctree differ diff --git a/v5.8.x/.doctrees/howto_release.doctree b/v5.8.x/.doctrees/howto_release.doctree index 9212e7f47..535c01c19 100644 Binary files a/v5.8.x/.doctrees/howto_release.doctree and b/v5.8.x/.doctrees/howto_release.doctree differ diff --git a/v5.8.x/.doctrees/installing.doctree b/v5.8.x/.doctrees/installing.doctree index 1bead05f3..9526e4611 100644 Binary files a/v5.8.x/.doctrees/installing.doctree and b/v5.8.x/.doctrees/installing.doctree differ diff --git a/v5.8.x/.doctrees/installing_fortcodes.doctree b/v5.8.x/.doctrees/installing_fortcodes.doctree index ab57e1f67..33efbb82c 100644 Binary files a/v5.8.x/.doctrees/installing_fortcodes.doctree and b/v5.8.x/.doctrees/installing_fortcodes.doctree differ diff --git a/v5.8.x/.doctrees/installing_pip.doctree b/v5.8.x/.doctrees/installing_pip.doctree index 57e33a9c0..d1b5a3765 100644 Binary files a/v5.8.x/.doctrees/installing_pip.doctree and b/v5.8.x/.doctrees/installing_pip.doctree differ diff --git a/v5.8.x/.doctrees/kmltools_module.doctree b/v5.8.x/.doctrees/kmltools_module.doctree index e606c42b7..c0f901bbb 100644 Binary files a/v5.8.x/.doctrees/kmltools_module.doctree and b/v5.8.x/.doctrees/kmltools_module.doctree differ diff --git a/v5.8.x/.doctrees/lagrangian_gauges.doctree b/v5.8.x/.doctrees/lagrangian_gauges.doctree index 9a2c41bac..bc7de84de 100644 Binary files a/v5.8.x/.doctrees/lagrangian_gauges.doctree and b/v5.8.x/.doctrees/lagrangian_gauges.doctree differ diff --git a/v5.8.x/.doctrees/license.doctree b/v5.8.x/.doctrees/license.doctree index 4bc3ba341..9731f316a 100644 Binary files a/v5.8.x/.doctrees/license.doctree and b/v5.8.x/.doctrees/license.doctree differ diff --git a/v5.8.x/.doctrees/makefiles.doctree b/v5.8.x/.doctrees/makefiles.doctree index 7c4c68a01..9c875f086 100644 Binary files a/v5.8.x/.doctrees/makefiles.doctree and b/v5.8.x/.doctrees/makefiles.doctree differ diff --git a/v5.8.x/.doctrees/makefiles_library.doctree b/v5.8.x/.doctrees/makefiles_library.doctree index 352bfb3e3..2a1f10b4b 100644 Binary files a/v5.8.x/.doctrees/makefiles_library.doctree and b/v5.8.x/.doctrees/makefiles_library.doctree differ diff --git a/v5.8.x/.doctrees/manning.doctree b/v5.8.x/.doctrees/manning.doctree index a3557ad7f..acf0aff8e 100644 Binary files a/v5.8.x/.doctrees/manning.doctree and b/v5.8.x/.doctrees/manning.doctree differ diff --git a/v5.8.x/.doctrees/mapc2p.doctree b/v5.8.x/.doctrees/mapc2p.doctree index 0d341677a..19b28c421 100644 Binary files a/v5.8.x/.doctrees/mapc2p.doctree and b/v5.8.x/.doctrees/mapc2p.doctree differ diff --git a/v5.8.x/.doctrees/marching_front.doctree b/v5.8.x/.doctrees/marching_front.doctree index 8f8a78df7..ffd88d852 100644 Binary files a/v5.8.x/.doctrees/marching_front.doctree and b/v5.8.x/.doctrees/marching_front.doctree differ diff --git a/v5.8.x/.doctrees/matlab_plotting.doctree b/v5.8.x/.doctrees/matlab_plotting.doctree index 077cbda26..ca21a1736 100644 Binary files a/v5.8.x/.doctrees/matlab_plotting.doctree and b/v5.8.x/.doctrees/matlab_plotting.doctree differ diff --git a/v5.8.x/.doctrees/netcdf.doctree b/v5.8.x/.doctrees/netcdf.doctree index 21ee5b537..fe19e008f 100644 Binary files a/v5.8.x/.doctrees/netcdf.doctree and b/v5.8.x/.doctrees/netcdf.doctree differ diff --git a/v5.8.x/.doctrees/newapp.doctree b/v5.8.x/.doctrees/newapp.doctree index f47d1d3f4..5c2c6077d 100644 Binary files a/v5.8.x/.doctrees/newapp.doctree and b/v5.8.x/.doctrees/newapp.doctree differ diff --git a/v5.8.x/.doctrees/okada.doctree b/v5.8.x/.doctrees/okada.doctree index f14936b54..1a54076e0 100644 Binary files a/v5.8.x/.doctrees/okada.doctree and b/v5.8.x/.doctrees/okada.doctree differ diff --git a/v5.8.x/.doctrees/openmp.doctree b/v5.8.x/.doctrees/openmp.doctree index 1f035b22b..8a55f1452 100644 Binary files a/v5.8.x/.doctrees/openmp.doctree and b/v5.8.x/.doctrees/openmp.doctree differ diff --git a/v5.8.x/.doctrees/output_styles.doctree b/v5.8.x/.doctrees/output_styles.doctree index 52fa00473..c195569dc 100644 Binary files a/v5.8.x/.doctrees/output_styles.doctree and b/v5.8.x/.doctrees/output_styles.doctree differ diff --git a/v5.8.x/.doctrees/packages.doctree b/v5.8.x/.doctrees/packages.doctree index 4ef8c7be7..63ce0c60f 100644 Binary files a/v5.8.x/.doctrees/packages.doctree and b/v5.8.x/.doctrees/packages.doctree differ diff --git a/v5.8.x/.doctrees/photos.doctree b/v5.8.x/.doctrees/photos.doctree index 91f5cb1cd..c75fca2b6 100644 Binary files a/v5.8.x/.doctrees/photos.doctree and b/v5.8.x/.doctrees/photos.doctree differ diff --git a/v5.8.x/.doctrees/plotexamples.doctree b/v5.8.x/.doctrees/plotexamples.doctree index 3af839255..49804f394 100644 Binary files a/v5.8.x/.doctrees/plotexamples.doctree and b/v5.8.x/.doctrees/plotexamples.doctree differ diff --git a/v5.8.x/.doctrees/plotting.doctree b/v5.8.x/.doctrees/plotting.doctree index f408e7654..3dea10b25 100644 Binary files a/v5.8.x/.doctrees/plotting.doctree and b/v5.8.x/.doctrees/plotting.doctree differ diff --git a/v5.8.x/.doctrees/plotting_faq.doctree b/v5.8.x/.doctrees/plotting_faq.doctree index 6cf37f064..afd38c7db 100644 Binary files a/v5.8.x/.doctrees/plotting_faq.doctree and b/v5.8.x/.doctrees/plotting_faq.doctree differ diff --git a/v5.8.x/.doctrees/plotting_geoclaw.doctree b/v5.8.x/.doctrees/plotting_geoclaw.doctree index 8e168231d..2deabbe1e 100644 Binary files a/v5.8.x/.doctrees/plotting_geoclaw.doctree and b/v5.8.x/.doctrees/plotting_geoclaw.doctree differ diff --git a/v5.8.x/.doctrees/plotting_python.doctree b/v5.8.x/.doctrees/plotting_python.doctree index 6acb6227e..513cbcca9 100644 Binary files a/v5.8.x/.doctrees/plotting_python.doctree and b/v5.8.x/.doctrees/plotting_python.doctree differ diff --git a/v5.8.x/.doctrees/prereqs.doctree b/v5.8.x/.doctrees/prereqs.doctree index f755dccc1..f5eb9661d 100644 Binary files a/v5.8.x/.doctrees/prereqs.doctree and b/v5.8.x/.doctrees/prereqs.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/about.doctree b/v5.8.x/.doctrees/pyclaw/about.doctree index cbab371d2..28167d057 100644 Binary files a/v5.8.x/.doctrees/pyclaw/about.doctree and b/v5.8.x/.doctrees/pyclaw/about.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/basics.doctree b/v5.8.x/.doctrees/pyclaw/basics.doctree index 10ea3a234..fd62fec67 100644 Binary files a/v5.8.x/.doctrees/pyclaw/basics.doctree and b/v5.8.x/.doctrees/pyclaw/basics.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/classes.doctree b/v5.8.x/.doctrees/pyclaw/classes.doctree index 8cef5d40d..2b40c762a 100644 Binary files a/v5.8.x/.doctrees/pyclaw/classes.doctree and b/v5.8.x/.doctrees/pyclaw/classes.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree b/v5.8.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree index 3d74df96d..263118c48 100644 Binary files a/v5.8.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree and b/v5.8.x/.doctrees/pyclaw/clawpack_and_pyclaw.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/cloud.doctree b/v5.8.x/.doctrees/pyclaw/cloud.doctree index a73a359ff..7ae1b3894 100644 Binary files a/v5.8.x/.doctrees/pyclaw/cloud.doctree and b/v5.8.x/.doctrees/pyclaw/cloud.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/controller.doctree b/v5.8.x/.doctrees/pyclaw/controller.doctree index c65572086..8111d7a79 100644 Binary files a/v5.8.x/.doctrees/pyclaw/controller.doctree and b/v5.8.x/.doctrees/pyclaw/controller.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/evolve/limiters.doctree b/v5.8.x/.doctrees/pyclaw/evolve/limiters.doctree index d88f08d3d..3f76ab0e5 100644 Binary files a/v5.8.x/.doctrees/pyclaw/evolve/limiters.doctree and b/v5.8.x/.doctrees/pyclaw/evolve/limiters.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/examples.doctree b/v5.8.x/.doctrees/pyclaw/examples.doctree index a7ed17053..fc7b74f50 100644 Binary files a/v5.8.x/.doctrees/pyclaw/examples.doctree and b/v5.8.x/.doctrees/pyclaw/examples.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/geometry.doctree b/v5.8.x/.doctrees/pyclaw/geometry.doctree index ff18dc912..d3fb64f0c 100644 Binary files a/v5.8.x/.doctrees/pyclaw/geometry.doctree and b/v5.8.x/.doctrees/pyclaw/geometry.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/going_further.doctree b/v5.8.x/.doctrees/pyclaw/going_further.doctree index 7417b9235..17bf1e947 100644 Binary files a/v5.8.x/.doctrees/pyclaw/going_further.doctree and b/v5.8.x/.doctrees/pyclaw/going_further.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/index.doctree b/v5.8.x/.doctrees/pyclaw/index.doctree index 86f3aa17a..72aaf9557 100644 Binary files a/v5.8.x/.doctrees/pyclaw/index.doctree and b/v5.8.x/.doctrees/pyclaw/index.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/io.doctree b/v5.8.x/.doctrees/pyclaw/io.doctree index e5209102e..3f34df715 100644 Binary files a/v5.8.x/.doctrees/pyclaw/io.doctree and b/v5.8.x/.doctrees/pyclaw/io.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/output.doctree b/v5.8.x/.doctrees/pyclaw/output.doctree index 119152b9b..e04e86901 100644 Binary files a/v5.8.x/.doctrees/pyclaw/output.doctree and b/v5.8.x/.doctrees/pyclaw/output.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/parallel.doctree b/v5.8.x/.doctrees/pyclaw/parallel.doctree index 98e7625e8..a5f6e8e56 100644 Binary files a/v5.8.x/.doctrees/pyclaw/parallel.doctree and b/v5.8.x/.doctrees/pyclaw/parallel.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/plotting.doctree b/v5.8.x/.doctrees/pyclaw/plotting.doctree index 4c6b2d432..cc508c610 100644 Binary files a/v5.8.x/.doctrees/pyclaw/plotting.doctree and b/v5.8.x/.doctrees/pyclaw/plotting.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/problem.doctree b/v5.8.x/.doctrees/pyclaw/problem.doctree index 2b41aafcc..f68053479 100644 Binary files a/v5.8.x/.doctrees/pyclaw/problem.doctree and b/v5.8.x/.doctrees/pyclaw/problem.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/rp.doctree b/v5.8.x/.doctrees/pyclaw/rp.doctree index ea197cc41..5555847d2 100644 Binary files a/v5.8.x/.doctrees/pyclaw/rp.doctree and b/v5.8.x/.doctrees/pyclaw/rp.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/solution.doctree b/v5.8.x/.doctrees/pyclaw/solution.doctree index 4f2d602ea..31494d650 100644 Binary files a/v5.8.x/.doctrees/pyclaw/solution.doctree and b/v5.8.x/.doctrees/pyclaw/solution.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/solvers.doctree b/v5.8.x/.doctrees/pyclaw/solvers.doctree index 7c46808cf..6776acbb4 100644 Binary files a/v5.8.x/.doctrees/pyclaw/solvers.doctree and b/v5.8.x/.doctrees/pyclaw/solvers.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/started.doctree b/v5.8.x/.doctrees/pyclaw/started.doctree index e90844fd6..422513769 100644 Binary files a/v5.8.x/.doctrees/pyclaw/started.doctree and b/v5.8.x/.doctrees/pyclaw/started.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/state.doctree b/v5.8.x/.doctrees/pyclaw/state.doctree index ae8f9bf5f..5d944a88d 100644 Binary files a/v5.8.x/.doctrees/pyclaw/state.doctree and b/v5.8.x/.doctrees/pyclaw/state.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/troubleshooting.doctree b/v5.8.x/.doctrees/pyclaw/troubleshooting.doctree index fb293ab19..7357310e3 100644 Binary files a/v5.8.x/.doctrees/pyclaw/troubleshooting.doctree and b/v5.8.x/.doctrees/pyclaw/troubleshooting.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/tutorial.doctree b/v5.8.x/.doctrees/pyclaw/tutorial.doctree index 508ed7b83..33f72a290 100644 Binary files a/v5.8.x/.doctrees/pyclaw/tutorial.doctree and b/v5.8.x/.doctrees/pyclaw/tutorial.doctree differ diff --git a/v5.8.x/.doctrees/pyclaw/util.doctree b/v5.8.x/.doctrees/pyclaw/util.doctree index 7f6988eec..e541ee25b 100644 Binary files a/v5.8.x/.doctrees/pyclaw/util.doctree and b/v5.8.x/.doctrees/pyclaw/util.doctree differ diff --git a/v5.8.x/.doctrees/python.doctree b/v5.8.x/.doctrees/python.doctree index 1a402e9ff..d2fcd453e 100644 Binary files a/v5.8.x/.doctrees/python.doctree and b/v5.8.x/.doctrees/python.doctree differ diff --git a/v5.8.x/.doctrees/python_path.doctree b/v5.8.x/.doctrees/python_path.doctree index 205c96423..9094a5e24 100644 Binary files a/v5.8.x/.doctrees/python_path.doctree and b/v5.8.x/.doctrees/python_path.doctree differ diff --git a/v5.8.x/.doctrees/qinit_defaults.doctree b/v5.8.x/.doctrees/qinit_defaults.doctree index 2105a9758..b05d196c2 100644 Binary files a/v5.8.x/.doctrees/qinit_defaults.doctree and b/v5.8.x/.doctrees/qinit_defaults.doctree differ diff --git a/v5.8.x/.doctrees/quick_surge.doctree b/v5.8.x/.doctrees/quick_surge.doctree index 5c05722d3..43721fc95 100644 Binary files a/v5.8.x/.doctrees/quick_surge.doctree and b/v5.8.x/.doctrees/quick_surge.doctree differ diff --git a/v5.8.x/.doctrees/quick_tsunami.doctree b/v5.8.x/.doctrees/quick_tsunami.doctree index a4a3177f0..6a2f76bb0 100644 Binary files a/v5.8.x/.doctrees/quick_tsunami.doctree and b/v5.8.x/.doctrees/quick_tsunami.doctree differ diff --git a/v5.8.x/.doctrees/refinement.doctree b/v5.8.x/.doctrees/refinement.doctree index a55da57ad..6f4b466c2 100644 Binary files a/v5.8.x/.doctrees/refinement.doctree and b/v5.8.x/.doctrees/refinement.doctree differ diff --git a/v5.8.x/.doctrees/regression.doctree b/v5.8.x/.doctrees/regression.doctree index 74f0c1f54..22a836990 100644 Binary files a/v5.8.x/.doctrees/regression.doctree and b/v5.8.x/.doctrees/regression.doctree differ diff --git a/v5.8.x/.doctrees/release_5_0_0.doctree b/v5.8.x/.doctrees/release_5_0_0.doctree index 2f1ed4768..d06bb570c 100644 Binary files a/v5.8.x/.doctrees/release_5_0_0.doctree and b/v5.8.x/.doctrees/release_5_0_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_1_0.doctree b/v5.8.x/.doctrees/release_5_1_0.doctree index 63e9a9fc1..1670cf83f 100644 Binary files a/v5.8.x/.doctrees/release_5_1_0.doctree and b/v5.8.x/.doctrees/release_5_1_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_2_0.doctree b/v5.8.x/.doctrees/release_5_2_0.doctree index f2c9cafa5..051b5639a 100644 Binary files a/v5.8.x/.doctrees/release_5_2_0.doctree and b/v5.8.x/.doctrees/release_5_2_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_2_1.doctree b/v5.8.x/.doctrees/release_5_2_1.doctree index c8abd95b8..9a9189346 100644 Binary files a/v5.8.x/.doctrees/release_5_2_1.doctree and b/v5.8.x/.doctrees/release_5_2_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_2_2.doctree b/v5.8.x/.doctrees/release_5_2_2.doctree index 9beaadcc2..a3e3eb4ee 100644 Binary files a/v5.8.x/.doctrees/release_5_2_2.doctree and b/v5.8.x/.doctrees/release_5_2_2.doctree differ diff --git a/v5.8.x/.doctrees/release_5_3_0.doctree b/v5.8.x/.doctrees/release_5_3_0.doctree index e69ab83cc..2f30f782f 100644 Binary files a/v5.8.x/.doctrees/release_5_3_0.doctree and b/v5.8.x/.doctrees/release_5_3_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_3_1.doctree b/v5.8.x/.doctrees/release_5_3_1.doctree index d49ec78cf..e4f6e16c5 100644 Binary files a/v5.8.x/.doctrees/release_5_3_1.doctree and b/v5.8.x/.doctrees/release_5_3_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_4_0.doctree b/v5.8.x/.doctrees/release_5_4_0.doctree index 22c90882d..8ca5836b5 100644 Binary files a/v5.8.x/.doctrees/release_5_4_0.doctree and b/v5.8.x/.doctrees/release_5_4_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_4_1.doctree b/v5.8.x/.doctrees/release_5_4_1.doctree index b20c2582e..38567a82d 100644 Binary files a/v5.8.x/.doctrees/release_5_4_1.doctree and b/v5.8.x/.doctrees/release_5_4_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_5_0.doctree b/v5.8.x/.doctrees/release_5_5_0.doctree index 0fac349fa..06fa9b0ef 100644 Binary files a/v5.8.x/.doctrees/release_5_5_0.doctree and b/v5.8.x/.doctrees/release_5_5_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_6_0.doctree b/v5.8.x/.doctrees/release_5_6_0.doctree index a7c0032b0..096a91920 100644 Binary files a/v5.8.x/.doctrees/release_5_6_0.doctree and b/v5.8.x/.doctrees/release_5_6_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_6_1.doctree b/v5.8.x/.doctrees/release_5_6_1.doctree index 673063757..3229aec31 100644 Binary files a/v5.8.x/.doctrees/release_5_6_1.doctree and b/v5.8.x/.doctrees/release_5_6_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_7_0.doctree b/v5.8.x/.doctrees/release_5_7_0.doctree index 3dd0de1e6..1bb90cd37 100644 Binary files a/v5.8.x/.doctrees/release_5_7_0.doctree and b/v5.8.x/.doctrees/release_5_7_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_7_1.doctree b/v5.8.x/.doctrees/release_5_7_1.doctree index c44fe8b7c..986aeae5d 100644 Binary files a/v5.8.x/.doctrees/release_5_7_1.doctree and b/v5.8.x/.doctrees/release_5_7_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_8_0.doctree b/v5.8.x/.doctrees/release_5_8_0.doctree index 77a60cb54..199f7e299 100644 Binary files a/v5.8.x/.doctrees/release_5_8_0.doctree and b/v5.8.x/.doctrees/release_5_8_0.doctree differ diff --git a/v5.8.x/.doctrees/release_5_8_1.doctree b/v5.8.x/.doctrees/release_5_8_1.doctree index 68f27303e..8ce23ab4f 100644 Binary files a/v5.8.x/.doctrees/release_5_8_1.doctree and b/v5.8.x/.doctrees/release_5_8_1.doctree differ diff --git a/v5.8.x/.doctrees/release_5_8_2.doctree b/v5.8.x/.doctrees/release_5_8_2.doctree index 46c20a6f8..715951e9d 100644 Binary files a/v5.8.x/.doctrees/release_5_8_2.doctree and b/v5.8.x/.doctrees/release_5_8_2.doctree differ diff --git a/v5.8.x/.doctrees/releases.doctree b/v5.8.x/.doctrees/releases.doctree index 247c5d305..583436cf5 100644 Binary files a/v5.8.x/.doctrees/releases.doctree and b/v5.8.x/.doctrees/releases.doctree differ diff --git a/v5.8.x/.doctrees/restart.doctree b/v5.8.x/.doctrees/restart.doctree index 2ac9869c8..2e27f5cb4 100644 Binary files a/v5.8.x/.doctrees/restart.doctree and b/v5.8.x/.doctrees/restart.doctree differ diff --git a/v5.8.x/.doctrees/riemann.doctree b/v5.8.x/.doctrees/riemann.doctree index d37b7bf1d..e1d29b4b4 100644 Binary files a/v5.8.x/.doctrees/riemann.doctree and b/v5.8.x/.doctrees/riemann.doctree differ diff --git a/v5.8.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree b/v5.8.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree index 5babae7f1..68f565f56 100644 Binary files a/v5.8.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree and b/v5.8.x/.doctrees/riemann/Shallow_water_Riemann_solvers.doctree differ diff --git a/v5.8.x/.doctrees/ruled_rectangles.doctree b/v5.8.x/.doctrees/ruled_rectangles.doctree index 5b175a6eb..4114283b9 100644 Binary files a/v5.8.x/.doctrees/ruled_rectangles.doctree and b/v5.8.x/.doctrees/ruled_rectangles.doctree differ diff --git a/v5.8.x/.doctrees/sealevel.doctree b/v5.8.x/.doctrees/sealevel.doctree index 6f23b0bdb..78642a842 100644 Binary files a/v5.8.x/.doctrees/sealevel.doctree and b/v5.8.x/.doctrees/sealevel.doctree differ diff --git a/v5.8.x/.doctrees/set_eta_init.doctree b/v5.8.x/.doctrees/set_eta_init.doctree index 7e3cb8313..f2339e0a6 100644 Binary files a/v5.8.x/.doctrees/set_eta_init.doctree and b/v5.8.x/.doctrees/set_eta_init.doctree differ diff --git a/v5.8.x/.doctrees/setaux_defaults.doctree b/v5.8.x/.doctrees/setaux_defaults.doctree index cccb6bf4e..4f4e9dfd0 100644 Binary files a/v5.8.x/.doctrees/setaux_defaults.doctree and b/v5.8.x/.doctrees/setaux_defaults.doctree differ diff --git a/v5.8.x/.doctrees/setenv.doctree b/v5.8.x/.doctrees/setenv.doctree index d9c6454c3..fc5290a4d 100644 Binary files a/v5.8.x/.doctrees/setenv.doctree and b/v5.8.x/.doctrees/setenv.doctree differ diff --git a/v5.8.x/.doctrees/setplot.doctree b/v5.8.x/.doctrees/setplot.doctree index 1fea8f4ef..673d692cb 100644 Binary files a/v5.8.x/.doctrees/setplot.doctree and b/v5.8.x/.doctrees/setplot.doctree differ diff --git a/v5.8.x/.doctrees/setrun.doctree b/v5.8.x/.doctrees/setrun.doctree index e5ad09012..c2eebbb34 100644 Binary files a/v5.8.x/.doctrees/setrun.doctree and b/v5.8.x/.doctrees/setrun.doctree differ diff --git a/v5.8.x/.doctrees/setrun_amrclaw.doctree b/v5.8.x/.doctrees/setrun_amrclaw.doctree index b3b502ff9..1502d7718 100644 Binary files a/v5.8.x/.doctrees/setrun_amrclaw.doctree and b/v5.8.x/.doctrees/setrun_amrclaw.doctree differ diff --git a/v5.8.x/.doctrees/setrun_amrclaw_sample.doctree b/v5.8.x/.doctrees/setrun_amrclaw_sample.doctree index 31a337bfc..a426d295e 100644 Binary files a/v5.8.x/.doctrees/setrun_amrclaw_sample.doctree and b/v5.8.x/.doctrees/setrun_amrclaw_sample.doctree differ diff --git a/v5.8.x/.doctrees/setrun_geoclaw.doctree b/v5.8.x/.doctrees/setrun_geoclaw.doctree index 310f6012c..9461cf257 100644 Binary files a/v5.8.x/.doctrees/setrun_geoclaw.doctree and b/v5.8.x/.doctrees/setrun_geoclaw.doctree differ diff --git a/v5.8.x/.doctrees/setrun_sample.doctree b/v5.8.x/.doctrees/setrun_sample.doctree index 687db1f03..6303e0655 100644 Binary files a/v5.8.x/.doctrees/setrun_sample.doctree and b/v5.8.x/.doctrees/setrun_sample.doctree differ diff --git a/v5.8.x/.doctrees/sharing.doctree b/v5.8.x/.doctrees/sharing.doctree index 7e187b67f..5b4b85df6 100644 Binary files a/v5.8.x/.doctrees/sharing.doctree and b/v5.8.x/.doctrees/sharing.doctree differ diff --git a/v5.8.x/.doctrees/sphinxdoc.doctree b/v5.8.x/.doctrees/sphinxdoc.doctree index 326f3f959..e7228992e 100644 Binary files a/v5.8.x/.doctrees/sphinxdoc.doctree and b/v5.8.x/.doctrees/sphinxdoc.doctree differ diff --git a/v5.8.x/.doctrees/src1d_defaults.doctree b/v5.8.x/.doctrees/src1d_defaults.doctree index 816dcec9c..882ccd9c9 100644 Binary files a/v5.8.x/.doctrees/src1d_defaults.doctree and b/v5.8.x/.doctrees/src1d_defaults.doctree differ diff --git a/v5.8.x/.doctrees/src_defaults.doctree b/v5.8.x/.doctrees/src_defaults.doctree index 663a8eaca..6e7c0508d 100644 Binary files a/v5.8.x/.doctrees/src_defaults.doctree and b/v5.8.x/.doctrees/src_defaults.doctree differ diff --git a/v5.8.x/.doctrees/storm_module.doctree b/v5.8.x/.doctrees/storm_module.doctree index b9ce6ed71..83dee33d9 100644 Binary files a/v5.8.x/.doctrees/storm_module.doctree and b/v5.8.x/.doctrees/storm_module.doctree differ diff --git a/v5.8.x/.doctrees/surgedata.doctree b/v5.8.x/.doctrees/surgedata.doctree index 3bc55f77c..a43e5903c 100644 Binary files a/v5.8.x/.doctrees/surgedata.doctree and b/v5.8.x/.doctrees/surgedata.doctree differ diff --git a/v5.8.x/.doctrees/testing.doctree b/v5.8.x/.doctrees/testing.doctree index da1c4cc35..11980cc0b 100644 Binary files a/v5.8.x/.doctrees/testing.doctree and b/v5.8.x/.doctrees/testing.doctree differ diff --git a/v5.8.x/.doctrees/timing.doctree b/v5.8.x/.doctrees/timing.doctree index 4aee71c51..6bb477629 100644 Binary files a/v5.8.x/.doctrees/timing.doctree and b/v5.8.x/.doctrees/timing.doctree differ diff --git a/v5.8.x/.doctrees/topo.doctree b/v5.8.x/.doctrees/topo.doctree index e96b9dd16..8795b93de 100644 Binary files a/v5.8.x/.doctrees/topo.doctree and b/v5.8.x/.doctrees/topo.doctree differ diff --git a/v5.8.x/.doctrees/topotools.doctree b/v5.8.x/.doctrees/topotools.doctree index 26c1fcd59..f09ad3879 100644 Binary files a/v5.8.x/.doctrees/topotools.doctree and b/v5.8.x/.doctrees/topotools.doctree differ diff --git a/v5.8.x/.doctrees/topotools_module.doctree b/v5.8.x/.doctrees/topotools_module.doctree index 5a29ef3a6..c5b5eaae7 100644 Binary files a/v5.8.x/.doctrees/topotools_module.doctree and b/v5.8.x/.doctrees/topotools_module.doctree differ diff --git a/v5.8.x/.doctrees/trouble.doctree b/v5.8.x/.doctrees/trouble.doctree index 9d1b20f50..b0f3d787a 100644 Binary files a/v5.8.x/.doctrees/trouble.doctree and b/v5.8.x/.doctrees/trouble.doctree differ diff --git a/v5.8.x/.doctrees/tsunamidata.doctree b/v5.8.x/.doctrees/tsunamidata.doctree index 695a64838..3fcc646b1 100644 Binary files a/v5.8.x/.doctrees/tsunamidata.doctree and b/v5.8.x/.doctrees/tsunamidata.doctree differ diff --git a/v5.8.x/.doctrees/user_routines.doctree b/v5.8.x/.doctrees/user_routines.doctree index 9a9d7c902..b60957ad8 100644 Binary files a/v5.8.x/.doctrees/user_routines.doctree and b/v5.8.x/.doctrees/user_routines.doctree differ diff --git a/v5.8.x/.doctrees/visit_plotting.doctree b/v5.8.x/.doctrees/visit_plotting.doctree index 0694e1295..eeee81dcb 100644 Binary files a/v5.8.x/.doctrees/visit_plotting.doctree and b/v5.8.x/.doctrees/visit_plotting.doctree differ diff --git a/v5.8.x/.doctrees/vm.doctree b/v5.8.x/.doctrees/vm.doctree index 0f2a394b7..aadcc06eb 100644 Binary files a/v5.8.x/.doctrees/vm.doctree and b/v5.8.x/.doctrees/vm.doctree differ diff --git a/v5.8.x/.doctrees/wp_algorithms.doctree b/v5.8.x/.doctrees/wp_algorithms.doctree index 8524ddb90..320569cce 100644 Binary files a/v5.8.x/.doctrees/wp_algorithms.doctree and b/v5.8.x/.doctrees/wp_algorithms.doctree differ diff --git a/v5.8.x/_sources/changes_to_master.rst.txt b/v5.8.x/_sources/changes_to_master.rst.txt index bf12cc293..2d016a31d 100644 --- a/v5.8.x/_sources/changes_to_master.rst.txt +++ b/v5.8.x/_sources/changes_to_master.rst.txt @@ -25,10 +25,31 @@ 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 `_ @@ -36,6 +57,7 @@ See `classic diffs Changes to clawutil ------------------- +- Support for `'binary32'` and `fgout` grids added. See `clawutil diffs `_ @@ -43,6 +65,16 @@ See `clawutil diffs 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 ``. + +- The `JSAnimation` subdirectory was removed, since we now use + `anim.to_jshtml` instead. See `visclaw diffs `_ @@ -50,6 +82,7 @@ See `visclaw diffs Changes to riemann ------------------ +- None. See `riemann diffs `_ @@ -57,6 +90,8 @@ See `riemann diffs Changes to amrclaw ------------------ +- Support for `output_format='binary32'` added for both output frames and + gauges. See `amrclaw diffs `_ @@ -64,19 +99,48 @@ See `amrclaw diffs 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 `_ +- 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 `_ 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 -`_. +- 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 -`_ +- 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 `_ + +For older changes in PyClaw, see also the `PyClaw changelog +`_. =========================== Other Clawpack Repositories diff --git a/v5.8.x/changes_to_master.html b/v5.8.x/changes_to_master.html index f4fd00cbc..e546ce744 100644 --- a/v5.8.x/changes_to_master.html +++ b/v5.8.x/changes_to_master.html @@ -88,35 +88,105 @@

            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 Fixed grid output), +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

        Changes to clawutil

        +
          +
        • Support for ‘binary32’ and fgout grids added.

        • +

        See clawutil diffs

        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

        Changes to riemann

        +
          +
        • None.

        • +

        See riemann diffs

        Changes to amrclaw

        +
          +
        • Support for output_format=’binary32’ added for both output frames and +gauges.

        • +

        See amrclaw diffs

        Changes to geoclaw

        -

        See geoclaw diffs

        +
          +
        • Support for output_format=’binary32’ added for both output frames and +gauges.

        • +
        • New fgout grid capabilities added, as described at Fixed grid output. +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.

        • +
        • The new fgout capability (together with Fixed grid monitoring) +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

        Changes to PyClaw

        -

        For changes in PyClaw, see the PyClaw changelog.

        +
          +
        • 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).

        • +
        • 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’.

        • +
        • 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

        +

        For older changes in PyClaw, see also the PyClaw changelog.

      - +
      • clawpack.pyclaw.fileio.netcdf (module)
      • clawpack.pyclaw.limiters.tvd (module)
      • clawpack.pyclaw.util (module) +
      • +
      • clawpack.riemann.acoustics_1D_py (module) +
      • +
      • clawpack.riemann.advection_1D_py (module) +
      • +
      • clawpack.riemann.burgers_1D_py (module) +
      • +
      • clawpack.riemann.euler_1D_py (module) +
      • +
      • clawpack.riemann.shallow_1D_py (module)
      • ClawPlotAxes (built-in class)
      • @@ -336,6 +352,16 @@

        D

        E

        + @@ -365,6 +391,8 @@

        F

        + - + + + + + + + + + + + + + + +
      • setup_gauge_files() (clawpack.pyclaw.geometry.Grid method) +
      • +
      • shallow_exact_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_fwave_1d() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_hll_1D() (in module clawpack.riemann.shallow_1D_py) +
      • +
      • shallow_roe_1D() (in module clawpack.riemann.shallow_1D_py)
      • SharpClawSolver (class in clawpack.pyclaw.sharpclaw.solver)
      • @@ -922,12 +958,12 @@

        S

      • slip (clawpack.geoclaw.dtopotools.SubFault attribute)
      • +
        • solver (clawpack.pyclaw.controller.Controller attribute)
        • source_split (clawpack.petclaw.geometry.Domain attribute) diff --git a/v5.8.x/geoclaw_util_module.html b/v5.8.x/geoclaw_util_module.html index 5ce9796ae..70167839b 100644 --- a/v5.8.x/geoclaw_util_module.html +++ b/v5.8.x/geoclaw_util_module.html @@ -112,7 +112,7 @@

          Navigation

          Note: If using this to initialize a radially-symmetric 2d velocity on the sphere based on a radial velocity U(r), symmetric about (x0, y0), set:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/util.py:docstring of clawpack.geoclaw.util.bearing, line 9)

          Unexpected indentation.

          diff --git a/v5.8.x/kmltools_module.html b/v5.8.x/kmltools_module.html index 3ba91cf79..c7f4d7c07 100644 --- a/v5.8.x/kmltools_module.html +++ b/v5.8.x/kmltools_module.html @@ -110,6 +110,7 @@

          Navigation

        • topo2kml - create a kml outline for each topo grid specified in setrun

        • dtopo2kml - create a kml outline for each dtopo grid specified in setrun

        • fgmax2kml - create a kml outline for each fgmax grid specified in setrun

        • +
        • fgout2kml - create a kml outline for each fgout grid specified in setrun

        • make_input_data_kmls - make kml files for many things specified in setrun

        • pcolorcells_for_kml - version of pcolormesh with appropriate dpi and size

        • png2kml - create kml file wrapping a png figure to be viewed on GE

        • @@ -189,6 +190,28 @@

          Navigation

          +
          +
          +clawpack.geoclaw.kmltools.fgout2kml(rundata=None, fname='fgout_grids.kml', verbose=True, combined=False)
          +

          Create a KML box for each fgout grid specified for a GeoClaw run.

          +
          +
          Inputs
          +
            +
          • rundata - an object of class ClawRunData or None

            +

            If rundata==None, try to create based on executing function setrun +from the setrun.py file in the current directory.

            +
          • +
          • fname (str) - resulting kml file.

          • +
          • verbose (bool) - If True, print out info about each region found

          • +
          • combined (bool) - If True, combine into single kml file with +name given by fname. NOT YET IMPLEMENTED. +If False, fname is ignored and individual files are created for +each fgout grid.

          • +
          +
          +
          +
          +
          clawpack.geoclaw.kmltools.gauges2kml(rundata=None, fname='gauges.kml', verbose=True)
          @@ -336,7 +359,7 @@

          Navigation

          Internally the value dpi (dots per inch) for the png file is determined so that it is at least 16 and so that:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 36)

          Unexpected indentation.

          @@ -344,7 +367,7 @@

          Navigation

          dpi * y_inches = dcp * y_cells

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 38)

          Block quote ends without a blank line; unexpected unindent.

          where x_cells, y_cells are the number of cells in each direction.

          @@ -354,14 +377,14 @@

          Navigation

          annotate the figure befor saving it as a png file, which should then be done with:

          -

          System Message: ERROR/3 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          +

          System Message: ERROR/3 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 46)

          Unexpected indentation.

          plt.savefig(png_filename, transparent=True, dpi=kml_dpi)

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.pcolorcells_for_kml, line 47)

          Block quote ends without a blank line; unexpected unindent.

          The png_extent is needed in construcing a kml file to display the @@ -497,7 +520,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/kmltools.py:docstring of clawpack.geoclaw.kmltools.topo2kmz, line 18)

          Field list ends without a blank line; unexpected unindent.

          If force_dry is an array of the same shape as topo.Z then another png diff --git a/v5.8.x/objects.inv b/v5.8.x/objects.inv index 4f491d1bc..8e9c58d73 100644 Binary files a/v5.8.x/objects.inv and b/v5.8.x/objects.inv differ diff --git a/v5.8.x/py-modindex.html b/v5.8.x/py-modindex.html index 2d81e01ea..cf98087e0 100644 --- a/v5.8.x/py-modindex.html +++ b/v5.8.x/py-modindex.html @@ -143,6 +143,31 @@

          Python Module Index

            clawpack.pyclaw.util
            + clawpack.riemann.acoustics_1D_py +
            + clawpack.riemann.advection_1D_py +
            + clawpack.riemann.burgers_1D_py +
            + clawpack.riemann.euler_1D_py +
            + clawpack.riemann.shallow_1D_py +
        diff --git a/v5.8.x/pyclaw/rp.html b/v5.8.x/pyclaw/rp.html index 63f5092b1..5e04f9a0e 100644 --- a/v5.8.x/pyclaw/rp.html +++ b/v5.8.x/pyclaw/rp.html @@ -163,18 +163,328 @@

        Navigation

        Acoustics

        +

        Riemann solvers for constant coefficient acoustics.

        +
        +\[q_t + A q_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} p(x,t) \\ u(x,t) \end{array} \right ]\end{split}\]
        +

        and the coefficient matrix is

        +
        +\[\begin{split}A = \left [\begin{matrix} +0 & K\\ +1/\rho & 0 +\end{matrix} \right ]\end{split}\]
        +

        The parameters \(\rho =\) density and \(K =\) bulk modulus are used +to calculate the impedence \(= Z\) and speed of sound = c.

        +
        +
        Authors
        +

        Kyle T. Mandli (2009-02-03): Initial version

        +
        +
        +
        +
        +clawpack.riemann.acoustics_1D_py.acoustics_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d acoustics riemann solver, with interleaved arrays

        +
        +
        problem_data is expected to contain -
          +
        • zz - (float) Impedence

        • +
        • cc - (float) Speed of sound

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-02-03)

        +
        +
        +
        +

        Advection

        +

        Simple advection Riemann solvers

        +

        Basic advection Riemann solvers of the form (1d)

        +
        +\[q_t + A q_x = 0.\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2008-2-20): Initial version

        +
        +
        +
        +
        +clawpack.riemann.advection_1D_py.advection_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Basic 1d advection riemann solver

        +
        +
        problem_data should contain -
          +
        • u - (float) Determines advection speed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2008-2-20)

        +
        +
        +
        +

        Burgers Equation

        +

        Riemann solvers for Burgers equation

        +
        +\[u_t + \left ( \frac{1}{2} u^2 \right)_x = 0\]
        +
        +
        Authors
        +

        Kyle T. Mandli (2009-2-4): Initial version

        +
        +
        +
        +
        +clawpack.riemann.burgers_1D_py.burgers_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Riemann solver for Burgers equation in 1d

        +
        +
        problem_data should contain -
          +
        • efix - (bool) Whether a entropy fix should be used, if not present, +false is assumed

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-2-4)

        +
        +
        +
        +

        Euler Equations

        +

        Riemann solvers for the Euler equations

        +

        This module contains Riemann solvers for the Euler equations which have the +form (in 1d):

        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} \rho \\ \rho u \\ E \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} \rho u \\ \rho u^2 + p \\ u(E+p) \end{array}\right ].\end{split}\]
        +

        and \(\rho\) is the density, \(u\) the velocity, \(E\) is the +energy and \(p\) is the pressure.

        +

        Unless otherwise noted, the ideal gas equation of state is used:

        +
        +\[E = (\gamma - 1) \left (E - \frac{1}{2}\rho u^2 \right)\]
        +
        +
        +clawpack.riemann.euler_1D_py.euler_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact euler Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL euler solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-03-04)

        +
        +
        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_hllc_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLLC Euler solver

        +
        W_1 = q_hat_l - q_l      s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = q_hat_r - q_hat_l  s_2 = s_m
        +W_3 = q_r - q_hat_r      s_3 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +s_m = (p_r - p_l + rho_l*u_l*(s_l - u_l) - rho_r*u_r*(s_r - u_r))\
        +  / (rho_l*(s_l-u_l) - rho_r*(s_r - u_r))
        +
        +
        +

        left middle state:

        +
        q_hat_l[0,:] = rho_l*(s_l - u_l)/(s_l - s_m)
        +q_hat_l[1,:] = rho_l*(s_l - u_l)/(s_l - s_m)*s_m
        +q_hat_l[2,:] = rho_l*(s_l - u_l)/(s_l - s_m)\
        +        *(E_l/rho_l + (s_m - u_l)*(s_m + p_l/(rho_l*(s_l - u_l))))
        +
        +
        +

        right middle state:

        +
        q_hat_r[0,:] = rho_r*(s_r - u_r)/(s_r - s_m)
        +q_hat_r[1,:] = rho_r*(s_r - u_r)/(s_r - s_m)*s_m
        +q_hat_r[2,:] = rho_r*(s_r - u_r)/(s_r - s_m)\
        +        *(E_r/rho_r + (s_m - u_r)*(s_m + p_r/(rho_r*(s_r - u_r))))
        +
        +
        +

        problem_data should contain:

        +
        +
          +
        • gamma: (float) Ratio of specific heat capacities

        • +
        • gamma1: (float) \(\gamma - 1\)

        • +
        +
        +

        :Version 1.0 (2015-11-18)

        +
        + +
        +
        +clawpack.riemann.euler_1D_py.euler_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe Euler solver in 1d

        +
        +
        aug_global should contain -
          +
        • gamma - (float) Ratio of the heat capacities

        • +
        • gamma1 - (float) \(1 - \gamma\)

        • +
        • efix - (bool) Whether to use an entropy fix or not

        • +
        +
        +
        +

        See Riemann Solver Package for more details.

        +
        +
        Version
        +

        1.0 (2009-6-26)

        +
        +
        +
        +

        Shallow Water Equations

        +

        Riemann solvers for the shallow water equations.

        +
        +
        The available solvers are:
          +
        • Roe - Use Roe averages to caluclate the solution to the Riemann problem

        • +
        • HLL - Use a HLL solver

        • +
        • +
          Exact - Use a newton iteration to calculate the exact solution to the

          Riemann problem

          +
          +
          +
        • +
        +
        +
        +
        +\[q_t + f(q)_x = 0\]
        +

        where

        +
        +\[\begin{split}q(x,t) = \left [ \begin{array}{c} h \\ h u \end{array} \right ],\end{split}\]
        +

        the flux function is

        +
        +\[\begin{split}f(q) = \left [ \begin{array}{c} h u \\ hu^2 + 1/2 g h^2 \end{array}\right ].\end{split}\]
        +

        and \(h\) is the water column height, \(u\) the velocity and \(g\) +is the gravitational acceleration.

        +
        +
        +clawpack.riemann.shallow_1D_py.shallow_exact_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Exact shallow water Riemann solver

        +
        +

        Warning

        +

        This solver has not been implemented.

        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_fwave_1d(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Shallow water Riemann solver using fwaves

        +

        Also includes support for bathymetry but be wary if you think you might have +dry states as this has not been tested.

        +
        +
        problem_data should contain:
          +
        • grav - (float) Gravitational constant

        • +
        • dry_tolerance - (float) Set velocities to zero if h is below this +tolerance.

        • +
        • sea_level - (float) Datum from which the dry-state is calculated.

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2014-09-05)

        +
        +
        Version
        +

        2.0 (2017-03-07)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_hll_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        HLL shallow water solver

        +
        W_1 = Q_hat - Q_l    s_1 = min(u_l-c_l,u_l+c_l,lambda_roe_1,lambda_roe_2)
        +W_2 = Q_r - Q_hat    s_2 = max(u_r-c_r,u_r+c_r,lambda_roe_1,lambda_roe_2)
        +
        +Q_hat = ( f(q_r) - f(q_l) - s_2 * q_r + s_1 * q_l ) / (s_1 - s_2)
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        + +
        +
        +clawpack.riemann.shallow_1D_py.shallow_roe_1D(q_l, q_r, aux_l, aux_r, problem_data)
        +

        Roe shallow water solver in 1d:

        +
        ubar = (sqrt(u_l) + sqrt(u_r)) / (sqrt(h_l) + sqrt(h_r))
        +cbar = sqrt( 0.5 * g * (h_l + h_r))
        +
        +W_1 = |      1      |  s_1 = ubar - cbar
        +      | ubar - cbar |
        +
        +W_2 = |      1      |  s_1 = ubar + cbar
        +      | ubar + cbar |
        +
        +a1 = 0.5 * ( - delta_hu + (ubar + cbar) * delta_h ) / cbar
        +a2 = 0.5 * (   delta_hu - (ubar - cbar) * delta_h ) / cbar
        +
        +
        +
        +
        problem_data should contain:
          +
        • g - (float) Gravitational constant

        • +
        • efix - (bool) Boolean as to whether a entropy fix should be used, if +not present, false is assumed

        • +
        +
        +
        +
        +
        Version
        +

        1.0 (2009-02-05)

        +
        +
        +
        +
        diff --git a/v5.8.x/searchindex.js b/v5.8.x/searchindex.js index 635d7a1be..3ceb96265 100644 --- a/v5.8.x/searchindex.js +++ b/v5.8.x/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[154,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[148,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[148,5,1,""],Storm:[148,0,1,""],available_formats:[148,3,1,""],available_models:[148,3,1,""],fill_rad_w_other_source:[148,3,1,""],make_multi_structure:[148,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[148,2,1,""],plot:[148,2,1,""],read:[148,2,1,""],read_atcf:[148,2,1,""],read_geoclaw:[148,2,1,""],read_hurdat:[148,2,1,""],read_ibtracs:[148,2,1,""],read_imd:[148,2,1,""],read_jma:[148,2,1,""],read_tcvitals:[148,2,1,""],write:[148,2,1,""],write_atcf:[148,2,1,""],write_geoclaw:[148,2,1,""],write_hurdat:[148,2,1,""],write_imd:[148,2,1,""],write_jma:[148,2,1,""],write_tcvitals:[148,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[154,0,1,""],create_topo_func:[154,3,1,""],determine_topo_type:[154,3,1,""],fetch_topo_url:[154,3,1,""],get_topo:[154,3,1,""],read_netcdf:[154,3,1,""],swapheader:[154,3,1,""],topo1writer:[154,3,1,""],topo2writer:[154,3,1,""],topo3writer:[154,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[154,2,1,""],Y:[154,2,1,""],Z:[154,2,1,""],crop:[154,2,1,""],delta:[154,2,1,""],extent:[154,2,1,""],generate_2d_coordinates:[154,2,1,""],generate_2d_topo:[154,2,1,""],in_poly:[154,2,1,""],interp_unstructured:[154,2,1,""],make_shoreline_xy:[154,2,1,""],plot:[154,2,1,""],read:[154,2,1,""],read_header:[154,2,1,""],replace_no_data_values:[154,2,1,""],replace_values:[154,2,1,""],set_xyZ:[154,2,1,""],smooth_data:[154,2,1,""],write:[154,2,1,""],x:[154,2,1,""],y:[154,2,1,""],z:[154,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":141,"00000e":141,"0000ff":[3,59],"001000e":141,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":158,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":154,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,138],"1drad":157,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,139,141,143,157],"2013it":17,"2018300n26315":148,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":151,"27t06":59,"27t07":59,"288e":151,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,139,141,143,157],"301e":151,"30x30":51,"34kt":148,"360x360":51,"373e":151,"3rd":[96,99,132],"3x3":39,"40000000e":72,"4th":99,"50kt":148,"5_x_x":55,"5d0":157,"5e3":142,"5r01ar53652":4,"639s":[36,150],"64kt":148,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,139,140,142],"break":[28,30,48,51,59,70,111,118,135,142,154],"case":[5,6,8,13,16,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,126,130,133,134,140,142,148,152,154,155,157,160],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,130,133,138,139,140,141,142,143,154],"const":32,"default":[0,1,2,3,13,22,28,30,32,41,44,45,47,49,50,51,53,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,126,130,134,140,141,142,148,152,154,157],"export":[41,51,57,58,67,71,94,102,137],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,130,132,139,141,143,154],"float":[3,30,32,44,47,59,86,89,101,104,139,140,142,143,148,154],"function":[0,1,2,3,5,7,15,17,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,126,131,133,135,136,138,139,140,141,142,143,148,152,153,154,155,157],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,111,119,124,131,132,133,134,135,139,140,141,142,143,152,154,156,158],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,139,140,142,148,154],"long":[28,30,47,48,51,69,91,118,126,140,154],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,139,140,142,148,152,154,157],"ond\u0159ej":4,"public":[4,13,21,129],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,131,133,139,141,143,148,150,154,157,160],"short":[24,48,96,126],"static":[30,70,121],"super":[23,28,121,154],"switch":[29,51,58,96,106,111,120,134,156],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,130,131,133,135,136,139,140,141,142,143,148,154],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,106,111,139,150,154,155],"var":[0,3,13,27,148],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,131,135,142,156],AND:[61,81],ARE:[61,81],AWS:13,Added:[87,113,115,117,118,120,124,127],Adding:[25,82,90],And:[6,20,54,57],Are:112,Axes:[138,148],BCs:[141,143],BUT:[61,81],But:[13,32,39,51,77,102,114,121,135,137],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,138,139,140,141,142,143,145,148,149,151,152,154,156,157,160],GIS:[51,119,152],Going:[13,25,91],Ike:108,NOT:[59,61,77,81],Not:[30,51,89,119,126],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,154],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,152],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,105,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],Their:81,Then:[13,16,28,29,30,44,54,55,56,63,66,70,71,79,83,86,94,100,101,102,106,131,133,154,155],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,80,93,100,108,120,121,138,139,149,150,157,159],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,59,60,63,66,67,73,77,79,83,88,91,92,93,95,101,103,107,109,110,111,113,119,120,121,122,126,130,140,144,148,149,152,156,160],USE:[61,81],Use:[30,51,91,99,121,132,139,141,143,152,154],Used:132,Useful:[1,3,132,139],Uses:[30,132,154],Using:[0,1,2,3,7,17,22,41,42,51,53,75,76,77,79,89,90,91,123,139,146,147,151,154,155,160],WCS:156,Will:98,With:[6,22,28,44,49,51,58,66,73,110,118,131,133,139],__________________o:154,__file__:106,__future__:119,__init__:[55,96,106],__main__:[141,143],__name__:[141,143],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,155],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,138,144],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:131,_pyclaw_io:86,_static:54,_storm_modul:149,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,148,154],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,131,138,140,141,142,152,155,157,160],aboutu:30,abov:[3,5,13,14,16,20,28,32,35,36,38,39,40,41,44,48,51,53,54,55,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,110,119,121,126,131,133,135,137,138,139,141,143,148,151,152,154,157],abs:[30,52,96,104,110,133,154],absolut:[93,110,111,121,140,141],absolute_import:119,abspath:[5,38],abstol:104,academ:102,acceler:52,accept:[44,83,93,99,139],accept_reject_step:99,access:[0,17,27,29,55,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,152],account:[13,24,28,55,85,94],accumul:[44,119,130],accur:[5,48,70,91,99,126,139,157,160],accuraci:[44,64,73,141,143],achiev:[20,84,146,147],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,131,141,157],acoustics1dheterogeneoustest:[36,150],acoustics3dheterogeneoustest:[36,150],acoustics_1d:[83,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,150,157],acoustics_1d_homogen:[88,111],acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[141,157],acoustics_3d_heterogen:[36,150],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,152,154],acsza1:30,acszb1:30,act:[87,154],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,142],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,134,142],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,126,131,133,138,139,140,142,157],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,57,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,132,143,148,152,154,158],add_colorbar:[30,154],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[141,143],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,130,135,139,140,142,148,151,154,158],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,23,24,28,29,32,36,37,38,45,46,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,126,128,131,133,139,143,148,151,152,157,158],addition:[94,148],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,135,139],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,134,139,157],adjust_fgmax_1d:33,admiralti:133,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,139,140,157],advantag:[12,76,92,105,111,133],advect:[17,77,91,94,131,132,143,157],advection2dannulustest:[36,150],advection_1d_example1:63,advection_2d_annulu:[36,150],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:157,advection_3d_swirl:[117,151],advertis:126,advis:[34,61,81],affect:[22,62,119,120,126,139,152,155],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,132,135,139,140,141,143,148,157],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,127,152,155],against:[104,111,118,150],agenc:[4,56,148,149],agency_pref:148,agre:[12,28,39,53,131,151,154,157],agreement:48,ahmadia:[4,17,81,91],aht:134,aid:84,aim:28,aks2203:4,albada:87,alg:141,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,131,133,139,141,143,154],align:[32,39,51,59,66,124,126,142],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,91,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,129,130,131,132,133,135,138,139,140,141,142,143,144,149,150,151,152,154,155,157],alloc:[20,99,117,126,140],allocat:117,allot:59,allow:[4,6,13,22,27,28,29,32,38,39,44,45,47,50,51,53,54,58,64,66,67,70,71,73,76,77,86,91,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,126,131,133,139,141,142,143,144,148,152,154,156],alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,57,68,70,106,110,117,130,133,135,142,148,156],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,58,59,60,66,79,80,94,98,100,103,105,114,122,137,154],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,43,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,139,140,141,142,143,144,146,147,148,149,150,151,152,154,155,156,157,159,160],alter:51,altern:[30,35,36,44,47,51,56,60,62,67,76,91,94,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,128,154],alwai:[16,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,126,135,141,142,143,152,157],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,131],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,126,135,138,139,141,143,151,157],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:141,amr_levels_max:[32,110,140,141],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,43,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,80,91,100,106,107,110,111,130,131,133,136,137,139,142,146,147,150,151,155],amrdata:[5,22,32,110,124,126,140,141,142],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,100],anal:17,analog:[139,140],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,57,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,130,133,134,135,138,139,140,142,148,157,160],anim:[12,16,42,51,117,124,125,144],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,58,59,72,76,80,88,99,102,111,121,148,157],answer:24,anyth:[3,6,28,29,58,63,111,121],anywher:110,aoml:148,apach:13,apdq:[97,131],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,43,70,108,109,116,120,121,122,123,124,125,126,127,128,132],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,59,62,65,77,93,98,101,119,126,142,144,152],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,130,131,141],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,130,139,142,157],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,43,45,46,55,57,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,131,133,135,136,139,142,146,147,152,154,155,157,158],appreci:81,approach:[5,7,13,28,29,38,44,54,57,69,76,84,91,94,96,104,110,117,119,120,122,131,132,138,142,157,160],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,57,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,131,134,139,148,157,160],approv:48,approxim:[6,16,25,33,48,51,70,131],april:[24,124,125,129],apt:[13,80],arbitrari:[32,59,99,113,133,142],arbitrarili:66,arc:134,arcgi:154,architectur:94,archiv:[12,21,36,51,55,111,144,150,154,156],arcminut:[70,152],arcsecond:[45,152],area:[15,22,45,99,108,119,135,136],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,131,133,138,139,140,148,154,157],argv:[141,143],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,140,141,148,154,157],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,126,131,132,133,136,139,140,141,142,143,148,152,154,157],arrang:154,arriv:[22,32,34,39,45,119,134,135],arrival_tol:32,articl:[4,17,91,144],artifici:[16,135],arxiv:52,asc:154,ascii:[44,53,67,83,86,93,98,119,130,139,141,143,152,158],ascii_output_format:68,ask:24,ask_us:154,aspect:[12,24,29,43,48,49,67,154],assert:[141,143],assess:[4,48,134],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,103,104,110,117,133,134,139,142,148,149,152,154,156,160],assumpt:[51,54],asteroid:4,astronom:134,atcf:[108,121,148,149],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,127,148,154,155],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,130,138,139,140,142,148,154],attributeerror:77,aug:[17,122],augment:[66,132],august:[24,121,129],austin:4,author:[17,25,45,48,87,91,92,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,126,139,140,142,152],autonom:5,aux1:32,aux1d:157,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,131,132,136,139,140,141,142,143,157],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,131],aux_out_field:44,aux_r:[97,131],aux_time_dep:99,aux_typ:[5,140,141],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,131,139,141,143,157],auxillari:[92,98],auxl:131,auxr:131,auxtyp:141,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,58,62,66,67,73,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,131,132,134,139,141,142,144,148,149,152],available_format:148,available_model:148,averag:[4,6,15,17,32,39,45,48,49,53,67,101,114,126,131,135,136,152,154,157],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,126,128,130,139,142,160],awai:[28,134],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,138,148,154],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,133],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,157],b4step2:[15,136,157],b4step3:15,b4stepn:157,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,138],backward:[5,28,30,47,59,70,92,114,115,154],bad:[106,111],bai:[66,134,156],balanc:[6,17,73,120,132,146,147],bale:17,balelevmitross02:[4,17,139,160],ball:154,band1:154,band:[51,154],bar:[13,54,148],barrier:[66,104],base:[5,6,13,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,126,134,139,140,141,142,143,148,154,157,160],base_subfault:30,baselin:51,basemap:148,bash:[41,51,57,58,67,71,94,106,137],bash_profil:[102,137],bashrc:[13,41,102,137],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,99,111,131,132,148,160],basin:108,bathymetri:[15,45,48,51,59,108,119,121,132,134,136,142,152,154],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,139,141,143],bc_upper:[16,83,96,103,139,141,143],bcn:[6,16,143,157],bcnamr:[6,16,121,139,141,157],beach:[39,66,132],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,131,134,139],becom:[48,102,160],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,126,127,130,131,133,139,140,142,152,154,157],befor:[1,3,4,6,14,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,129,131,134,135,139,140,142,152,154,155],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,103,132,148],begin_d:47,behav:44,behavior:[45,54,110,111,118,124,126],behaviour:83,behind:[39,66,135],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,131,133,135,139,142,148,155,157],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,28,29,30,32,39,45,51,52,54,55,58,59,64,67,70,79,81,83,85,93,103,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,136,137,138,139,140,141,142,143,146,147,148,152,154,157],benchmark:48,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,56,62,69,71,76,77,92,96,108,109,110,111,121,129,131,142,145,148,152,157],besttrack:148,beta:[47,87,99,143],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,126,127,142],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,131,133,134,139,140,141,142,143,144,148,151,152,154,156,157],bewar:[106,154],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,152],bin:94,binari:[5,41,55,61,68,81,92,93,95,118,130,139,141,154,158],binary32:92,binary64:92,bind:[28,51,76,84,94],bisect:[140,141],bit:[16,22,30,55,92,94,102,132],bitbucket:94,black:[3,44],blank:[3,59,148],blast:120,blob:[118,132],block:[7,30,39,59,70,72,73,83,92,101,104,111,157],blossei:4,blue:[3,11,39,44,59,66,77,133,148,154],bmatrix:132,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:148,bomb:[62,71],book:[4,12,17,25,29,80,98,131],bool:[0,1,2,3,47,59,86,92,98,99,101,104,142,148,154],border:[67,157],bore:48,both:[3,16,28,30,33,35,36,38,39,44,48,53,56,58,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,131,132,133,135,139,140,141,143,146,152,157],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,136,146,147],boulder:24,bound:[33,84,87,94,133,139,154],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,133,139,141,143],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,133,154],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,127,128,129,136,146,147],brew:80,brief:[4,55,132,142],briefli:160,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:154,broken:[19,20,28,68,70,111],brought:28,brown:[81,154],brows:[11,24,42,51,67,144,157],browser:[13,28,29,35,36,51,54,144],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,140,141,154],buffer_length:154,buffer_s:[30,70],bug:[4,8,12,22,24,41,51,64,71,77,81,116,117,118,119,121,126,127,128],build:[4,17,28,29,54,55,67,84,94,104,120,133],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,146,147],bulk:[19,83,103,131,141,157],bull:[17,30],buoi:45,burger:[91,131,157],busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_node:89,c_nodes_with_ghost:89,cach:[22,47,55,79,81,124,140],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[131,157,160],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,99,114,119,154],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,131,133,135,137,139,141,142,143,148,154,157],call_before_step_each_stag:99,call_setplot:77,callabl:[91,104],cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,152,154,155,156,157,158,160],cannot:[52,58,92,126,135,148],canopi:100,capa:98,capa_index:[139,141,143],capab:154,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,22,32,34,48,52,66,73,84,91,113,118,119,121,122,123,124,125,154,156],capac:[15,136,139,140,141,143],captur:[32,48,133,152],car_nam:148,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,142],cartopi:148,cascad:4,cast:154,cat_nam:148,catalog:156,categor:148,categori:148,category_color:148,caus:[22,48,51,54,61,62,73,79,81,102,111,118,119,120,122,126,138,140,152,154],caut:87,caution:48,cautionari:[25,45,63,142],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:154,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:154,cdot:[64,96,133],ceas:105,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,126,131,134,135,136,139,140,141,142,143,149,151,152,157,160],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,152],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,133,135,140,141,142,148,149,152,157],centerlin:30,centers_with_ghost:89,central:[139,148,149],central_pressur:148,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,133,139],certainli:94,certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,139,141,142,143],cfl_desir:[99,139,141,143],cfl_max:[99,139,141,143],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,129,131,135,136,139,140,141,142,143,146,147,152,155,157],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],changes_to_mast:55,channel:24,chapter:[16,131,139,157],char_decomp:99,charact:47,characterist:99,charg:13,chava:142,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,80,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,133,135,136,140,141,146,147,148,154,155,156,157],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55,57],checkpoint:[25,44,118,119,121,123,126,139,141,143],checkpt_interv:[139,141],checkpt_styl:[118,130,139,141],checkpt_tim:[139,141],checksum:92,chen:[30,156],chile2010:[51,109,110,113,116,122,152],chile2010_adjoint:5,chile2010_fgmax:32,chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[141,143],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[130,139,141,143],choic:[16,45,76,99,139,141,142,143,157],choos:[0,7,56,58,59,70,96,139,142],chose:64,chosen:[3,29,32,38,39,51,53,66,103,110,126,134,140],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,129],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:143,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,43,46,55,56,57,58,63,69,71,72,73,80,81,83,86,88,89,90,91,92,96,106,107,111,130,131,136,137,140,142,147,155,157],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,19,20,22,24,28,30,32,33,35,36,37,38,40,41,43,44,45,47,49,50,52,54,55,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,131,135,136,141,142,143,145,146,147,150,151,152,154,155,157,158],claw_1dnoncon:160,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[139,140,141,142,143],claw_topo_download:154,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,130,139,140,141,142,143],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,130,131,133,137,139,140,141,142,144,145,148,150,152,154,155,157,158,160],clawpack_gpu:52,clawpack_src:[58,106],clawplotax:[1,2,3,27,77,121,126,138],clawplotdata:[2,3,27,44,51,77,79,86,138],clawplotfigur:[0,1,51,77,138],clawplotitem:[0,1,7,22,27,76,78,118,121,138],clawrundata:[5,44,59,122,130,139,140,141,143],clawsolut:1,clawsolv:[99,131],clawsolver1d:[83,86,89,99,103,131],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,56,57,62,106,111,137,139,140,141,143,154,155],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,67,79],clearer:[123,126,127],clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,133],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,129],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,154],clone:[12,18,23,24,42,52,54,55,58,80,94,100,109,155],close:[13,39,51,54,59,66,67,92,110,124,140,148],close_fig:59,closer:[70,141],closest:148,cloud:13,cluster:[6,17,110,140,141],clustering_cutoff:[110,140,141],cma:148,cmap:[39,51,59,66,77,133,154],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,32,51,110,119,126,139,152,157],coarsen:[53,110,121,122,140,152,154],coarsen_method:53,coarser:[3,16,53,119,135,139,140,157],coarsest:[6,51,72,113,130,139],coast:[39,66,110,135,154],coastal:[48,124,134,135,142,152],coastlin:[32,51,66,124,133,142,156],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,61,62,63,64,68,69,70,71,72,73,75,77,79,80,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,126,130,131,132,133,137,139,140,141,142,143,144,148,150,151,152],code_of_conduct:121,coeffici:[5,64,96,99,101,102,103,131,142],colella:[6,17],collabor:[51,144],collect:[12,25,26,28,30,32,70,76,83,99,144],collela:120,color:[3,30,39,51,59,66,67,76,133,138,148,154],colorado:24,colorbar:[3,39,59,66,121,124,133,154],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,154],column:[10,30,32,44,48,60,93,117,133,154],column_list:30,column_map:30,com:[12,13,23,24,26,28,29,52,54,55,57,58,92,94,96,100,116,118,119,120,129,132],combin:[20,54,59,118,156],combinatori:111,come:[3,28,77,79,88,94,99,117,152,157],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,131,137,138,139,140,152,154],commenc:130,comment:[5,11,24,49,55,120,130],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,155,157],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,152],compactli:133,compar:[5,22,36,44,48,51,55,77,93,110,111,134,140,142,150,156,160],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,114,115,119,120,154],compens:154,compil:[13,25,35,36,40,46,58,63,71,73,79,80,84,91,92,96,100,104,113,131,132,137],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,133,138],compon:[3,16,20,22,25,36,44,57,58,67,72,76,96,98,100,101,110,117,126,132,139,140,141,152,157],compos:[30,83],comprehens:111,compress:[30,92,154],compris:[22,91,154],comput:[3,4,5,6,13,16,17,27,29,30,32,33,39,44,47,51,53,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,106,108,110,113,114,118,119,123,126,131,135,139,141,142,143,149,152,157,160],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,131],concern:[22,45,140],conclus:[4,51],conda:51,condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,134,139,141,142,143],conduct:121,conf:[54,55],confer:24,config:94,config_fc:155,configur:[77,83,94,154],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,152],confus:[3,53,58,106,126,131],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,133],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,132,157,160],consid:[6,39,48,58,66,84,106,137,144,154],consider:[48,83],consist:[6,25,32,47,51,55,59,94,105,119,131,133,142,152,157],consol:[13,93,142],consolid:117,constant:[30,32,48,59,64,94,131,132,133,135,142,154,157],constant_storm_modul:117,constrain:110,constraint:[39,44,133,140,160],construc:59,construct:[22,30,32,53,83,89,104,148,149,152],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,43,44,45,47,49,50,51,52,53,54,55,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,91,92,94,96,97,98,99,101,103,104,105,106,110,111,113,114,121,122,129,131,133,138,139,142,144,148,152,154,155,157],containing_rect:30,contains:29,containt:130,contamin:139,contan:51,content:[4,6,23,51,55,73,84,91,142,152,157,158],context:[27,51,157],contigu:[72,92,101,133],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,131,139,160],contour:[3,30,44,51,53,67,105,138,154],contour_color:3,contour_kwarg:[3,154],contour_level:[3,154],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,133],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,132,142],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,157,160],convens:152,convent:[3,22,30,46,53,70,97,152],converg:[66,76],convers:[19,25,84,92,110,133,152,156],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,58,59,62,70,73,84,91,96,104,105,121,124,139,140,148,152,156],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,133,142,154],coordinate_specif:[30,70],coordinate_system:[15,60,136,142],coorind:154,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,135,136,140,144,146,147,152,157],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,142,146,147],coriolis_forc:[48,142],corner:[3,30,32,53,70,72,89,133,139,141,143,152,154],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,135,139,141,142,143],correctli:[28,32,84,90,117,142],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,131,133,134,139,140,141,142,143,148,152,156,157],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:132,could:[5,12,13,27,32,35,36,39,44,53,60,66,70,71,77,79,83,89,93,101,102,106,117,126,133,135,140,141,142,143,154,157],council:4,count:83,count_from_zero:83,counter:[104,154],counterclockwis:70,coupl:[119,160],courant:[4,6,110,120,139,140,141,143],cours:[13,26,32,44,46,60,70,94,95,103,105,108,142,152],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,135,141,152],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,151],crash:[118,139,140],creat:[0,1,2,3,5,6,7,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,126,133,138,139,140,141,144,145,148,154,156,157,158],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:154,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,141],critic:[51,93,131],crop:[53,154],cross:28,crucial:[51,152],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,130,134,138,139,140,141,142,143,148,149,152,154,156],current_data:[0,3,25,44,76,77],curv:[3,44,76,133],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,135],custom_bc:96,customari:93,cut:140,cutoff:[6,141],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,142],dalcin:81,dam:[51,135],dam_break:132,damag:[6,61,81],damiansra:96,dark:133,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,148],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,126,131,133,134,140,141,143,148,151,153,158],data_break:[39,66,154],data_fil:33,data_limit:[39,66],data_storm:148,data_typ:104,databas:[13,30,70,104,108,121,152],datadir:118,dataset:[152,154,156],date:[5,28,40,47,51,54,55,62,77,148,155],date_tim:47,datetiem:148,datetim:[47,148],datum:[47,48,134,142,156],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,148,154],dealt:[32,39],debug:[7,41,62,72,76,93,101,106,111,139,141],debugg:77,decemb:[18,128,129],decid:[83,99],decim:[47,59],decimc:148,decis:51,declar:[20,22,101,126,157],decompos:[72,131,160],decomposit:139,decor:104,decoupl:54,decreas:[44,135,152],deduc:152,deep:[5,66],deeper:[133,142,152],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,141,143,148],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,126,131,141,143,148,152,154,155,157,160],definit:[30,67,83,110,116],deform:[17,30,33,45,70,156],deg2dm:59,degener:133,degre:[30,47,51,59,70],delet:[20,28,58],delimit:30,delin:142,delta:[87,89,96,99,131,154,157,160],delta_i:154,delta_limit:154,delta_x:154,dem:[32,45,53,59,121,152,154,156],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,131,154],dens:149,densiti:[86,93,101,103,140,141,157],depart:[4,148],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,62,64,67,70,77,82,92,97,98,99,104,106,110,121,135,140,142,154,155,157,160],deprec:[7,30,34,54,58,117,121,142,152,154],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,132,134,135,142,152],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,57,59,60,62,63,66,67,70,72,73,76,77,78,89,91,92,98,104,108,110,111,119,122,123,131,133,134,138,139,140,142,148,149,152,154,156,157,160],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,91,92,104,108,110,131,132,142,148,152,160],design:[4,27,28,51,81,83,103,133,156],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,135,137,139,140,141,143,148,152,154,155],desktop:94,destin:51,detail:[4,5,10,16,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,57,58,61,62,66,67,70,73,77,81,86,87,88,89,91,92,93,94,95,96,97,99,109,110,111,114,119,121,126,131,133,138,139,142,144,148,152,155,156,157,160],detect:[51,62,92,100,104,155],deterimin:[142,154],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,101,106,110,114,118,119,130,133,134,138,139,140,142,154,157],determine_topo_typ:154,dev:[18,24,28,54,55,94,121,122,127,128,129],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,126,131,134,135,141],dict:[30,86,92,97,98,101,148,154],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,148,152,154],dicuss:30,did:[121,126,133,152],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],differ:[1,3,6,7,12,15,16,22,28,30,31,35,36,39,44,46,48,50,53,57,59,62,64,66,67,70,71,76,79,83,84,86,88,89,91,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,126,127,131,134,135,136,137,139,140,141,142,146,147,152,154,155,156,157,160],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,154],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,131,139,140,141,143,154,157],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,141,142,143,154,157],dimensional_split:[89,117,139,141,143],dip:[30,70],dir:[55,94,158],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,131,139,140,142,154],directli:[8,19,23,32,48,57,67,70,77,79,83,84,87,91,101,104,106,121,154,158],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,43,44,45,47,50,51,54,55,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,130,131,135,136,137,138,139,140,144,146,147,150,151,152,155,157,158],directorti:108,disabl:[49,100,142],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,160],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,66,70,92,103,105,106,110,119,121,131,142,160],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,135,142,156],displai:[1,13,35,36,40,44,51,59,77,93,111,142],display_format:[44,60],display_landfall_tim:142,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,142,152,154],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,81,99,105,124],disturb:51,distutil:84,divid:[110,139],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,152],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,126,127,128,145],docker:[18,25,55,56,120,121,122,123,124,125,126,127,128,159],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,127,128,129,138,141,158,159],dodsc:[39,66],doe:[4,5,11,16,20,27,28,39,40,48,51,53,54,58,67,73,77,80,89,98,101,104,110,111,114,119,123,126,130,131,132,135,148,154,155,157],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126,127,128,129],doing:[6,11,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,140,141,143,152],don:[13,27,28,54,55,77,93,94,100,111,141,155],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,56,59,62,66,67,70,76,77,79,83,87,88,91,104,110,114,118,119,123,130,131,133,138,140,142,151,154,155,156],donna:[4,17],donnabois:4,donor:[139,141,143],dontflag:110,dot:[40,44,51,58,59,62,155],doubl:[67,84,89,104,131,140],down:[13,30,93,118,148,152,154],download:[12,13,28,29,30,36,37,39,45,51,55,57,58,68,88,94,100,121,122,129,150,154,155,156],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[140,141],dq_src:[96,99],dqdt:99,draft:55,drag:142,drag_law:142,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,138],driver:[20,63],drop:[13,54,80,124,126,135,139],dry:[16,17,25,32,45,124,127,132,135],dry_point:39,dry_points_sum:39,ds824:148,dst:59,dt_check:32,dt_initi:[113,139,141,142,143],dt_max:[139,141,143],dt_max_dtopo:[113,142],dt_variabl:[139,141,143],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,126,135,142,152,154,156],dtopo_data:[113,142],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,142],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,152,153],dtopotools_exampl:[30,70,109],dtopotyp:[142,152],due:[17,24,30,39,47,70,111,120,121,126,135,155],dummi:[84,99,157],dump:[72,139],dumpgaug:117,duplic:[77,116,130],durat:[30,126,134],dure:[5,22,32,39,44,59,70,73,113,134,135,141,142,143,152],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73,140],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:148,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,130,131,132,133,135,138,139,140,141,142,143,148,151,152,154,156,160],each_fram:44,each_gaug:44,ear:4,earli:[6,20,135],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,152,154],earth:[25,39,45,52,59,66,70,117,119,127,133,142],earth_radiu:142,earthquak:[25,30,45,48,109,135,142,149,152],eas:59,easi:[4,6,11,29,38,58,67,84,93,94,95,133,144,157],easier:[58,76,119,121,133,157],easiest:[19,28,41,73,77,79,110,157],easili:[3,13,28,32,51,54,67,77,84,89,100,104,111,124,144,148],east:[13,152],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[140,141],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,131,133,136,140,141,143,157],edgecolor:133,edit:[51,54,55,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,110,111,134,142,154],effici:[48,52,81,91,92,93,101,110,133,140],effort:92,efix:132,egg:[29,58],eigenvalu:5,eigenvector:[5,131,160],either:[12,16,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,91,92,93,99,104,106,110,111,117,118,119,121,131,133,135,140,142,148,152,154,157,160],elast:[13,70],element:[0,3,22,59,97,99,101,139,140,141,142],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,133,134,142,152,154,156],elif:[141,143],elimin:[8,22,66,84,106,121,142],ell:131,els:[27,28,58,66,101,121,133,135,143],elsewher:[5,24,39,91,133],emerg:4,emmanuel:142,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,139,148,154],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,103,105,108,110,118,119,121,130,132,133,141,143,148,151],end_dat:47,enddo:157,endian:92,endors:[61,81],energi:93,enforc:133,eng:148,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,140,149,151,152],ensembl:148,ensur:[35,36,37,67,108],enter:[67,92,94,100],enthought:[100,102],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,133,154],entireti:86,entri:[51,60,83,93,104,148],entropi:132,enumer:[89,99],environ:[14,25,28,35,36,37,40,50,51,54,57,58,67,69,71,73,95,102,104,106,119,154,155],envis:16,epd:102,eprint:[140,141],epsg:51,epsilon:87,eqn:160,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,130,133,139,141,143,152,154],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,131,139,141,142,143,152,157,160],equiv:160,equival:[6,44,52,53,59,60,123,152],err:141,errest:110,erron:[30,70],error:[5,16,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,126,140,141,148,155],escap:[110,141],escienc:13,especi:[28,51,84,96],esri:[53,152],essenti:[5,53,67,99,142,152],est:141,establis:121,establish:4,estim:[5,64,110,140,142],estimat:[5,141],eta:[25,30,32,39,44,45,110,117,124,134],eta_init:135,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,131,138,139,142,148,157],etopo1:[121,133,134,152,154,156],etopo_sample_2min:154,etopotool:[121,152],euler:[60,91,99,115,117,120,122,131,157],euler_2d:[35,37,91,96],evalu:[17,27,30,64,83,89,99,154,157],even:[39,48,51,58,61,70,81,104,110,124,140,141,152,155,157],evenli:[51,93],event:[33,45,48,59,61,70,81,134,135,139],event_tim:59,eventu:[13,45,124],ever:[138,142],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,131,135,137,139,141,143,148,152,154,157],everyth:[32,55,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,135],evolv:[22,83,86,99],evolve_to_tim:[83,99],exactli:[28,33,50,52,101,133,139],exam:77,examin:[16,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,20,22,24,27,28,29,30,38,40,41,43,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,105,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,151,152,154,155,156,157],exce:[32,51,110,140],exceed:[110,121],except:[22,27,30,39,92,97,104,124,139,142,148,152],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,131,137,155],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,114,120,121,135,148,154,156],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,103,104,105,111,121,122,124,126,141,142,143,148],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,126,139,144],explan:28,explicit:[104,140],explicitli:[32,63,67,91,126,139,155,160],explor:[4,59,77,79],expon:64,expos:[13,73],express:[4,30,61,81,100,133],extend:[8,16,22,39,59,66,67,89,121,133,135,142,152,154,160],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,126,139,150,154,160],extent:[38,39,48,56,59,64,66,67,83,89,101,113,126,133,142,152,154],extra:[3,51,132],extra_fil:54,extract:[51,55,92,148,154,156],extran:117,extrap:[16,96,103,139,141],extrapol:[5,7,16,22,96,103,121,139,140,141,143],extrem:[51,102],extropl:16,eye:[148,149],eye_loc:148,f2py:[58,73,84,91,96,104,131],f2py_flag:104,f2s:59,f49620:4,f77:[41,155],f90:[5,9,15,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,126,127,131,132,135,136,146,147,152,155,157],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,138],facilit:[44,60,91,111,117,119,124,144,148],fact:[51,92,101,105,110,135],factor:[6,51,140,142,151,154],faculti:30,fade:77,fail:[28,92,94,104,111,117,148],failur:[111,122,135],fairli:[16,48,119],fall:[134,142],fals:[0,1,2,3,5,30,39,48,49,50,51,59,66,86,89,92,98,99,101,104,118,119,124,130,132,139,140,141,142,143,148,154],famili:[89,99,141,143],faq:[13,25,76],far:[16,38,42,66,76,122,124,126],farther:66,fashion:130,faster:[123,124,126,154],fastest:[92,100],fault:[17,25,30,45,109,121,128,152,156],fault_plan:30,favor:[117,121,140,154],favorit:76,fbound:41,fc02:4,fcompil:155,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,129,142,148,152],februari:[24,120,126,127,129],feet:[134,156],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:154,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,134,150,152,157],fewer:[66,110,154],ff0000:[3,59],ff9999:138,ffff00:77,fflag:[28,40,62,68,71,84,104,152],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,142],fgmax_data:[32,142],fgmax_fil:142,fgmax_grid:[32,33,59,124],fgmax_interp:[32,126],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fid:33,field:[44,59,96,98,101,119,121,148,149],fig:[59,133],fig_kwarg:[30,154],fignam:[1,79],figno:[1,2,44,51,77,79,138],figsiz:[2,39,66,77,133,138],figur:[0,1,2,4,13,30,35,36,39,42,44,53,59,66,67,76,79,98,106,131,133,138,154],file1info:142,file2info:142,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,91,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,134,135,136,137,138,139,140,141,143,145,146,147,148,149,151,154,155,156,158],file_format:[44,92,98,148],file_prefix:[92,98],file_prefix_p:86,fileio:72,filenam:[31,51,117,154],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,135,139,148,151,154,157],fill_between:3,fill_mwr:148,fill_rad_w_other_sourc:148,fill_topo:154,fill_valu:[92,154],fill_var2:3,fill_wher:3,filpatch:[9,39,119,123,126],filter:[92,154],filter_region:154,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,58,62,68,70,73,76,81,88,96,101,102,104,106,108,121,148,155],fine:[3,32,33,39,54,69,73,91,96,110,119,126,133,135,139,140,142,152,157],finer:[3,7,32,51,110,113,114,133,139,140],finest:[3,32,39,44,121,151,154],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,133,151,152,157],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,37,38,39,51,54,55,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,131,132,133,135,139,141,142,148,150,152,154,160],first_test:35,fist:66,fit:[61,81],fix:[6,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,113,114,115,116,117,118,119,120,122,123,124,125,126,127,128,132,139,141,143,154],fix_links_top_level:54,fixedgrid:142,flag2refin:[5,7,22,140,141],flag2refine_tol:[5,110,140,141],flag:[7,12,13,22,25,28,29,38,40,41,45,52,58,68,71,84,102,104,106,117,122,126,141,142],flag_richardson:[5,110,118,140,141],flag_richardson_tol:[5,110,140,141],flagregion:[7,25,66,110,124,126,133,140,142],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,92],fletcher32:92,flexibl:[22,30,59,84,117,120,131,133,140],flood:[51,66,135],floor:[30,45,70],flow:[4,16,17,23,32,33,45,46,48,73,91,108,124,131,139,142,152,157],flowchart:[6,7,25],fluctuat:[97,99,160],fluid:[32,48,60,134],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,99,131,139,160],fly:25,fmt:3,fname:[39,59,126,133,141,142,143],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,35,36,37,39,44,46,51,53,54,55,56,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,126,130,131,133,137,138,139,140,142,148,150,151,152,155,157,159],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forbiddn:140,forc:[22,25,40,45,62,66,104,110,124,132,135,140,142,149,154,155],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:148,forestclaw:[106,117],forget:155,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,43,44,47,51,55,60,61,64,70,72,81,84,93,99,103,104,110,114,121,122,123,124,130,131,133,139,140,141,142,146,152,154,157,160],format:[1,3,5,13,14,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,126,139,142,148,149,154,156,158],format_str:44,former:[77,157],formerli:117,formul:[4,5,48,64,131,139],formula:[64,135],fort:[1,8,27,32,44,67,68,76,92,98,114,118,119,120,130,139,140,141,143,151,158],fortfil:[35,36],fortran:[6,9,11,13,14,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,106,117,118,119,121,122,123,131,132,137,140,141,142,143,148,150,151,152],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,157],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,130,134,138,148,154,155],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,103,160],fraction:[6,13,30,110,139,157,160],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,130,138,141,143,144],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,81,84,118,119],free:[13,51,62,70,81,85,96,100,102],frequenc:[60,70,99],frequent:[5,20,27,102,118],friction:[25,45,48,142,146,147],friction_depth:[64,142],friction_forc:142,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,43,44,45,48,51,52,53,55,56,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,129,130,131,132,134,135,136,139,140,141,142,143,146,147,148,149,150,152,155,156,157,158],frommm:87,front:[25,32,38,39,45,67,98,104,133],fset:101,fstr:67,ftrapuv:41,fuca:133,fuction:39,full:[5,6,14,55,57,58,59,77,86,93,99,103,137,152,157],fulli:[6,48,51,52,120,124,131,142,148,149],fun:104,func:[104,148],function_nam:104,fund:[25,56,91],funrol:104,further:[6,16,25,32,41,48,59,62,67,91,105,110,111,140],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,140,148,152],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,131,139,157,160],fwave:[89,99,131],g77:102,gain:92,galerkin:99,galleri:[12,25,35,36,37,42,55,75,76,88,91,105,111,116,120,144,150,157],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma:64,gap:154,garret:142,gas:6,gaug:[7,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,130,134,141],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,141],gaugeno:[44,60,141],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,130],gauss_pt:30,gaussian:[5,83,103,143],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,57,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,106,108,110,113,117,119,130,133,134,137,139,140,144,149,151,152,157,158],generate_2d_coordin:[39,66,154],generate_2d_topo:154,geo:[45,64],geo_data:[60,142],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,43,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,80,91,100,106,108,109,111,130,131,132,134,135,137,139,140,148,149,150,151,152,153,154,155,156,157],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:157,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,139],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geotiff:127,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,131,133,140,148,154,155],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,154],get_topo:154,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,58,71,80,82,102,137,155],gfortranbinari:100,ghamdi:4,ghost:[7,16,71,72,89,92,99,101,119,126,139,141,143,151,157,160],gica2937:30,gigabyt:152,git:[12,13,23,24,25,26,29,52,55,58,91,100,111,123],git_statu:50,github:[12,15,22,23,24,25,26,29,52,54,57,58,88,96,100,107,111,116,118,119,120,129,131,132,136,146,147,155],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,126,133,139,142,152,154,156],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,126,133,134,135,142,148,152,154,157],glitch:116,global:[6,14,89,101,104,134,152,156,157],gloss:156,glu:16,gmt:47,gnu:100,gnufcompil:155,goal:6,godaddi:54,godunov:[4,89,99,139,141,143,157],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,112,126,144,152,160],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,126,131],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,127,131,133],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,148],govern:[32,142],gprint:[140,141],gpu:[25,123],gradi:[4,17,81],gradient:[120,160],gradylemoin:4,grai:148,grant:[4,81],graph:9,graphic:[23,28,52,67,76],grav:132,gravit:[64,142,157],graviti:[132,142],great:[47,88],greater:[5,32,59,64,66,100,110,130,139,140,142],greatest:110,greatli:[26,81,134],green:[12,59,66,70,77,111,148,154],grid1d:89,grid1info:142,grid2info:142,grid:[4,7,17,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,126,128,131,132,133,134,135,139,140,141,143,149,151,152,154,156,157,160],grid_files_scanf:158,grid_numb:72,grid_registr:[53,154],griddata:154,gride:149,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,131],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,158],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,145],guidelin:91,gzip:[55,124],h_l:132,h_r:132,hack:101,had:[44,52,53,119,120,121,122,126,135],hadjimichael:[4,17,81],half:[0,16,17,70,99,139,157],halfspac:70,hand:[3,5,18,19,20,64,83,111,133],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,132,135,142,148,154],hang:70,happen:[31,51,62,83,98,101,124,155],har:131,harbor:32,hard:[49,54,71,77,154],hardcopi:[1,77,79,138],harder:139,hardest:68,hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,129,131,133,134,139,140,142,148,151,152,154,157,158,160],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,37,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,126,127,130,131,132,133,134,139,140,142,144,148,152,154,155,157],haven:[103,105],haversin:47,hazard:[4,32,45,64,134],hdf5:93,hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,148,152,154],header_styl:154,heavili:84,height:[51,154],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,56,62,76,79,91,94,100,104,111,118,124,131,144,155],helzel:17,henc:[5,32,53,54,63,99,105,106,110,135],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,131,132,133,149,154,160],heterogen:157,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,131,134,135,156,157],higher:[3,6,32,51,89,99,100,110,124,131,133,134,135],highli:[121,135],highlight:[11,13],hilo:[134,156],hint:[16,25,45,76,79,106,142,155],histor:[48,70,156],histori:[28,55,58,79],hit:[16,67,79,93,139],hko:148,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,142,149],holland_storm_modul:117,home:[13,29,30,58,137],homebrew:[51,80],homepag:[21,25],homogen:[70,99,157,160],hood:[76,91],hope:[26,111],horizont:[51,154],host:51,hour:[13,51,59],how:[1,6,7,12,16,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,129,130,131,138,139,142,144,152,154,158],howev:[6,13,16,22,29,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,91,110,111,119,121,123,134,135,138,142,151],howto:105,hpc:24,hrd:148,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,148],html_plot:95,html_theme:54,htmlplot:88,http:[4,12,13,17,24,26,28,29,30,39,47,51,52,54,55,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,127,128,129,132,148,154],huge:[60,66,135,152],human:148,hurdat:[121,148,149],hurrican:[108,148],hurt:[12,63],hwrf:[121,142,149],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,131,139,142,157,160],hyperol:139,ian:4,ibm:100,ibtrac:[121,148],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,154,160],ideal:[55,134],ident:[39,63,89,92,94,111,154],identifi:[5,35,36,39,51,66,84,110,124,148],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,126,134,154],iinstal:94,ike:108,illustr:[12,25,30,32,35,43,51,66,67,70,109,116,117,121,123,131,133,144,154],imag:[13,35,36,39,55,59,66,111,121,133],imd:[148,149],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,99,103,104,111,116,119,122,124,126,131,132,139,154,157,160],impli:[61,81,142],implicit:[81,99],implicitli:[126,142],importantli:94,impos:[16,84,110,146,147,160],imposs:[48,139],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,126,127,139],imread:[39,66],imshow:[39,66,154],in_poli:154,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,138],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,43,44,48,51,53,55,57,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,98,99,100,101,103,106,108,110,111,113,119,120,121,122,123,124,125,126,127,128,131,132,133,137,139,141,142,144,145,148,149,151,152,154,157],inclus:133,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,132,154],incorrect:[121,122,135,148],incorrectli:118,increas:[51,59,71,133,142],increasingli:28,increment:[32,44,51,89,104,139,141,143],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,22,23,27,44,54,55,77,89,91,94,96,97,104,121,126,139,140,141,142,143],indian:148,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,126,131,132,139,140,141,142,143,152,154,157],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,148],inf:154,infer:154,infinit:139,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,140,141,148],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,58,63,72,77,78,79,83,84,89,91,93,94,95,97,98,104,106,118,121,122,124,129,130,131,134,137,139,140,142,148,151,152,155,156,157,158],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,134],initi:[4,5,7,12,13,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,98,99,101,102,104,107,110,118,121,124,126,131,134,139,140,141,142,143,148,152,154],initialize_sourc:84,inland:[39,66],inlet:133,inlin:[39,132],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,131,141,142,143,148,149,152,154,157],input_filenam:84,input_path:152,input_unit:30,inputfil:[104,154],ins:22,insert:[11,16,70,92,137],insid:[38,89,94,98,131,133,154],insidi:119,inspect:[19,20,51],instabl:[119,126],instal:[12,13,18,23,25,29,35,43,51,54,55,79,81,82,85,90,92,103,105,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,137,159],install_fortran:36,install_prerequisit:35,installing_fortcod:55,installing_opt:58,installing_pip:55,instanc:[3,28,51,70,73,79,83,84,86,89,92,93,96,133,142],instantan:99,instanti:[7,86,94,96,99,101,141,143],instati:[70,154],instead:[3,13,32,35,36,39,41,44,52,54,55,58,62,63,68,100,101,104,106,118,119,122,126,130,131,132,133,152,154],institut:4,instruct:[13,18,24,25,29,35,36,39,51,52,54,55,68,83,85,91,94,100,103,106,120,127,129,130,155],insur:[50,54,62,79,110,113,117,140,142,152],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,131,139,142,148,154],integr:[5,22,53,60,81,91,93,99,113,114,118,141,143,151,152,157],intend:[48,84,121],intens:[84,148],intent:[84,131],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,133],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,126,127,128,135,139,148],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,131,157,158,160],interface_funct:104,interior:[6,16,39,72,101],interleav:81,intermedi:[19,32,70,157],intermit:[44,119],intern:[6,30,44,53,59,70,119,140,152,154,160],interp_dz:33,interp_kwarg:148,interp_method:32,interp_unstructur:154,interpol:[5,6,16,30,33,34,39,44,45,53,59,67,70,77,119,126,133,134,135,142,148,149,154],interpret:[30,53,70,121,152],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,126,133,139,142],introduc:[5,16,19,32,33,39,77,124,126,133,135,140,160],introduct:25,introductori:24,intuit:91,inund:[32,45,51,64,110,124,134,156],inundataion:[134,156],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,135,155],involv:[24,96,99,108,149],ioerror:98,ioexcept:104,iout:143,ioutarrivaltim:142,ioutsurfacemax:142,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,132,133],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,133],isn:[62,71,72,155],iso:148,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,131,142,155],item1:[0,79],item:[0,1,3,67,76,79,104,126,138],itemnam:[1,79],iter:[30,39,66],ith:97,its:[4,6,13,22,29,34,39,48,51,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,141,154,160],itself:[4,70,76,105,124,131,142,154],ixi:[38,66,131,133],jacobian:[131,160],jan:[4,55],januari:[105,112,119,129],japan:[51,59],japanes:148,javascript:144,jed:81,jet:[30,67],jma:[121,148,149],job:[13,128],join:[24,77],journal:[4,17,52,91,144],jovyan:29,jpg:[54,67],jsanim:[113,117],jsanimation_frametool:115,juan:133,juli:[114,115,129],jump:[4,5,67,79,89,99,119,139,160],junction:[32,142],june:[120,121,122,123,129],jupyt:[25,43,70,73,91,105,109,117,118,124,131],just:[0,6,28,32,40,55,83,84,86,88,92,93,94,95,96,101,104,114,121,139,157],justifi:70,kappa:[103,160],kappa_i:160,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,142],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,148,154],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,131],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,138,148,154],kind:[86,88,93,123,131],kinemat:[30,45],king:[4,81],kitsap:133,klein:87,kml:[59,117,119,120,121,124,125,133],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,127,153],kmw6h:[4,55,129],kmz:[59,119],kneplei:[17,81,91],know:[48,58,62,70,81,108,120,124,126,131,134,154,155,156],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,139],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,138,148],kyle:[4,17,81,87,91,92],label:[30,49,51,53,59,117,133,152,154],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,135,152],lambda:[89,154],land:[16,39,45,46,51,54,55,59,66,78,124,135,142,154],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],languag:[11,76,104],lapack:113,laptop:[29,91],larg:[5,6,12,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,126,130,133,135,139,140,154,156],larger:[13,20,32,51,59,70,71,72,77,89,113,119,126,140,142,152],largest:[110,134],last:[3,18,27,32,55,57,77,83,84,96,103,118,139,148],lat:[30,47,51,53,152,154],later:[13,39,50,51,58,79,99,130],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,133,136,142,148,154],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,133,136,139,148,157],launch:[37,88,94,95,100],law:[4,17,59,142,160],lax:[89,99,139,141,143,160],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:133,lead:[6,13,22,32,48,51,64,67,70,106,109,126,135,140],learn:[48,88,105],least:[4,5,6,13,51,59,66,67,102,110,111,118,119,126,139,141,152,154],least_significant_digit:92,leav:[12,13,16,44,58,140,154],lectur:24,led:[20,122],leer:[87,99,139,141,143],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,129,130,131,134,140,152,154,156,160],legaci:[23,55,58],legend:[120,133],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,141,143,154],lenght:139,length:[15,30,48,59,70,96,101,119,126,136,139,140,141,142,157],leq:[5,133],less:[39,48,51,60,64,71,99,110,111,126,139],let:[16,45,58,81,108,120,126,131],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,57,58,67,71,72,84,86,89,91,92,93,99,106,107,110,111,113,114,118,119,121,124,130,133,134,137,139,140,141,142,143,151,152,154,156,157],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,131,139,157,160],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,135,136,140,146,147,155,157],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,133],lies:[6,16,32,110,133,142],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,131,133,138,151,152,155],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,133,139,140,141,143,148,152,154,160],lin:142,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,126,133,138,139,141,148,152,154],linear:[4,5,17,30,32,51,70,77,83,87,99,122,131,132,133],liner:[0,30],linestyl:154,linewidth:[77,133],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,129,131,132,134,136,143,146,147,152,156],linspac:[33,67,86,103,133],linux:[13,69,80,102,111,137],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,126,130,133,137,139,140,141,142,143,148,149,151,154],listofgrid:121,literalinclud:54,literatur:[48,131],littl:[48,70,92,134],live:101,llapack:102,llcenter:[53,152,154],llcorner:[53,152,154],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,111,154,158],load_sift_unit_sourc:30,loc:[133,154],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,135,152,154,157],local_fnam:154,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,134,135,148,149,154],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32,126],logical_and:[39,66],logical_not:[39,66],logical_or:133,logo:[54,120],lon:[53,152],long_lat:154,longer:[20,28,44,54,55,59,80,105,119,121,124,126,130,131,142,152,156],longitud:[30,32,46,47,53,66,70,76,117,133,142,148,154],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,106,111,114,121,133,139,140,142,151,154,155],lookup:121,loop:[44,67,76,104,110,121,124,126,131,135,138,139,157],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,131],low:[51,66,84,154,156],lower:[3,22,30,32,33,38,53,66,72,89,94,133,135,139,141,143,152,154,156],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:160,mac:[71,80,102,111,137],machin:[13,25,71,73,111,119,137],maco:80,macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,126,133,135,142,149,152,154,157],magic:59,magnitud:[5,30,110,121,142],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,148,149,150,152,154,155,157],mail:[96,102],main:[5,11,12,19,28,39,43,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,140,152,157],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122,127],make:[1,5,11,13,14,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,126,127,131,133,139,152,154,156,157],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:148,make_shoreline_xi:154,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,68,71,73,77,79,84,90,91,110,113,117,119,121,122,124,135,136,139,141,142,143,144,146,147,152,155,157],makefile_kml:117,maketopo:[122,152],man:[17,25,45,48,142,146,147],manag:[4,12,13,51,93,148],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,43,46,51,52,54,59,60,62,63,66,70,71,72,77,79,80,81,83,88,91,96,98,103,104,110,112,113,119,121,122,123,124,128,131,133,138,139,140,142,152,157],manifold:67,manipul:[44,154],manner:[5,39,44,51,60,66,70,76,121,135,139,146,147,152],manning_break:142,manning_coeffici:142,manual:[37,84,93,100,102,111,150],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,126,132,148,154,160],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89,126],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,129,133],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,133,154],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,133],maskedarrai:154,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,127,128,129,132,136,146,147],match:[30,38,51,59,92,98,111,148,154],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,132,138,148,154,155],matric:[5,131,160],matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,131,157],max1d:[71,124,140],max:[0,30,32,39,67,110,114,135,141,143,148,154,160],max_buff:[44,119],max_inch:59,max_it:[39,66],max_step:99,max_vertices_in_descript:59,max_wind_radiu:148,max_wind_radius_fil:148,max_wind_spe:148,maxgr:121,maxima:[32,71,142],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,139,140,141,143,148,149],maxlevel:[38,67,110,126,133,140,141],maxm:131,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:154,mbc:157,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,131,134,139,141,143,156],mean_latitud:49,meant:[41,89,99,148],measur:[30,44,47,70],mechan:[58,101,129],media:17,medium:[141,157],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,126,140,141],memsiz:[126,140],mention:[91,139,140],menu:[13,18,25,54,59,120,129,134,156],meqn:[44,72,131,157],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,138,139,157],meshgrid:[83,96,133,154],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,126,139,141,143,155],met:[32,61,81],metadata:[72,152,154],meteorlog:148,meter:[30,47,51,66,70,110,134,142,148,154,156],meterolog:148,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,131,138,139,140,141,143,148,151,152,154,157],metric:47,mhd:123,mhhw:134,mhw:[39,45,48,134,152,156],micro:13,mid:77,middl:118,midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,58,63,66,67,71,77,80,83,93,106,108,109,110,113,139,140,152,154,156,157],migrat:19,millimet:154,million:124,mimic:121,min:[0,148,154,160],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,133,140,154],minimum:[3,32,44,51,70,103,119,142,154],minisymposterium:24,minlevel:[38,110,126,133,140,141],minmod:[87,89,99,139,141,143],minmod_limit:87,minor:[11,51,54,93,113,114,115,116,117,118,119,120,121,122,124,126,128],minut:[39,47,51,54,59,134,154,156],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,148,152,154,155],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:148,mllw:156,mode:[1,13,28,104,151],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,133,134,135,142,148,149,152],modern:[100,121,131],modif:[28,40,61,67,77,81,87,142],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,126,133,135,136,139,141,142,143,146,147,152,154,157],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,83,84,87,88,92,96,97,98,101,105,106,111,114,115,117,120,121,122,123,124,130,133,139,140,142,148,152,153],module_nam:104,modulu:[30,103,141,157],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,32,48,60,64,93,126,132,142,152],monitor:[22,25,33,34,38,45,66,71,114,116,119],monoton:[139,142],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,91,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,137,138,139,140,141,142,144,148,150,151,152,154,155,156,157,160],moreov:70,most:[3,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,129,130,131,132,133,134,138,139,140,142,145,157],mostli:[3,76,91,124],motion:[70,152],motlei:52,movabl:30,move:[16,32,35,36,45,54,58,60,70,96,110,113,115,120,142,152,153],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[134,156],mthlim:[89,99],much:[13,28,32,41,51,54,72,73,76,80,105,110,113,117,124,133,139,142,151,154],muct:99,multi:[17,51,83,113,115,118,121,157],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,76,83,89,92,93,104,106,111,113,119,123,130,131,140,148,149],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,43,46,51,54,57,61,62,63,66,67,70,71,72,81,84,91,92,93,96,98,99,101,102,103,104,106,110,113,117,131,133,134,135,139,140,141,142,143,148,154,155,156,157,160],mwave:131,mx1d:157,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:148,my_initial_solut:86,my_riemann_solv:131,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:148,n00014:4,n12:32,n23:32,nadi:148,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,126,130,131,133,138,139,140,141,142,143,148,154,157,158],namespac:84,nan:[47,154],nasa:4,nation:[4,48,148],nativ:92,natur:[32,54,131,160],naux:72,navd88:152,navig:[12,29,54,144],nbconvert:124,nbtool:117,nbviewer:118,nc_param:154,ncar:4,ncei:[39,66,134,152,156],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,148,154],ndarrari:89,ndim:[22,72,79,139,140],ndip:30,nearbi:134,nearest:[39,44,154],nearfield:135,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,58,59,67,70,72,73,79,83,84,89,92,117,119,121,130,131,138,139,140,152,155,157],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,126,128,130,131,133,135,136,137,139,140,141,142,143,146,147,148,149,150,152,154,156,157,160],neg:[22,39,135,142,152,154],negat:[47,152],neglig:[61,71,81,142],neighbor:[4,32,39,66,110,119,135,140,141,154],neither:[51,59,61,81,119],ness:92,nest:[113,119,140,141],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,152,154],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,139,141,143,148,154,156],neumann:148,never:[32,96,101,107,110,124,133,139,141,143,155],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,138],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,138],new_plotitem:[0,3,44,51,77,138],new_userdata:[141,143],newdelhi:148,newdir:69,newer:[28,71,87,121],next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,139,140,142],nfr:4,ngdc:[39,66,134],nghost:72,ngrid:72,nhc:148,nhtmp:48,nice:[28,59,84,96,114,133],nicer:79,nih:4,nnnnn:[130,139],no_data_valu:154,no_tran:89,noaa:[30,39,47,53,66,70,121,134,148,152,156],nodal:121,nodata_valu:[39,154],nodataerror:148,nodatav:152,nodatavalu:[53,152],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,139,141,143,148,160],nonconserv:160,none:[0,1,2,3,16,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,128,130,139,141,143,148,154],nonlinear:[4,5,17,48,87,131,139,160],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,154],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,131,132,139,140,141,143],north:[32,39,47,66,70],northernmost:152,norwegian:4,nose:[28,36,37,82,94,111,150],nosetest:[28,36,37,94,100,111,150],notat:[30,47,59,131],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,91,92,94,96,100,101,104,105,107,110,130,131,133,134,135,136,138,139,140,141,142,143,146,147,148,149,151,152,154,156,157],notebook:[25,30,32,39,43,54,66,70,73,85,91,93,109,117,118,124,131,132,133,154],notebook_html:124,noth:[15,60,101,122,136,146,147,154,157],notic:[51,61,81,103,111],nout:143,nov:[17,91],novemb:[118,119,129],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,126,127,134,138,140,142,144,152,159],npoint:33,nprint:[140,141],npt:32,npy:154,nrm:59,nrow:39,nrule:133,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:141,ntot:143,num_aux:[5,84,92,94,96,97,101,131,139,140,141,143,157],num_cel:[8,22,89,131,139,140,141,143],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,139,140,141,143],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,131,139,141,143,157],num_fgmax_v:[32,142],num_ghost:[84,89,92,96,97,99,101,131,139,141,143],num_output_tim:[5,83,86,93,130,139,141,143],num_proc:119,num_var:92,num_wav:[87,97,131,139,141,143],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,43,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,105,108,110,111,113,114,116,117,118,119,120,121,123,130,131,133,139,140,141,142,143,148,149,150,154,157],numer:[4,17,51,105,122,148],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,132,133,141,154,155],nxpoint:154,nypoint:154,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,113,122,130,131,139,140,141,142,143,148,154],obliqu:16,obscur:22,observ:[32,48,113,126,134,139,142,149,156],observatori:4,observerd:149,obtain:[4,6,12,32,43,44,46,48,58,59,92,93,94,110,126,131,135,142,144,152,160],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,148,149],ocean:[5,16,17,32,48,51,108,110,133,146,147,152],octob:[115,116,117,123,124,127,128,129],off:[12,13,44,48,51,59,67,79,86,93,110,140,154],offer:[40,51,111],offic:4,offici:[55,80,121],offset:[49,51,59,148,154],offshor:[59,64,66,133,135],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,126,130,131,133,134,135,138,139,142,148,152,156,157,160],okada85:[17,30,70],okada:[17,25,30,45,109,152,156],okadamap:30,olav:4,old:[1,7,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,126,131,142,152],older:[22,41,52,54,57,58,99,125,140,142],olig:[6,17],omega:83,omit:[58,111,119,130,142],omp:140,omp_num_thread:[41,71,119,151],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121,127],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,126,130,131,132,133,135,136,138,139,140,141,142,143,144,146,147,148,152,154,157,158],ones:[29,83,84,101,121,139,140],onli:[1,3,5,6,8,12,13,16,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,56,58,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,126,130,131,132,133,134,135,137,138,139,140,141,142,143,148,152,154,155,156,157,160],onlin:[24,105,109,121,145,152],onr:4,onshor:[32,59,64,66,133,135],onto:[28,30,51,135,154],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,133,137,156,158],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,151],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,149],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,20,22,25,28,29,30,32,35,36,40,41,47,50,53,56,58,62,67,68,76,77,83,84,86,88,89,90,92,93,95,98,99,100,103,104,106,107,110,111,114,117,118,119,122,124,127,133,137,138,139,141,142,143,144,148,154],orang:148,order:[4,5,6,13,16,17,29,30,32,48,53,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,126,131,133,135,138,139,140,141,143,148,152,154,155,157,160],ordinari:131,ordinarili:102,org:[4,17,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,126,127,128,154],organ:[22,23,35,36,86],orient:[70,84],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,126,130,140,141,143,154],orlean:108,oscil:[44,160],oscillatori:154,osf:[4,129],osher:99,osx:[51,80],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,56,57,58,61,62,64,66,67,68,70,71,72,76,79,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,131,134,137,138,139,142,144,148,152,154,156,157,158],otherwis:[5,30,54,58,61,66,81,93,98,99,100,101,104,110,139,154],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,58,59,60,61,62,67,70,77,80,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,131,133,140,141,143,148,154,155],out_path:148,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,141,143,155],outdir_p:86,outfil:154,outflow:[16,139,141,143],outgo:16,outlin:[59,67,79,124,131,138],outn:27,output:[1,5,7,8,13,14,16,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,131,138,141,143,148,149,150,151,154,157,158],output_aux_compon:[139,141,143],output_aux_onlyonc:[139,141,143],output_file_prefix:[86,93],output_filenam:84,output_format:[5,86,93,139,141,143],output_opt:86,output_path:152,output_q_compon:[139,141,143],output_step_interv:[139,141,143],output_styl:[72,83,86,93,130,139,141,143],output_t0:[130,139,141,143],output_tim:[93,130,139,141],output_unit:30,outputdir:67,outputfil:154,outsid:[6,16,38,59,66,124,133,135,152,154],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,131,133,135,138,140,141,142,151,152,157,160],overal:[10,83],overflow:[41,120],overhead:[6,71,110,151],overlai:[59,127],overlaid:[51,59],overland:51,overlap:[110,113,114,152],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,130,157],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,131,144],owner:121,p_center:[89,103],p_function:93,p_node:89,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,148,155,158],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,134,136,138,144,146,147,156,157],pair:[13,92,111,154],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,71,82,88,90,91,93,96,98,100,104,110,111,119,140],paramet:[1,6,7,9,16,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,98,101,104,107,110,113,119,124,126,130,131,132,134,135,141,143,149,152,154,155,157],parameter:[108,121,133,142,148,149],parametr:149,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,58,59,60,68,81,84,94,100,101,103,105,109,111,123,157],partial:[17,73,108],particl:[25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,61,62,63,67,73,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,126,138,148,149,160],particularli:[16,27,29,32,50,51,56,57,58,70,72,106,114,117,121,126,135,152],partit:94,pascal:[30,148],pass:[16,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,131,141,148,154,157],passiv:132,password:28,past:[4,21,25,54,60,66,98,119,122,126,129,133,134,142],patch:[3,6,7,16,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,126,135,138,140,142,151,152,157],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,57,58,60,62,66,69,76,77,86,91,92,94,98,104,120,121,124,137,142,148,154,155],path_to_atcf:148,path_to_ibtrac:148,pathtool:67,pattern:[20,46,51,134],pcolor:[3,44,76,105,154],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolorcel:[39,66,124,133],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,56,57,58,73,80,91,103,139,157],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:133,peopl:[4,12,13,81],pep8:28,per:[13,30,44,51,59,67,71,92,140],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,126,130,131,137,142,150],perhap:[6,12,32,39,44,54,77,101,104,110,133],perimet:32,period:[5,6,16,32,62,83,96,110,139,141,143],perman:[67,124,125,126,127,128],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,142,152],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,73,81,83,90,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124,140],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,160],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,131,133,152],piecewiselinear:38,pink:[39,59,77,138],pinkfig:77,pip3:55,pip:[18,25,28,29,51,55,56,85,91,94,100,102,106,120,121,122,123,124,125,126,127,128,129,137],pixel:[51,59],pkg:[55,143],place:[5,16,20,24,28,35,36,51,54,58,62,63,69,91,93,94,96,100,106,113,119,157],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,58,64,92,99,148],planar:[70,131,132],plane:[30,70,118,133,156],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,24,28,54,56,57,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,129,131,148],plot:[0,1,2,4,7,8,12,27,29,30,35,36,37,39,40,41,42,45,53,55,56,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,133,148,150,154],plot_box:[30,154],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:148,plot_phas:132,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,138],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,138],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,138],plotdata:[27,44,68,77,79,86,118,119,138],plotdir:[1,79,138],plotexampl:77,plotfigur:[44,77,138],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,138],plotloop:[77,79],plotstyl:[3,44,77,138],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,132],plu:[77,113,141,143,154],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,133],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,130,131,133,134,135,136,137,139,140,141,142,146,147,148,152,154,155,157],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,152],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,154],polynomi:131,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,140],portion:[6,39,51,66,84,151],posit:[32,39,51,70,73,104,142,152,154],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,131,133,134,135,139,140,152,156,157],post:[18,24,25,26,28,51,94,127,128,144],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,134],powel:142,power:[51,56,76],pprint:[140,141],practic:[28,106,108],pre:[3,13,33,55,85,92],preced:77,preceed:[72,157],precis:[41,59,84,89,92,131,154],precompil:91,predefin:77,predict:47,prefer:[59,94,96,137,140,148],prefix:[55,86,92,93,98],preliminari:[47,121,156],prepar:28,prepc:126,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[36,37,56,58],present:[6,24,59,89,98,99,104,144,157,160],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,103,120,121,142,148,149],pressure_forc:142,pressure_index:142,presum:134,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,28,29,44,53,55,57,58,63,66,67,79,83,99,108,113,118,119,120,121,126,130,135,139,140,141,143,152,154],previous:[6,22,32,66,79,117,124,135],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,148],primarili:[52,121,122],prime:111,principl:[5,154,157],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,128,133,139,141,143,148,155],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:155,printfig:1,printfram:[1,76],prior:[61,81,129,135,141,143,157],probabl:[13,28,51,64,66,105,106],probdata:[141,143],problem:[4,5,7,16,17,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,126,131,133,135,139,140,141,142,143,144,151,155],problem_data:[83,97,98,101,103,132],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,157],proceed:54,process:[25,35,36,45,51,52,70,83,88,89,94,100,101,104,111,119,155],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,126,138,142,154],product:[5,30,61,81,104,110,122],professorship:4,profil:[149,154],profit:[61,81],program:[4,46,48,63,73],programmat:81,progress:[24,28,99,108,117,152,154],prohibit:22,proj:141,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,140,154],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,154],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,131],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,136,140,141,146,147,148,157],properli:[20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,111,113,116,121,124,126,137,139,142,152,154,155,157],properti:[30,60,67,83,86,89,98,101,154],propos:[28,160],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,129,131,139,147,148,151,152,154,157],proximity_radiu:154,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,157,160],pt_chosen:66,pth:58,pts:[140,141],pts_chosen:[66,133],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,148],publicli:144,publish:[4,17,54,91],puget:[39,66,133],puget_sound_13_mhw_2014:[39,66],pull:[12,24,26,29,54,55,57,88,96,111,116,119,120,126,131],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,111,132],purpos:[32,45,48,53,61,67,72,81,89,109,111,130,133],push:[28,54,55],put:[1,11,16,28,29,41,54,55,58,59,67,83,88,96,119,137],pyclaw:[1,3,4,12,17,23,24,27,28,29,43,44,55,56,57,72,73,79,80,90,94,96,102,106,129,131,132,137],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:[58,92],pyplot:[59,132,148,154],pyport:105,pyramid:51,python2:[80,126],python3:[106,120,126],python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,126,131,132,137,142,152,154,155,158],python_io:72,pythonpath:[57,58],pyweno:[81,99],q0000:[67,139],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:157,q_i:[131,160],q_l:[97,131,132],q_out_field:44,q_r:[97,131,132],q_t:[5,96,99,103,157,160],q_x:[5,103,160],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,126,134,135,157],qinit_data:[39,135],qinit_modul:39,qinit_typ:[142,152],qinitdata:142,qinitfil:142,qoi:32,qopenmp:41,qquad:160,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,132,136,142],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,56,80,111,150],quicker:[13,133],quickli:[44,54,59,85,119,135,154],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:142,radial:[3,32,47,142,157],radial_dam_break:132,radian:47,radii:148,radio:59,radio_styl:59,radiu:[3,142,148,149,154],rai:154,rais:[24,30,58,92,98,100,104,148,154],rake:[30,70],ran:[36,150],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,132,133],rare:[70,119],raster:[51,53,152],rate:13,rather:[5,6,20,22,28,29,32,39,54,55,58,62,63,64,69,70,89,94,96,99,106,107,110,117,118,119,121,123,124,126,129,130,133,138,139,140,148,149,152,154,157,160],ratio:[6,15,22,49,67,70,87,99,136,139,140,141],raw:139,rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,28,30,32,33,35,36,44,45,48,49,53,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,127,141,142,143,148,152,154,157,158],read_:[92,98],read_arrai:92,read_atcf:148,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:148,read_head:154,read_hurdat:148,read_ibtrac:148,read_imd:148,read_jma:148,read_netcdf:[39,66,121,122,152,154],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:148,readabl:[148,149],reader:158,readi:[83,84,86,100],readlin:133,readm:[54,55,124,131,137,157],real:[48,55,64,104,131,156],realist:51,realiti:48,realli:[6,111,157],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,139],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39,140],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,127,128,129,131,156],recogn:[46,53,58,152],recomil:32,recommend:[4,30,32,35,36,54,55,56,58,71,76,85,89,91,94,95,99,100,102,103,110,121,139,141,142,143,158],recompil:[28,40,41,62,71,104,124,140,157],recomput:[79,83,114,123],reconstruct:[91,99,148],record:[32,44,60,101,148,156],recov:[28,33],recreat:[28,40,62,124],rect:[30,133],rectangl:[6,7,25,30,66,70,110,124,154],rectangular:[6,7,16,17,30,32,38,39,45,46,59,66,89,110,121,124,140,142,152],recurs:[54,69,113],red:[2,3,28,44,59,77,111,138,148],redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,39,51,118,120,160],redund:148,refactor:[113,114,115,117,119,120,122,126],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,130,131,133,142,148,152,154,156,157],referenc:[51,129,134,152],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,126,133,135,138,139,140,141,151,152,157],refinement_data:142,refinement_ratios_i:[8,140,141],refinement_ratios_t:[140,141,142],refinement_ratios_x:[140,141],refinementdata:116,reflect:[4,5,16,28,110,121,139,141,143],refresh:[13,44],regard:[4,38,118,148],regardless:[13,39,66,110,139,142],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,126,134,135,140,141,152,154],region_domain:38,region_tool:[38,39,66,124,125,133],region_trapezoid:38,regiondata:[38,110,141],regions2kml:59,regist:56,registr:[25,45,121,152,154],regress:[22,25,28,50,91,94,119,120,150],regression_test:[36,150],regrid:[5,10,110,113,114,119,122,123,140,141,151],regrid_buffer_width:[110,140,141],regrid_interv:[110,140,141],regular:[32,154],reiniti:[32,119],reject:[93,99,139],rel:[13,20,30,40,46,48,51,70,71,77,91,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,134,140,142,144,152,156],relat:[3,7,22,24,54,73,97,108,120,124,126,134],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,148],reli:[73,84,95,105,119],relief:[134,156],reload:154,reltol:104,remain:[51,58,96,104,106,113,146,147,148],remak:54,rememb:[15,27,71,77,94,136,146,147],remot:[13,51,55,121,154,156],remote_directori:154,remote_topo_url:[152,154],remov:[1,3,20,29,40,52,58,59,62,68,79,94,106,113,116,117,135,154,155],renam:[20,22,35,36,62,96,99],render:[12,22,43,51,59,158],reorder:[20,22],reorgan:[22,84,112,127],repack:55,repeat:[39,66,79,130,140],repeatedli:[3,94,100,140],replac:[6,13,29,38,44,48,52,54,55,57,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,130,131,135,154,155],replace_no_data_valu:154,replace_valu:154,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,137,139,141],repositori:[22,24,25,26,29,32,36,37,42,43,45,52,57,58,62,63,91,99,106,108,109,111,116,119,145],repres:[30,83,89,92,96,97,99,101,154,160],represent:[53,89,92,98,104,154],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,126,131,142,148,154],requir:[3,4,16,20,22,25,27,30,32,35,36,40,45,47,48,55,58,66,67,70,73,76,79,80,83,84,89,92,95,96,99,100,101,103,104,105,110,111,113,114,117,119,122,124,126,131,132,133,138,139,140,141,142,143,148,149,152,155,158,160],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,30,32,39,44,70,89,99,103,104,113,117,121,122,131,134,142,152,154,156,157],resolution_limit:154,resolv:[4,32,51,54,58,108,121,135],resourc:[17,24,28,46,105],resp:[20,30,126],respecitv:30,respect:[30,32,51,59,91,92,97,154],respons:[13,48,83,98],rest:[5,22,79,108,121,134,146,147,152,154],restart:[13,25,44,79,91,118,119,120,121,123,126,139,141,143],restart_fil:[130,139,141,143],restor:6,restrict:[38,51,121,133,142,152],restructur:[11,54],result:[1,3,4,7,9,12,17,25,26,29,30,32,33,34,35,36,37,42,43,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,126,135,139,140,141,142,143,150,152,154,156],retain:[61,81,92],retak:[139,141,143],retir:54,retriev:[13,47,79,84,99,154,156],return_topo:154,return_xarrai:154,reunion:148,reutil:84,reval:132,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,103,141],rhou:67,rhov:67,richardson:[5,7,22,140,141],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,58,63,73,81,83,89,90,99,100,101,103,106,137,139,141,143,146,147,160],riemann_aug_jcp:120,riemann_book:132,riemann_interact:118,riemann_solut:132,riemann_solv:99,riemann_tool:[117,132],right:[5,32,61,64,70,81,89,94,96,97,101,103,126,130,131,133,160],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,134,135],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:148,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,132,154],robustli:122,rock:70,roe:[87,126,131],root:[29,58,92,93,98],rossby_wav:132,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,133,151],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,110,113,114,117,119,121,122,124,131,135,139,141,143,148,154,155,157,158,160],row:[30,32,53,87,110,152,154],rp1:[131,160],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:131,rp1_shallow_bathymetry_fwav:132,rp1_shallow_hl:127,rp1_shallow_roe_trac:132,rp1_shallow_roe_with_efix:132,rp_:97,rp_sourc:96,rpn2:[5,131],rpn2_geoclaw:132,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:131,rpn2_shallow_bathymetry_fwav:132,rpn2_shallow_roe_with_efix:132,rpn2_shallow_spher:132,rpn2_sw_aug:132,rpn2_vc_advect:115,rprint:[140,141],rpt2_geoclaw:[126,132],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:131,rpt2_shallow_roe_with_efix:132,rpt2_shallow_spher:132,rr2:133,rr_admiralti:133,rr_name:133,rrzigzag:133,rsmc:148,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,133],ruledrectangle_admiraltyinlet:133,ruledrectangle_covering_selected_point:[66,133],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,39,40,42,43,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,126,128,130,131,141,142,143,148,150,151,154,157],run_app_from_main:104,run_data:86,run_exampl:154,run_seri:104,runclaw:[14,50,114,123,125,131],rundata:[5,22,32,38,39,44,59,60,110,113,124,130,135,139,140,141,142,143],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,150],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:133,s_2:133,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,126,130,131,133,139,140,141,142,146,152,154,157],sampl:[7,8,14,17,25,29,32,41,45,51,70,106,111,130,133,139,140,152,154,157],santiago:51,satisfi:[32,39,66,99,110,133,160],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,126,130,149,154],savecod:86,savefig:59,scalabl:[17,91],scalar:[27,30,39,93,101,131,135,139,160],scale:[4,30,49,51,67,73,91,92,113,119,121,126,142],scan:41,scatter:[3,22,67],scenario:[48,134],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,80,91,94,105],scipi:[13,84,105,148,154],scipysuperpack:80,scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,141,143],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,62,67,73,76,81,84,88,90,91,93,94,99,104,106,111,121,125,131,138,142,143,154],scriptstyl:133,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,134,142,152,154,156],sea_cmap:39,sea_cmap_dri:39,sea_level:[25,32,39,45,48,59,124,135,142,152,154],seab:64,seafloor:[30,48,70,135,156],sealevel:[],search:[1,13,14,58,76,91,104,106,119,121,133,137],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,130,139,142,148,150,151,154,157,160],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,91,111,126,130,139,142,154],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],seem:[101,106,124,138],seen:[12,22,32,35,36,37,48,71,96,139,144],segement:154,segment:[128,133],segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,129,136,139,142,146,147,156],select_by_flood:[39,66],self:[30,33,99,154],semi:99,send:[13,24,96,131],sens:[27,51,60,121,126,160],sensit:[48,64],sent:[93,101],separ:[1,28,32,43,51,54,59,63,91,99,133,154],seper:104,sept:[55,126],septemb:[125,129],sequenc:[20,22,63,66,94,100,103,104,111,113,120,131,157],sequenti:32,seri:148,serial:[94,98,104,151],serv:29,server:[13,29,39,51,54,55,66,121,152,156],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,22,25,27,28,30,32,33,35,36,37,38,39,40,41,42,44,45,47,48,49,50,51,54,55,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,126,130,131,132,133,136,138,139,140,141,142,143,144,148,149,152,154,156,157,160],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,135],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,154],setaux:[20,22,63,84,113,114,131,139,141,143],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,19,20,22,25,42,44,68,75,76,95,96,104,119,155,158],setplot_fil:51,setplot_kml:51,setprob:[39,63,141,143,157],setrun:[5,6,7,8,14,16,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,91,107,108,110,113,117,118,119,122,124,126,130,131,134,135,148,152,155,157],setrun_setgeo:142,setup:[37,55,83,84,88,91,94,96,99,100,101,109,137,155],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,35,36,40,44,46,48,51,55,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,126,133,138,142,150,152,154,157],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,131,135,136,142,146,147,152,157],shallow_1d:132,shallow_1d_pi:132,shallow_2d:132,shallow_bathymetry_fwave_1d:132,shallow_bathymetry_fwave_2d:132,shallow_fwave_1d:132,shallow_hll_1d:132,shallow_roe_1d:132,shallow_roe_tracer_1d:132,shallow_roe_with_efix_1d:132,shallow_roe_with_efix_2d:132,shallow_spher:[84,111,132],shallow_sphere_2d:132,shallow_trac:132,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,133,154],shapshot:13,share:[25,26,51,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,131],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,57,58,71,77,79,94,100,103,106,119,137],shg:67,shift:[5,30,48,53],ship:32,shoal:133,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,135],shorelin:[39,51,154],shoreline_xi:154,shorter:[3,110,154],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,57,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,91,92,93,94,96,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,152,154,155,157,159,160],shouldn:88,show:[0,2,3,9,10,12,14,18,28,30,35,36,39,43,44,51,54,55,59,62,66,67,79,89,103,106,111,117,127,128,133,154,155,157],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,154,157],showpatchbord:67,shrink:154,shu:99,shuffl:92,siam:[17,24,25,91,131],sid:148,side:[6,16,18,32,51,54,64,70,92,111,131,160],sidebar:[51,54],siesmic:135,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,24,77,126,148],signatur:[3,84,87,89,90,92,97,148],signific:[64,129,134,154],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:132,silo:158,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,126,142,148,149,150,152],similarli:[40,52,88,94,96,133,151],simpl:[7,29,35,36,38,45,55,70,84,91,96,99,104,109,111,154],simplest:[58,69,103],simpli:[5,13,35,36,37,39,44,51,53,62,63,66,83,85,86,88,93,94,100,111,131,133,144,148,154,157,158],simplifi:[70,76,77,92,111,120,121,157],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,133,135,148],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,110,111,113,117,118,119,120,122,123,124,125,126,127,128,129,130,131,133,134,139,140,142,152,155,156],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,55,59,60,62,67,70,71,72,73,83,89,92,93,98,104,111,116,117,119,129,131,135,139,140,141,142,152,154,156,157],single_storm:148,sisc:[17,91],sit:13,site:[28,51,58,106],situat:[51,66,67,126],size:[20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,140,141,143,152,154],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:[124,126],skiprow:30,slack:24,slice:[3,67,131],slide:24,slider:[51,59],slightli:[16,39,53,119,120,126,133],slip:[25,30,45,109,152,156],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,99,126],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,130,139,141,142,152,154,156],smaller:[13,51,64,73,89,93,113,135,139,141,142,143,154],smallest:[110,133],smear:59,smooth:[30,99,110,157],smooth_data:154,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,144,152],sol:83,sole:131,solid:[3,16,51,70,96,138,139,141,143],solitari:17,solut:[1,3,4,5,16,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,99,101,102,103,110,111,117,118,122,130,131,138,139,140,141,143,150,157,160],solv:[4,5,8,16,17,20,26,35,36,48,56,58,60,82,84,86,89,91,96,97,100,122,131,132,139,152,157,160],solver:[4,5,6,20,22,23,25,28,45,56,57,58,63,80,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,126,139,141,143,146,147,160],solver_nam:131,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,138,139,140,141,142,143,144,148,149,151,152,154,157],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,152,155,157],sometim:[58,62,66,73,77,83,93,121,128,134,135,149,156],somewhat:[71,76,110,111,119,139],somewher:[68,117],sonel:156,soon:99,sorin:4,sort:[13,39,121,138,155],sound:[39,66,83,103,133],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,132,134,139,141,142,143,145,146,147,148,152],source_list:104,source_split:[89,99,139,141,143,157],south:[32,152],space:[5,6,7,16,17,30,32,33,44,51,53,70,89,93,96,110,117,130,133,139,140,141,142,143,152,154,157],spacial:[135,142],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,126,131,134,140,141,143,160],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:154,special:[4,7,16,45,46,51,61,73,81,110,133,154],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,98,104,108,119,120,121,124,138,139,140,141,143,149,152],specifi:[0,1,2,3,4,5,6,7,15,16,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,126,130,131,133,134,135,136,141,143,144,146,147,148,149,151,152,154,155,156,158,160],speed:[32,83,87,97,103,119,124,131,132,139,142,148,149,154,157,160],speed_toler:142,spell:77,spend:118,spent:[140,151],sphere:[47,84,114,132,142],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,126,139,140,141,143,151,157,160],spot:77,sprint:[140,141],spuriou:[16,32,111],sqrt:[3,32,64,83,96,103,141],src1:[63,147,157,160],src1d:147,src2:[84,147,157],src3:[147,157],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,39,40,41,47,50,52,55,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,126,131,135,136,139,141,143,146,154,155,160],src_split:[139,141,143],srcn:[139,157],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,126,139],stabl:[80,89,126],stack:[71,80,117,133],staff:123,stage:[99,134,135,152,154],stai:[26,32],stand:[4,126],standard:[6,16,30,32,51,53,67,72,84,87,99,106,110,111,141,142,143,144,152,157,160],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,83,94,98,99,105,106,110,111,118,121,126,130,131,133,135,142,148,150,152,157],start_dat:148,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,126,127,131,132,133,139,152,160],statement:[35,36,67,72,105,106,119,128,141],station:[47,134,156],stationari:[60,152],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,152],steep:[66,160],steepli:135,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,19,28,32,35,36,37,44,51,54,55,60,67,73,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,130,131,137,139,140,141,142,143,152,160],step_hyperbol:99,step_index:99,step_interv:141,step_sourc:[89,96,99],stepgrid:151,stepgrid_dimsplit:117,steps_max:[139,141,143],stiff:139,still:[1,5,7,8,13,16,22,24,26,32,34,39,51,52,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,130,131,142,148],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,141,143,154],storag:[118,126],store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,138,140,142,148,151,152,154],storm:[12,17,24,25,45,117,120,121,122,123,125,126,127],storm_atcf:148,storm_fil:[142,148],storm_ibtrac:148,storm_modul:117,storm_nam:148,storm_radiu:148,storm_radius_fil:148,storm_specif:142,storm_specification_typ:142,storm_targ:148,str:[0,1,3,30,59,92,139,140,148,154],strait:133,strang:[89,99,139,141,143,157],strategi:6,stream:77,stress:[83,93],stretch:[66,154],strict:[61,81],stride:[22,154],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,139,142,148,154],strip:[59,133,154],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,133,138,154],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121,142],sub:[30,111,154],subclass:30,subdirectori:[5,12,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,138,142,144,150,154],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,156],subject:[51,66,110,140,142],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,133],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,131,139,140,151,157,160],subsampl:[53,152,156],subsequ:[3,10,67],subset:[30,32,39,66,121,133,152,154,156],subsid:[124,135],substanti:[28,54,81,117,123,126],substitut:[61,81],subsurfac:152,subtleti:66,succeed:99,succesfulli:84,success:[67,98,154,157],successfulli:[62,98],suffici:[13,16,20,70,71,108,113,142],suffix:[62,154],suggest:[4,24,29,47,53,54,56,58,79,80,105,129,131,142,159],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,131,134,148,154],sum:[39,44,70,93,101,151],sum_:160,sum_p:160,summar:[3,28,31,110,112,157],summari:[24,25,55,121,139,140,141,142],superbe:[87,139,141,143],superbee_limit:87,superclass:99,supercomput:[91,93,94],superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,144],supplementari:111,suppli:[110,148,157,160],support:[4,8,13,22,38,41,48,51,56,57,70,80,81,83,84,89,92,93,95,99,110,117,119,120,121,122,126,127,131,133,139,140,142,148,149,152,155,158],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,139,140],sure:[1,20,28,40,54,55,56,57,58,67,73,83,92,94,96,98,102,104,134,154,155,156],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,133,134,142,152],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,126,148],surge_data:142,surround:[110,154],surviv:81,sw_aug_2d:132,swag:24,swap:154,swaphead:154,sweep:[8,131],symbol:[3,67,106],symmetr:[3,47,157],symmetri:16,syntax:[11,57,137],sys:[39,66,86,141,143],system:[4,16,17,23,36,37,51,52,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,131,139,141,143,150,157,160],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,129],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,57,107,136,140,141,146,147],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,135,139,140,141,142,154,157,160],take_one_step:99,taken:[6,32,66,70,93,99,110,139,157],tall:0,tan:77,tank:[16,48],tar:[13,59,123,129],tarbal:[55,155],tarfil:[18,55,58,120,121,122,123,124,125,126,127,128],target:[5,58,77,84,96,124],task:76,tchknnnnn:130,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,148,149],td9635:148,td9636:148,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,132,139,141,142,143,146,147],termin:[85,137,139,140],terrain:64,terrel:4,test:[22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,104,105,110,114,118,119,120,121,124,126,131,143,148,151,152,154],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,152],test_shallow_spher:111,test_topotool:[114,154],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,130,139,141,143],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,20,22,28,29,30,32,39,44,51,54,55,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,106,110,111,113,116,117,118,119,120,121,123,124,126,129,130,133,134,135,138,139,140,142,148,149,151,152,154,157,160],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,91,96,99,104,110,111,119,126,135,138,142,148,152,154,157],them:[5,13,18,22,28,29,30,32,44,51,54,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,133,145,148,154,157],theori:[61,81,160],therefor:[84,94,121,152],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,148,149,150,151,152,154,155,156,157,158,159,160],thing:[0,13,16,22,28,29,39,48,54,59,79,88,110,111,120,125,130],think:[58,64,66],third:[16,32,53,87,151,154],thn:139,thoroughli:92,those:[4,6,10,12,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,126,130,144,150,154,157],though:[3,39,73,148,152],thought:[126,134],thousand:[4,73],thread:[41,71,110,124,151],threat:4,thredd:[39,66,152,156],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,133,139,142,152,154,157],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,148],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,134],tide:[44,45,47,121,134,154],tidesandcurr:47,tier:13,tild:160,time:[0,1,5,6,7,10,14,16,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,126,130,131,133,135,137,138,141,143,148,152,155,156,160],time_files_scanf:158,time_integr:99,time_offset:148,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,139,141,143,148],timezon:59,timing_plot:123,tip:[24,45,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,133,154],title_with_t:[0,77],todo:[16,131,148,154,160],togeth:[5,16,28,29,30,54,56,70,110],toggl:141,token:29,tokyo:148,toler:[5,32,104,110,111,119,140,141,142],tolsp:110,too:[6,47,51,54,55,118,133,141,143],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,56,57,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,142,144,152,154,156,158],toolkit:[94,158],top:[0,1,3,11,23,29,30,51,54,55,57,58,70,77,91,96,97,106,111,130,137],topgraphi:154,topic:67,topo1:152,topo1writ:154,topo2kml:59,topo2kmz:[59,127],topo2writ:154,topo3writ:154,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,126,134,142,152,154],topo_data:142,topo_fgmax_mask:66,topo_fil:154,topo_file_nam:59,topo_fnam:154,topo_func:154,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,152,154],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,142,152,154],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,127,133,134,135,146,147,153],topograpi:152,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,127,152,153],topotools_exampl:[109,154],topotyp:[126,142,152],topotype1:154,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,139,140,141,143,151],total_energi:93,total_step:[139,141,143],touch:66,tout:143,toward:[4,30],tprint:[140,141],trace:93,traceback:77,tracer:132,track:[24,25,28,32,33,45,51,54,56,58,71,83,91,104,111,113,122,124,127,132,142,148],track_color:148,tracker:28,tradeoff:110,tradit:[86,92],traffic:[131,157],trail:[58,59],tran:17,tranpsort:139,trans_cor:89,trans_inc:89,transect:[32,142],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:139,transon:119,transpar:[51,59],transport:[139,141,143],transpos:5,transvers:[8,89,119,126,131,132,139,157,160],transverse_wav:[89,139,141,143],trap:41,trapezoid:38,travel:140,travi:[22,126],tree:[52,58,96,137],tri:148,triangl:70,triangular:[30,45,121],trickeri:55,trigger:92,troubl:[35,36,76,91],troubleshoot:[25,56,57,91],truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,133,134,135,142,149,152],tt3:[70,154],tulan:24,tune:[26,140],tupl:[3,30,47,59,70,77,89,93,154],turbul:[48,99],turn:[44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,160],twice:[51,139],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,130,131,133,136,137,141,142,152,154,157,160],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,130,148],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,133,140,141,142,148,149,152,154,160],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,140,141,151,152,155,156,157,160],typo:122,u_l:132,u_r:132,u_t:103,u_x:103,ubuntu:13,ucar:[68,92],ucsb:[30,70,156],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,57,61,63,76,81,89,91,111,119,121,129],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,131],understood:48,underwat:[45,51],undesir:130,undivid:110,unequ:133,unexpect:[47,51,59,62,148],unidata:[68,92],uniform:[30,32,66,70,73,84,121,152],uniformli:152,unind:[59,148],uninstal:[55,58,106],union:[133,152],uniqu:[1,72,118,148],unit:[30,46,47,52,70,89,119,148],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,105,134,139,140,154],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:148,unnecessari:126,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,139,141,143],unstabl:118,unstructur:154,unsuccess:98,unsur:139,untar:57,unterweg:81,until:[13,32,60,66,135],unus:[2,92],unzip:51,upbnd:[140,141],updat:[6,12,13,22,23,25,32,49,52,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,131,140,141,143,145,148,151,157],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,135],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,133,139,141,143,152,154],upper_bound_limit:87,upper_glob:89,uprint:[140,141],upstream:55,upstrik:[30,70],upward:48,upwind:139,url:[4,12,17,51,55,121,122,152,154],usa:148,usa_ag:148,usag:[0,1,2,3,13,45,51,56,92,121,148,154],use:[3,4,5,12,13,14,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,129,131,132,133,134,137,139,140,141,142,143,148,152,154,155,156,157,158,159,160],use_adjoint:5,use_for_kml:51,use_fwav:[131,139,141,143],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,138,139,140,141,142,143,146,148,151,152,154,157,158,160],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,59,66,71,72,78,81,84,93,105,106,110,111,121,124,131,133,139,140,142,152,154,155,160],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,131,139,141,142,143,145,154,160],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,131,132,135,142,151,154,160],usg:[4,30,156],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,99,101,102,103,105,106,110,111,117,120,121,123,124,126,129,131,133,135,139,141,142,147,148,151,152,154,155,156,158,160],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,131,139,140,141,142,143,155,157],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,138,153,154,155],uwamath:13,valid:[3,48,70,86,93,98,101,119,142,148,149,154],valout:[68,72,121,124,151],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,126,130,131,133,134,135,139,140,141,142,143,148,149,152,154,155,157,160],valueerror:[30,148,154],valuemax:32,van:[87,99,139,141,143],van_leer_klein_sharpening_limit:87,vancouv:133,vanish:5,vanleer:[83,99,139,141,143],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,131,132,134,136,140,160],variabl:[0,3,5,13,14,22,25,27,28,30,32,35,36,37,40,44,45,50,51,54,57,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,130,131,139,140,141,143,148,152,154,155,157],variable_dt_refinement_ratio:[140,142],variable_eta_init:135,variant:[20,56,104,111],varieti:[44,86],variou:[12,20,22,30,38,43,48,54,67,70,77,79,89,103,105,106,110,119,131,138,142,148],vastli:134,vector:[5,22,83,87,93,101,121,131,132],veloc:[16,32,47,60,67,79,96,103,119,134,139,140,141,142,143,157],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,133,139,141,143,148,154],verbosity_regrid:[125,140,141],veri:[3,5,16,22,48,51,55,56,59,70,77,81,84,92,93,94,95,96,99,111,114,118,133,135,139,149,152],verifi:[47,104,111,156],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,73,76,77,79,80,84,87,91,92,94,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,135,136,137,139,140,141,142,143,146,147,148,152,154,157,160],versu:154,vertic:[30,38,48,51,59,66,133,134,142,154,156],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,131,133,137,144,146,147,152,154,157],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,144,145],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,154],virtual:[4,13,25,27,101],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,56,57,58,62,66,67,73,77,78,79,80,91,95,100,106,137,138,144],visibl:[12,13,43,51,109,144],visit:[22,25,76,129],visual:[23,24,28,35,36,44,45,57,58,67,72,73,76,91,95,96,106,117,124,158],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,133,140,151,152,157],vrt:51,vstack:133,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,57,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,129,131,133,138,139,145,149,152,157,159,160],wait:13,wall:[16,41,96,103,118,121,123,139,141,143,151],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,129,131,132,133,137,138,141,142,145,148,152,154,155],warm:87,warn:[24,28,92,93,99,126,139,155],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,133,154],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,131,133,134,135,142,152,154,156,157],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,126,132,133,134,139,140,141,142,143,157],wave_toler:[110,142],wavelength:48,web:[23,25,28,35,36,51,54,55,121,144,154],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,134],webserv:13,websit:[16,51,54,144,154],weight:51,welcom:[24,81],well:[4,6,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,132,135,139,140,146,147,148,157,160],wellington:148,wendroff:[89,99,139,141,143,160],weno:[73,91,99],weno_ord:99,went:[58,132],were:[4,6,14,20,32,44,54,60,63,67,68,84,110,113,119,122,126,133,135,152],weren:125,west:152,western:154,wet:[32,39,45,66,133],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,57,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,133,134,138,139,141,142,143,144,148,152,154,156,157],whatev:[29,68,83,98,131],when:[5,14,15,16,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,57,58,60,64,66,67,70,71,72,73,76,77,79,83,90,91,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,126,128,131,133,134,135,136,138,139,140,141,142,143,144,148,152,154,155,156,157,158,160],whenc:93,whenev:[28,118,157],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,126,130,132,133,134,135,138,139,140,141,142,143,148,151,152,154,157,160],wherea:[44,51,76,94],wherev:[29,155],whether:[3,6,13,16,22,47,53,56,58,60,61,62,67,81,89,92,93,98,99,110,111,119,131,133,139,140,142,154],which:[0,1,3,4,5,6,7,11,12,13,14,16,20,22,25,28,29,30,32,33,35,36,37,38,39,43,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,126,130,131,132,133,134,135,139,140,141,142,148,149,152,154,156,157,159,160],whichclaw:155,whidbei:[39,66,133],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,56],whole:[28,51,93,94],whose:[3,77,84,96,97,135,139,140,154],wide:[58,106,132],wider:77,width:[30,51,59,70,72,89,96,101,110,133,141,143],wiki:100,wikipedia:53,wind:[121,142,148,149,154],wind_forc:142,wind_index:142,wind_refin:142,wind_spe:148,window:[13,30,67,79,137],wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,58,67,75,76,91,96,99,100,102,106,108,110,119,136,144,146,147,155],within:[6,16,28,29,54,58,66,73,77,95,104,106,110,131,133,138,144,154],without:[16,22,40,44,48,59,61,62,63,66,67,77,79,81,87,91,92,93,104,106,111,133,137,141,143,148,155,157],wkt:51,wmo:148,wmo_:148,wmo_ag:148,won:[12,13,66,84,154],woodward:120,word:[93,121,148],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,127,129,131,137,138,139,140,142,144,149,152,155,159],workflow:[108,144,148],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,148],worst:134,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,133,134,135,138,139,142,148,152,157],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,148],wrapper:154,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,141,143,148,152,154],write_:92,write_arrai:92,write_atcf:148,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:148,write_hurdat:148,write_imd:148,write_jma:148,write_p:[92,98],write_tcvit:148,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,91,92,96,119,131,139,140,141,142,143,148,154,157],wrong:[58,63,67,93,106],www:[4,13,17,30,39,45,54,60,61,66,68,81,84,89,92,94,120,122,148,154],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,133],x_2:[5,133],x_c:133,x_cell:59,x_center:133,x_edg:[59,133],x_i:[131,157,160],x_inch:59,x_mask:154,xarr:89,xarrai:154,xarray_d:154,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[140,141],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,152],xllcorner:[53,152],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,141,143,152,154,157],xlowerg:84,xmax:0,xmin:0,xpoint:142,xrang:96,xtick:[39,49],xupper:[0,22,141,143,154],xxdiff:111,xxx:152,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:133,y_cell:59,y_center:133,y_edg:[59,133],y_inch:59,year:[4,17,22,51,59,91,112,122,148],yellow:[59,77,148],yellow_red_blu:77,yes:67,yet:[1,13,18,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,127,128,129,131,139,141,159],yianni:[4,17,81],yield:3,yleft:[140,141],ylimit:[0,44,51,124,138],yllcenter:[53,121,152],yllcorner:[53,152],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,141,152,154],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,150,152,155,156,157,159],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,131,136,137,146,147,152,155,157],yourself:[41,44,57],youtub:[24,108,124],ypoint:142,yupper:[22,141,154],z_allow_wet:39,z_dry:39,z_format:[39,66,154],zdry:[39,66],zenodo:[4,57,124,125,126,127,128,129],zero:[3,16,30,32,39,41,59,67,83,96,101,103,126,133,134],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,140,141],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:154},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sea_level","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":135,"catch":28,"class":[83,86,148],"default":[15,107,135,136,146,147],"final":55,"function":[14,47,59,65,66,79,93,99,160],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,Adding:[28,51,88,96,131],For:6,Going:90,One:[131,132,160],The:[51,65,66,67,103],Use:102,Using:[5,13,25,29,38,52,58,63,68,71,93,96,99,131,138,157],about:[4,81],abov:29,access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,140,142],adjoint:5,adjust:135,advect:97,after:130,afterfram:67,algorithm:[6,17,66,73,160],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,133,140,142],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,140,141,157],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:142,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,133],author:4,auto:[30,33,47,59,154],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,157],background:77,backward:[18,121,122,123,124,125,126,127,128],base:62,basic:[51,82,95],bathymetri:156,befor:157,behavior:135,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,157,160],bounding_box:133,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:156,burger:97,candid:55,capac:160,cautionari:48,cell:[6,39,133],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],chardiff:111,check:[28,111],checkpoint:130,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,139,143,150],claw:[74,137],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,43,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,127,128,129,132,143,159],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,57,58,74,111,155,157],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,155],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125,126,127,128],compil:[41,62,68,102,145,155],compon:[23,77],comput:[73,130],condit:[6,16,96,103,157,160],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,111,133],continent:133,continu:111,contourf:77,contribut:[26,28,132],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:133,coordin:[49,51],copi:69,correctli:94,cover:133,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,131],dart:156,data:[33,51,72,138,142,149,152,154,155,156,157],debug:[77,140],defin:[16,133],deform:135,dem:[39,66],demonstr:132,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:138,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,132,160],dimension:131,directli:13,directori:[58,62,69,77],displac:152,doc:54,docker:29,dockerfil:[29,55],docstr:[30,33,47,59,154],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,145,154],doing:55,domain:[89,103],done:157,download:152,doxygen:9,drop:105,dry:[39,66],dtopo:153,dtopotool:30,duplic:62,each:[28,157],earth:51,earthquak:[70,156],easi:106,ec2:13,elev:[49,66,135],environ:[41,137],equat:[97,103,132],error:[28,102],eta:135,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,133],exe:155,exist:69,experi:58,extra:54,extrapol:110,f2py:155,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,130,133,142,152,157],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,142],flag2refin:110,flag:[5,6,62,66,110,133,140],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,152],formul:160,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,155,157],found:67,frame:93,framework:55,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,133,154],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[43,54,67],gaug:[44,51,60,93,156],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,126,127,128,142,154],geo:142,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,136,142,146,147],geometri:89,geophys:25,get:[25,29,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:160,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,142],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:160,hint:[48,77,105],hll:132,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:135,initi:[6,39,66,96,103,135,157],input:[22,32,92,139,140],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,106,150,155],instanc:13,instanti:133,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88],issu:28,item:77,jupyt:[12,29,37,144],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:13,layer:132,level:[28,135],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,155],link:21,load:51,local:145,locat:44,log:[13,93],longitud:[49,51],machin:[29,159],make:[77,94,144,155],make_kml:133,makefil:[40,62,63,96,130],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:133,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:142,mesh:[6,25],method:[0,1,2,3,133,160],mhw:66,migrat:25,miss:132,model:[48,70,108,109,156],modif:39,modifi:[28,63,130],modul:[30,33,47,59,91,104,141,143,154],monitor:[32,142],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,152],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],notebook:[12,29,37,105,144],number:55,numpi:100,object:[89,138],obtain:100,okada:70,old:8,older:25,onli:66,open:55,openmp:71,oper:80,option:[51,57,79,94,96],order:102,osf:55,other:[17,18,23,24,29,32,54,77,120,121,122,123,124,125,126,127,128,129,133,135],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,130,139,140,142,155],overlai:51,overview:[25,138],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[73,89,94,95,101],paramet:[22,44,77,79,103,139,140,142],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:94,photo:74,pip:[58,80,155],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,138,144,155,158],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:131,polygon:133,port:84,post:76,potenti:132,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:140,printfram:79,problem:[8,84,96,103,157],procedur:32,process:[32,76],processor:41,produc:79,propag:160,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,153],pythonpath:[106,137],q0002:72,qinit:[107,142,152],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,133],readm:11,recent:[24,28],rectangl:[38,133],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,142],region:[66,110,133,142],registr:53,regress:111,relat:133,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,126,127,128,131],request:28,requir:[51,157],resolut:[51,160],resourc:25,restart:[29,83,130],result:[13,46,51,68,95,144],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,157],roe:132,routin:[15,22,63,78,107,136,146,147],rst:11,rule:[38,133],run:[29,35,36,37,46,83,85,88,94,95,111,139,140,155],ruptur:70,sage:85,same:63,sampl:[39,66,141,143],save:[93,144],scienc:55,script:96,sea:135,sea_level:134,sealevel:[],search:67,seismic:135,select:133,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,134,135,137,155],setaux:[136,157],setplot:[67,77,79,138],setrun:[22,44,139,140,141,142,143],shallow:[97,132],share:144,sharpclaw:99,shelf:133,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,133],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:133,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,131,132,157],some:[29,77,156],someth:77,sourc:[62,70,96,149,156,157,160],space:160,spatial:[135,157],special:[3,140],specif:[32,103,111,142,148,157],specifi:[38,60,77,79,110,138,139,140,142,157],sphere:16,sphinx:[54,145],sprint:[24,74],src1d:[146,157],src:[147,157],start:[25,29,46,108,109],state:101,statist:151,step:[56,57,58,100,157],stop:[13,29],storm:[108,142,148,149],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,135],surg:[108,149],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,157,160],test:[28,36,37,94,100,111,150],than:77,thi:[4,54],tide:156,tile:51,time:[139,140,142,151,157],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,148,153],top:28,topo:153,topofil:66,topographi:[30,33,39,46,51,66,142,152,154,156],topotool:154,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,155],troubleshoot:[58,102,155],tsunami:[48,51,109,156],tutori:[24,103,105],tvd:87,two:132,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,135],used:155,useful:[29,132],user:[16,24,29,73,157],using:[48,67,157],utah:74,util:[47,59,104],valu:[32,83],vari:[135,157],variabl:[41,62,96,137],version:[25,29,40,50,52,54,55,58,106],view:13,virtual:159,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],visit:158,visual:[25,51],washington:74,water:[49,97,132],wave:[131,160],web:13,webpag:[13,54,144],what:[77,79,93,132],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,153,154,157],workflow:28,workshop:[24,74],write:[66,96,111,133],written:93,your:[13,28,29,36,51,94,96,100,144,150],zenodo:55,zone:66}}) \ No newline at end of file +Search.setIndex({docnames:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","about","adjoint","amr_algorithm","amrclaw","amrclaw1d","amrclaw_doxygen","amrclaw_flowcharts","application_documentation","apps","aws","b4run","b4step_defaults","bc","biblio","changes_to_master","claw43to46","claw46to50","claw4x","clawpack5","clawpack_components","community","contents","contribute_apps","current_data","developers","docker_image","dtopotools_module","f77_vs_f90","fgmax","fgmax_tools_module","fgout","first_run","first_run_fortran","first_run_pyclaw","flagregions","force_dry","fortran","fortran_compilers","fvmbook","galleries","gauges","geoclaw","geoclaw_started","geoclaw_util_module","geohints","geoplot","git_versions","googleearth_plotting","gpu","grid_registration","howto_doc","howto_release","installing","installing_fortcodes","installing_pip","kmltools_module","lagrangian_gauges","license","makefiles","makefiles_library","manning","mapc2p","marching_front","matlab_plotting","netcdf","newapp","okada","openmp","output_styles","packages","photos","plotexamples","plotting","plotting_faq","plotting_geoclaw","plotting_python","prereqs","pyclaw/about","pyclaw/basics","pyclaw/classes","pyclaw/clawpack_and_pyclaw","pyclaw/cloud","pyclaw/controller","pyclaw/evolve/limiters","pyclaw/examples","pyclaw/geometry","pyclaw/going_further","pyclaw/index","pyclaw/io","pyclaw/output","pyclaw/parallel","pyclaw/plotting","pyclaw/problem","pyclaw/rp","pyclaw/solution","pyclaw/solvers","pyclaw/started","pyclaw/state","pyclaw/troubleshooting","pyclaw/tutorial","pyclaw/util","python","python_path","qinit_defaults","quick_surge","quick_tsunami","refinement","regression","release_5_0_0","release_5_1_0","release_5_2_0","release_5_2_1","release_5_2_2","release_5_3_0","release_5_3_1","release_5_4_0","release_5_4_1","release_5_5_0","release_5_6_0","release_5_6_1","release_5_7_0","release_5_7_1","release_5_8_0","release_5_8_1","release_5_8_2","releases","restart","riemann","riemann/Shallow_water_Riemann_solvers","ruled_rectangles","sealevel","set_eta_init","setaux_defaults","setenv","setplot","setrun","setrun_amrclaw","setrun_amrclaw_sample","setrun_geoclaw","setrun_sample","sharing","sphinxdoc","src1d_defaults","src_defaults","storm_module","surgedata","testing","timing","topo","topotools","topotools_module","trouble","tsunamidata","user_routines","visit_plotting","vm","wp_algorithms"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["ClawPlotAxes.rst","ClawPlotData.rst","ClawPlotFigure.rst","ClawPlotItem.rst","about.rst","adjoint.rst","amr_algorithm.rst","amrclaw.rst","amrclaw1d.rst","amrclaw_doxygen.rst","amrclaw_flowcharts.rst","application_documentation.rst","apps.rst","aws.rst","b4run.rst","b4step_defaults.rst","bc.rst","biblio.rst","changes_to_master.rst","claw43to46.rst","claw46to50.rst","claw4x.rst","clawpack5.rst","clawpack_components.rst","community.rst","contents.rst","contribute_apps.rst","current_data.rst","developers.rst","docker_image.rst","dtopotools_module.rst","f77_vs_f90.rst","fgmax.rst","fgmax_tools_module.rst","fgout.rst","first_run.rst","first_run_fortran.rst","first_run_pyclaw.rst","flagregions.rst","force_dry.rst","fortran.rst","fortran_compilers.rst","fvmbook.rst","galleries.rst","gauges.rst","geoclaw.rst","geoclaw_started.rst","geoclaw_util_module.rst","geohints.rst","geoplot.rst","git_versions.rst","googleearth_plotting.rst","gpu.rst","grid_registration.rst","howto_doc.rst","howto_release.rst","installing.rst","installing_fortcodes.rst","installing_pip.rst","kmltools_module.rst","lagrangian_gauges.rst","license.rst","makefiles.rst","makefiles_library.rst","manning.rst","mapc2p.rst","marching_front.rst","matlab_plotting.rst","netcdf.rst","newapp.rst","okada.rst","openmp.rst","output_styles.rst","packages.rst","photos.rst","plotexamples.rst","plotting.rst","plotting_faq.rst","plotting_geoclaw.rst","plotting_python.rst","prereqs.rst","pyclaw/about.rst","pyclaw/basics.rst","pyclaw/classes.rst","pyclaw/clawpack_and_pyclaw.rst","pyclaw/cloud.rst","pyclaw/controller.rst","pyclaw/evolve/limiters.rst","pyclaw/examples.rst","pyclaw/geometry.rst","pyclaw/going_further.rst","pyclaw/index.rst","pyclaw/io.rst","pyclaw/output.rst","pyclaw/parallel.rst","pyclaw/plotting.rst","pyclaw/problem.rst","pyclaw/rp.rst","pyclaw/solution.rst","pyclaw/solvers.rst","pyclaw/started.rst","pyclaw/state.rst","pyclaw/troubleshooting.rst","pyclaw/tutorial.rst","pyclaw/util.rst","python.rst","python_path.rst","qinit_defaults.rst","quick_surge.rst","quick_tsunami.rst","refinement.rst","regression.rst","release_5_0_0.rst","release_5_1_0.rst","release_5_2_0.rst","release_5_2_1.rst","release_5_2_2.rst","release_5_3_0.rst","release_5_3_1.rst","release_5_4_0.rst","release_5_4_1.rst","release_5_5_0.rst","release_5_6_0.rst","release_5_6_1.rst","release_5_7_0.rst","release_5_7_1.rst","release_5_8_0.rst","release_5_8_1.rst","release_5_8_2.rst","releases.rst","restart.rst","riemann.rst","riemann/Shallow_water_Riemann_solvers.rst","ruled_rectangles.rst","sealevel.rst","set_eta_init.rst","setaux_defaults.rst","setenv.rst","setplot.rst","setrun.rst","setrun_amrclaw.rst","setrun_amrclaw_sample.rst","setrun_geoclaw.rst","setrun_sample.rst","sharing.rst","sphinxdoc.rst","src1d_defaults.rst","src_defaults.rst","storm_module.rst","surgedata.rst","testing.rst","timing.rst","topo.rst","topotools.rst","topotools_module.rst","trouble.rst","tsunamidata.rst","user_routines.rst","visit_plotting.rst","vm.rst","wp_algorithms.rst"],objects:{"":{ClawPlotAxes:[0,0,1,""],ClawPlotData:[1,0,1,""],ClawPlotFigure:[2,0,1,""],ClawPlotItem:[3,0,1,""],clearfigures:[1,2,1,""],clearframes:[1,2,1,""],getaxes:[1,2,1,""],getfigure:[1,2,1,""],getframe:[3,2,1,""],gethandle:[3,2,1,""],getitem:[1,2,1,""],iplotclaw:[1,2,1,""],new_plotaxes:[2,2,1,""],new_plotfigure:[1,2,1,""],new_plotitem:[0,2,1,""],plotframe:[1,2,1,""],printframes:[1,2,1,""],showitems:[1,2,1,""]},"clawpack.geoclaw":{dtopotools:[30,1,0,"-"],fgmax_tools:[33,1,0,"-"],kmltools:[59,1,0,"-"],topotools:[154,1,0,"-"],util:[47,1,0,"-"]},"clawpack.geoclaw.dtopotools":{CSVFault:[30,0,1,""],DTopography:[30,0,1,""],Fault:[30,0,1,""],Mw:[30,3,1,""],SiftFault:[30,0,1,""],SubFault:[30,0,1,""],SubdividedPlaneFault:[30,0,1,""],TensorProductFault:[30,0,1,""],UCSBFault:[30,0,1,""],plot_dZ_colors:[30,3,1,""],plot_dZ_contours:[30,3,1,""],rise_fraction:[30,3,1,""],strike_direction:[30,3,1,""]},"clawpack.geoclaw.dtopotools.CSVFault":{read:[30,2,1,""]},"clawpack.geoclaw.dtopotools.DTopography":{dZ_at_t:[30,2,1,""],dZ_max:[30,2,1,""],plot_dZ_colors:[30,2,1,""],plot_dZ_contours:[30,2,1,""],read:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.Fault":{Mo:[30,2,1,""],Mw:[30,2,1,""],containing_rect:[30,2,1,""],create_dtopo_xy:[30,2,1,""],create_dtopography:[30,2,1,""],plot_subfaults:[30,2,1,""],plot_subfaults_depth:[30,2,1,""],read:[30,2,1,""],set_dynamic_slip:[30,2,1,""],write:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SiftFault":{set_subfaults:[30,2,1,""]},"clawpack.geoclaw.dtopotools.SubFault":{Mo:[30,2,1,""],calculate_geometry:[30,2,1,""],calculate_geometry_triangles:[30,2,1,""],centers:[30,2,1,""],convert_to_standard_units:[30,2,1,""],coordinate_specification:[30,4,1,""],corners:[30,2,1,""],depth:[30,4,1,""],dip:[30,4,1,""],dynamic_slip:[30,2,1,""],gauss_pts:[30,2,1,""],latitude:[30,4,1,""],length:[30,4,1,""],longitude:[30,4,1,""],mu:[30,4,1,""],okada:[30,2,1,""],rake:[30,4,1,""],rise_shape:[30,4,1,""],rise_time:[30,4,1,""],rise_time_starting:[30,4,1,""],rupture_time:[30,4,1,""],rupture_type:[30,4,1,""],set_corners:[30,2,1,""],slip:[30,4,1,""],strike:[30,4,1,""],width:[30,4,1,""]},"clawpack.geoclaw.dtopotools.SubdividedPlaneFault":{subdivide:[30,2,1,""]},"clawpack.geoclaw.dtopotools.UCSBFault":{read:[30,2,1,""]},"clawpack.geoclaw.fgmax_tools":{FGmaxGrid:[33,0,1,""],adjust_fgmax_1d:[33,3,1,""]},"clawpack.geoclaw.fgmax_tools.FGmaxGrid":{bounding_box:[33,2,1,""],interp_dz:[33,2,1,""],ps4_to_arrays:[33,2,1,""],read_fgmax_grids_data:[33,2,1,""],read_output:[33,2,1,""],write_to_fgmax_data:[33,2,1,""]},"clawpack.geoclaw.kmltools":{box2kml:[59,3,1,""],deg2dms:[59,3,1,""],dtopo2kml:[59,3,1,""],f2s:[59,3,1,""],fgmax2kml:[59,3,1,""],fgout2kml:[59,3,1,""],gauges2kml:[59,3,1,""],kml_build_colorbar:[59,3,1,""],kml_cb:[59,3,1,""],kml_png:[59,3,1,""],kml_timespan:[59,3,1,""],line2kml:[59,3,1,""],make_input_data_kmls:[59,3,1,""],pcolorcells_for_kml:[59,3,1,""],png2kml:[59,3,1,""],poly2kml:[59,3,1,""],quad2kml:[59,3,1,""],regions2kml:[59,3,1,""],topo2kml:[59,3,1,""],topo2kmz:[59,3,1,""]},"clawpack.geoclaw.surge":{storm:[148,1,0,"-"]},"clawpack.geoclaw.surge.storm":{NoDataError:[148,5,1,""],Storm:[148,0,1,""],available_formats:[148,3,1,""],available_models:[148,3,1,""],fill_rad_w_other_source:[148,3,1,""],make_multi_structure:[148,3,1,""]},"clawpack.geoclaw.surge.storm.Storm":{category:[148,2,1,""],plot:[148,2,1,""],read:[148,2,1,""],read_atcf:[148,2,1,""],read_geoclaw:[148,2,1,""],read_hurdat:[148,2,1,""],read_ibtracs:[148,2,1,""],read_imd:[148,2,1,""],read_jma:[148,2,1,""],read_tcvitals:[148,2,1,""],write:[148,2,1,""],write_atcf:[148,2,1,""],write_geoclaw:[148,2,1,""],write_hurdat:[148,2,1,""],write_imd:[148,2,1,""],write_jma:[148,2,1,""],write_tcvitals:[148,2,1,""]},"clawpack.geoclaw.topotools":{Topography:[154,0,1,""],create_topo_func:[154,3,1,""],determine_topo_type:[154,3,1,""],fetch_topo_url:[154,3,1,""],get_topo:[154,3,1,""],read_netcdf:[154,3,1,""],swapheader:[154,3,1,""],topo1writer:[154,3,1,""],topo2writer:[154,3,1,""],topo3writer:[154,3,1,""]},"clawpack.geoclaw.topotools.Topography":{X:[154,2,1,""],Y:[154,2,1,""],Z:[154,2,1,""],crop:[154,2,1,""],delta:[154,2,1,""],extent:[154,2,1,""],generate_2d_coordinates:[154,2,1,""],generate_2d_topo:[154,2,1,""],in_poly:[154,2,1,""],interp_unstructured:[154,2,1,""],make_shoreline_xy:[154,2,1,""],plot:[154,2,1,""],read:[154,2,1,""],read_header:[154,2,1,""],replace_no_data_values:[154,2,1,""],replace_values:[154,2,1,""],set_xyZ:[154,2,1,""],smooth_data:[154,2,1,""],write:[154,2,1,""],x:[154,2,1,""],y:[154,2,1,""],z:[154,2,1,""]},"clawpack.geoclaw.util":{bearing:[47,3,1,""],dist_latlong2meters:[47,3,1,""],dist_meters2latlong:[47,3,1,""],dms2decimal:[47,3,1,""],fetch_noaa_tide_data:[47,3,1,""],haversine:[47,3,1,""],inv_haversine:[47,3,1,""]},"clawpack.petclaw.geometry":{Domain:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.petclaw.geometry.Domain":{dimensional_split:[89,4,1,""],fwave:[89,4,1,""],kernel_language:[89,4,1,""],mthlim:[89,4,1,""],order:[89,4,1,""],source_split:[89,4,1,""],step_source:[89,4,1,""],transverse_waves:[89,4,1,""],verbosity:[89,4,1,""]},"clawpack.petclaw.state":{State:[101,0,1,""]},"clawpack.petclaw.state.State":{F:[101,2,1,""],aux:[101,2,1,""],fset:[101,2,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,2,1,""],problem_data:[101,4,1,""],q:[101,2,1,""],set_num_ghost:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw":{util:[104,1,0,"-"]},"clawpack.pyclaw.classic.solver":{ClawSolver:[99,0,1,""]},"clawpack.pyclaw.classic.solver.ClawSolver":{fwave:[99,4,1,""],kernel_language:[99,4,1,""],mthlim:[99,4,1,""],order:[99,4,1,""],setup:[99,2,1,""],source_split:[99,4,1,""],step:[99,2,1,""],step_hyperbolic:[99,2,1,""],step_source:[99,4,1,""],verbosity:[99,4,1,""]},"clawpack.pyclaw.controller":{Controller:[86,0,1,""]},"clawpack.pyclaw.controller.Controller":{F_file_name:[86,4,1,""],F_path:[86,2,1,""],check_validity:[86,2,1,""],compute_F:[86,4,1,""],compute_p:[86,4,1,""],file_prefix_p:[86,4,1,""],frames:[86,4,1,""],keep_copy:[86,4,1,""],nstepout:[86,4,1,""],num_output_times:[86,4,1,""],out_times:[86,4,1,""],outdir:[86,4,1,""],outdir_p:[86,2,1,""],output_file_prefix:[86,4,1,""],output_format:[86,4,1,""],output_options:[86,4,1,""],output_style:[86,4,1,""],overwrite:[86,4,1,""],plot:[86,2,1,""],plotdata:[86,4,1,""],run:[86,2,1,""],rundir:[86,4,1,""],runmake:[86,4,1,""],savecode:[86,4,1,""],solver:[86,4,1,""],tfinal:[86,4,1,""],verbosity:[86,2,1,""],viewable_attributes:[86,4,1,""],write_aux_always:[86,4,1,""],write_aux_init:[86,4,1,""],xclawcmd:[86,4,1,""],xclawerr:[86,4,1,""],xclawout:[86,4,1,""],xdir:[86,4,1,""]},"clawpack.pyclaw.fileio":{ascii:[92,1,0,"-"],netcdf:[92,1,0,"-"]},"clawpack.pyclaw.fileio.ascii":{read:[92,3,1,""],read_array:[92,3,1,""],read_patch_header:[92,3,1,""],read_t:[92,3,1,""],write:[92,3,1,""],write_array:[92,3,1,""]},"clawpack.pyclaw.fileio.netcdf":{read:[92,3,1,""],write:[92,3,1,""]},"clawpack.pyclaw.geometry":{Dimension:[89,0,1,""],Domain:[89,0,1,""],Grid:[89,0,1,""],Patch:[89,0,1,""]},"clawpack.pyclaw.geometry.Dimension":{centers:[89,2,1,""],centers_with_ghost:[89,2,1,""],delta:[89,2,1,""],nodes:[89,2,1,""],nodes_with_ghost:[89,2,1,""]},"clawpack.pyclaw.geometry.Domain":{grid:[89,2,1,""],num_dim:[89,2,1,""],patch:[89,2,1,""]},"clawpack.pyclaw.geometry.Grid":{add_dimension:[89,2,1,""],add_gauges:[89,2,1,""],c_center:[89,2,1,""],c_centers:[89,2,1,""],c_centers_with_ghost:[89,2,1,""],c_nodes:[89,2,1,""],c_nodes_with_ghost:[89,2,1,""],dimensions:[89,2,1,""],gauge_dir_name:[89,4,1,""],gauge_file_names:[89,4,1,""],gauge_files:[89,4,1,""],gauges:[89,4,1,""],get_dim_attribute:[89,2,1,""],num_dim:[89,2,1,""],p_center:[89,2,1,""],p_centers:[89,2,1,""],p_nodes:[89,2,1,""],plot:[89,2,1,""],setup_gauge_files:[89,2,1,""]},"clawpack.pyclaw.geometry.Patch":{add_dimension:[89,2,1,""],delta:[89,2,1,""],dimensions:[89,2,1,""],get_dim_attribute:[89,2,1,""],level:[89,4,1,""],lower_global:[89,2,1,""],name:[89,2,1,""],num_cells_global:[89,2,1,""],num_dim:[89,2,1,""],patch_index:[89,4,1,""],upper_global:[89,2,1,""]},"clawpack.pyclaw.limiters":{tvd:[87,1,0,"-"]},"clawpack.pyclaw.limiters.tvd":{arora_roe:[87,3,1,""],beta_limiter:[87,3,1,""],cada_torrilhon_limiter:[87,3,1,""],cada_torrilhon_limiter_nonlinear:[87,3,1,""],cfl_superbee:[87,3,1,""],cfl_superbee_theta:[87,3,1,""],hyperbee_limiter:[87,3,1,""],limit:[87,3,1,""],mc_limiter:[87,3,1,""],minmod_limiter:[87,3,1,""],superbee_limiter:[87,3,1,""],superpower_limiter:[87,3,1,""],theta_limiter:[87,3,1,""],upper_bound_limiter:[87,3,1,""],van_leer_klein_sharpening_limiter:[87,3,1,""]},"clawpack.pyclaw.sharpclaw.solver":{SharpClawSolver:[99,0,1,""]},"clawpack.pyclaw.sharpclaw.solver.SharpClawSolver":{accept_reject_step:[99,2,1,""],aux_time_dep:[99,4,1,""],call_before_step_each_stage:[99,4,1,""],cfl_desired:[99,4,1,""],cfl_max:[99,4,1,""],char_decomp:[99,4,1,""],check_3rd_ord_cond:[99,2,1,""],dq:[99,2,1,""],dq_src:[99,4,1,""],dqdt:[99,2,1,""],fwave:[99,4,1,""],get_dt_new:[99,2,1,""],kernel_language:[99,4,1,""],lim_type:[99,4,1,""],num_ghost:[99,4,1,""],setup:[99,2,1,""],step:[99,2,1,""],tfluct:[99,4,1,""],tfluct_solver:[99,4,1,""],time_integrator:[99,4,1,""],update_saved_values:[99,2,1,""],weno_order:[99,4,1,""]},"clawpack.pyclaw.solution":{Solution:[98,0,1,""]},"clawpack.pyclaw.solution.Solution":{is_valid:[98,2,1,""],patch:[98,2,1,""],plot:[98,2,1,""],read:[98,2,1,""],set_all_states:[98,2,1,""],start_frame:[98,2,1,""],state:[98,2,1,""],write:[98,2,1,""]},"clawpack.pyclaw.state":{State:[101,0,1,""]},"clawpack.pyclaw.state.State":{F:[101,4,1,""],gauge_data:[101,4,1,""],get_aux_global:[101,2,1,""],get_auxbc_from_aux:[101,2,1,""],get_q_global:[101,2,1,""],get_qbc_from_q:[101,2,1,""],is_valid:[101,2,1,""],keep_gauges:[101,4,1,""],mF:[101,2,1,""],mp:[101,2,1,""],num_aux:[101,2,1,""],num_eqn:[101,2,1,""],p:[101,4,1,""],problem_data:[101,4,1,""],set_aux_from_auxbc:[101,2,1,""],set_cparam:[101,2,1,""],set_num_ghost:[101,2,1,""],set_q_from_qbc:[101,2,1,""],t:[101,4,1,""]},"clawpack.pyclaw.util":{FrameCounter:[104,0,1,""],VerifyError:[104,5,1,""],add_parent_doc:[104,3,1,""],check_diff:[104,3,1,""],compile_library:[104,3,1,""],construct_function_handle:[104,3,1,""],convert_fort_double_to_float:[104,3,1,""],gen_variants:[104,3,1,""],read_data_line:[104,3,1,""],run_app_from_main:[104,3,1,""],run_serialized:[104,3,1,""],test_app:[104,3,1,""]},"clawpack.pyclaw.util.FrameCounter":{get_counter:[104,2,1,""],increment:[104,2,1,""],reset_counter:[104,2,1,""],set_counter:[104,2,1,""]},"clawpack.riemann":{acoustics_1D_py:[97,1,0,"-"],advection_1D_py:[97,1,0,"-"],burgers_1D_py:[97,1,0,"-"],euler_1D_py:[97,1,0,"-"],shallow_1D_py:[97,1,0,"-"]},"clawpack.riemann.acoustics_1D_py":{acoustics_1D:[97,3,1,""]},"clawpack.riemann.advection_1D_py":{advection_1D:[97,3,1,""]},"clawpack.riemann.burgers_1D_py":{burgers_1D:[97,3,1,""]},"clawpack.riemann.euler_1D_py":{euler_exact_1D:[97,3,1,""],euler_hll_1D:[97,3,1,""],euler_hllc_1D:[97,3,1,""],euler_roe_1D:[97,3,1,""]},"clawpack.riemann.shallow_1D_py":{shallow_exact_1D:[97,3,1,""],shallow_fwave_1d:[97,3,1,""],shallow_hll_1D:[97,3,1,""],shallow_roe_1D:[97,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","module","Python module"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","attribute","Python attribute"],"5":["py","exception","Python exception"]},objtypes:{"0":"py:class","1":"py:module","2":"py:method","3":"py:function","4":"py:attribute","5":"py:exception"},terms:{"00000000e":72,"000000e":141,"00000e":141,"0000ff":[3,59],"001000e":141,"00er2592":4,"00ff00":59,"00ffff":59,"01er25474":4,"020204mag_polici":30,"04d":158,"0_dockerimag":29,"0_geoclaw":29,"0d0":104,"10k":121,"1200x1680":51,"1440l":51,"1440p":51,"15e":154,"16m":71,"17th":99,"1_contain":29,"1_dockerimag":29,"1_geoclaw_contain":29,"1_geoclaw_dockerimag":29,"1d_plot":[44,77,79,138],"1drad":157,"1e6":66,"1e9":[32,38,60],"1rc":55,"1st":[87,99,139,141,143,157],"2013it":17,"2018300n26315":148,"2019ms001635":52,"224599074275750e":39,"25000000e":72,"259259000800000e":39,"260e":151,"27t06":59,"27t07":59,"288e":151,"2d_grid":22,"2d_patch":[3,22],"2d_pcolor":[44,51],"2d_schlieren":3,"2nd":[91,96,99,139,141,143,157],"301e":151,"30x30":51,"34kt":148,"360x360":51,"373e":151,"3rd":[96,99,132],"3x3":39,"40000000e":72,"4th":99,"50kt":148,"5_x_x":55,"5d0":157,"5e3":142,"5r01ar53652":4,"639s":[36,150],"64kt":148,"793009258334999e":39,"8888ff":59,"88er25053":4,"8x6":51,"92er25139":4,"93er25181":4,"96er25292":4,"99999000e":32,"\u010dert\u00edk":4,"abstract":51,"boolean":[3,51,66,92,97,139,140,142],"break":[28,30,48,51,59,70,111,118,135,142,154],"case":[5,6,8,13,16,18,19,22,30,32,38,41,44,45,48,51,58,59,63,66,67,70,77,83,89,92,94,96,98,104,106,110,111,114,117,118,119,120,121,126,130,133,134,140,142,148,152,154,155,157,160],"catch":[40,91],"class":[0,1,2,3,5,25,30,32,33,38,51,59,70,77,79,84,89,91,96,98,99,101,103,104,105,122,124,130,133,138,139,140,141,142,143,154],"const":32,"default":[0,1,2,3,13,18,22,28,30,32,41,44,45,47,49,50,51,53,58,59,60,62,63,67,70,71,77,79,83,86,88,89,92,93,94,95,98,99,101,102,104,110,113,119,123,124,126,130,134,140,141,142,148,152,154,157],"export":[41,51,57,58,67,71,94,102,137],"final":[5,30,41,54,60,67,70,83,86,93,103,108,113,130,132,139,141,143,154],"float":[3,30,32,44,47,59,86,89,97,101,104,139,140,142,143,148,154],"function":[0,1,2,3,5,7,15,17,18,22,23,25,27,28,30,32,39,44,45,50,51,53,62,63,64,68,70,76,77,78,83,84,86,87,88,89,90,92,95,96,97,98,101,104,105,110,111,113,114,117,118,119,120,121,126,131,133,135,136,138,139,140,141,142,143,148,152,153,154,155,157],"import":[0,3,5,22,28,32,37,38,39,44,48,51,53,56,58,59,63,64,66,70,73,77,79,83,84,86,88,89,91,92,93,94,95,96,98,99,100,101,103,111,119,124,131,132,133,134,135,139,140,141,142,143,152,154,156,158],"int":[1,2,3,30,32,59,86,87,89,92,93,98,101,139,140,142,148,154],"long":[28,30,47,48,51,69,91,118,126,140,154],"new":[1,2,4,5,6,8,12,13,18,20,22,24,25,28,29,30,32,33,38,39,40,41,44,45,47,51,52,53,55,58,59,60,62,63,64,66,67,71,77,79,82,83,84,85,86,92,94,96,99,101,108,110,113,116,117,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,139,140,142,148,152,154,157],"ond\u0159ej":4,"public":[4,13,21,129],"return":[0,1,2,3,30,33,37,47,51,59,63,66,67,77,79,86,87,89,92,93,96,97,98,99,101,104,111,120,131,133,139,141,143,148,150,154,157,160],"short":[24,48,96,126],"static":[30,70,121],"super":[23,28,121,154],"switch":[29,51,58,96,106,111,120,134,156],"throw":28,"true":[0,1,2,3,5,6,15,16,27,30,33,39,44,47,50,51,54,59,66,76,83,86,89,92,93,94,98,99,101,110,119,130,131,133,135,136,139,140,141,142,143,148,154],"try":[1,28,29,35,36,37,44,51,53,58,59,66,77,85,88,91,92,98,100,102,103,104,106,111,139,150,154,155],"var":[0,3,13,27,148],"while":[5,13,16,30,39,51,67,70,77,79,84,89,93,94,99,104,121,131,135,142,156],AND:[61,81],ARE:[61,81],AWS:13,Added:[18,87,113,115,117,118,120,124,127],Adding:[18,25,82,90],And:[6,20,54,57],Are:112,Axes:[138,148],BCs:[141,143],BUT:[61,81],But:[13,32,39,51,77,102,114,121,135,137],CMS:4,DAs:101,DMS:4,DNS:13,Doing:70,EBS:13,FOR:[61,81],For:[0,1,2,3,5,7,8,9,10,12,13,16,18,19,22,24,25,26,27,28,29,30,32,35,37,38,39,41,44,47,48,49,51,53,54,55,62,63,66,67,68,70,71,76,77,79,80,83,84,88,89,91,92,93,94,96,99,100,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,138,139,140,141,142,143,145,148,149,151,152,154,156,157,160],GIS:[51,119,152],Going:[13,25,91],Ike:108,NOT:[59,61,77,81],Not:[30,51,89,119,126],OPS:47,One:[23,25,26,30,32,51,54,66,67,84,104,110,117,154],Res:17,SUCH:[61,81],Such:67,Sys:17,THE:[61,81],That:[35,37,39,103,152],The:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,57,58,59,60,61,62,63,64,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,89,91,92,93,94,96,97,98,99,100,101,102,104,105,106,108,110,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],Their:81,Then:[13,16,28,29,30,44,54,55,56,63,66,70,71,79,83,86,94,100,101,102,106,131,133,154,155],There:[3,6,13,22,36,40,51,54,55,62,66,70,72,79,80,93,100,108,120,121,138,139,149,150,157,159],These:[1,4,5,12,16,18,23,28,30,32,38,42,44,48,51,54,59,60,63,66,67,73,77,79,83,88,91,92,93,95,101,103,107,109,110,111,113,119,120,121,122,126,130,140,144,148,149,152,156,160],USE:[61,81],Use:[30,51,91,97,99,121,132,139,141,143,152,154],Used:132,Useful:[1,3,132,139],Uses:[30,132,154],Using:[0,1,2,3,7,17,22,41,42,51,53,75,76,77,79,89,90,91,123,139,146,147,151,154,155,160],WCS:156,Will:98,With:[6,22,28,44,49,51,58,66,73,110,118,131,133,139],__________________o:154,__file__:106,__future__:119,__init__:[55,96,106],__main__:[141,143],__name__:[141,143],_build1:54,_build:54,_compute_c_cent:89,_compute_c_nod:89,_compute_p_cent:89,_compute_p_nod:89,_fillvalu:92,_googleearth:51,_outdir:93,_output2:[77,79],_output:[5,13,14,32,35,36,44,50,60,67,77,79,88,93,95,98,118,125,155],_output_from_previous_run:44,_output_new:111,_output_old:111,_plot:[13,35,36,44,67,79,138,144],_plotindex:[1,44],_plots_new:111,_plots_old:111,_ptwise:131,_pyclaw_io:86,_static:54,_storm_modul:149,_subpackag:106,_surge_modul:108,_templat:[54,55],_theme:54,a351:[17,91],a377:[17,91],aabbggrr:59,abdullah:[4,81],abil:[41,117,119,123,148,154],abl:[13,54,106],abort:62,about:[3,5,7,13,14,16,18,22,25,33,35,36,40,47,48,53,55,59,62,64,67,72,78,80,83,91,94,99,106,111,118,122,124,131,138,140,141,142,152,155,157,160],aboutu:30,abov:[3,5,13,14,16,18,20,28,32,35,36,38,39,40,41,44,48,51,53,54,55,58,61,63,66,70,72,77,80,81,84,93,95,100,103,104,110,119,121,126,131,133,135,137,138,139,141,143,148,151,152,154,157],abs:[30,52,96,104,110,133,154],absolut:[93,110,111,121,140,141],absolute_import:119,abspath:[5,38],abstol:104,academ:102,acceler:[52,97],accept:[44,83,93,99,139],accept_reject_step:99,access:[0,17,27,29,55,58,88,89,91,99,101,104],accid:28,accident:[28,77],accompani:[18,21],accomplish:[29,39,62],accord:[6,53],accordingli:[51,152],account:[13,24,28,55,85,94],accumul:[44,119,130],accur:[5,48,70,91,99,126,139,157,160],accuraci:[44,64,73,141,143],achiev:[20,84,146,147],acou:77,acoust:[16,29,35,36,48,82,83,86,88,91,99,100,117,131,141,157],acoustics1dheterogeneoustest:[36,150],acoustics3dheterogeneoustest:[36,150],acoustics_1d:[83,97,103],acoustics_1d_adjoint:5,acoustics_1d_example1:[35,36,69],acoustics_1d_heterogen:[36,150,157],acoustics_1d_homogen:[88,111],acoustics_1d_pi:97,acoustics_2d:99,acoustics_2d_adjoint:5,acoustics_2d_radi:[141,157],acoustics_3d_heterogen:[36,150],acoustics_3d_vari:111,acquaint:103,acquir:77,across:[5,110,119,152,154],acsza1:30,acszb1:30,act:[87,154],acta:17,actanum2011:17,action:[13,14,84],activ:[24,32,34,38,54,99,108,142],actual:[6,27,30,32,53,58,59,67,70,77,87,92,104,108,134,142],adapt:[4,7,17,30,39,52,53,66,67,73,83,110,121,124,126,131,133,138,139,140,142,157],add:[0,11,12,13,16,17,27,28,30,44,47,51,54,55,57,58,63,66,67,68,70,76,83,88,89,93,94,96,104,114,117,119,120,121,124,132,143,148,152,154,158],add_colorbar:[30,154],add_colormap:[39,66,118,124],add_dimens:89,add_gaug:[89,93],add_label:44,add_param:[141,143],add_parent_doc:104,add_titl:77,add_true_solut:77,added:[3,12,16,18,20,22,24,28,34,47,53,55,58,59,60,64,67,77,89,93,106,108,110,113,114,116,117,118,119,120,121,122,123,124,125,130,135,139,140,142,148,151,154,158],addgaug:44,adding:[22,27,28,29,32,41,44,54,59,70,94,107,118,120],addit:[5,7,13,16,18,23,24,28,29,32,36,37,38,45,46,59,66,70,72,73,77,78,84,87,89,91,93,99,100,101,108,110,117,119,120,121,122,125,126,128,131,133,139,143,148,151,152,157,158],addition:[94,148],address:[51,54,119],adequ:48,adjac:[6,16,32,45,110,135,139],adjoint:[7,17,25,52,110,121,122],adjoint_flag:110,adjoint_modul:122,adjoint_outdir:5,adjointdata:[5,122,123],adjointsup_modul:122,adjust:[5,13,20,32,33,45,59,89,93,134,139,157],adjust_fgmax_1d:33,admiralti:133,adopt:[30,99],adv:17,advanc:[6,17,52,66,71,103,118,139,140,157],advantag:[12,76,92,105,111,133],advect:[17,77,91,94,131,132,143,157],advection2dannulustest:[36,150],advection_1d:97,advection_1d_example1:63,advection_1d_pi:97,advection_2d_annulu:[36,150],advection_2d_flagregion:38,advection_2d_inflow:117,advection_2d_swirl:157,advection_3d_swirl:[117,151],advertis:126,advis:[34,61,81],affect:[18,22,62,119,120,126,139,152,155],afosr:4,after:[0,1,3,5,6,12,13,19,23,27,28,29,32,33,35,36,39,44,48,54,55,57,59,60,62,63,66,67,68,72,77,84,85,86,88,93,99,101,106,110,111,113,117,118,132,135,139,140,141,143,148,157],afterax:[0,27,44,51,77],afterfram:[1,27,76],aftergrid:67,afteritem:[3,27],afterpatch:[3,27],again:[22,40,62,66,70,77,79,83,84,93,97,102,106,121,127,152,155],against:[104,111,118,150],agenc:[4,56,148,149],agency_pref:148,agre:[12,28,39,53,131,151,154,157],agreement:48,ahmadia:[4,17,81,91],aht:134,aid:84,aim:28,aks2203:4,albada:87,alg:141,alghamdi:[4,17,81,91],algorithm:[4,7,25,32,38,39,45,52,83,89,91,92,99,103,110,121,131,133,139,141,143,154],align:[32,39,51,59,66,124,126,142],all:[0,1,4,6,11,12,13,16,20,22,23,25,27,28,29,30,32,33,35,36,39,40,41,44,45,48,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,79,80,81,83,86,87,89,91,92,93,94,96,97,98,99,101,104,105,106,109,110,111,113,114,117,118,119,121,124,126,129,130,131,132,133,135,138,139,140,141,142,143,144,149,150,151,152,154,155,157],alloc:[20,99,117,126,140],allocat:117,allot:59,allow:[4,6,13,18,22,27,28,29,32,38,39,44,45,47,50,51,53,54,58,64,66,67,70,71,73,76,77,86,91,92,93,99,101,104,105,106,110,111,113,114,117,118,119,120,121,123,124,126,131,133,139,141,142,143,144,148,152,154,156],alon:[16,51],along:[6,14,16,24,27,30,32,39,44,51,54,57,68,70,106,110,117,130,133,135,142,148,156],alpha:[51,55,99],alphabet:81,alreadi:[0,1,6,12,13,18,28,29,41,55,56,58,59,60,66,79,80,94,98,100,103,105,114,122,137,154],also:[3,4,5,6,7,8,9,11,12,16,17,18,20,22,23,24,25,28,29,30,32,33,35,36,37,38,39,41,42,43,44,47,48,51,52,53,54,55,56,57,58,59,62,63,66,67,68,70,71,72,73,76,77,79,83,85,86,89,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,139,140,141,142,143,144,146,147,148,149,150,151,152,154,155,156,157,159,160],alter:51,altern:[30,35,36,44,47,51,56,60,62,67,76,91,94,106,110,117,118,119],although:[30,51,63,67,95,96,98,110,122,128,154],alwai:[16,22,26,27,28,32,41,53,54,58,67,83,92,109,110,113,114,126,135,141,142,143,152,157],amal:[4,17,81,91],amazon:25,amazonaw:13,amdq:[97,131],ami:25,among:124,amount:[44,48,54],amplitud:[5,119],amr:[4,7,8,16,18,20,23,25,27,28,32,34,38,44,45,52,59,67,72,73,76,81,89,118,120,121,122,124,126,135,138,139,141,143,151,157],amr_1d:122,amr_2d:[121,122],amr_:[3,7],amr_celledges_show:3,amr_contour_color:3,amr_contour_show:3,amr_data_show:118,amr_level:72,amr_level_max:141,amr_levels_max:[32,110,140,141],amr_modul:[71,110,117,123,124],amrclaw:[4,5,6,12,15,16,19,20,22,23,24,28,36,38,39,41,43,44,45,46,52,55,56,57,58,60,66,67,68,71,72,73,80,91,100,106,107,110,111,130,131,133,136,137,139,142,146,147,150,151,155],amrdata:[5,22,32,110,124,126,140,141,142],amrflag:110,amrlib:117,amrnez:110,an11:54,anaconda:[51,100],anal:17,analog:[139,140],analysi:17,andi:4,angl:[16,30,47,70],ani:[3,4,5,6,8,13,16,18,19,20,22,27,28,29,32,35,36,37,45,48,50,51,54,55,57,58,61,62,64,66,67,69,71,72,73,77,81,87,88,89,91,92,93,94,96,98,100,104,106,109,110,111,117,121,123,130,133,134,135,138,139,140,142,148,157,160],anim:[12,16,18,42,51,117,124,125,144],animation_tool:[124,125],anisotrop:[6,22],anl:94,annot:[27,59],annual:24,anoth:[3,22,39,44,51,55,58,59,72,76,80,88,99,102,111,121,148,157],answer:24,anyth:[3,6,28,29,58,63,111,121],anywher:110,aoml:148,apach:13,apdq:[97,131],api:[47,121],app:[12,13,18,23,26,28,29,32,37,42,43,70,108,109,116,120,121,122,123,124,125,126,127,128,132],appar:[30,32,71],appeal:51,appear:[0,1,3,5,8,13,18,23,32,44,45,51,54,59,62,65,77,93,98,101,119,126,142,144,152],append:[5,20,32,38,39,44,51,60,77,86,98,110,118,119,130,131,141],appl:17,appli:[3,4,5,6,13,16,25,30,48,51,53,64,66,70,77,79,87,89,92,99,110,130,139,142,157],applic:[4,6,15,16,19,20,22,23,24,28,29,32,35,36,37,41,42,43,45,46,55,57,58,63,66,68,71,79,88,89,90,91,93,99,104,107,109,110,111,113,116,117,119,120,121,123,124,131,133,135,136,139,142,146,147,152,154,155,157,158],appreci:81,approach:[5,7,13,28,29,38,44,54,57,69,76,84,91,94,96,104,110,117,119,120,122,131,132,138,142,157,160],appropri:[4,5,6,13,16,24,28,45,48,49,51,55,57,59,60,64,67,68,69,71,83,86,87,88,92,94,95,96,97,98,111,123,131,134,139,148,157,160],approv:48,approxim:[6,16,25,33,48,51,70,131],april:[24,124,125,129],apt:[13,80],arbitrari:[32,59,99,113,133,142],arbitrarili:66,arc:134,arcgi:154,architectur:94,archiv:[12,21,36,51,55,111,144,150,154,156],arcminut:[70,152],arcsecond:[45,152],area:[15,22,45,99,108,119,135,136],arg:[89,98],argument:[0,1,2,3,27,30,45,47,50,51,53,77,83,84,88,89,92,96,98,99,101,104,111,121,131,133,138,139,140,148,154,157],argv:[141,143],aris:[61,81],arithmet:64,aron:[4,17,81,91],arora:87,arora_ro:87,around:[6,30,32,39,59,92,108,111,124,140,141,148,154,157],arrai:[0,3,6,15,20,22,27,30,32,33,38,44,45,47,49,53,59,77,83,84,86,87,89,91,92,93,96,97,98,99,101,103,104,105,113,114,115,119,121,124,126,131,132,133,136,139,140,141,142,143,148,152,154,157],arrang:154,arriv:[22,32,34,39,45,119,134,135],arrival_tol:32,articl:[4,17,91,144],artifici:[16,135],arxiv:52,asc:154,ascii:[18,44,53,67,83,86,93,98,119,130,139,141,143,152,158],ascii_output_format:68,ask:24,ask_us:154,aspect:[12,24,29,43,48,49,67,154],assert:[141,143],assess:[4,48,134],assign:[30,32,83,86,92,98],assist:[22,124],associ:[0,1,2,6,22,51,58,71,89,92,93,111],assum:[3,5,20,22,30,32,36,39,47,48,51,53,54,55,59,67,70,76,92,93,95,96,97,103,104,110,117,133,134,139,142,148,149,152,154,156,160],assumpt:[51,54],asteroid:4,astronom:134,atcf:[108,121,148,149],aterrel:4,atmospher:4,attach:[55,92,101],attempt:[5,8,11,20,33,35,36,62,92,98,104,111,113,127,148,154,155],attirbut:22,attr:[89,98],attribur:5,attribut:[5,7,22,30,38,44,66,70,76,78,79,83,86,89,92,94,96,98,99,110,113,118,122,130,138,139,140,142,148,154],attributeerror:77,aug:[17,122],aug_glob:97,augment:[66,132],august:[24,121,129],austin:4,author:[17,25,45,48,87,91,92,97,109],auto:[0,44,84],autom:[14,54,84,111],automat:[0,2,3,8,11,16,30,35,36,41,51,55,62,76,77,79,83,88,92,94,100,101,102,104,111,113,124,126,139,140,142,152],autonom:5,aux1:32,aux1d:157,aux:[5,6,15,20,22,27,44,53,84,91,92,93,96,98,99,101,102,113,114,119,121,131,132,136,139,140,141,142,143,157],aux_bc_low:96,aux_bc_upp:96,aux_l:[97,131],aux_out_field:44,aux_r:[97,131],aux_time_dep:99,aux_typ:[5,140,141],auxbc:[96,99,101],auxiliari:[22,84,86,92,97,99,101,131,139,141,143,157],auxillari:[92,98],auxl:131,auxr:131,auxtyp:141,avail:[0,4,5,10,12,16,22,23,29,32,39,43,44,46,48,51,58,62,66,67,73,76,78,79,83,86,91,92,93,95,97,99,102,103,104,105,106,110,120,131,132,134,139,141,142,144,148,149,152],available_format:148,available_model:148,averag:[4,6,15,17,32,39,45,48,49,53,67,97,101,114,126,131,135,136,152,154,157],avi:4,avoid:[39,51,54,59,62,67,89,93,110,113,114,118,119,126,128,130,139,142,160],awai:[28,134],awar:[48,94],awr11:17,axes1:[2,79],axes:[0,1,2,27,30,44,51,67,76,77,79,138,148,154],axescmd:[0,79],axesnam:[1,79],axessubplot:30,axi:[0,30,39,49,51,66,67,77,89,133],axxxx:92,azv:54,b0002:72,b4run:[25,125],b4step1:[15,63,157],b4step2:[15,136,157],b4step3:15,b4stepn:157,back:[13,27,29,54,55,120],backend:51,background:[2,76,121,138],backward:[5,28,30,47,59,70,92,114,115,154],bad:[106,111],bai:[66,134,156],balanc:[6,17,73,120,132,146,147],bale:17,balelevmitross02:[4,17,139,160],ball:154,band1:154,band:[51,154],bar:[13,54,148],barrier:[66,104],base:[5,6,13,18,20,21,22,28,29,30,32,33,45,47,51,52,53,54,59,60,63,64,66,67,70,73,84,86,87,89,91,92,97,98,99,101,103,104,110,112,117,120,122,126,134,139,140,141,142,143,148,154,157,160],base_subfault:30,baselin:51,basemap:148,bash:[41,51,57,58,67,71,94,106,137],bash_profil:[102,137],bashrc:[13,41,102,137],basi:[44,67],basic:[6,10,12,25,30,35,37,45,57,66,67,83,89,91,92,93,97,99,111,131,132,148,160],basin:108,bathymetri:[15,45,48,51,59,97,108,119,121,132,134,136,142,152,154],bc1:[63,104],bc1_inflow:63,bc2amr:[16,121],bc_arrai:99,bc_lower:[16,83,96,103,139,141,143],bc_upper:[16,83,96,103,139,141,143],bcn:[6,16,143,157],bcnamr:[6,16,121,139,141,157],beach:[39,66,132],beam:87,bear:[30,47],bearing_unit:47,becaus:[5,22,27,32,39,51,55,66,92,93,94,113,131,134,139],becom:[48,102,160],been:[0,1,4,5,8,9,13,14,16,18,20,21,22,24,25,27,28,32,33,34,35,36,39,42,45,48,51,52,53,54,55,60,62,64,66,67,70,73,77,79,81,84,86,92,93,97,98,101,102,103,104,106,108,110,112,113,114,116,119,120,121,122,123,124,126,127,130,131,133,139,140,142,152,154,157],befor:[1,3,4,6,14,18,28,30,32,35,36,39,40,41,44,53,54,55,56,58,59,62,63,67,71,79,83,86,92,94,99,101,106,110,111,113,114,125,129,131,134,135,139,140,142,152,154,155],before_step:99,beforefram:[1,27,121],begin:[47,59,89,93,97,103,132,148],begin_d:47,behav:44,behavior:[45,54,110,111,118,124,126],behaviour:83,behind:[39,66,135],being:[1,3,4,8,13,32,39,44,48,53,58,66,79,86,92,97,98,99,104,106,108,110,118,120,122,131,133,135,139,142,148,155,157],believ:[48,105,119,124],belki:74,belong:[77,89,94,98,101],below:[3,6,13,15,16,18,22,24,28,29,30,32,39,45,51,52,54,55,58,59,64,67,70,79,81,83,85,93,97,103,106,107,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,136,137,138,139,140,141,142,143,146,147,148,152,154,157],benchmark:48,berger:[4,6,17],bergercalhounhelzellevequ:16,bergercolella89:[6,17],bergergeorgelevequemandli11:[4,17],bergerleveque98:[4,6,7,17],bergeroliger84:[6,17],bergerrigoutsis91:[6,17],berkelei:[4,61,81],best:[3,4,16,22,26,28,41,51,53,55,56,62,69,71,76,77,92,96,108,109,110,111,121,129,131,142,145,148,152,157],besttrack:148,beta:[47,87,99,143],beta_limit:87,better:[0,6,22,32,39,44,66,67,71,72,76,99,108,110,118,119,120,123,124,126,127,142],between:[3,4,5,6,13,16,23,25,28,30,31,32,38,47,51,55,59,66,67,70,71,73,76,86,89,93,99,101,102,104,105,106,110,118,119,131,133,134,139,140,141,142,143,144,148,151,152,154,156,157],bewar:[106,154],beyond:[6,30,105,121],bgr:59,bibliographi:[4,25],bibtex:[4,55],big:92,big_earthquak:30,biggest:91,bilinear:[6,32,39,44,53,113,114,152],bin:94,binari:[5,18,41,55,61,68,81,92,93,95,118,130,139,141,154,158],binary32:[18,92],binary64:[18,92],bind:[28,51,76,84,94],bisect:[140,141],bit:[16,22,30,55,92,94,102,132],bitbucket:94,black:[3,44],blank:[3,59,148],blast:120,blob:[118,132],block:[7,30,39,59,70,72,73,83,92,101,104,111,157],blossei:4,blue:[3,11,39,44,59,66,77,133,148,154],bmatrix:132,bndlist:121,boe:4,boisest:51,bollig:4,bolliger32:4,bom:148,bomb:[62,71],book:[4,12,17,25,29,80,98,131],bool:[0,1,2,3,47,59,86,92,97,98,99,101,104,142,148,154],border:[67,157],bore:48,both:[3,16,18,28,30,33,35,36,38,39,44,48,53,56,58,63,66,67,70,72,84,92,93,94,99,100,110,111,117,118,121,124,131,132,133,135,139,140,141,143,146,152,157],bottom:[13,15,30,35,36,45,48,64,66,70,83,96,97,119,120,136,146,147],boulder:24,bound:[33,84,87,94,133,139,154],boundari:[5,7,20,25,39,51,59,63,66,70,71,84,89,97,99,103,108,114,117,121,133,139,141,143],bounding_box:[7,33],boussinesq:48,bowl:123,bowl_radial_fgmax:32,box2kml:59,box:[5,30,33,51,59,133,154],branch:[15,18,25,29,41,50,52,55,57,58,107,111,120,121,122,123,124,125,126,127,128,129,136,146,147],brew:80,brief:[4,55,132,142],briefli:160,bring:[13,51,54,67],brisa:4,brisadavi:[4,122],broad:154,broken:[19,20,28,68,70,111],brought:28,brown:[81,154],brows:[11,24,42,51,67,144,157],browser:[13,28,29,35,36,51,54,144],bsd:[4,61,81,121],buffer:[30,39,44,110,118,119,140,141,154],buffer_length:154,buffer_s:[30,70],bug:[4,8,12,22,24,41,51,64,71,77,81,116,117,118,119,121,126,127,128],build:[4,17,28,29,54,55,67,84,94,104,120,133],buildsystem:94,built:[28,29,64,73,82,91,94,96,98,110,111,146,147],bulk:[19,83,97,103,131,141,157],bull:[17,30],buoi:45,burger:[91,131,157],burgers_1d:97,burgers_1d_pi:97,busi:[61,81],butcher:99,button:[12,13,28,51,59,120],bzip2:124,c210:[17,91],c231:[17,91],c_center:89,c_centers_with_ghost:89,c_l:97,c_node:89,c_nodes_with_ghost:89,c_r:97,cach:[22,47,55,79,81,124,140],cache_dir:47,cada:87,cada_torrilhon_limit:87,cada_torrilhon_limiter_nonlinear:87,cake:74,cal:[131,157,160],calcul:[3,5,6,27,30,33,45,47,67,70,77,89,97,99,114,119,154],calculate_geometri:30,calculate_geometry_triangl:30,calhellev08:17,calhoun:[4,17,51],calhounhelzellevequ:16,call:[1,6,9,20,22,27,30,38,41,44,50,51,63,66,67,70,72,77,79,83,84,86,87,92,93,96,98,99,101,103,104,110,111,113,117,118,120,121,131,133,135,137,139,141,142,143,148,154,157],call_before_step_each_stag:99,call_setplot:77,callabl:[91,104],calucl:97,cambridg:17,came:14,camera:51,can:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,24,26,27,28,29,30,32,35,36,37,38,39,40,41,42,44,45,46,47,48,51,52,53,54,55,56,57,58,59,60,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,81,83,84,85,87,88,89,91,92,93,94,95,96,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,120,121,124,125,126,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,152,154,155,156,157,158,160],cannot:[52,58,92,126,135,148],canopi:100,capa:98,capa_index:[139,141,143],capab:154,capabili:121,capabilit:119,capabilti:121,capabl:[7,12,18,22,32,34,48,52,66,73,84,91,113,118,119,121,122,123,124,125,154,156],capac:[15,97,136,139,140,141,143],captur:[32,48,133,152],car_nam:148,care:[32,39,45,94],carefulli:[20,22,64],cartesian:[32,46,59,84,142],cartopi:148,cascad:4,cast:154,cat_nam:148,catalog:156,categor:148,categori:148,category_color:148,caus:[22,48,51,54,61,62,73,79,81,102,111,118,119,120,122,126,138,140,152,154],caut:87,caution:48,cautionari:[25,45,63,142],cautiou:48,caxi:67,cb_file:59,cb_filenam:59,cb_kwarg:154,cb_name:59,cb_xfrac:59,cb_yfrac:59,cbar:[97,154],cdot:[64,96,133],ceas:105,cell:[3,4,5,7,8,15,16,20,22,25,27,32,33,44,45,51,53,59,66,67,71,72,73,83,89,92,94,97,99,101,103,110,113,114,118,119,120,121,122,123,124,126,131,134,135,136,139,140,141,142,143,149,151,152,157,160],celledg:3,celledges_show:[3,22],cellgridintegr:113,cellgridintegrate2:113,cellsiz:[39,53,117,152],center:[4,5,27,30,32,33,39,44,51,53,59,70,83,89,96,97,103,110,121,133,135,140,141,142,148,149,152,157],centerlin:30,centers_with_ghost:89,central:[139,148,149],central_pressur:148,centroid:[30,70],certain:[14,32,45,57,66,93,110,118,133,139],certainli:94,certik:[4,81],cf2py:84,cfl:[6,89,93,99,103,113,118,139,141,142,143],cfl_desir:[99,139,141,143],cfl_max:[99,139,141,143],cfl_superbe:87,cfl_superbee_theta:87,challeng:120,chanc:81,chang:[1,6,8,13,15,16,19,20,25,28,29,30,32,40,41,50,51,52,53,54,55,58,59,62,63,64,66,67,68,71,72,73,76,79,83,84,90,92,93,101,104,105,108,109,110,111,129,131,135,136,139,140,141,142,143,146,147,152,155,157],changelog:[18,22,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],changes_to_mast:55,channel:24,chapter:[16,131,139,157],char_decomp:99,charact:47,characterist:99,charg:13,chava:142,cheaper:13,check:[6,14,15,16,20,32,35,36,40,41,50,51,52,54,55,56,58,62,67,77,80,83,84,86,91,94,98,99,101,103,104,106,107,110,114,123,133,135,136,140,141,146,147,148,154,155,156,157],check_3rd_ord_cond:99,check_diff:[104,111],check_lmm_cond:99,check_valid:86,check_valu:[104,111],checkout:[28,52,54,55,57],checkpoint:[25,44,118,119,121,123,126,139,141,143],checkpt_interv:[139,141],checkpt_styl:[118,130,139,141],checkpt_tim:[139,141],checksum:92,chen:[30,156],chile2010:[51,109,110,113,116,122,152],chile2010_adjoint:5,chile2010_fgmax:[18,32],chile2010a:[29,109],chile2010b:109,chile:[45,59,70],chile_2010:51,chile_dtopo:70,chk00006:[141,143],chk00100:118,chk:118,chkaaaaa:118,chkbbbbb:118,chknnnnn:[130,139,141,143],choic:[16,45,76,99,139,141,142,143,157],choos:[0,7,56,58,59,70,96,139,142],chose:64,chosen:[3,29,32,38,39,51,53,66,103,110,126,134,140],chri:4,chunk:92,chunksiz:92,circl:[3,47,77],circular:17,cise:17,citat:[4,55],cite:[25,55,57,129],cjvogl:4,clamshel:114,clarifi:22,clariti:38,clash:67,classic4:143,classic:[4,6,12,15,16,19,20,22,23,24,28,41,42,43,46,55,56,57,58,63,69,71,72,73,80,81,83,86,88,89,90,91,92,96,106,107,111,130,131,136,137,140,142,147,155,157],classic_1d:63,claw1:[63,104],claw1ez:63,claw:[5,6,8,11,12,13,14,15,16,18,19,20,22,24,28,30,32,33,35,36,37,38,40,41,43,44,45,47,49,50,52,54,55,57,58,59,62,63,67,69,70,71,78,83,86,88,91,92,93,94,100,102,106,107,108,109,110,111,113,114,116,117,120,121,123,131,135,136,141,142,143,145,146,147,150,151,152,154,155,157,158],claw_1dnoncon:160,claw_git_diff:[28,50,55],claw_git_statu:[28,50,55,125],claw_lib:68,claw_outdir:[62,77],claw_packag:99,claw_pkg:[139,140,141,142,143],claw_topo_download:154,claw_vers:58,clawdata2pyclaw:84,clawdata:[5,38,113,117,130,139,140,141,142,143],clawdev2013:54,clawdev:54,clawgraph:67,clawicon:54,clawlogo:54,clawpack:[1,4,5,6,7,11,16,26,28,30,32,33,34,35,36,37,38,39,41,42,44,45,46,47,48,50,51,58,59,60,61,63,66,67,69,70,71,75,76,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,101,102,103,104,105,106,109,111,112,113,114,115,116,117,118,119,130,131,133,137,139,140,141,142,144,145,148,150,152,154,155,157,158,160],clawpack_gpu:52,clawpack_src:[58,106],clawplotax:[1,2,3,27,77,121,126,138],clawplotdata:[2,3,27,44,51,77,79,86,138],clawplotfigur:[0,1,51,77,138],clawplotitem:[0,1,7,22,27,76,78,118,121,138],clawrundata:[5,44,59,122,130,139,140,141,143],clawsolut:1,clawsolv:[99,131],clawsolver1d:[83,86,89,99,103,131],clawsolver2d:[89,99],clawutil:[5,11,14,19,20,23,28,40,41,50,55,56,57,62,106,111,137,139,140,141,143,154,155],clean:[22,54,55,104,117,121],cleaner:[28,119],cleanup:120,clear:[1,2,6,18,67,79],clearer:[123,126,127],clearfigur:1,clearfram:[1,79],cleargaug:44,clearli:[44,48,51,133],clf:2,clf_each_fram:2,click:[4,12,13,18,28,51,54,111,120,129],clifford:24,clint:17,clobber:[92,118],clockwis:[32,47,70,154],clone:[12,18,23,24,42,52,54,55,58,80,94,100,109,155],close:[13,39,51,54,59,66,67,92,110,124,140,148],close_fig:59,closer:[70,141],closest:148,cloud:13,cluster:[6,17,110,140,141],clustering_cutoff:[110,140,141],cma:148,cmap:[39,51,59,66,77,133,154],cmap_dri:[39,66],cmap_land:66,cmap_sea:66,cmap_sea_dri:66,cmap_slip:30,cmap_topo:66,cmax:[51,59],cmax_dz:30,cmax_slip:30,cmdline:106,cmin:[51,59],cmin_slip:30,cmmi:4,cname:54,coars:[3,32,51,110,119,126,139,152,157],coarsen:[53,110,121,122,140,152,154],coarsen_method:53,coarser:[3,16,53,119,135,139,140,157],coarsest:[6,51,72,113,130,139],coast:[39,66,110,135,154],coastal:[48,124,134,135,142,152],coastlin:[32,51,66,124,133,142,156],code:[4,5,6,7,8,12,14,16,19,20,21,22,23,24,27,29,32,33,35,36,38,40,41,42,44,45,48,50,52,53,54,56,61,62,63,64,68,69,70,71,72,73,75,77,79,80,81,83,84,89,91,92,93,94,96,99,100,103,105,106,109,112,113,114,117,118,119,120,121,122,123,124,126,130,131,132,133,137,139,140,141,142,143,144,148,150,151,152],code_of_conduct:121,coeffici:[5,64,96,97,99,101,102,103,131,142],colella:[6,17],collabor:[51,144],collect:[12,25,26,28,30,32,70,76,83,99,144],collela:120,color:[3,30,39,51,59,66,67,76,133,138,148,154],colorado:24,colorbar:[3,39,59,66,121,124,133,154],colorbar_kwarg:121,colorbar_labels:30,colorbar_shrink:30,colorbar_ticks:30,colormap:[3,30,39,46,51,66,67,76,78,118,124,154],column:[10,30,32,44,48,60,93,97,117,133,154],column_list:30,column_map:30,com:[12,13,18,23,24,26,28,29,52,54,55,57,58,92,94,96,100,116,118,119,120,129,132],combin:[20,54,59,118,156],combinatori:111,come:[3,28,77,79,88,94,99,117,152,157],comfort:[58,96],comm_world:104,command:[0,1,2,3,11,13,14,28,40,50,51,52,55,57,58,62,69,76,77,80,83,84,86,91,94,95,99,103,104,105,106,111,131,137,138,139,140,152,154],commenc:130,comment:[5,11,18,24,49,55,120,130],commit:[25,30,50,54,55,111],common:[3,23,28,35,36,40,41,62,63,73,76,83,97,99,101,102,119,121,124,155,157],common_sourc:63,commonli:[3,67,77,79],commun:[25,51,81,101,104,106,110,121],comot:4,compact:[66,152],compactli:133,compar:[5,22,36,44,48,51,55,77,93,110,111,134,140,142,150,156,160],compare_gaug:117,comparison:52,compat:[28,30,47,51,59,70,76,92,94,102,114,115,119,120,154],compens:154,compil:[13,25,35,36,40,46,58,63,71,73,79,80,84,91,92,96,100,104,113,131,132,137],compile_librari:104,complet:[20,22,28,47,62,79,83,84,94,104,111],complevel:92,complex:[12,38,89],compliant:41,complic:[16,77,84,133,138],compon:[3,16,20,22,25,36,44,57,58,67,72,76,96,98,100,101,110,117,126,132,139,140,141,152,157],compos:[30,83],comprehens:111,compress:[30,92,154],compris:[22,91,154],comput:[3,4,5,6,13,16,17,18,27,29,30,32,33,39,44,47,51,53,58,59,60,62,68,70,76,77,79,84,86,89,91,92,93,94,99,103,106,108,110,113,114,118,119,123,126,131,135,139,141,142,143,149,152,157,160],computation:[84,99],compute_f:[86,93],compute_gauge_valu:93,compute_p:[83,86],concentr:108,concept:[25,131],concern:[22,45,140],conclus:[4,51],conda:51,condit:[5,7,20,25,61,63,73,81,82,83,84,86,93,99,107,113,114,117,121,134,139,141,142,143],conduct:121,conf:[54,55],confer:24,config:94,config_fc:155,configur:[77,83,94,154],confirm:48,conflict:[6,28,58,62,67,102,106],conform:[22,28,33,98,121,152],confus:[3,53,58,106,126,131],conjunct:[24,39,66,92,110],conlict:62,connect:[32,54,59,66,124,133],consequenti:[61,81],conserv:[4,5,6,17,93,99,101,122,132,157,160],consid:[6,39,48,58,66,84,106,137,144,154],consider:[48,83],consist:[6,18,25,32,47,51,55,59,94,105,119,131,133,142,152,157],consol:[13,93,142],consolid:117,constant:[30,32,48,59,64,94,97,131,132,133,135,142,154,157],constant_storm_modul:117,constrain:110,constraint:[39,44,133,140,160],construc:59,construct:[22,30,32,53,83,89,104,148,149,152],construct_function_handl:104,constructor:101,consult:102,contact:[12,88,91,100],contain:[1,3,5,12,13,20,23,25,26,30,32,33,35,36,37,40,42,43,44,45,47,49,50,51,52,53,54,55,59,60,62,63,66,67,68,72,73,77,79,80,83,84,86,87,89,91,92,94,96,97,98,99,101,103,104,105,106,110,111,113,114,121,122,129,131,133,138,139,142,144,148,152,154,155,157],containing_rect:30,contains:29,containt:130,contamin:139,contan:51,content:[4,6,23,51,55,73,84,91,142,152,157,158],context:[27,51,157],contigu:[72,92,101,133],continent:[7,66],contingu:22,continu:[13,22,28,30,49,54,81,105,131,139,160],contour:[3,30,44,51,53,67,105,138,154],contour_color:3,contour_kwarg:[3,154],contour_level:[3,154],contour_max:3,contour_min:3,contour_nlevel:3,contour_show:3,contourf:[51,76],contract:[4,61,81],contrast:[53,133],contribut:[4,24,25,57,81,84,91,96,99,108,111],contributor:[4,24,61,91],control:[6,7,23,25,32,41,44,54,58,60,67,79,82,87,89,91,92,93,94,96,110,119,124,132,142],conveni:[1,27,32,35,36,39,44,51,79,86,88,91,93,95,103,157,160],convens:152,convent:[3,22,30,46,53,70,97,152],converg:[66,76],convers:[19,25,84,92,110,133,152,156],convert43to46:19,convert46to50:20,convert:[3,22,25,30,33,42,47,51,58,59,62,70,73,84,91,96,104,105,121,124,139,140,148,152,156],convert_fort_double_to_float:104,convert_readm:11,convert_to_standard_unit:30,convex:[7,32],coodin:30,coord:[47,51],coordin:[4,23,30,32,47,72,76,83,89,93,94,103,110,133,142,154],coordinate_specif:[30,70],coordinate_system:[15,60,136,142],coorind:154,copi:[6,14,15,16,35,36,44,51,54,55,58,67,83,86,96,101,107,108,109,110,114,118,121,125,135,136,140,144,146,147,152,157],copyq1:63,copyright:[61,81],core:[4,12,73,111,121],corioli:[48,142,146,147],coriolis_forc:[48,142],corner:[3,30,32,53,70,72,89,133,139,141,143,152,154],correct:[20,28,41,54,55,63,64,67,77,83,89,94,98,104,113,114,118,135,139,141,142,143],correctli:[28,32,84,90,117,142],correspond:[3,6,12,23,25,27,30,44,47,48,53,54,55,59,67,70,77,83,87,89,92,93,96,98,101,110,111,131,133,134,139,140,141,142,143,148,152,156,157],correspondingli:32,cos:[39,47,49,66,83,96],cosin:83,cost:[13,99],costli:132,could:[5,12,13,27,32,35,36,39,44,53,60,66,70,71,77,79,83,89,93,101,102,106,117,126,133,135,140,141,142,143,154,157],council:4,count:83,count_from_zero:83,counter:[104,154],counterclockwis:70,coupl:[119,160],courant:[4,6,110,120,139,140,141,143],cours:[13,26,32,44,46,60,70,94,95,103,105,108,142,152],cover:[6,7,27,28,30,32,38,39,51,59,66,70,110,114,119,135,141,152],coverag:[91,111],covert:11,covid:24,cparam:[83,101],cpp:52,cpu:[13,52,118,121,123,151],crash:[118,139,140],creat:[0,1,2,3,5,6,7,18,19,24,25,28,30,32,33,35,36,38,40,42,44,45,46,50,52,54,58,59,62,70,72,76,77,79,84,85,88,89,91,92,95,98,101,102,103,104,110,111,113,117,118,119,121,122,123,126,133,138,139,140,141,144,145,148,154,156,157,158],create_dtopo_xi:[30,70],create_dtopographi:[30,70],create_topo_func:154,creation:[39,77,91,113],criteria:[6,7,22,25,32,66,101],criterion:[32,110,141],critic:[51,93,131],crop:[53,154],cross:28,crucial:[51,152],csdm:24,cse:24,csh:94,csv:[30,70,121],csvfault:[30,70],ctrl:[29,77],cube:67,cultu:66,cumul:121,current:[3,5,13,14,20,22,24,27,28,29,30,32,38,39,41,44,45,48,53,54,55,57,58,59,60,67,68,72,77,79,89,92,93,94,99,101,104,106,110,111,118,120,121,130,134,138,139,140,141,142,143,148,149,152,154,156],current_data:[0,3,25,44,76,77],curv:[3,44,76,133],custom:[0,13,16,20,22,25,63,67,73,76,84,90,96,135],custom_bc:96,customari:93,cut:140,cutoff:[6,141],cvf:55,cvs:51,cxx:94,cyber:17,cygwin:86,cython:94,dai:[6,13,51,142],dalcin:81,dam:[51,135],dam_break:132,damag:[6,61,81],damiansra:96,dark:133,darker:51,darryl:17,dart:45,dash:[3,94],daspect:67,dat:[30,148],data:[0,1,3,5,25,27,30,32,35,36,38,39,40,42,44,45,46,47,53,54,59,60,61,62,66,67,76,77,78,79,81,83,86,89,92,93,95,97,98,99,101,104,107,108,109,110,113,115,116,118,119,121,122,123,124,126,131,133,134,140,141,143,148,151,153,158],data_break:[39,66,154],data_fil:33,data_limit:[39,66],data_storm:148,data_typ:104,databas:[13,30,70,104,108,121,152],datadir:118,dataset:[152,154,156],date:[5,28,40,47,51,54,55,62,77,148,155],date_tim:47,datetiem:148,datetim:[47,148],datum:[47,48,97,134,142,156],dave:30,davi:[4,17],david:[4,17,81,91,99],davis2018:[5,17],davisleveque2016:[5,17],davisleveque2018:[5,17],dawson:17,daylight:59,dcp:59,deal:[30,48,76,93,94,101,148,154],dealt:[32,39],debug:[7,18,41,62,72,76,93,101,106,111,139,141],debugg:77,decemb:[18,128,129],decid:[83,99],decim:[47,59],decimc:148,decis:51,declar:[20,22,101,126,157],decompos:[72,131,160],decomposit:139,decor:104,decoupl:54,decreas:[44,135,152],deduc:152,deep:[5,66],deeper:[133,142,152],deepli:103,def:[0,1,3,44,51,66,77,83,89,93,96,99,141,143,148],default_tfluct:99,defenc:4,defens:4,defin:[0,1,3,5,6,7,22,27,30,32,38,39,41,51,59,60,62,66,67,70,77,79,83,86,89,95,96,98,99,101,103,104,110,113,121,126,131,141,143,148,152,154,155,157,160],definit:[30,67,83,110,116],deform:[17,30,33,45,70,156],deg2dm:59,degener:133,degre:[30,47,51,59,70],delet:[20,28,58],delimit:30,delin:142,delta:[87,89,96,99,131,154,157,160],delta_h:97,delta_hu:97,delta_i:154,delta_limit:154,delta_x:154,dem:[32,45,53,59,121,152,154,156],demo:94,demonstr:[12,25,88,94],denot:[6,22,44,53,131,154],dens:149,densiti:[86,93,97,101,103,140,141,157],depart:[4,148],depdend:87,depend:[3,13,16,28,29,30,32,35,36,40,41,46,48,51,62,64,67,70,77,82,92,97,98,99,104,106,110,121,135,140,142,154,155,157,160],deprec:[7,18,30,34,54,58,117,121,142,152,154],depress:32,depth:[4,5,16,17,22,30,32,33,39,44,45,48,64,70,76,78,132,134,135,142,152],deriv:[61,70,81,86,90,91,101,111],describ:[3,4,5,6,7,13,14,16,18,19,26,28,30,31,32,35,36,38,39,44,46,47,48,51,52,54,55,57,59,60,62,63,66,67,70,72,73,76,77,78,89,91,92,98,104,108,110,111,119,122,123,131,133,134,138,139,140,142,148,149,152,154,156,157,160],descript:[3,4,6,9,22,23,25,30,59,67,70,73,76,91,92,104,108,110,131,132,142,148,152,160],design:[4,27,28,51,81,83,103,133,156],desir:[0,1,2,3,6,7,16,22,25,26,30,32,33,39,42,44,55,58,59,60,66,70,75,76,77,79,83,84,86,93,98,99,107,119,121,124,135,137,139,140,141,143,148,152,154,155],desktop:94,destin:51,detail:[4,5,10,16,18,22,23,25,26,28,29,30,32,35,36,38,41,46,48,51,54,57,58,61,62,66,67,70,73,77,81,86,87,88,89,91,92,93,94,95,96,97,99,109,110,111,114,119,121,126,131,133,138,139,142,144,148,152,155,156,157,160],detect:[51,62,92,100,104,155],deterimin:[142,154],determin:[3,5,6,30,32,39,44,45,48,50,51,54,59,70,77,87,89,92,97,101,106,110,114,118,119,130,133,134,138,139,140,142,154,157],determine_topo_typ:154,dev:[18,24,28,54,55,94,121,122,127,128,129],develop:[4,6,7,12,13,18,22,23,48,52,54,57,58,61,66,67,76,80,81,84,91,96,99,100,106,108,111,121,122,124,126,131,134,135,141],dict:[30,86,92,97,98,101,148,154],dictionari:[0,1,2,3,30,44,60,77,83,86,92,97,98,101,103,106,148,152,154],dicuss:30,did:[121,126,133,152],didn:116,died:113,diff:[18,50,55,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],differ:[1,3,6,7,12,15,16,22,28,30,31,35,36,39,44,46,48,50,53,57,59,62,64,66,67,70,71,76,79,83,84,86,88,89,91,92,97,99,104,105,106,107,110,111,117,118,119,120,121,124,126,127,131,134,135,136,137,139,140,141,142,146,147,152,154,155,156,157,160],differenti:[17,30],difficult:44,difficulti:[100,102,106],diffus:96,digit:[32,39,53,59,60,77,119,120,121,154],dike:[39,66,124],dim:[96,97,99],dimens:[5,6,7,16,20,22,25,44,47,53,59,67,83,84,86,92,94,96,97,98,101,103,110,121,124,131,139,140,141,143,154,157],dimension:[3,7,8,17,22,25,30,32,35,36,44,48,52,67,89,96,117,118,120,123,141,142,143,154,157],dimensional_split:[89,117,139,141,143],dip:[30,70],dir:[55,94,158],direct:[6,8,16,22,30,32,35,36,44,47,51,55,59,61,62,67,70,71,77,81,86,96,103,110,120,131,139,140,142,154],directli:[8,18,19,23,32,48,57,67,70,77,79,83,84,87,91,101,104,106,121,154,158],directori:[1,3,5,6,11,12,13,14,15,16,19,20,22,23,25,28,29,31,32,35,36,37,40,42,43,44,45,47,50,51,54,55,57,59,63,67,68,71,75,76,79,86,88,89,91,92,93,96,103,106,107,108,110,111,113,118,119,120,121,123,130,131,135,136,137,138,139,140,144,146,147,150,151,152,155,157,158],directorti:108,disabl:[49,100,142],disable_petsc:104,discard:[32,99],disclaim:[61,81],discontinu:[4,99,160],discov:64,discoveri:111,discret:99,discrib:4,discuss:[5,24,28,30,48,53,66,70,92,103,105,106,110,119,121,131,142,160],disk:[13,44,83,92,93,111,119],dispers:48,displac:[30,45,48,70,135,142,156],displai:[1,13,35,36,40,44,51,59,77,93,111,142],display_format:[44,60],display_landfall_tim:142,dist:55,dist_latlong2met:47,dist_meters2latlong:47,distanc:[30,47,51,70,142,152,154],distant:[108,110],distinct:[44,119],distinguish:39,distribut:[4,12,13,29,30,54,61,70,73,81,99,105,124],disturb:51,distutil:84,divid:[110,139],divis:[4,51],dlgeorg:4,dms2decim:47,dnetcdf:[41,152],doc:[18,23,24,28,30,51,55,87,104,105,106,120,121,122,123,124,125,126,127,128,145],docker:[18,25,55,56,120,121,122,123,124,125,126,127,128,159],docker_disk:29,docker_imag:55,dockerfile_v5:29,dockerhub:[29,55],dockeril:29,docstr:[84,88,111],doctest:89,documen:54,document:[0,1,2,3,6,7,18,21,22,23,24,25,28,29,32,45,48,53,58,61,70,76,77,78,79,81,87,89,92,93,94,95,99,101,104,106,114,127,128,129,138,141,158,159],dodsc:[39,66],doe:[4,5,11,16,18,20,27,28,39,40,48,51,53,54,58,67,73,77,80,89,98,101,104,110,111,114,119,123,126,130,131,132,135,148,154,155,157],doesn:[28,32,58,63,101],doflag:110,doi:[4,17,52,55,57,124,125,126,127,128,129],doing:[6,11,18,19,25,28,33,39,44,48,50,52,54,58,63,77,79,89,91,110,111,118,119,120,121],domain:[5,6,16,17,18,33,38,39,48,51,54,59,70,72,82,83,84,86,94,96,98,101,108,110,140,141,143,152],don:[13,27,28,54,55,77,93,94,100,111,141,155],done:[1,6,7,8,11,13,16,19,20,28,35,36,39,44,46,51,53,54,56,59,62,66,67,70,76,77,79,83,87,88,91,104,110,114,118,119,123,130,131,133,138,140,142,151,154,155,156],donna:[4,17],donnabois:4,donor:[139,141,143],dontflag:110,dot:[40,44,51,58,59,62,155],doubl:[67,84,89,104,131,140],down:[13,30,93,118,148,152,154],download:[12,13,28,29,30,36,37,39,45,51,55,57,58,68,88,94,100,121,122,129,150,154,155,156],downward:70,doxygen:[6,7,25,120],dpc:59,dpi:[51,59],dpng:67,dprint:[140,141],dq_src:[96,99],dqdt:99,draft:55,drag:142,drag_law:142,draw:3,drawback:106,drawcontourlin:67,drawn:[30,51,138],driver:[20,63],drop:[13,54,80,124,126,135,139],dry:[16,17,25,32,45,97,124,127,132,135],dry_point:39,dry_points_sum:39,dry_toler:97,ds824:148,dst:59,dt_check:32,dt_initi:[113,139,141,142,143],dt_max:[139,141,143],dt_max_dtopo:[113,142],dt_variabl:[139,141,143],dtdtopo:116,dtdx1d:115,dtdx:87,dtdy1d:115,dtfe:99,dtopo2kml:59,dtopo:[25,30,33,45,48,53,59,70,106,113,115,116,124,126,135,142,152,154,156],dtopo_data:[113,142],dtopo_file_nam:59,dtopo_modul:113,dtopo_path:33,dtopo_typ:[30,33,59,70],dtopofil:[59,70,142],dtopographi:[30,70],dtopotool:[45,70,115,116,118,121,122,152,153],dtopotools_exampl:[30,70,109],dtopotyp:[142,152],due:[17,24,30,39,47,70,111,120,121,126,135,155],dummi:[84,99,157],dump:[18,72,139],dumpgaug:117,duplic:[77,116,130],durat:[30,126,134],dure:[5,22,32,39,44,59,70,73,113,134,135,141,142,143,152],dxc:84,dyc:84,dylib:51,dynam:[6,20,30,48,70,73,140],dynamic_slip:[30,122],dz_at_t:30,dz_interv:30,dz_max:30,e10:32,e15:44,e26:44,e68:[4,17],e_format_bst:148,e_l:97,e_r:97,each:[1,2,3,5,6,7,12,16,18,22,30,32,34,44,47,51,53,54,55,59,60,63,66,67,70,71,72,75,76,77,79,83,84,87,89,92,93,94,96,97,98,99,101,103,110,111,113,114,118,119,121,122,124,130,131,132,133,135,138,139,140,141,142,143,148,151,152,154,156,160],each_fram:44,each_gaug:44,ear:4,earli:[6,20,135],earlier:[5,20,22,30,32,38,53,70,83,96,113,120,152,154],earth:[25,39,45,52,59,66,70,117,119,127,133,142],earth_radiu:142,earthquak:[25,30,45,48,109,135,142,149,152],eas:59,easi:[4,6,11,29,38,58,67,84,93,94,95,133,144,157],easier:[58,76,119,121,133,157],easiest:[19,28,41,73,77,79,110,157],easili:[3,13,28,32,51,54,67,77,84,89,100,104,111,124,144,148],east:[13,152],easy_instal:94,ec2:25,echo:106,ecosystem:[4,17],edebug:[140,141],edg:[3,6,15,16,27,30,32,33,38,59,70,89,97,131,133,136,140,141,143,157],edgecolor:133,edit:[51,54,55,58,79],editabl:28,editor:72,edu:[30,51,68,92,123],effect:[44,51,64,67,89,93,110,111,134,142,154],effici:[48,52,81,91,92,93,101,110,133,140],effort:92,efix:[97,132],egg:[29,58],eigenvalu:5,eigenvector:[5,131,160],either:[12,16,18,20,30,32,39,45,46,51,60,62,66,67,70,77,79,83,89,91,92,93,99,104,106,110,111,117,118,119,121,131,133,135,140,142,148,152,154,157,160],elast:[13,70],element:[0,3,22,59,97,99,101,139,140,141,142],elementwis:93,elev:[22,25,32,39,45,46,48,51,53,59,76,107,110,124,133,134,142,152,154,156],elif:[141,143],elimin:[8,22,66,84,106,121,142],ell:131,els:[27,28,58,66,101,121,133,135,143],elsewher:[5,24,39,91,133],emerg:4,emmanuel:142,emmett:[17,81,91],empir:[48,64],empti:[12,44,98,101,104,106,139,148,154],empyclaw:96,enabl:[89,93,100,104,119],encapsul:48,encount:[40,51,77,100,102],encourag:67,end:[13,29,30,32,44,47,51,55,59,86,93,97,103,105,108,110,118,119,121,130,132,133,141,143,148,151],end_dat:47,enddo:157,endian:92,endors:[61,81],energi:[93,97],enforc:133,eng:148,engin:[17,51],enhanc:[64,81,121],enlarg:119,enough:[5,54,66,140,149,151,152],ensembl:148,ensur:[35,36,37,67,108],enter:[67,92,94,100],enthought:[100,102],entir:[5,6,38,48,51,59,66,70,71,73,83,93,98,108,110,114,133,154],entireti:86,entri:[51,60,83,93,104,148],entropi:[97,132],enumer:[89,99],environ:[14,25,28,35,36,37,40,50,51,54,57,58,67,69,71,73,95,102,104,106,119,154,155],envis:16,epd:102,eprint:[140,141],epsg:51,epsilon:87,eqn:160,eqnarrai:103,equal:[16,30,32,33,51,70,94,96,110,130,133,139,141,143,152,154],equat:[4,5,16,17,25,35,36,45,48,60,64,77,82,83,84,86,91,92,93,96,99,100,101,114,117,119,121,122,131,139,141,142,143,152,157,160],equiv:160,equival:[6,18,44,52,53,59,60,123,152],err:141,errest:110,erron:[30,70],error:[5,16,20,35,36,40,51,58,67,71,77,86,91,92,93,104,110,111,122,126,140,141,148,155],escap:[110,141],escienc:13,especi:[28,51,84,96],esri:[53,152],essenti:[5,53,67,99,142,152],est:141,establis:121,establish:4,estim:[5,64,110,140,142],estimat:[5,141],eta:[25,30,32,39,44,45,110,117,124,134],eta_init:135,eta_tild:32,etc:[0,2,16,19,20,24,27,28,32,33,48,51,54,57,59,63,72,76,84,131,138,139,142,148,157],etopo1:[121,133,134,152,154,156],etopo_sample_2min:154,etopotool:[121,152],euler:[60,91,99,115,117,120,122,131,157],euler_1d_pi:97,euler_2d:[35,37,91,96],euler_exact_1d:97,euler_hll_1d:97,euler_hllc_1d:97,euler_roe_1d:97,evalu:[17,27,30,64,83,89,99,154,157],even:[39,48,51,58,61,70,81,104,110,124,140,141,152,155,157],evenli:[51,93],event:[33,45,48,59,61,70,81,134,135,139],event_tim:59,eventu:[13,45,124],ever:[138,142],everi:[6,12,28,32,44,60,62,63,83,86,88,92,93,101,110,111,119,120,131,135,137,139,141,143,148,152,154,157],everyth:[32,55,58,71,94,103,104,111,121],everywher:[38,39,47,64,101,135],evolv:[22,83,86,99],evolve_to_tim:[83,99],exact:97,exactli:[28,33,50,52,101,133,139],exam:77,examin:[16,18,35,36,44,66,106],exampl:[0,1,2,3,4,5,6,7,8,9,13,14,16,18,20,22,24,27,28,29,30,38,40,41,43,45,47,53,54,55,56,57,59,60,62,63,64,68,70,71,72,76,77,79,81,82,83,84,86,89,90,92,93,96,97,98,99,100,103,104,105,106,108,109,110,111,113,115,116,117,118,119,120,121,122,123,124,125,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,151,152,154,155,156,157],exce:[32,51,110,140],exceed:[110,121],except:[22,27,30,39,92,97,104,124,139,142,148,152],excerpt:94,exclud:63,exclude_modul:63,exclude_sourc:63,exe:[35,36,86],exec:[0,1,3,77],execut:[0,1,3,14,16,19,27,32,35,36,44,59,67,77,79,86,88,94,106,111,131,137,155],exemplari:[61,81],exercis:[29,45,109,111],exist:[1,21,30,31,34,35,36,51,58,62,66,67,77,89,93,96,98,101,104,114,120,121,135,148,154,156],exit:[29,77,94,100],exp:[83,93,103],expand:[26,39,51,59],expect:[32,97,103,104,105,111,121,122,124,126,141,142,143,148],expens:[99,110,114,119],experi:[24,48,99],experiment:[5,81],expert:48,explain:[13,32,48,66,126,139,144],explan:28,explicit:[104,140],explicitli:[32,63,67,91,126,139,155,160],explor:[4,59,77,79],expon:64,expos:[13,73],express:[4,30,61,81,100,133],extend:[8,16,22,39,59,66,67,89,121,133,135,142,152,154,160],extens:[4,17,22,24,28,30,48,51,54,58,63,67,84,91,92,104,119,120,126,139,150,154,160],extent:[38,39,48,56,59,64,66,67,83,89,101,113,126,133,142,152,154],extra:[3,51,132],extra_fil:54,extract:[51,55,92,148,154,156],extran:117,extrap:[16,96,103,139,141],extrapol:[5,7,16,22,96,103,121,139,140,141,143],extrem:[51,102],extropl:16,eye:[148,149],eye_loc:148,f2py:[58,73,84,91,96,104,131],f2py_flag:104,f2s:59,f49620:4,f77:[41,155],f90:[5,9,15,20,31,32,39,44,52,62,63,71,80,96,107,110,113,117,119,121,122,123,124,126,127,131,132,135,136,146,147,152,155,157],f95:104,f_file_nam:[86,93],f_path:86,facecolor:[2,77,138],facilit:[44,60,91,111,117,119,124,144,148],fact:[51,92,101,105,110,135],factor:[6,51,140,142,151,154],faculti:30,fade:77,fail:[28,92,94,104,111,117,148],failur:[111,122,135],fairli:[16,48,119],fall:[134,142],fals:[0,1,2,3,5,18,30,39,48,49,50,51,59,66,86,89,92,97,98,99,101,104,118,119,124,130,132,139,140,141,142,143,148,154],famili:[89,99,141,143],faq:[13,25,76],far:[16,18,38,42,66,76,122,124,126],farther:66,fashion:130,faster:[123,124,126,154],fastest:[92,100],fault:[17,25,30,45,109,121,128,152,156],fault_plan:30,favor:[117,121,140,154],favorit:76,fbound:41,fc02:4,fcompil:155,fdefault:104,featur:[18,22,25,28,32,39,51,54,67,77,84,110,111,116,118,119,121,126,129,142,148,152],februari:[24,120,126,127,129],feet:[134,156],fellowship:4,fetch:[13,47],fetch_noaa_tide_data:47,fetch_topo_url:154,few:[6,12,13,22,26,29,36,48,54,66,67,84,99,103,105,110,111,124,134,150,152,157],fewer:[66,110,154],ff0000:[3,59],ff9999:138,ffff00:77,fflag:[28,40,62,68,71,84,104,152],ffpe:41,fg02:4,fg03:4,fg06:4,fg1:32,fg_maxnum_fgrid:32,fg_num_val:32,fgmax0001:32,fgmax0002:32,fgmax2kml:[59,124],fgmax:[33,38,45,59,71,114,116,119,120,124,125,142],fgmax_data:[32,142],fgmax_fil:142,fgmax_grid:[32,33,59,124],fgmax_interp:[32,126],fgmax_interpol:32,fgmax_interpolate0:32,fgmax_modul:32,fgmax_pts_topostyl:66,fgmax_tool:[32,116,124],fgmax_valu:32,fgmaxgrid:[32,33],fgno:[32,33],fgout2kml:59,fgout:[18,59],fgout_grid:59,fid:33,field:[18,44,59,96,98,101,119,121,148,149],fig:[59,133],fig_kwarg:[30,154],fignam:[1,79],figno:[1,2,44,51,77,79,138],figsiz:[2,39,66,77,133,138],figur:[0,1,2,4,13,18,30,35,36,39,42,44,53,59,66,67,76,79,98,106,131,133,138,154],file1info:142,file2info:142,file:[1,5,6,7,8,9,11,12,14,15,18,19,20,22,23,25,27,28,30,33,35,36,38,40,41,42,44,45,46,48,50,52,58,59,60,62,66,68,70,72,73,76,78,81,84,86,88,89,91,92,93,94,95,96,98,101,102,104,106,107,108,110,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,134,135,136,137,138,139,140,141,143,145,146,147,148,149,151,154,155,156,158],file_format:[18,44,92,98,148],file_prefix:[18,92,98],file_prefix_p:86,fileio:72,filenam:[18,31,51,117,154],fill:[0,3,4,6,16,24,51,66,89,92,101,108,119,135,139,148,151,154,157],fill_between:3,fill_mwr:148,fill_rad_w_other_sourc:148,fill_topo:154,fill_valu:[92,154],fill_var2:3,fill_wher:3,filpatch:[9,39,119,123,126],filter:[92,154],filter_region:154,filval:39,find:[1,3,4,6,12,24,27,28,29,30,47,51,58,62,68,70,73,76,81,88,96,101,102,104,106,108,121,148,155],fine:[3,32,33,39,54,69,73,91,96,110,119,126,133,135,139,140,142,152,157],finer:[3,7,32,51,110,113,114,133,139,140],finest:[3,32,39,44,121,151,154],finish:[13,77,83],finit:[4,17,32,42,53,59,66,67,70,99,124,133,151,152,157],finlin:104,first:[1,3,5,13,14,19,20,22,28,30,32,35,36,37,38,39,51,54,55,58,59,62,66,67,77,79,83,84,89,92,93,94,96,99,100,101,103,104,106,108,110,113,117,122,131,132,133,135,139,141,142,148,150,152,154,160],first_test:35,fist:66,fit:[61,81],fix:[6,18,19,20,22,25,33,38,45,54,55,59,60,62,66,81,92,97,113,114,115,116,117,118,119,120,122,123,124,125,126,127,128,132,139,141,143,154],fix_links_top_level:54,fixedgrid:[18,142],flag2refin:[5,7,22,140,141],flag2refine_tol:[5,110,140,141],flag:[7,12,13,22,25,28,29,38,40,41,45,52,58,68,71,84,102,104,106,117,122,126,141,142],flag_richardson:[5,110,118,140,141],flag_richardson_tol:[5,110,140,141],flagregion:[7,25,66,110,124,126,133,140,142],flagregiondata:[38,124],flask_loc:54,flat:70,flavor:[12,21,92],fletcher32:92,flexibl:[22,30,59,84,117,120,131,133,140],float32:18,float64:18,flood:[51,66,135],floor:[30,45,70],flow:[4,16,17,18,23,32,33,45,46,48,73,91,108,124,131,139,142,152,157],flowchart:[6,7,25],fluctuat:[97,99,160],fluid:[32,48,60,134],flush:118,flux2:84,flux2_dimsplit:117,flux3_dimsplit:117,flux:[5,17,32,89,97,99,131,139,160],fly:25,fmt:3,fname:[39,59,126,133,141,142,143],fname_fgmax_mask:66,fname_force_dry_init:39,focu:[4,45],fold:16,folder:51,follow:[0,2,3,4,5,6,13,16,18,19,23,24,28,29,30,32,35,36,37,39,44,46,51,53,54,55,56,58,61,66,67,68,70,72,77,78,80,81,83,84,85,88,89,92,93,94,96,97,98,100,101,103,104,106,111,121,126,130,131,133,137,138,139,140,142,148,150,151,152,155,157,159],fontsiz:77,foot:70,fopenmp:[41,71,104],forbidden:110,forbiddn:140,forc:[22,25,40,45,62,66,104,110,124,132,135,140,142,149,154,155],force_dri:[39,59,124],force_dry_arrai:66,force_dry_init:[45,124],force_dry_init_topo:39,force_dry_list:39,forcedri:39,forecast:148,forestclaw:[106,117],forget:155,fork:[24,54,55],form:[0,2,3,4,5,6,8,12,19,20,22,24,28,29,30,32,35,36,38,42,43,44,47,51,55,60,61,64,70,72,81,84,93,97,99,103,104,110,114,121,122,123,124,130,131,133,139,140,141,142,146,152,154,157,160],format:[1,3,5,13,14,18,25,30,35,36,39,44,45,46,48,49,51,53,59,60,62,66,67,68,70,76,77,83,86,92,93,95,96,98,104,108,118,119,121,124,126,139,142,148,149,154,156,158],format_str:44,former:[77,157],formerli:117,formul:[4,5,48,64,131,139],formula:[64,135],fort:[1,8,18,27,32,44,67,68,76,92,98,114,118,119,120,130,139,140,141,143,151,158],fortfil:[35,36],fortran:[6,9,11,13,14,18,20,23,27,28,30,32,33,35,44,45,46,53,56,58,62,63,64,71,72,73,76,79,81,83,84,86,89,91,92,94,96,97,99,100,101,104,106,117,118,119,121,122,123,131,132,137,140,141,142,143,148,150,151,152],fortran_modul:101,fortran_src_wrapp:84,forward:[5,60,99,110,122,157],found:[1,4,5,6,11,12,13,16,22,24,27,29,32,35,36,40,42,44,47,48,50,54,59,62,63,75,77,78,79,83,87,94,98,102,104,106,108,111,118,121,130,134,138,148,154,155],founder:4,four:[24,89,110,111],fourth:[32,53],fpe0:41,frac:[64,97,103,160],fraction:[6,13,30,110,139,157,160],fragil:101,fragment:3,frame0000:67,frame0005fig1:51,frame0005fig1_tmp:51,frame:[1,2,3,18,27,44,51,67,68,72,76,77,79,83,86,90,92,94,98,100,104,119,130,138,141,143,144],framecount:104,framenam:67,frameno:[1,3,27],framesoln_dict:1,frametool:[1,27,79,124],framework:[4,81,84,118,119],free:[13,51,62,70,81,85,96,100,102],frequenc:[60,70,99],frequent:[5,18,20,27,102,118],friction:[25,45,48,142,146,147],friction_depth:[64,142],friction_forc:142,friction_modul:117,friedemann:87,from:[0,1,3,4,5,6,7,12,14,15,16,17,18,23,26,27,29,32,34,35,36,38,43,44,45,48,51,52,53,55,56,57,58,60,61,62,63,67,69,70,72,76,77,81,82,83,85,86,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,117,118,119,121,124,125,126,129,130,131,132,134,135,136,139,140,141,142,143,146,147,148,149,150,152,155,156,157,158],frommm:87,front:[25,32,38,39,45,67,98,104,133],fset:101,fstr:67,ftrapuv:41,fuca:133,fuction:39,full:[5,6,14,18,55,57,58,59,77,86,93,99,103,137,152,157],fulli:[6,48,51,52,120,124,131,142,148,149],fun:104,func:[104,148],function_nam:104,fund:[25,56,91],funrol:104,further:[6,16,18,25,32,41,48,59,62,67,91,105,110,111,140],furthermor:[51,103],futur:[13,22,25,26,35,36,39,48,53,59,64,83,99,105,118,119,121,124,140,148,152],fvmbook:[12,42],fvmhp:[4,12,16,17,25,73,131,139,157,160],fwave:[89,97,99,131],g77:102,gain:92,galerkin:99,galleri:[12,25,35,36,37,42,55,75,76,88,91,105,111,116,120,144,150,157],gallery_classic_amrclaw:[8,35],gallery_fvmbook:17,gallery_geoclaw:[32,45],gamma1:97,gamma:[64,97],gap:154,garret:142,gas:[6,97],gaug:[7,18,25,32,45,59,89,90,101,108,113,117,118,119,120,121,124,130,134,141],gauge00001:[44,60,119],gauge_coord:89,gauge_data:101,gauge_dir_nam:89,gauge_fil:89,gauge_file_nam:89,gauge_id:44,gaugedata:[44,60,141],gaugeno:[44,60,141],gauges2kml:59,gauges_modul:[44,117,119],gaugesolut:44,gaugetool:[44,117],gaugexxxxx:[44,119,130],gauss_pt:30,gaussian:[5,83,103,143],gave:121,gca:[39,49,66],gcc:[94,100],gcs:51,gdal_data:51,gdal_test:51,ge_xlim:51,ge_ylim:51,gear:13,gen_vari:[104,111],gener:[0,1,2,3,4,5,6,7,9,11,13,14,16,17,19,20,24,25,28,29,32,38,39,40,41,45,48,51,53,55,57,60,62,63,64,70,71,72,76,77,78,79,81,84,85,87,89,94,95,96,98,99,100,103,104,106,108,110,113,117,119,130,133,134,137,139,140,144,149,151,152,157,158],generate_2d_coordin:[39,66,154],generate_2d_topo:154,geo:[45,64],geo_data:[60,142],geo_gpu_pap:52,geoclaw:[4,7,12,17,23,24,28,30,32,33,34,36,38,41,43,44,52,53,55,56,57,58,59,60,64,66,68,70,73,76,80,91,100,106,108,109,111,130,131,132,134,135,137,139,140,148,149,150,151,152,153,154,155,156,157],geoclaw_modul:117,geoclaw_riemann_util:120,geoclawdev:54,geograph:51,geohazard:48,geol:30,geolib:[68,113,117],geom:[89,101],geometr:157,geometri:[25,30,70,91,92,96,98,101,117],geophi:17,geophys:[4,16,17,23,45,48,73,139],geoplot:[49,51,78],georefer:51,georeferenc:51,georg:[4,17,30],geoscientist:48,geospati:51,geotiff:127,geq0:66,get:[0,10,13,24,28,32,40,45,51,53,54,56,57,58,62,63,66,76,80,83,84,89,92,93,94,100,102,103,104,105,108,109,111,120,131,133,140,148,154,155],get_aux_glob:101,get_auxbc_from_aux:101,get_cmap:77,get_count:104,get_dim_attribut:89,get_dt:99,get_dt_new:99,get_q_glob:101,get_qbc_from_q:101,get_remote_fil:[124,154],get_topo:154,getax:1,getcwd:77,getfigur:1,getfram:[1,3,79],getgaug:44,gethandl:[0,2,3],getitem:1,getlogg:93,getsitepackag:106,getusersitepackag:106,gfortran:[13,58,71,80,82,102,137,155],gfortranbinari:100,ghamdi:4,ghost:[7,16,71,72,89,92,99,101,119,126,139,141,143,151,157,160],gica2937:30,gigabyt:152,git:[12,13,23,24,25,26,29,52,55,58,91,100,111,123],git_statu:50,github:[12,15,18,22,23,24,25,26,29,52,54,57,58,88,96,100,107,111,116,118,119,120,129,131,132,136,146,147,155],gitmodul:12,gitter:24,give:[3,6,9,10,13,16,24,28,30,32,33,35,36,44,52,59,66,70,71,72,77,79,94,95,99,111,114,118,119,123,126,133,139,142,152,154,156],given:[5,30,39,47,51,53,59,64,67,70,87,94,98,99,101,104,110,126,133,134,135,142,148,152,154,157],glitch:116,global:[6,14,89,101,104,134,152,156,157],gloss:156,glu:16,gmt:47,gnu:100,gnufcompil:155,goal:6,godaddi:54,godunov:[4,89,99,139,141,143,157],goe:[30,45,54],going:[5,16,22,55,66,83,86,88,92,97,112,126,144,152,160],gone:93,good:[16,28,48,51,61,71,81,103,108,111,119,126,131],googl:[24,25,28,39,45,59,66,88,92,94,102,117,119,127,131,133],googlecod:94,googleearth:[51,59],googleearth_darkblu:51,googleearth_lightblu:51,googleearth_transpar:51,gori:10,gotten:39,gov:[30,39,47,66,70,94,148],govern:[32,142],gprint:[140,141],gpu:[25,123],gradi:[4,17,81],gradient:[120,160],gradylemoin:4,grai:148,grant:[4,81],graph:9,graphic:[18,23,28,52,67,76],grav:[97,132],gravit:[64,97,142,157],graviti:[132,142],great:[47,88],greater:[5,32,59,64,66,100,110,130,139,140,142],greatest:110,greatli:[18,26,81,134],green:[12,59,66,70,77,111,148,154],grid1d:89,grid1info:142,grid2info:142,grid:[4,7,17,18,19,20,22,23,25,27,28,33,38,39,44,45,46,48,51,52,59,66,67,72,73,76,81,83,91,93,94,96,97,98,99,101,103,110,111,113,114,116,117,119,120,121,124,126,128,131,132,133,134,135,139,140,141,143,149,151,152,154,156,157,160],grid_files_scanf:158,grid_numb:72,grid_registr:[53,154],griddata:154,gride:149,grideges_show:22,gridlin:67,gridlines_show:22,ground:[32,70,124],groundoverlai:51,group:[3,13,24,28,30,48,88,92,94,102,118,131],gtype:60,guarante:[45,48,99,109],guard:118,gui:[22,158],guid:[7,13,17,18,23,24,25,45,46,52,57,91,105,110,120,124,145],guidelin:91,gzip:[55,124],h_l:[97,132],h_r:[97,132],hack:101,had:[44,52,53,119,120,121,122,126,135],hadjimichael:[4,17,81],half:[0,16,17,18,70,99,139,157],halfspac:70,hand:[3,5,18,19,20,64,83,111,133],handi:[28,62],handl:[0,2,3,6,32,39,41,45,53,59,71,73,76,89,92,96,98,99,101,102,103,104,106,113,114,116,117,119,121,122,123,124,132,135,142,148,154],hang:70,happen:[31,51,62,83,98,101,124,155],har:131,harbor:32,hard:[49,54,71,77,154],hardcopi:[1,77,79,138],harder:139,hardest:68,hardwir:71,harm:106,has:[0,4,5,6,8,12,13,14,16,18,20,21,22,23,24,27,28,32,34,35,36,39,50,51,52,53,54,55,59,60,62,64,66,67,70,72,73,77,81,84,86,89,93,96,97,98,101,102,104,106,107,108,110,111,112,113,114,119,120,121,122,123,124,126,129,131,133,134,139,140,142,148,151,152,154,157,158,160],hash:[50,54,111],hasn:54,hat:5,have:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,18,20,22,23,24,25,27,28,29,30,32,33,35,36,37,39,41,42,44,45,48,51,52,54,55,56,58,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,108,110,111,113,114,116,117,118,119,120,121,123,124,126,127,130,131,132,133,134,139,140,142,144,148,152,154,155,157],haven:[103,105],haversin:47,hazard:[4,32,45,64,134],hdf5:93,hdf:92,head:[28,30,54],header:[11,30,32,39,44,53,66,70,72,92,98,117,119,121,148,152,154],header_styl:154,heat:97,heavili:84,height:[51,97,154],held:[24,48],hello:94,help:[5,7,9,23,24,25,28,29,39,40,49,54,56,62,76,79,91,94,100,104,111,118,124,131,144,155],helzel:17,henc:[5,32,53,54,63,99,105,106,110,135],here:[4,13,16,29,38,39,48,55,58,59,66,73,77,79,83,86,91,92,94,96,97,102,103,106,108,110,117,131,132,133,149,154,160],heterogen:157,hex:[59,77],hidden:[3,62,77],hide:[51,67],hierarchi:[51,89,106],high:[4,17,32,48,51,66,70,73,84,91,99,131,134,135,156,157],higher:[3,6,32,51,89,99,100,110,124,131,133,134,135],highli:[121,135],highlight:[11,13],hilo:[134,156],hint:[16,25,45,76,79,106,142,155],histor:[48,70,156],histori:[28,55,58,79],hit:[16,67,79,93,139],hko:148,hll:97,hllc:97,hlle:122,hmax:32,hmin:32,hoc:84,hold:[3,79,103,110],holder:[61,81],holland:[121,142,149],holland_storm_modul:117,home:[13,29,30,58,137],homebrew:[51,80],homepag:[21,25],homogen:[70,99,157,160],hood:[76,91],hope:[26,111],horizont:[51,154],host:51,hour:[13,51,59],how:[1,6,7,12,16,18,22,24,28,29,30,32,35,36,38,39,41,44,46,51,55,59,60,62,66,70,71,72,76,86,88,90,91,92,96,99,103,104,106,108,109,110,111,114,119,121,123,124,129,130,131,138,139,142,144,152,154,158],howev:[6,13,16,22,29,32,35,36,39,41,46,48,51,58,61,63,66,70,71,72,81,84,91,110,111,119,121,123,134,135,138,142,151],howto:105,hpc:24,hrd:148,html:[1,12,13,17,23,28,30,35,36,40,43,44,51,54,55,60,70,76,77,88,94,95,105,106,111,122,124,148],html_plot:95,html_theme:54,htmlplot:88,http:[4,12,13,17,18,24,26,28,29,30,39,47,51,52,54,55,57,58,60,61,66,68,70,80,81,84,85,92,94,96,105,106,116,118,119,120,122,123,126,127,128,129,132,148,154],huge:[60,66,135,152],human:148,hurdat:[121,148,149],hurrican:[108,148],hurt:[12,63],hwrf:[121,142,149],hydrodynam:17,hyperbe:87,hyperbee_limit:87,hyperbol:[4,5,6,17,42,73,84,91,96,97,103,131,139,142,157,160],hyperol:139,ian:4,ibm:100,ibtrac:[121,148],ico:54,icon:54,idea:[10,24,30,66,67,73,83,103,114,154,160],ideal:[55,97,134],ident:[39,63,89,92,94,111,154],identifi:[5,35,36,39,51,66,84,110,124,148],idl:13,ids:44,ieee:17,ifort:41,igetsp:117,ignor:[16,51,59,92,117,126,134,154],iinstal:94,ike:108,illustr:[12,25,30,32,35,43,51,66,67,70,109,116,117,121,123,131,133,144,154],imag:[13,35,36,39,55,59,66,111,121,133],imd:[148,149],immedi:[24,48,67,83,85,86,93],impact:[5,70],impati:96,imped:[83,97,103],implement:[1,4,5,7,14,16,30,39,59,60,63,69,81,96,97,99,103,104,111,116,119,122,124,126,131,132,139,154,157,160],impli:[61,81,142],implicit:[81,99],implicitli:[126,142],importantli:94,impos:[16,84,110,146,147,160],imposs:[48,139],improperli:54,improv:[4,13,22,24,32,34,51,54,92,105,113,114,116,117,118,119,120,122,123,124,125,126,127,139],imread:[39,66],imshow:[39,66,154],in_poli:154,inaccur:48,inaccuraci:48,inadequaci:64,inadvertantli:77,inbound:13,inc:[4,17,67],incept:4,inch:[2,51,59,77,138],incident:[61,81],includ:[4,6,13,18,21,22,23,27,28,29,30,32,35,36,38,40,41,43,44,48,51,53,55,57,58,59,61,63,64,66,67,68,70,71,73,76,77,79,81,83,84,88,89,91,92,93,94,95,96,97,98,99,100,101,103,106,108,110,111,113,119,120,121,122,123,124,125,126,127,128,131,132,133,137,139,141,142,144,145,148,149,151,152,154,157],inclus:133,incom:16,incompat:[28,51],incompress:17,inconsist:118,incorpor:[22,48,54,81,99,113,120,132,154],incorrect:[121,122,135,148],incorrectli:118,increas:[51,59,71,133,142],increasingli:28,increment:[32,44,51,89,104,139,141,143],ind:89,inde:[84,94],indent:[47,59],independ:[12,23,30],index:[1,6,13,22,23,27,44,54,55,77,89,91,94,96,97,104,121,126,139,140,141,142,143],indian:148,indic:[7,16,20,22,25,29,30,32,38,39,41,44,45,51,53,55,58,63,67,75,79,89,93,94,97,99,103,106,110,111,119,124,126,131,132,139,140,141,142,143,152,154,157],indirect:[61,81],individu:[4,22,23,51,59,62,63,67,89,110,111,148],inf:154,infer:154,infinit:139,inflat:16,info:[17,29,30,33,44,55,59,67,86,89,93,99,119,140,141,148],info_sz:30,inform:[13,14,22,25,32,33,35,36,46,47,48,49,50,58,63,72,77,78,79,83,84,89,91,93,94,95,97,98,104,106,118,121,122,124,129,130,131,134,137,139,140,142,148,151,152,155,156,157,158],inhabit:83,inherit:[77,89,99],init:[12,25,28,39,45,52,57,134],initi:[4,5,7,12,13,22,25,30,44,45,47,48,51,55,60,63,67,70,73,79,81,82,83,84,86,87,89,90,92,93,97,98,99,101,102,104,107,110,118,121,124,126,131,134,139,140,141,142,143,148,152,154],initialize_sourc:84,inland:[39,66],inlet:133,inlin:[39,132],inlinelimit:63,inner:[5,110,122],innerprod_index:5,input:[7,14,16,20,23,25,27,30,33,40,45,51,59,63,66,67,83,86,87,89,91,97,98,99,104,108,118,121,122,123,131,141,142,143,148,149,152,154,157],input_filenam:84,input_path:152,input_unit:30,inputfil:[104,154],ins:22,insert:[11,16,70,92,137],insid:[38,89,94,98,131,133,154],insidi:119,inspect:[19,20,51],instabl:[119,126],instal:[12,13,18,23,25,29,35,43,51,54,55,79,81,82,85,90,92,103,105,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,137,159],install_fortran:36,install_prerequisit:35,installing_fortcod:55,installing_opt:58,installing_pip:55,instanc:[3,28,51,70,73,79,83,84,86,89,92,93,96,133,142],instantan:99,instanti:[7,86,94,96,99,101,141,143],instati:[70,154],instead:[3,13,18,32,35,36,39,41,44,52,54,55,58,62,63,68,100,101,104,106,118,119,122,126,130,131,132,133,152,154],institut:4,instruct:[13,18,24,25,29,35,36,39,51,52,54,55,68,83,85,91,94,100,103,106,120,127,129,130,155],insur:[50,54,62,79,110,113,117,140,142,152],int_a:5,intact:[69,118],integ:[3,32,33,44,51,59,64,66,77,84,98,110,120,123,131,139,142,148,154],integr:[5,22,53,60,81,91,93,99,113,114,118,141,143,151,152,157],intend:[48,84,121],intens:[84,148],intent:[84,131],inter:[28,120],interac:93,interact:[1,13,22,35,36,40,44,46,62,73,76,77,84,94,95,100,103,106,118,119,133],interactive_plot:[95,103],interactive_test:118,interdepend:101,interest:[5,12,16,18,23,27,29,32,39,49,67,84,101,108,110,111,120,121,122,123,124,125,126,127,128,135,139,148],interfac:[4,19,22,67,81,84,87,91,92,97,99,104,131,157,158,160],interface_funct:104,interior:[6,16,39,72,101],interleav:[81,97],intermedi:[19,32,70,157],intermit:[44,119],intern:[6,30,44,53,59,70,119,140,152,154,160],interp_dz:33,interp_kwarg:148,interp_method:32,interp_unstructur:154,interpol:[5,6,16,18,30,33,34,39,44,45,53,59,67,70,77,119,126,133,134,135,142,148,149,154],interpret:[30,53,70,121,152],interrupt:[61,81],intersect:[32,66,70],intersphinx:54,interv:[5,44,47,83,103,110,126,133,139,142],introduc:[5,16,19,32,33,39,77,124,126,133,135,140,160],introduct:25,introductori:24,intuit:91,inund:[32,45,51,64,110,124,134,156],inundataion:[134,156],inv_haversin:47,invalid:[41,98],invert:47,invest:48,investig:111,invis:[40,117],invok:[11,14,71,135,155],involv:[24,96,99,108,149],ioerror:98,ioexcept:104,iout:143,ioutarrivaltim:142,ioutsurfacemax:142,ipdb:77,iplot:[35,37,88,91,94],iplotclaw:[1,13,22,35,36,44,46,76,77,95,106],iplotclaw_:77,iplotclaw_figno:1,ipynb:[29,30,32,39,70,109,118,132,133],ipynotebook:118,ipython:[13,73,77,79,84,85,91,93,100,103,106,117,118],ipython_displai:113,is_valid:[98,101],island:[32,39,66,133],isn:[62,71,72,155],iso:148,isosurfac:67,isotrop:70,issu:[22,24,26,54,55,58,67,83,88,89,91,99,100,102,111,113,118,119,120,121,131,142,155],item1:[0,79],item:[0,1,3,67,76,79,104,126,138],itemnam:[1,79],iter:[30,39,66,97],ith:97,its:[4,6,13,22,29,34,39,48,51,61,63,66,70,72,81,86,87,88,89,91,96,98,99,101,104,110,141,154,160],itself:[4,70,76,105,124,131,142,154],ixi:[38,66,131,133],jacobian:[131,160],jan:[4,55],januari:[105,112,119,129],japan:[51,59],japanes:148,javascript:144,jed:81,jet:[30,67],jma:[121,148,149],job:[13,128],join:[24,77],journal:[4,17,52,91,144],jovyan:29,jpg:[54,67],jsanim:[18,113,117],jsanimation_frametool:115,juan:133,juli:[114,115,129],jump:[4,5,67,79,89,99,119,139,160],junction:[32,142],june:[120,121,122,123,129],jupyt:[25,43,70,73,91,105,109,117,118,124,131],just:[0,6,28,32,40,55,83,84,86,88,92,93,94,95,96,101,104,114,121,139,157],justifi:70,kappa:[103,160],kappa_i:160,karg:98,katrina:108,kaust:[4,24],keep:[14,25,28,32,33,35,36,71,83,86,91,101,104,111,114,142],keep_copi:[83,86,93],keep_gaug:101,kei:[0,1,2,13,28,30,44,92,99,103,104,148,154],kemm:87,kemm_2009:87,kentzo:55,kernel:104,kernel_languag:[89,99,104,111],ketch:4,ketcheson:[4,17,74,81,91,99],ketchesonmandliet:[4,17],ketparlev13:[4,17,73,91,131],keyboard:67,keypair:13,keyword:[2,3,77,83,88,89,92,98,104,111,121,138,148,154],kind:[18,86,88,93,123,131],kinemat:[30,45],king:[4,81],kitsap:133,klein:87,kml:[59,117,119,120,121,124,125,133],kml_build_colorbar:[51,59],kml_cb:59,kml_colorbar:51,kml_dpi:[51,59],kml_figsiz:51,kml_footer:59,kml_gaug:59,kml_header:59,kml_index_fnam:51,kml_map_topo_to_latlong:51,kml_name:51,kml_png:59,kml_publish:51,kml_region:59,kml_starttim:51,kml_tile_imag:51,kml_timespan:59,kml_timezon:51,kml_tz_offset:51,kml_use_figure_limit:51,kml_use_for_initial_view:51,kml_user_fil:51,kml_xlimit:51,kml_ylimit:51,kmltool:[45,124,125,127,153],kmw6h:[4,55,129],kmz:[59,119],kneplei:[17,81,91],know:[48,58,62,70,81,108,120,124,126,131,134,154,155,156],knowledg:48,known:[32,41,67,70,71,77,100,102,111,120,139],kristof:81,kutta:[91,99],kwarg:[2,30,59,77,104,111,138,148],kyle:[4,17,81,87,91,92,97],label:[18,30,49,51,53,59,117,133,152,154],lack:3,lagrangian:[25,45,124],lagrangian_gaug:124,lake:[39,45,66,135,152],lambda:[89,154],lambda_roe_1:97,lambda_roe_2:97,land:[16,39,45,46,51,54,55,59,66,78,124,135,142,154],land_cmap:39,landfal:121,landslid:48,langseth:[4,17],langsethleveque00:[4,17],languag:[11,76,104],lapack:113,laptop:[29,91],larg:[5,6,12,18,20,35,36,39,48,51,53,54,67,71,76,91,93,94,110,111,118,126,130,133,135,139,140,154,156],larger:[13,20,32,51,59,70,71,72,77,89,113,119,126,140,142,152],largest:[110,134],last:[3,18,27,32,55,57,77,83,84,96,103,118,139,148],lat:[30,47,51,53,152,154],later:[13,39,50,51,58,79,99,130],latest:[23,43,51,54,55,57,58,85,94,100,114,118],latex:[1,51,76,95],latex_figsperlin:1,latex_fnam:1,latex_framesperlin:1,latex_framesperpag:1,latex_pdf:1,latex_titl:1,latitud:[15,30,32,46,47,53,70,76,117,133,136,142,148,154],latitude_max:51,latitude_min:51,latitudin:47,latitutd:30,latlong:[30,51],latter:[15,66,96,124,133,136,139,148,157],launch:[37,88,94,95,100],law:[4,17,59,142,160],lax:[89,99,139,141,143,160],layer:[17,25,44,59,89,113,115,118,119,121],layout:54,lbla:102,ldot:133,lead:[6,13,22,32,48,51,64,67,70,106,109,126,135,140],learn:[48,88,105],least:[4,5,6,13,51,59,66,67,102,110,111,118,119,126,139,141,152,154],least_significant_digit:92,leav:[12,13,16,44,58,140,154],lectur:24,led:[20,122],leer:[87,99,139,141,143],left:[3,5,10,13,16,18,25,27,32,53,72,79,89,96,97,103,120,126,129,130,131,134,140,152,154,156,160],legaci:[23,55,58],legend:[120,133],legend_tool:120,lemoin:[4,17,81],len:[5,30,89,141,143,154],lenght:139,length:[15,30,48,59,70,96,101,119,126,136,139,140,141,142,157],leq:[5,133],less:[39,48,51,60,64,71,99,110,111,126,139],let:[16,45,58,81,108,120,126,131],level:[3,6,7,16,23,27,29,32,38,39,44,45,46,47,48,51,54,55,57,58,67,71,72,84,86,89,91,92,93,99,106,107,110,111,113,114,118,119,121,124,130,133,134,137,139,140,141,142,143,151,152,154,156,157],levequ:[4,16,17,24,30,52,73,87,89,91,99,105,131,139,157,160],leveque09:17,leveque1996:17,leveque1997:91,leveque96:17,leveque97:[4,17],leveque_book_2002:97,levequegeorgeberg:[4,17],levi:[66,124],levyon03:17,lgomp:104,liabil:[45,48,61,81,109],liabl:[61,81],lib:[63,106],libgdal:51,liblzma:51,librari:[6,13,15,16,20,22,25,27,28,32,35,36,41,44,52,59,62,68,71,72,73,81,87,92,94,99,104,106,107,110,119,124,135,136,140,146,147,155,157],library_path:104,licens:[25,45,48,91,109,121],lie:[6,32,33,66,110,124,133],lies:[6,16,32,110,133,142],light:[51,67,110],lighter:51,like:[12,13,24,28,29,39,41,51,54,55,59,60,67,68,79,84,86,89,92,93,94,97,98,99,101,105,106,111,118,131,133,138,151,152,155],lim_typ:99,limit:[0,4,6,12,25,30,33,38,48,51,59,61,67,71,76,81,83,84,89,91,99,110,115,133,139,140,141,143,148,152,154,160],lin:142,line2kml:59,line:[1,3,4,16,28,29,30,32,39,41,44,45,46,47,50,51,53,54,59,60,62,63,67,68,72,76,77,91,92,94,99,103,104,105,106,113,114,117,119,126,133,138,139,141,148,152,154],linear:[4,5,17,30,32,51,70,77,83,87,99,122,131,132,133],liner:[0,30],linestyl:154,linewidth:[77,133],link:[4,11,13,15,17,18,19,20,24,25,28,41,42,45,51,52,53,54,55,57,59,68,105,106,107,120,129,131,132,134,136,143,146,147,152,156],linspac:[33,67,86,103,133],linux:[13,69,80,102,111,137],lisandro:81,list:[1,3,4,7,8,9,11,13,18,22,25,28,29,30,32,33,35,36,37,38,40,44,51,53,54,56,57,58,59,61,62,63,64,67,70,71,77,79,81,83,86,87,89,92,93,95,96,97,98,99,101,102,104,106,110,117,119,121,126,130,133,137,139,140,141,142,143,148,149,151,154],listofgrid:121,literalinclud:54,literatur:[48,131],littl:[48,70,92,134],live:101,llapack:102,llcenter:[53,152,154],llcorner:[53,152,154],lmm:99,lnetcdf:[41,68],lnetcdff:68,load:[13,59,93,95,98,104,111,154,158],load_sift_unit_sourc:30,loc:[133,154],local:[13,17,20,25,28,51,54,59,62,63,67,87,89,96,101,119,121,135,152,154,157],local_fnam:154,local_path:104,localhost:29,locat:[5,6,7,13,30,32,46,47,51,53,55,58,60,67,72,89,93,95,97,98,104,106,108,110,118,120,134,135,148,149,154],log:[14,25,28,29,89,90,91,98,99],logger:[93,101],logic:[6,16,17,32,126],logical_and:[39,66],logical_not:[39,66],logical_or:133,logo:[54,120],lon:[53,152],long_lat:154,longer:[20,28,44,54,55,59,80,105,119,121,124,126,130,131,142,152,156],longitud:[30,32,46,47,53,66,70,76,117,133,142,148,154],longitude_max:51,longitude_min:51,longitude_shift:30,longitudin:47,longtitud:51,look:[13,14,22,25,28,30,39,51,54,55,59,67,68,77,79,84,89,94,98,99,103,104,106,111,114,121,133,139,140,142,151,154,155],lookup:121,loop:[44,67,76,104,110,121,124,126,131,135,138,139,157],lose:118,loss:[61,81],lossi:92,lot:[28,39,124],love:[88,131],low:[51,66,84,154,156],lower:[3,22,30,32,33,38,53,66,72,89,94,133,135,139,141,143,152,154,156],lower_glob:89,lowerg:94,luna:[17,81,91],lxml:51,lying:[6,66],m_w:160,mac:[71,80,102,111,137],machin:[13,25,71,73,111,119,137],maco:80,macport:51,made:[4,18,22,28,30,58,98,101,113,114,119,121,124,126,133,135,142,149,152,154,157],magic:59,magnitud:[5,30,110,121,142],mai:[0,1,2,3,4,5,6,12,13,18,19,20,22,23,24,25,27,28,29,30,32,35,36,37,39,40,41,46,47,48,49,51,53,54,57,58,61,62,64,66,67,68,70,71,76,77,79,80,81,84,85,88,89,91,92,93,96,98,99,102,104,106,110,111,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,148,149,150,152,154,155,157],mail:[96,102],main:[5,11,12,19,28,39,43,54,55,66,67,73,84,86,92,96,103,104,111,120],mainli:94,maintain:[12,28,105,121,140,152,157],mainten:81,major:[4,22,54,55,81,84,112,113,114,115,120,122,127],make:[1,5,11,13,14,18,19,20,22,24,25,27,28,32,35,36,38,40,41,44,46,48,50,51,54,55,58,59,60,62,63,64,67,71,73,76,79,80,83,84,86,89,90,91,92,96,98,104,109,111,113,117,118,119,120,121,123,124,125,126,127,131,133,139,152,154,156,157],make_colormap:[39,66,77],make_input_data_kml:59,make_input_fil:32,make_kml:7,make_lib:13,make_multi_structur:148,make_shoreline_xi:154,makefil:[5,6,11,14,15,16,19,20,23,25,28,35,36,41,54,68,71,73,77,79,84,90,91,110,113,117,119,121,122,124,135,136,139,141,142,143,144,146,147,152,155,157],makefile_kml:117,maketopo:[122,152],man:[17,25,45,48,142,146,147],manag:[4,12,13,51,93,148],mandli13a:17,mandli13b:17,mandli2016clawpack:[4,17],mandli:[4,17,81,87,91,92,97],mandlietal2016:17,mani:[1,3,4,6,12,13,20,21,22,28,35,36,37,41,42,43,46,51,52,54,59,60,62,63,66,70,71,72,77,79,80,81,83,88,91,96,98,103,104,110,112,113,119,121,122,123,124,128,131,133,138,139,140,142,152,157],manifold:67,manipul:[44,154],manner:[5,39,44,51,60,66,70,76,121,135,139,146,147,152],manning_break:142,manning_coeffici:142,manual:[37,84,93,100,102,111,150],manuel:[17,81,91],maojr:118,map2d_to_1d:27,map:[3,16,29,30,39,59,66,67,77,81,84,89,91,96,110,117,121,126,132,148,154,160],map_2d_to_1d:3,map_cart_to_latlong:51,map_topo_to_latlong:51,mapc2p:[3,25,27,67,84,89,126],mappedgrid:[3,67],march:[24,25,32,38,39,45,113,114,129,133],marching_front:[39,66,124],marchingfront:39,margin:[32,45],mark:[16,51,66,110,111],mark_cent:89,mark_nod:89,marker:59,markup:11,marsha:[4,6,17],mask:[33,39,45,49,133,154],mask_dri:39,mask_dry_onshor:39,mask_outsid:[7,66],mask_outside_zlim:59,masked_arrai:[39,66,133],maskedarrai:154,mass:[6,93],massiv:91,master:[13,15,25,29,54,55,58,96,107,118,119,120,121,122,123,124,125,126,127,128,129,132,136,146,147],match:[30,38,51,59,92,98,111,148,154],materi:[4,61,70,81,108,124],math:[17,51,103],mathemat:4,mathwork:67,matlab:[7,22,25,35,36,75,76,77,95,105,121,124,125],matlabpath:67,matplotlib:[0,2,3,13,30,39,49,51,66,76,77,80,82,85,105,125,132,138,148,154,155],matric:[5,131,160],matrix:97,matteo:[4,17,81,91],matter:[63,117],matthew:[17,81,91],maux:[22,131,157],max1d:[71,124,140],max:[0,30,32,39,67,97,110,114,135,141,143,148,154,160],max_buff:[44,119],max_inch:59,max_it:[39,66],max_step:99,max_vertices_in_descript:59,max_wind_radiu:148,max_wind_radius_fil:148,max_wind_spe:148,maxgr:121,maxima:[32,71,142],maximum:[3,22,30,32,33,34,45,67,99,103,110,113,114,121,124,139,140,141,143,148,149],maxlevel:[38,67,110,126,133,140,141],maxm:131,maxmi:[20,84],maxmx:[20,84],maxmz:20,maxwell_1d_homogen:96,maxwelton:[39,66],mayb:154,mbc:157,mc_limit:87,mcs:94,mean:[3,13,22,28,32,39,44,48,52,58,67,93,94,110,131,134,139,141,143,156],mean_latitud:49,meant:[41,89,99,148],measur:[30,44,47,70],mechan:[58,101,129],media:17,medium:[141,157],meet:24,member:[51,96,98,103],memori:[20,22,71,72,73,83,86,93,101,126,140,141],memsiz:[126,140],mention:[91,139,140],menu:[13,18,25,54,59,120,129,134,156],meqn:[44,72,131,157],merchant:[61,81],mercuri:94,merg:[6,13,25,28,52,54,55,58,117],mesh:[4,7,17,33,52,66,67,73,76,83,110,124,138,139,157],meshgrid:[83,96,133,154],mess:54,messag:[28,40,47,54,58,67,71,86,89,93,95,98,99,101,102,126,139,141,143,155],met:[32,61,81],metadata:[72,152,154],meteorlog:148,meter:[30,47,51,66,70,110,134,142,148,154,156],meterolog:148,method:[4,5,7,17,32,38,42,44,53,66,77,79,83,86,87,89,94,98,99,104,110,111,117,131,138,139,140,141,143,148,151,152,154,157],metric:47,mhd:123,mhhw:134,mhw:[39,45,48,134,152,156],micro:13,mid:77,middl:[97,118],midpoint:[32,89],might:[5,10,13,14,16,22,28,29,35,36,37,38,39,47,51,53,54,58,63,66,67,71,77,80,83,93,97,106,108,109,110,113,139,140,152,154,156,157],migrat:19,millimet:154,million:124,mimic:121,min:[0,97,148,154,160],min_level_check:32,min_time_incr:[44,60],mind:28,minim:[6,58,66,92,133,140,154],minimum:[3,32,44,51,70,103,119,142,154],minisymposterium:24,minlevel:[38,110,126,133,140,141],minmod:[87,89,99,139,141,143],minmod_limit:87,minor:[11,51,54,93,113,114,115,116,117,118,119,120,121,122,124,126,128],minut:[39,47,51,54,59,134,154,156],mis:77,misc:[4,123,125],miscellan:97,mislead:39,miss:[22,25,92,123,148,152,154,155],mitig:[4,48],mitran:[4,17],mix:[30,38,51,70],mjb:[6,17],mjberger:4,mlc:148,mllw:156,mode:[1,13,28,104,151],model:[5,12,16,17,24,25,30,32,41,45,46,52,53,64,93,110,118,123,124,125,133,134,135,142,148,149,152],modern:[100,121,131],modif:[28,40,61,67,77,81,87,142],modifi:[6,9,14,15,16,20,22,27,32,35,36,39,44,45,54,55,58,60,62,67,69,77,84,87,89,91,96,106,107,108,109,110,116,118,119,120,121,126,133,135,136,139,141,142,143,146,147,152,154,157],modul:[0,7,8,12,25,28,29,32,39,41,45,49,51,52,53,58,60,63,66,70,71,76,77,78,79,83,84,87,88,92,96,97,98,101,105,106,111,114,115,117,120,121,122,123,124,130,133,139,140,142,148,152,153],module_nam:104,modulu:[30,97,103,141,157],molsolv:99,moment:[27,30,122],momenta:60,momentum:[16,32,48,60,64,93,126,132,142,152],monitor:[18,22,25,33,34,38,45,66,71,114,116,119],monoton:[139,142],monster:10,month:[17,51,91],more:[1,2,3,4,5,7,10,12,13,14,16,17,18,20,22,24,26,28,29,30,32,35,38,44,45,46,48,51,53,54,55,57,58,59,60,61,62,66,67,70,76,77,78,79,80,81,84,86,87,89,91,92,93,94,95,96,97,99,100,101,103,104,106,109,110,111,113,114,117,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,137,138,139,140,141,142,144,148,150,151,152,154,155,156,157,160],moreov:70,most:[3,18,20,22,27,29,32,35,36,40,41,44,48,50,51,52,53,54,57,59,62,66,67,71,73,76,77,79,81,89,93,94,99,102,103,105,110,111,118,120,126,129,130,131,132,133,134,138,139,140,142,145,157],mostli:[3,76,91,124],motion:[70,152],motlei:52,movabl:30,move:[16,32,35,36,45,54,58,60,70,96,110,113,115,120,142,152,153],movement:30,movetopo:113,mparsani:4,mpi:[73,94],mpich:94,mpiexec:94,mpirun:[94,100,111],msl:[134,156],mthlim:[89,99],much:[13,18,28,32,41,51,54,72,73,76,80,105,110,113,117,124,133,139,142,151,154],muct:99,multi:[17,51,83,113,115,118,121,157],multicor:[71,119],multidimension:[84,91],multilay:[44,114,117,120,121,122],multipl:[4,5,6,13,23,28,32,33,39,44,76,83,89,92,93,104,106,111,113,119,123,130,131,140,148,149],multistep:99,multivers:54,must:[5,6,13,16,20,22,28,30,32,39,43,46,51,54,57,61,62,63,66,67,70,71,72,81,84,91,92,93,96,98,99,101,102,103,104,106,110,113,117,131,133,134,135,139,140,141,142,143,148,154,155,156,157,160],mwave:131,mx1d:157,mxnest:22,my_acoustics_rp:83,my_custom_bc:99,my_geoclaw_storm:148,my_initial_solut:86,my_riemann_solv:131,my_rp_modul:83,my_setplot_fil:79,my_solv:86,my_storm:148,n00014:4,n12:32,n23:32,nadi:148,name:[0,1,2,3,5,7,11,12,13,20,22,28,29,30,33,35,36,38,39,40,44,51,54,55,59,61,67,68,77,79,81,84,86,88,89,92,93,97,98,103,104,106,118,121,126,130,131,133,138,139,140,141,142,143,148,154,157,158],namespac:84,nan:[47,154],nasa:4,nation:[4,48,148],nativ:92,natur:[32,54,131,160],naux:72,navd88:152,navig:[12,29,54,144],nbconvert:124,nbtool:117,nbviewer:118,nc_param:154,ncar:4,ncei:[39,66,134,152,156],ncol:[39,117],nctr:[30,70],ndarrai:[47,87,89,97,101,148,154],ndarrari:89,ndim:[22,72,79,139,140],ndip:30,nearbi:134,nearest:[39,44,154],nearfield:135,nearli:89,nearshor:48,necessari:[5,6,13,35,36,46,48,51,54,55,58,59,67,70,72,73,79,83,84,89,92,117,119,121,130,131,138,139,140,152,155,157],necessarili:[4,39,92,111],necessit:28,need:[0,4,5,6,12,13,15,16,18,19,20,22,27,28,29,32,33,35,36,37,39,40,41,48,49,53,54,55,56,58,59,62,63,66,67,68,70,71,72,73,79,80,83,84,86,91,92,93,94,96,99,103,105,106,108,110,111,114,118,119,121,122,126,128,130,131,133,135,136,137,139,140,141,142,143,146,147,148,149,150,152,154,156,157,160],neg:[22,39,135,142,152,154],negat:[47,152],neglig:[61,71,81,142],neighbor:[4,32,39,66,110,119,135,140,141,154],neither:[51,59,61,81,119],ness:92,nest:[113,119,140,141],netcdf3:92,netcdf3_64bit:92,netcdf3_class:92,netcdf4:[92,152,154],netcdf4_class:92,netcdf4_dir:41,netcdf:[13,41,45,118,121,123,125,139,141,143,148,154,156],neumann:148,never:[32,96,101,107,110,124,133,139,141,143,155],nevertheless:51,new_featur:28,new_frame_num:104,new_plotax:[0,2,44,51,77,138],new_plotfgur:77,new_plotfigur:[1,2,44,51,77,138],new_plotitem:[0,3,44,51,77,138],new_userdata:[141,143],newdelhi:148,newdir:69,newer:[28,71,87,121],newton:97,next:[2,3,6,13,18,35,37,44,54,55,67,72,77,79,82,83,91,92,94,99,103,108,110,111,139,140,142],nfr:4,ngdc:[39,66,134],nghost:72,ngrid:72,nhc:148,nhtmp:48,nice:[28,59,84,96,114,133],nicer:79,nih:4,nnnnn:[130,139],no_data_valu:154,no_tran:89,noaa:[30,39,47,53,66,70,121,134,148,152,156],nodal:121,nodata_valu:[39,154],nodataerror:148,nodatav:152,nodatavalu:[53,152],node:[89,121],nodes_with_ghost:89,nohup:114,non:[5,16,55,66,73,84,96,103,122,124,139,141,143,148,160],nonconserv:160,none:[0,1,2,3,16,18,24,27,30,33,39,44,47,51,59,66,86,89,92,93,98,99,101,104,111,113,119,121,122,123,124,125,128,130,139,141,143,148,154],nonlinear:[4,5,17,48,87,131,139,160],nonoverlap:6,nonphys:44,nonuniform:67,nor:[61,81],norm:[39,59,66,110,154],norm_dri:[39,66],norm_topo:66,normal:[16,33,52,54,60,77,96,106,131,132,139,140,141,143],north:[32,39,47,66,70],northernmost:152,norwegian:4,nose:[28,36,37,82,94,111,150],nosetest:[28,36,37,94,100,111,150],notat:[30,47,59,131],note:[1,3,4,5,13,15,16,20,22,24,25,28,29,30,32,33,38,39,40,41,44,47,51,52,53,54,55,56,57,58,59,62,63,66,70,71,77,79,84,87,88,89,91,92,94,96,97,100,101,104,105,107,110,130,131,133,134,135,136,138,139,140,141,142,143,146,147,148,149,151,152,154,156,157],notebook:[25,30,32,39,43,54,66,70,73,85,91,93,109,117,118,124,131,132,133,154],notebook_html:124,noth:[15,60,101,122,136,146,147,154,157],notic:[51,61,81,103,111],nout:143,nov:[17,91],novemb:[118,119,129],now:[5,6,7,13,18,20,22,24,26,28,29,30,32,33,38,39,41,50,53,54,55,60,64,66,70,72,77,83,84,89,91,92,93,94,95,96,98,99,100,103,108,110,111,113,114,117,118,119,120,121,123,124,126,127,134,138,140,142,144,152,159],npoint:33,nprint:[140,141],npt:32,npy:154,nrm:59,nrow:39,nrule:133,nsf:4,nstate:92,nstepout:[86,93],nstrike:30,nthmp:48,ntime:141,ntot:143,num_aux:[5,84,92,94,96,97,101,131,139,140,141,143,157],num_cel:[8,22,89,131,139,140,141,143],num_cells_glob:89,num_digit:59,num_dim:[22,38,89,92,96,139,140,141,143],num_entri:104,num_eqn:[72,83,84,87,92,94,96,97,98,101,103,131,139,141,143,157],num_fgmax_v:[32,142],num_ghost:[84,89,92,96,97,99,101,131,139,141,143],num_output_tim:[5,83,86,93,130,139,141,143],num_proc:119,num_var:92,num_wav:[87,97,131,139,141,143],number:[1,2,3,4,6,8,12,16,17,19,22,27,28,30,32,33,35,36,43,44,51,54,59,62,67,71,72,73,79,83,84,86,87,88,89,91,92,93,94,96,98,99,101,103,104,105,108,110,111,113,114,116,117,118,119,120,121,123,130,131,133,139,140,141,142,143,148,149,150,154,157],numer:[4,17,51,105,122,148],numerica:17,numpi:[3,13,30,32,39,47,66,80,82,83,84,86,89,96,101,102,103,105,111,132,133,141,154,155],nxpoint:154,nypoint:154,nyu:4,object:[0,1,2,3,5,22,27,30,32,38,44,51,59,66,70,76,77,79,83,84,86,92,93,94,96,98,101,102,103,104,113,122,130,131,139,140,141,142,143,148,154],obliqu:16,obscur:22,observ:[32,48,113,126,134,139,142,149,156],observatori:4,observerd:149,obtain:[4,6,12,32,43,44,46,48,58,59,92,93,94,110,126,131,135,142,144,152,160],obviou:[8,51],occasion:[111,119],occupi:51,occur:[62,70,148,149],ocean:[5,16,17,32,48,51,108,110,133,146,147,152],octob:[115,116,117,123,124,127,128,129],off:[12,13,18,44,48,51,59,67,79,86,93,110,140,154],offer:[40,51,111],offic:4,offici:[55,80,121],offset:[49,51,59,148,154],offshor:[59,64,66,133,135],oft:97,often:[6,11,13,16,20,27,29,32,35,36,40,41,44,45,48,49,50,59,60,64,70,72,93,105,106,110,111,126,130,131,133,134,135,138,139,142,148,152,156,157,160],okada85:[17,30,70],okada:[17,25,30,45,109,152,156],okadamap:30,olav:4,old:[1,7,18,20,22,32,39,54,55,79,86,94,95,96,99,111,118,120,121,126,131,142,152],older:[18,22,41,52,54,57,58,99,125,140,142],olig:[6,17],omega:83,omit:[58,111,119,130,142],omp:140,omp_num_thread:[41,71,119,151],omp_stacks:71,on_lower_boundari:89,on_upper_boundari:89,onc:[1,5,13,22,28,29,35,36,51,55,56,57,58,66,67,70,79,83,93,94,95,96,101,104,119,121,127],ondrej:81,one:[0,1,2,3,4,5,6,8,13,15,16,18,20,22,24,25,27,28,29,30,32,35,36,39,44,46,51,53,54,55,56,57,58,59,60,64,66,67,68,69,70,72,73,76,77,83,89,92,93,94,96,98,99,100,103,104,106,108,110,111,118,119,121,126,130,131,132,133,135,136,138,139,140,141,142,143,144,146,147,148,152,154,157,158],ones:[29,83,84,101,121,139,140],onli:[1,3,5,6,8,12,13,16,18,19,22,27,28,29,30,32,38,39,43,44,48,51,54,55,56,58,59,60,63,64,67,70,71,72,73,77,83,86,89,92,93,94,96,98,99,100,101,103,104,105,108,110,113,118,119,120,121,124,126,130,131,132,133,134,135,137,138,139,140,141,142,143,148,152,154,155,156,157,160],onlin:[24,105,109,121,145,152],onr:4,onshor:[32,59,64,66,133,135],onto:[28,30,51,135,154],open:[4,13,17,25,28,29,30,51,59,76,81,85,89,92,104,133,137,156,158],opendatafil:63,opendiff:111,openli:23,openmp:[22,25,41,73,104,110,118,124,151],opensourc:[61,81],oper:[49,111,119],opinion:4,oppos:[28,149],opposit:[6,16,92],optim:[41,81,104],option:[2,12,13,16,18,20,22,25,28,29,30,32,35,36,40,41,47,50,53,56,58,62,67,68,76,77,83,84,86,88,89,90,92,93,95,98,99,100,103,104,106,107,110,111,114,117,118,119,122,124,127,133,137,138,139,141,142,143,144,148,154],orang:148,order:[4,5,6,13,16,17,29,30,32,48,53,58,63,66,67,70,72,73,77,79,80,81,83,86,87,89,91,92,93,95,96,99,103,104,105,106,110,117,121,126,131,133,135,138,139,140,141,143,148,152,154,155,157,160],ordinari:131,ordinarili:102,org:[4,17,45,52,54,55,60,61,81,84,85,89,92,94,105,106,118,120,122,126,127,128,154],organ:[22,23,35,36,86],orient:[70,84],origin:[3,6,13,16,20,28,30,34,44,52,54,66,71,72,84,99,104,113,119,126,130,140,141,143,154],orlean:108,oscil:[44,160],oscillatori:154,osf:[4,129],osher:99,osx:[51,80],other:[3,4,5,6,7,9,12,13,16,20,22,27,30,35,36,38,44,45,46,48,51,52,53,55,56,57,58,61,62,64,66,67,68,70,71,72,76,79,81,83,84,86,89,91,93,95,96,97,100,103,105,106,110,111,113,114,116,117,119,131,134,137,138,139,142,144,148,152,154,156,157,158],otherwis:[5,30,54,58,61,66,81,93,97,98,99,100,101,104,110,139,154],ought:99,ouput:86,our:[53,63,83,108],out1:63,out:[3,16,24,26,29,30,32,35,36,39,44,45,50,52,53,54,55,58,59,60,61,62,67,70,77,80,81,83,84,86,92,93,94,95,98,103,105,106,108,111,119,121,123,124,131,133,140,141,143,148,154,155],out_path:148,out_tim:86,outaux:27,outdir:[1,3,33,35,36,44,50,62,76,79,86,88,89,93,118,141,143,155],outdir_p:86,outfil:154,outflow:[16,139,141,143],outgo:16,outlin:[59,67,79,124,131,138],outn:27,output:[1,5,7,8,13,14,16,18,25,27,28,29,30,33,35,36,40,41,44,45,46,47,49,50,51,55,70,76,77,79,84,86,87,88,89,90,91,94,95,97,98,99,100,101,103,104,106,113,117,118,119,120,121,123,124,125,131,138,141,143,148,149,150,151,154,157,158],output_aux_compon:[139,141,143],output_aux_onlyonc:[139,141,143],output_file_prefix:[86,93],output_filenam:84,output_format:[5,18,86,93,139,141,143],output_opt:86,output_path:152,output_q_compon:[139,141,143],output_step_interv:[139,141,143],output_styl:[72,83,86,93,130,139,141,143],output_t0:[130,139,141,143],output_tim:[93,130,139,141],output_unit:30,outputdir:67,outputfil:154,outsid:[6,16,38,59,66,124,133,135,152,154],outsiz:59,over:[1,3,5,6,13,16,17,22,28,30,32,38,39,44,45,46,48,51,53,59,66,67,70,76,92,93,99,110,113,114,122,124,131,133,135,138,140,141,142,151,152,157,160],overal:[10,83],overflow:[41,120],overhead:[6,71,110,151],overlai:[59,127],overlaid:[51,59],overland:51,overlap:[110,113,114,152],overrid:[28,41,51,83,84,104],overridden:[67,99,101],overrul:3,overview:[45,51,76,112,115,124],overwrit:[1,86,93,98],overwritten:[44,92,93,119,130,157],own:[16,20,24,28,58,83,84,90,91,100,101,108,110,121,131,144],owner:121,p_center:[89,103],p_function:93,p_l:97,p_node:89,p_r:97,p_t:103,p_x:103,packag:[4,25,28,29,35,36,51,55,56,63,73,76,80,81,83,89,91,93,95,96,98,100,103,105,106,123,124,148,155,158],pad:66,page:[1,4,9,11,13,15,17,18,22,24,28,48,53,55,56,57,58,88,91,94,95,102,105,107,111,120,124,134,136,138,144,146,147,156,157],pair:[13,92,111,154],panel:51,paper:[4,5,6,16,30,45,54,87,91],paragraph:32,parallel:[4,22,23,44,71,82,88,90,91,93,96,98,100,104,110,111,119,140],paramet:[1,6,7,9,16,18,20,25,27,30,32,33,34,35,36,39,40,42,45,46,48,51,53,62,63,64,67,70,71,72,76,82,83,86,87,92,93,95,97,98,101,104,107,110,113,119,124,126,130,131,132,134,135,141,143,149,152,154,155,157],parameter:[108,121,133,142,148,149],parametr:149,parent:[3,27,89,101,104],pars:[44,104],parsani:[4,17,81,91],part:[4,5,22,24,30,45,48,58,59,60,68,81,84,94,100,101,103,105,109,111,123,157],partial:[17,73,108],particl:[18,25,45,124],particle_tool:[60,124],particular:[4,6,12,20,22,28,30,32,41,44,45,46,48,51,52,55,61,62,63,67,73,77,78,80,81,83,97,98,99,101,103,108,109,110,111,114,117,118,119,120,121,123,124,126,138,148,149,160],particularli:[16,27,29,32,50,51,56,57,58,70,72,106,114,117,121,126,135,152],partit:94,pascal:[30,148],pass:[16,18,19,20,28,30,44,51,59,71,77,83,86,88,90,96,99,101,102,104,111,131,141,148,154,157],passiv:132,password:28,past:[4,21,25,54,60,66,98,119,122,126,129,133,134,142],patch:[3,6,7,16,22,27,32,39,51,67,70,71,72,76,77,92,94,98,101,110,119,121,124,126,135,138,140,142,151,152,157],patch_index:89,patchedges_show:[3,22],patchno:[3,27],path:[1,5,13,14,30,32,38,39,41,44,47,51,54,57,58,60,62,66,69,76,77,86,91,92,94,98,104,120,121,124,137,142,148,154,155],path_to_atcf:148,path_to_ibtrac:148,pathtool:67,pattern:[20,46,51,134],pcolor:[3,18,44,76,105,154],pcolor_cmap:[3,51],pcolor_cmax:3,pcolor_cmin:3,pcolor_colorbar:3,pcolor_kwarg:18,pcolorcel:[39,66,124,133],pcolorcells_for_kml:[59,124],pcolormesh:[59,66],pdb:77,pde:[4,5,17,56,57,58,73,80,91,103,139,157],pdf:[1,30],pdflatex:1,peak:5,peanoclaw:81,pedant:41,peerj:[4,17],pem:13,pend:3,peninsula:133,peopl:[4,12,13,81],pep8:28,per:[13,30,44,51,59,67,71,92,140],perfect:16,perfectli:16,perfom:111,perform:[5,6,17,22,27,48,51,53,71,73,76,77,86,89,92,96,99,104,111,123,126,130,131,137,142,150],perhap:[6,12,32,39,44,54,77,101,104,110,133],perimet:32,period:[5,6,16,32,62,83,96,110,139,141,143],perman:[67,124,125,126,127,128],permiss:[55,58,61,81],permit:[61,81],permut:20,perturb:[107,142,152],petclaw:[81,94,95,96,98,104,106,111],peter:4,petsc4pi:[94,100,101,111],petsc:[22,23,73,81,83,90,93,100,101,102,104],petsc_arch:94,petsc_dir:94,petsc_hello_world:94,phase:[94,105,118,124,140],phd:17,phi:5,philim:84,phoni:77,photo:[24,25],php:[30,61,81],phy:17,physic:[16,44,51,84,89,91,103,110,160],pick:[83,99],piec:[16,48,89],piecewis:[30,32,39,53,70,114,131,133,152],piecewiselinear:38,pink:[39,59,77,138],pinkfig:77,pip3:55,pip:[18,25,28,29,51,55,56,85,91,94,100,102,106,120,121,122,123,124,125,126,127,128,129,137],pixel:[51,59],pkg:[55,143],place:[5,16,20,24,28,35,36,51,54,58,62,63,69,91,93,94,96,100,106,113,119,157],placemark:51,plaid:51,plain:49,plan:[24,28,48,56,57,58,64,92,99,148],planar:[70,131,132],plane:[30,70,118,133,156],planetari:4,platform:[13,51,86,94,105,111],pleas:[4,24,28,54,56,57,58,81,83,86,88,91,92,94,96,98,99,100,102,108,121,126,129,131,148],plot:[0,1,2,4,7,8,12,18,27,29,30,35,36,37,39,40,41,42,45,53,55,56,59,66,72,82,83,85,86,89,90,91,93,98,100,102,103,105,106,108,116,117,118,119,120,121,123,124,125,133,148,150,154],plot_box:[30,154],plot_centerlin:30,plot_dz_color:30,plot_dz_contour:30,plot_gauge_loc:44,plot_packag:148,plot_phas:132,plot_rak:30,plot_subfault:30,plot_subfaults_depth:30,plot_timing_stat:[121,123],plot_topo_fil:[78,117],plot_typ:[0,22,44,51,77,79,138],plot_var2:3,plot_var:[3,27,44,51,77,78],plotax:[3,44,77,124,138],plotclaw1:67,plotclaw2:67,plotclaw3:67,plotclaw:[44,76,77,79,138],plotdata:[27,44,68,77,79,86,118,119,138],plotdir:[1,79,138],plotexampl:77,plotfigur:[44,77,138],plotfram:1,plotgaug:44,plotitem:[3,27,44,77,138],plotloop:[77,79],plotstyl:[3,44,77,138],plotter:[1,3,27,79],plotting_makeplot:[35,36],plottool:[39,66,124],plottyp:67,plt:[59,132],plu:[77,113,141,143,154],pmel:[30,70],png2kml:59,png:[1,13,35,36,39,40,51,59,66,67,119,124,133],png_extent:59,png_file:59,png_filenam:59,png_name:59,point:[3,5,6,13,15,16,17,20,28,30,33,35,36,38,39,41,44,45,46,47,48,51,53,54,55,57,58,59,67,68,70,83,93,94,98,104,105,106,110,120,122,124,130,131,133,134,135,136,137,139,140,141,142,146,147,148,152,154,155,157],point_styl:[32,33,66,116],pointer:[4,16,54,70,76,79,99,104,117],pointwis:[25,32,53,101,117,152],poisson:70,poli:59,poly2kml:59,polygon:[3,7,38,51,59,124,154],polynomi:131,poor:28,poorest:92,popup:13,port:[13,29,90,91,96,140],portion:[6,18,39,51,66,84,151],posit:[32,39,51,70,73,104,142,152,154],possibl:[5,6,13,22,26,28,30,32,44,47,48,51,61,62,66,70,77,81,83,89,92,94,95,99,104,106,110,118,131,133,134,135,139,140,152,156,157],post:[18,24,25,26,28,51,94,127,128,144],poster:17,posteriori:99,postprocess:[72,93],potenti:[25,67,119,134],powel:142,power:[51,56,76],pprint:[140,141],practic:[28,106,108],pre:[3,13,33,55,85,92],preced:77,preceed:[72,157],precis:[41,59,84,89,92,131,154],precompil:91,predefin:77,predict:47,prefer:[59,94,96,137,140,148],prefix:[55,86,92,93,98],preliminari:[47,121,156],prepar:28,prepc:126,prepend:86,preprint:17,preprocess:[32,117],prerequisit:[36,37,56,58],present:[6,24,59,89,97,98,99,104,144,157,160],preserv:[66,73,99],press:[17,94,100],pressur:[44,67,79,93,97,103,120,121,142,148,149],pressure_forc:142,pressure_index:142,presum:134,pretti:13,prev_pts_chosen:66,prevent:51,previou:[1,28,29,44,53,55,57,58,63,66,67,79,83,99,108,113,118,119,120,121,126,130,135,139,140,141,143,152,154],previous:[6,22,32,66,79,117,124,135],previous_pts_chosen:45,price:13,primari:[22,28,29,45,108,111,148],primarili:[52,121,122],prime:111,principl:[5,154,157],print:[1,3,7,29,39,51,53,59,60,66,67,77,89,93,94,95,101,103,105,106,113,114,117,119,120,121,128,133,139,141,143,148,155],print_figno:[1,51],print_format:[1,51],print_frameno:[1,51],print_funct:119,print_git_statu:50,printenv:155,printfig:1,printfram:[1,76],prior:[61,81,129,135,141,143,157],probabl:[13,28,51,64,66,105,106],probdata:[141,143],problem:[4,5,7,16,17,20,24,25,27,28,29,35,36,39,42,45,58,62,66,67,70,73,77,80,82,83,88,90,91,94,97,99,102,106,111,113,114,116,117,120,124,126,131,133,135,139,140,141,142,143,144,151,155],problem_data:[83,97,98,101,103,132],problemat:93,proce:[6,28],procedur:[6,16,39,45,55,157],proceed:54,process:[18,25,35,36,45,51,52,70,83,88,89,94,100,101,104,111,119,155],processor:101,procur:[61,81],produc:[1,3,22,27,30,35,36,40,44,51,53,54,59,67,71,75,76,92,110,111,126,138,142,154],product:[5,30,61,81,104,110,122],professorship:4,profil:[149,154],profit:[61,81],program:[4,46,48,63,73],programmat:81,progress:[24,28,99,108,117,152,154],prohibit:22,proj:141,project:[4,5,24,25,30,48,51,54,55,70,81,85,119,120,140,154],projection_zon:30,promot:[61,81],prompt:[28,29,67,77,79,88,91,103,154],propag:[4,5,6,17,25,30,48,51,52,70,89,91,99,110,119,131],proper:[6,15,39,44,52,53,55,59,64,66,67,92,104,113,119,136,140,141,146,147,148,157],properli:[20,32,35,36,39,40,48,51,53,54,58,59,66,69,86,111,113,116,121,124,126,137,139,142,152,154,155,157],properti:[30,60,67,83,86,89,98,101,154],propos:[28,160],protect:[66,124],provid:[0,2,4,7,10,16,20,27,28,30,32,38,41,45,46,47,48,51,53,54,59,61,63,70,72,76,81,84,86,87,93,94,96,98,99,103,104,105,108,109,111,118,126,129,131,139,147,148,151,152,154,157],proximity_radiu:154,prune:29,ps4_to_arrai:33,pseudo:[51,67],psi:[96,157,160],pt_chosen:66,pth:58,pts:[140,141],pts_chosen:[66,133],pts_chosen_nearshor:66,pts_chosen_shallow:66,pub:[30,148],publicli:144,publish:[4,17,54,91],puget:[39,66,133],puget_sound_13_mhw_2014:[39,66],pull:[12,18,24,26,29,54,55,57,88,96,111,116,119,120,126,131],pull_al:[28,55],pupyner:92,pure:[17,52,79,89,91,92,94,99,111,132],purpos:[32,45,48,53,61,67,72,81,89,109,111,130,133],push:[28,54,55],put:[1,11,16,28,29,41,54,55,58,59,67,83,88,96,119,137],pyclaw:[1,3,4,12,17,23,24,27,28,29,43,44,55,56,57,72,73,79,80,90,94,96,102,106,129,131,132,137],pyflak:91,pykml:51,pylab:[0,39,77],pylint:91,pypa:80,pypi:[58,92],pyplot:[59,132,148,154],pyport:105,pyramid:51,python2:[80,126],python3:[106,120,126],python3stat:105,python:[3,4,7,8,11,13,14,17,19,22,23,25,27,28,29,30,33,35,36,37,40,42,44,45,46,47,50,51,53,54,55,56,57,58,59,70,72,73,76,77,78,81,82,84,88,89,91,92,94,95,96,97,99,102,103,104,111,114,115,117,119,120,121,122,123,126,131,132,137,142,152,154,155,158],python_io:72,pythonpath:[57,58],pyweno:[81,99],q0000:[67,139],q0001:[67,68],q000n:[1,8],q0_vs_radiu:3,q1d:157,q_hat:97,q_hat_l:97,q_hat_r:97,q_i:[131,160],q_l:[97,131,132],q_out_field:44,q_r:[97,131,132],q_t:[5,96,97,99,103,157,160],q_x:[5,97,103,160],qbc:[96,99,101],qcor:84,qin:[4,52],qinit:[5,20,22,39,45,62,63,84,126,134,135,157],qinit_data:[39,135],qinit_modul:39,qinit_typ:[142,152],qinitdata:142,qinitfil:142,qoi:32,qopenmp:41,qquad:160,qtrue:77,quad2kml:59,quad:59,quadrat:[30,70],quadrilater:[32,59],qualiti:[51,125],quantiti:[15,32,59,67,86,90,91,97,101,132,136,142],quantiz:92,queri:[84,89,104],question:[24,28,98],quezada:[17,81,91],quick:[13,25,36,45,46,56,80,111,150],quicker:[13,133],quickli:[44,54,59,85,119,135,154],quit:[29,67,77,79],quot:59,qxxxx:92,r_refin:142,radial:[3,32,47,142,157],radial_dam_break:132,radian:47,radii:148,radio:59,radio_styl:59,radiu:[3,142,148,149,154],rai:154,rais:[24,30,58,92,98,100,104,148,154],rake:[30,70],ran:[36,150],randal:[4,17,91],randi:[24,30,87,89],rang:[3,5,13,30,44,47,51,110,113,118,132,133],rare:[70,119],raster:[18,51,53,152],rate:13,rather:[5,6,18,20,22,28,29,32,39,54,55,58,62,63,64,69,70,89,94,96,99,106,107,110,117,118,119,121,123,124,126,129,130,133,138,139,140,148,149,152,154,157,160],ratio:[6,15,22,49,67,70,87,97,99,136,139,140,141],raw:[18,139],rcl:51,reach:[5,110],reachabl:98,reaction:96,read:[1,4,5,7,18,28,30,32,33,35,36,44,45,48,49,53,58,59,60,63,66,67,70,72,76,84,86,92,93,98,104,118,119,121,122,127,141,142,143,148,152,154,157,158],read_:[92,98],read_arrai:92,read_atcf:148,read_aux:[92,98],read_data_lin:104,read_fgmax_grids_data:33,read_geoclaw:148,read_head:154,read_hurdat:148,read_ibtrac:148,read_imd:148,read_jma:148,read_netcdf:[39,66,121,122,152,154],read_output:[32,33],read_patch_head:92,read_t:92,read_tcvit:148,readabl:[148,149],reader:158,readi:[83,84,86,100],readlin:133,readm:[54,55,124,131,137,157],real:[48,55,64,104,131,156],realist:51,realiti:48,realli:[6,111,157],rearrang:121,reason:[5,48,51,59,70,71,73,94,96,110,139],rebas:28,rebuild:54,rebuilt:54,recal:[1,12,39,140],recalcul:114,recangl:70,receiv:[51,111],recent:[4,13,22,27,30,50,54,57,62,64,71,77,79,80,118,122,123,124,125,126,127,128,129,131,156],recogn:[46,53,58,152],recomil:32,recommend:[4,18,30,32,35,36,54,55,56,58,71,76,85,89,91,94,95,99,100,102,103,110,121,139,141,142,143,158],recompil:[28,40,41,62,71,104,124,140,157],recomput:[79,83,114,123],reconstruct:[91,99,148],record:[32,44,60,101,148,156],recov:[28,33],recreat:[28,40,62,124],rect:[30,133],rectangl:[6,7,25,30,66,70,110,124,154],rectangular:[6,7,16,17,18,30,32,38,39,45,46,59,66,89,110,121,124,140,142,152],recurs:[54,69,113],red:[2,3,28,44,59,77,111,138,148],redirect:54,redistribut:[61,81],redraw:[67,79],reduc:[6,16,18,39,51,118,120,160],redund:148,refactor:[113,114,115,117,119,120,122,126],refer:[4,5,20,30,32,33,35,36,38,45,46,51,62,63,67,70,83,87,89,92,93,97,99,101,106,108,121,123,130,131,133,142,148,152,154,156,157],referenc:[51,129,134,152],refin:[3,4,5,7,8,17,22,45,48,51,52,53,66,67,72,73,83,119,121,122,124,126,133,135,138,139,140,141,151,152,157],refinement_data:142,refinement_ratios_i:[8,140,141],refinement_ratios_t:[140,141,142],refinement_ratios_x:[140,141],refinementdata:116,reflect:[4,5,16,28,110,121,139,141,143],refresh:[13,44],regard:[4,38,118,148],regardless:[13,39,66,110,139,142],regener:62,region00:59,region1:[39,66],region1_png:[39,66],region:[3,6,7,13,16,22,32,38,39,45,48,49,51,59,64,70,73,108,121,124,126,134,135,140,141,152,154],region_domain:38,region_tool:[38,39,66,124,125,133],region_trapezoid:38,regiondata:[38,110,141],regions2kml:59,regist:56,registr:[25,45,121,152,154],regress:[22,25,28,50,91,94,119,120,150],regression_test:[36,150],regrid:[5,10,110,113,114,119,122,123,140,141,151],regrid_buffer_width:[110,140,141],regrid_interv:[110,140,141],regular:[32,154],reiniti:[32,119],reject:[93,99,139],rel:[13,20,30,40,46,48,51,70,71,77,91,104,106,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,134,140,142,144,152,156],relat:[3,7,22,24,54,73,97,108,120,124,126,134],releas:[4,18,22,25,28,29,43,51,56,57,58,85,91,99,100,105],release_5_x_x:55,relev:[22,27,39,41,45,51,54,92,110,111,148],reli:[73,84,95,105,119],relief:[134,156],reload:154,reltol:104,remain:[51,58,96,104,106,113,146,147,148],remak:54,rememb:[15,27,71,77,94,136,146,147],remot:[13,51,55,121,154,156],remote_directori:154,remote_topo_url:[152,154],remov:[1,3,18,20,29,40,52,58,59,62,68,79,94,106,113,116,117,135,154,155],renam:[20,22,35,36,62,96,99],render:[12,22,43,51,59,158],reorder:[20,22],reorgan:[22,84,112,127],repack:55,repeat:[39,66,79,130,140],repeatedli:[3,94,100,140],replac:[6,13,18,29,38,44,48,52,54,55,57,60,62,76,84,88,92,94,95,96,97,101,104,111,113,119,121,123,124,130,131,135,154,155],replace_no_data_valu:154,replace_valu:154,replot:79,repo:55,report:[24,30,32,50,106,111,118,121,137,139,141],repositori:[22,24,25,26,29,32,36,37,42,43,45,52,57,58,62,63,91,99,106,108,109,111,116,119,145],repres:[30,83,89,92,96,97,99,101,154,160],represent:[53,89,92,98,104,154],reprint:81,reproduc:[17,53,61,81],request:[12,24,26,30,54,57,72,83,88,89,93,96,98,111,119,121,126,131,142,148,154],requir:[3,4,16,18,20,22,25,27,30,32,35,36,40,45,47,48,55,58,66,67,70,73,76,79,80,83,84,89,92,95,96,99,100,101,103,104,105,110,111,113,114,117,119,122,124,126,131,132,133,138,139,140,141,142,143,148,149,152,155,158,160],rerun:[41,44,53,55,58],rescal:30,research:[4,17,45,48,81,99,109],reserv:[61,81],reset:[39,41,54,104],reset_count:104,resetplot:[77,79],resid:[54,62,89],resiz:121,resolut:[4,6,17,18,30,32,39,44,70,89,99,103,104,113,117,121,122,131,134,142,152,154,156,157],resolution_limit:154,resolv:[4,32,51,54,58,108,121,135],resourc:[17,24,28,46,105],resp:[20,30,126],respecitv:30,respect:[30,32,51,59,91,92,97,154],respons:[13,48,83,98],rest:[5,22,79,108,121,134,146,147,152,154],restart:[13,25,44,79,91,118,119,120,121,123,126,139,141,143],restart_fil:[130,139,141,143],restor:6,restrict:[38,51,121,133,142,152],restructur:[11,54],result:[1,3,4,7,9,12,17,18,25,26,29,30,32,33,34,35,36,37,42,43,44,45,47,48,53,54,55,58,59,62,64,67,70,76,77,78,79,82,86,88,91,93,97,100,104,110,111,113,117,119,120,121,122,124,126,135,139,140,141,142,143,150,152,154,156],retain:[61,81,92],retak:[139,141,143],retir:54,retriev:[13,47,79,84,99,154,156],return_topo:154,return_xarrai:154,reunion:148,reutil:84,reval:132,reveal:[44,103],revert:51,review:[17,87],revis:[6,119],rewritten:30,rgb:77,rho:[67,97,103,141],rho_l:97,rho_r:97,rhou:67,rhov:67,richardson:[5,7,22,140,141],rid:28,ride:124,ridg:51,riemann:[4,5,8,20,22,23,28,29,45,55,58,63,73,81,83,89,90,99,100,101,103,106,137,139,141,143,146,147,160],riemann_aug_jcp:120,riemann_book:132,riemann_interact:118,riemann_solut:132,riemann_solv:99,riemann_tool:[117,132],right:[5,32,61,64,70,81,89,94,96,97,101,103,126,130,131,133,160],rigid:[30,121],rigin:30,rigoutsi:6,rigoutso:17,rise:[30,70,134,135],rise_fract:[30,70],rise_shap:30,rise_tim:[30,70],rise_time_end:[30,70],rise_time_start:[30,70],risen:148,rjl:[6,17,106,123],rjlevequ:[4,28,29],rjlkei:13,rmi:29,rnode:121,robust:[45,121,132,154],robustli:122,rock:70,roe:[87,97,126,131],root:[29,58,92,93,98],rossby_wav:132,rossmanith:17,rotat:[39,49],rough:64,roughli:[52,133,151],round:51,roundoff:89,routin:[4,5,6,16,20,25,27,30,32,35,36,44,45,46,51,52,62,67,68,71,72,73,76,79,81,84,86,89,92,95,96,99,101,102,110,113,114,117,119,121,122,124,131,135,139,141,143,148,154,155,157,158,160],row:[30,32,53,87,110,152,154],rp1:[131,160],rp1_acoustics_variable_adjoint:5,rp1_advect:63,rp1_ptwise:131,rp1_shallow_bathymetry_fwav:132,rp1_shallow_hl:127,rp1_shallow_roe_trac:132,rp1_shallow_roe_with_efix:132,rp_:97,rp_sourc:96,rpn2:[5,131],rpn2_geoclaw:132,rpn2_geoclaw_adjoint_qwav:5,rpn2_ptwise:131,rpn2_shallow_bathymetry_fwav:132,rpn2_shallow_roe_with_efix:132,rpn2_shallow_spher:132,rpn2_sw_aug:132,rpn2_vc_advect:115,rprint:[140,141],rpt2_geoclaw:[126,132],rpt2_geoclaw_adjoint_qwav:5,rpt2_ptwise:131,rpt2_shallow_roe_with_efix:132,rpt2_shallow_spher:132,rr2:133,rr_admiralti:133,rr_name:133,rrzigzag:133,rsmc:148,rsphere:[47,84],rst:[54,55,124],rsync:54,rsync_clawpack:54,rule:[7,13,25,59,66,84],ruled_rectangl:124,ruledrectangl:[38,66,124,133],ruledrectangle_admiraltyinlet:133,ruledrectangle_covering_selected_point:[66,133],ruledrectangle_trapezoid:38,run1:62,run:[1,5,6,7,12,13,14,16,20,22,24,25,28,32,33,39,40,42,43,44,45,50,51,52,54,55,56,57,58,59,62,64,67,68,72,73,76,77,79,80,82,84,86,89,90,91,93,96,100,102,103,104,106,108,110,113,114,118,119,120,121,122,123,125,126,128,130,131,141,142,143,148,150,151,154,157],run_app_from_main:104,run_data:86,run_exampl:154,run_seri:104,runclaw:[14,50,114,123,125,131],rundata:[5,22,32,38,39,44,59,60,110,113,124,130,135,139,140,141,142,143],rundatat:38,rundir:[14,86],rung:[91,99],runmak:86,runnabl:104,runtest:[36,94,150],runtim:104,runup:64,ruptur:[30,45],rupture_tim:[30,70],rupture_typ:[30,70],s_1:[97,133],s_2:[97,133],s_3:97,s_l:97,s_m:97,s_r:97,safe:71,safer:62,safeti:87,sagemath:85,sagemathcloud:85,sai:[5,13,16,28,59,102,110],same:[3,5,6,8,13,16,22,25,28,31,32,39,41,44,46,47,48,51,53,55,58,59,60,62,64,66,68,70,73,76,77,78,79,83,87,89,91,92,93,96,97,99,104,105,113,114,118,119,124,126,130,131,133,139,140,141,142,146,152,154,157],sampl:[7,8,14,17,18,25,29,32,41,45,51,70,106,111,130,133,139,140,152,154,157],santiago:51,satisfi:[32,39,66,99,110,133,160],save:[5,13,25,26,39,50,59,72,86,90,99,118,119,121,126,130,149,154],savecod:86,savefig:[18,59],scalabl:[17,91],scalar:[27,30,39,93,101,131,135,139,160],scale:[4,30,49,51,67,73,91,92,113,119,121,126,142],scan:41,scatter:[3,22,67],scenario:[48,134],schedul:24,scheme:[87,97],schlieren:[3,67],schwarzschild:4,sci:17,scienc:[4,17,81],scientif:[4,17,80,91,94,105],scipi:[13,84,105,148,154],scipysuperpack:80,scp:13,scratch:[47,66,103],screen:[13,28,51,59,86,93,94,118,141,143],screenshot:[13,51],script:[11,19,20,28,30,32,40,44,51,54,62,67,73,76,81,84,88,90,91,93,94,99,104,106,111,121,125,131,138,142,143,154],scriptstyl:133,scroll:13,sdist:55,sea:[30,44,45,46,48,51,70,107,117,124,134,142,152,154,156],sea_cmap:39,sea_cmap_dri:39,sea_level:[25,32,39,45,48,59,97,124,135,142,152,154],seab:64,seafloor:[30,48,70,135,156],search:[1,13,14,58,76,91,104,106,119,121,133,137],sec:30,second:[3,16,30,32,36,44,47,51,55,59,67,83,89,93,99,110,113,119,130,139,142,148,150,151,154,157,160],section:[6,13,16,35,36,39,41,46,48,54,55,63,67,76,79,91,111,126,130,139,142,154],secur:13,see:[0,1,2,3,4,5,6,7,8,9,12,13,16,17,18,19,20,21,22,23,24,25,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,69,70,71,72,75,76,77,78,79,80,81,84,86,88,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,144,145,146,147,148,150,151,152,154,155,156,157,158,159,160],seem:[101,106,124,138],seen:[12,22,32,35,36,37,48,71,96,139,144],segement:154,segment:[128,133],segmentedplanefault:[30,70],seism:[17,30],seismic:[30,45,70],select:[7,12,13,15,16,28,32,39,66,93,99,107,110,113,120,124,129,136,139,142,146,147,156],select_by_flood:[39,66],self:[30,33,99,154],semi:99,send:[13,24,96,131],sens:[27,51,60,121,126,160],sensit:[48,64],sent:[93,101],separ:[1,28,32,43,51,54,59,63,91,99,133,154],seper:104,sept:[55,126],septemb:[125,129],sequenc:[20,22,63,66,94,100,103,104,111,113,120,131,157],sequenti:32,seri:148,serial:[94,98,104,151],serv:29,server:[13,29,39,51,54,55,66,121,152,156],servic:[25,61,81],session:[1,35,36,37,95,100],set:[0,1,2,3,5,6,8,13,14,15,16,18,22,25,27,28,30,32,33,35,36,37,38,39,40,41,42,44,45,47,48,49,50,51,54,55,57,58,59,60,62,63,66,69,70,71,72,73,75,76,83,84,86,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,118,119,121,123,124,126,130,131,132,133,136,138,139,140,141,142,143,144,148,149,152,154,156,157,160],set_all_st:98,set_aspect:[39,49,66],set_aux_from_auxbc:101,set_corn:30,set_count:104,set_cparam:[83,101],set_dynamic_slip:30,set_eta_init:[124,135],set_num_ghost:101,set_printopt:89,set_q_from_qbc:101,set_subfault:30,set_xyz:[39,154],setaux:[20,22,63,84,113,114,131,139,141,143],setaux_default:54,setenv:94,setgaug:[44,118],setlevel:93,setplot1:67,setplot2:67,setplot3:67,setplot:[0,1,2,3,7,18,19,20,22,25,42,44,68,75,76,95,96,104,119,155,158],setplot_fil:51,setplot_kml:51,setprob:[39,63,141,143,157],setrun:[5,6,7,8,14,16,18,19,20,25,32,33,35,36,38,39,40,42,45,46,48,59,60,62,64,66,72,73,77,91,107,108,110,113,117,118,119,122,124,126,130,131,134,135,148,152,155,157],setrun_setgeo:142,setup:[37,55,83,84,88,91,94,96,99,100,101,109,137,155],setup_gauge_fil:89,sever:[0,1,2,5,10,12,16,20,22,23,24,29,30,35,36,40,44,46,48,51,55,58,60,67,70,76,100,110,111,112,113,114,117,118,119,120,122,123,124,126,133,138,142,150,152,154,157],sftp:13,shaheen:93,shall:[61,81],shallow:[5,15,16,17,25,32,39,45,48,52,66,73,84,91,107,114,115,117,119,121,122,131,135,136,142,146,147,152,157],shallow_1d:132,shallow_1d_pi:[97,132],shallow_2d:132,shallow_bathymetry_fwave_1d:132,shallow_bathymetry_fwave_2d:132,shallow_exact_1d:97,shallow_fwave_1d:[97,132],shallow_hll_1d:[97,132],shallow_roe_1d:[97,132],shallow_roe_tracer_1d:132,shallow_roe_with_efix_1d:132,shallow_roe_with_efix_2d:132,shallow_spher:[84,111,132],shallow_sphere_2d:132,shallow_trac:132,shallowest:70,shape:[30,39,47,59,66,84,89,94,101,133,154],shapshot:13,share:[25,26,51,58,71,73,89,92,94],sharp:59,sharpclaw:[4,23,25,73,81,88,90,91,96,113,131],sharpclawnd:99,sharpclawsolv:99,sharpclawsolver1d:99,sharpclawsolver2d:99,sharpen:87,sharper:[51,59],sharpli:5,shear:[17,30],shelf:[7,66],shell:[28,57,58,71,77,79,94,100,103,106,119,137],shg:67,shift:[5,30,48,53],ship:32,shoal:133,shock:[6,17,48,99,110],shock_bubble_interact:[35,37,88,91,100],shockbubbl:96,shoot:[76,91],shore:[39,45,110,124,135],shorelin:[39,51,154],shoreline_xi:154,shorter:[3,110,154],shortli:[28,111],shot:13,should:[0,1,2,3,4,5,6,12,13,14,16,18,19,20,22,23,25,27,28,29,30,32,33,35,36,37,38,39,40,41,44,48,51,53,54,55,56,57,58,59,62,64,66,67,68,69,70,71,76,77,79,84,89,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,110,111,113,114,117,119,120,121,124,130,131,132,134,135,137,138,139,140,141,142,143,144,148,150,152,154,155,157,159,160],shouldn:88,show:[0,2,3,9,10,12,14,18,28,30,35,36,39,43,44,51,54,55,59,62,66,67,79,89,103,106,111,117,127,128,133,154,155,157],showcolor:77,showgridlin:67,showitem:1,shown:[3,13,54,59,63,64,67,73,93,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,154,157],showpatchbord:67,shrink:154,shu:99,shuffl:92,siam:[17,24,25,91,131],sid:148,side:[6,16,18,32,51,54,64,70,92,111,131,160],sidebar:[51,54],siesmic:135,sift:[30,70,121],sift_slip:30,siftfault:[30,70,121],sigma:83,sign:[13,24,77,126,148],signatur:[3,84,87,89,90,92,97,148],signific:[18,64,129,134,154],significantli:[92,121],signitur:98,silenc:93,silent:92,sill:132,silo:158,similar:[4,13,16,28,32,36,44,51,83,84,92,96,99,103,121,126,142,148,149,150,152],similarli:[40,52,88,94,96,133,151],simpl:[7,29,35,36,38,45,55,70,84,91,96,97,99,104,109,111,154],simplest:[58,69,103],simpli:[5,13,35,36,37,39,44,51,53,62,63,66,83,85,86,88,93,94,100,111,131,133,144,148,154,157,158],simplifi:[70,76,77,92,111,120,121,157],simul:[32,35,36,37,39,46,48,51,67,86,89,91,93,94,96,100,103,108,119,120,121,123,133,135,148],simultan:[51,119],sin:[47,77],sinc:[0,3,4,5,6,16,20,22,28,32,39,41,47,48,51,53,54,55,58,59,62,63,70,71,72,76,77,83,84,85,92,93,110,111,113,117,118,119,120,122,123,124,125,126,127,128,129,130,131,133,134,139,140,142,152,155,156],singl:[0,1,2,3,5,6,16,19,22,23,27,28,29,30,32,39,44,46,51,53,54,55,59,60,62,67,70,71,72,73,83,89,92,93,98,104,111,116,117,119,129,131,135,139,140,141,142,152,154,156,157],single_storm:148,sisc:[17,91],sit:13,site:[28,51,58,106],situat:[51,66,67,126],size:[18,20,30,39,44,51,59,71,72,76,89,92,94,99,119,124,140,141,143,152,154],size_x_inch:51,size_y_inch:51,skinni:0,skip:[30,124],skip_patches_outside_xylimit:[124,126],skiprow:30,slack:24,slice:[3,67,131],slide:24,slider:[51,59],slightli:[16,39,53,119,120,126,133],slip:[25,30,45,109,152,156],slip_along_strik:30,slip_at_dynamic_t:30,slip_color:30,slip_distribut:30,slip_down_dip:30,slip_funct:30,slip_tim:30,slope:[30,99,126],slope_i:51,slope_x:51,slosh:123,slow:[13,51,93,102],slowest:92,slowli:59,slu:7,small:[5,16,39,44,64,66,110,111,113,118,130,139,141,142,152,154,156],smaller:[13,18,51,64,73,89,93,113,135,139,141,142,143,154],smallest:[110,133],smear:59,smooth:[30,99,110,157],smooth_data:154,smoothli:53,smv_branch_whitelist:54,snapshot:[5,28,93,122],soc:[17,30],softwar:[6,13,24,25,29,45,48,61,68,81,91,92,93,144,152],sol:83,sole:131,solid:[3,16,51,70,96,138,139,141,143],solitari:17,solut:[1,3,4,5,16,18,22,25,27,29,36,44,47,60,67,70,72,76,79,84,86,89,91,92,93,96,97,99,101,102,103,110,111,117,118,122,130,131,138,139,140,141,143,150,157,160],solv:[4,5,8,16,17,20,26,35,36,48,56,58,60,82,84,86,89,91,96,97,100,122,131,132,139,152,157,160],solver:[4,5,6,20,22,23,25,28,45,56,57,58,63,80,81,82,86,89,90,93,101,115,117,119,120,121,122,123,124,126,139,141,143,146,147,160],solver_nam:131,solver_typ:[88,99],some:[3,4,5,6,7,8,10,12,16,17,18,19,20,21,22,23,24,25,27,28,30,32,35,36,39,41,42,44,45,46,48,49,51,52,53,54,55,58,63,66,70,71,72,76,78,79,81,84,85,87,91,92,93,95,96,98,100,101,102,103,105,106,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,138,139,140,141,142,143,144,148,149,151,152,154,157],someon:[28,62],someth:[13,27,28,54,62,69,76,93,98,99,106,152,155,157],sometim:[58,62,66,73,77,83,93,121,128,134,135,149,156],somewhat:[71,76,110,111,119,139],somewher:[68,117],sonel:156,soon:99,sorin:4,sort:[13,39,121,138,155],sound:[39,66,83,97,103,133],sourc:[4,17,23,25,28,30,41,45,51,52,54,55,57,58,59,61,63,64,76,81,84,88,89,90,99,100,102,103,104,108,109,111,119,120,121,132,134,139,141,142,143,145,146,147,148,152],source_list:104,source_split:[89,99,139,141,143,157],south:[32,152],space:[5,6,7,16,17,18,30,32,33,44,51,53,70,89,93,96,110,117,130,133,139,140,141,142,143,152,154,157],spacial:[135,142],span:[47,51,59],spatial:[6,17,25,30,38,39,45,64,96,110,113,117,124,126,131,134,140,141,143,160],spatial_region:38,spatial_region_fil:38,spatial_region_typ:38,spawn:111,specfi:154,special:[4,7,16,18,45,46,51,61,73,81,110,133,154],specif:[3,5,12,22,28,30,44,45,47,51,52,58,61,63,64,81,82,84,86,91,92,93,97,98,104,108,119,120,121,124,138,139,140,141,143,149,152],specifi:[0,1,2,3,4,5,6,7,15,16,18,20,22,25,27,28,29,30,32,33,34,39,40,41,42,44,45,46,47,48,50,51,53,59,62,63,64,66,67,70,71,72,73,75,76,78,83,86,89,92,93,96,98,99,102,104,106,107,108,111,113,116,117,118,119,120,121,124,126,130,131,133,134,135,136,141,143,144,146,147,148,149,151,152,154,155,156,158,160],speed:[32,83,87,97,103,119,124,131,132,139,142,148,149,154,157,160],speed_toler:142,spell:77,spend:118,spent:[140,151],sphere:[47,84,114,132,142],spheric:[17,51],sphinx:[11,23,25,55,120],sphinx_web:54,sphinxcontrib:54,spite:[63,66,106],split:[5,6,71,89,92,99,117,118,126,139,140,141,143,151,157,160],spot:77,sprint:[140,141],spuriou:[16,32,111],sqrt:[3,32,64,83,96,97,103,141],src1:[63,147,157,160],src1d:147,src2:[84,147,157],src3:[147,157],src:[5,6,11,14,15,16,19,20,28,29,30,32,33,39,40,41,47,50,52,55,58,59,62,63,67,70,71,78,95,96,104,106,107,110,111,114,117,118,120,121,122,123,124,126,131,135,136,139,141,143,146,154,155,160],src_split:[139,141,143],srcn:[139,157],ssh:[13,28],ssp104:99,ssp33:99,ssplmm32:99,ssplmm43:99,ssplmm:99,ssprk22:99,stabil:[99,126,139],stabl:[80,89,126],stack:[71,80,117,133],staff:123,stage:[99,134,135,152,154],stai:[26,32],stand:[4,126],standard:[6,16,30,32,51,53,67,72,84,87,99,106,110,111,141,142,143,144,152,157,160],start:[1,2,4,5,6,7,9,13,14,24,27,28,30,32,35,36,37,38,39,40,44,45,47,51,53,54,56,57,58,59,62,66,69,70,77,79,83,94,98,99,105,106,110,111,118,121,126,130,131,133,135,142,148,150,152,157],start_dat:148,start_fram:98,start_max:32,state:[4,13,17,25,28,54,70,77,83,84,86,89,91,92,93,94,96,97,98,99,102,103,111,126,127,131,132,133,139,152,160],statement:[35,36,67,72,105,106,119,128,141],station:[47,134,156],stationari:[60,152],statist:[25,118],statu:[13,28,50,86,103],stdout:111,steadi:[70,152],steep:[66,160],steepli:135,stencil:101,stencil_width:101,step1:63,step2:84,step2i:117,step2qcor:84,step2x:117,step3i:117,step3x:117,step3z:117,step:[5,6,10,16,18,19,28,32,35,36,37,44,51,54,55,60,67,73,76,79,81,82,83,84,86,93,96,99,101,103,108,110,113,118,119,130,131,137,139,140,141,142,143,152,160],step_hyperbol:99,step_index:99,step_interv:141,step_sourc:[89,96,99],stepgrid:151,stepgrid_dimsplit:117,steps_max:[139,141,143],stiff:139,still:[1,5,7,8,13,16,18,22,24,26,32,34,39,51,52,63,66,67,72,76,81,99,105,110,111,117,118,119,120,121,122,124,130,131,142,148],stnd:47,stommel_storm_modul:117,stop:[32,71,77,113,121,141,143,154],storag:[118,126],store:[0,1,13,33,40,51,53,54,67,72,92,93,96,101,102,103,111,113,119,138,140,142,148,151,152,154],storm:[12,17,24,25,45,117,120,121,122,123,125,126,127],storm_atcf:148,storm_fil:[142,148],storm_ibtrac:148,storm_modul:117,storm_nam:148,storm_radiu:148,storm_radius_fil:148,storm_specif:142,storm_specification_typ:142,storm_targ:148,str:[0,1,3,30,59,92,139,140,148,154],strait:133,strang:[89,99,139,141,143,157],strategi:6,stream:77,stress:[83,93],stretch:[66,154],strict:[61,81],stride:[22,154],strike:[30,70],strike_direct:30,string:[0,1,3,7,30,32,44,47,51,53,59,60,77,84,86,87,89,92,93,98,104,106,139,142,148,154],strip:[59,133,154],strip_archive_extens:59,stripe:51,strong:[99,105],strongli:[67,105],structur:[7,10,22,32,38,55,58,62,73,98,99,119,133,138,154],stub:121,student:4,studi:[48,64],style:[6,22,28,30,38,49,51,66,72,77,81,86,121,142],sub:[30,111,154],subclass:30,subdirectori:[5,12,18,20,22,23,35,36,54,55,58,62,69,79,88,93,106,111,138,142,144,150,154],subdivid:[30,70],subdividedplanefault:30,subdivis:30,subduct:[48,70],subfault:[30,45,121,122,156],subject:[51,66,110,140,142],submodul:[26,28,52,55,57],subpackag:106,subplot:[0,30,66,79,133],subprocess:123,subrepo:55,subrepositori:[28,55],subroutin:[4,6,9,16,22,32,63,110,117,131,139,140,151,157,160],subsampl:[53,152,156],subsequ:[3,10,67],subset:[30,32,39,66,121,133,152,154,156],subsid:[124,135],substanti:[28,54,81,117,123,126],substitut:[61,81],subsurfac:152,subtleti:66,succeed:99,succesfulli:84,success:[67,98,154,157],successfulli:[62,98],suffici:[13,16,18,20,70,71,108,113,142],suffix:[62,154],suggest:[4,24,29,47,53,54,56,58,79,80,105,129,131,142,159],suit:[28,51,111],suitabl:[5,8,16,20,45,48,51,98,109,131,134,148,154],sum:[39,44,70,93,101,151],sum_:160,sum_p:160,summar:[3,28,31,110,112,157],summari:[24,25,55,121,139,140,141,142],superbe:[87,139,141,143],superbee_limit:87,superclass:99,supercomput:[91,93,94],superposit:70,superpow:87,superpower_limit:87,supplement:[38,66,144],supplementari:111,suppli:[110,148,157,160],support:[4,8,13,18,22,38,41,48,51,56,57,70,80,81,83,84,89,92,93,95,97,99,110,117,119,120,121,122,126,127,131,133,139,140,142,148,149,152,155,158],suppos:[16,63,66,67,77,106,110],suppress:[0,2,3,28,51,59,118,120,139,140],sure:[1,20,28,40,54,55,56,57,58,67,73,83,92,94,96,98,102,104,134,154,155,156],surfac:[17,22,25,30,32,39,44,45,46,48,51,70,76,78,84,91,103,107,110,117,133,134,142,152],surface_or_depth:[51,78],surg:[12,17,24,25,45,117,120,121,122,123,126,148],surge_data:142,surround:[110,154],surviv:81,svg:18,sw_aug_2d:132,swag:24,swap:154,swaphead:154,sweep:[8,131],symbol:[3,67,106],symmetr:[3,47,157],symmetri:16,syntax:[11,57,137],sys:[39,66,86,141,143],system:[4,16,17,23,36,37,51,52,58,59,63,71,72,81,91,93,94,96,97,100,103,106,111,131,139,141,143,150,157,160],systemat:22,t0000:67,t0001:[67,68],t0002:67,t_end:99,t_r:5,t_stays_dri:39,tab:[13,54,129],tabl:[59,64,76,92],tackl:[24,28],tag:[15,51,55,57,107,136,140,141,146,147],take:[5,6,22,27,28,30,32,47,54,64,66,67,70,77,83,89,96,99,103,104,105,110,111,116,122,135,139,140,141,142,154,157,160],take_one_step:99,taken:[6,32,66,70,93,99,110,139,157],tall:0,tan:77,tank:[16,48],tar:[13,59,123,129],tarbal:[55,155],tarfil:[18,55,58,120,121,122,123,124,125,126,127,128],target:[5,58,77,84,96,124],task:76,tchknnnnn:130,tck00100:118,tck:118,tckaaaaa:118,tckbbbbb:118,tcp:13,tcsh:94,tcvital:[121,148,149],td9635:148,td9636:148,teach:[45,48,109],team:[4,24,61],techniqu:[17,26],technolog:[4,81],tell:[53,68,72,77,83,92,106,111],templat:84,temporari:101,temporarili:67,ten:[4,73],tend:[39,99],tend_max:32,tensil:17,tensor:30,tensorproductfault:30,term:[4,25,45,48,61,70,84,89,90,99,110,120,121,132,139,141,142,143,146,147],termin:[85,137,139,140],terrain:64,terrel:4,test:[22,25,30,35,38,41,50,51,55,56,57,58,64,76,81,82,84,90,91,97,104,105,110,114,118,119,120,121,124,126,131,143,148,151,152,154],test_acoust:111,test_app:[104,111],test_bind:29,test_dtopotool:30,test_etopo1:[121,152],test_shallow_spher:111,test_topotool:[114,154],testpypi:55,teton:51,tex:1,text:[11,54,55,59,72,86,92,99,117],tfinal:[5,83,86,103,130,139,141,143],tfluct:99,tfluct_solv:99,than:[3,5,6,13,16,18,20,22,28,29,30,32,39,44,51,54,55,58,59,60,62,63,64,66,69,70,72,76,79,83,84,86,89,92,93,94,96,97,99,104,106,110,111,113,116,117,118,119,120,121,123,124,126,129,130,133,134,135,138,139,140,142,148,149,151,152,154,157,160],thank:[4,91],thei:[3,5,6,13,16,24,27,28,30,32,38,39,44,48,51,54,55,58,59,60,63,66,67,72,76,89,91,96,99,104,110,111,119,126,135,138,142,148,152,154,157],them:[5,13,18,22,28,29,30,32,44,51,54,67,68,73,81,83,88,92,93,94,96,104,108,111,114,123,133,145,148,154,157],theori:[61,81,160],therefor:[84,94,121,152],thereof:13,thesi:[17,99],theta:87,theta_limit:87,thi:[0,1,2,3,5,6,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,64,66,67,68,70,71,72,76,77,79,80,81,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,113,114,116,117,118,119,120,121,122,123,124,126,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,148,149,150,151,152,154,155,156,157,158,159,160],thing:[0,13,16,22,28,29,39,48,54,59,79,88,110,111,120,125,130],think:[58,64,66,97],third:[16,32,53,87,151,154],thn:139,thoroughli:92,those:[4,6,10,12,22,24,48,51,52,55,66,73,83,84,86,93,96,101,110,111,113,124,126,130,144,150,154,157],though:[3,39,73,148,152],thought:[126,134],thousand:[4,73],thread:[41,71,110,124,151],threat:4,thredd:[39,66,152,156],three:[3,13,17,22,30,32,48,51,63,67,70,94,98,104,111,133,139,142,152,154,157],threshold:64,through:[4,13,28,35,36,44,48,51,66,67,73,76,84,96,101,103,104,106,109,110],throughout:119,thu:[6,47,93,96,121,148],tick:51,ticklabel:116,ticklabel_format:[39,49],tidal:[93,134],tide:[44,45,47,121,134,154],tidesandcurr:47,tier:13,tild:160,time:[0,1,5,6,7,10,14,16,18,20,22,25,27,28,30,32,34,35,36,38,39,40,41,42,44,45,46,47,48,51,53,54,59,60,67,68,70,71,72,73,77,81,83,86,87,91,92,93,99,101,103,110,111,113,116,118,119,121,122,123,126,130,131,133,135,137,138,141,143,148,152,155,156,160],time_files_scanf:158,time_integr:99,time_offset:148,time_zon:47,timer:120,timespan:59,timestep:[86,93,118,120,139,141,143,148],timezon:59,timing_plot:123,tip:[24,45,58,76,90,91,96,105],tipe:103,titl:[0,1,4,17,24,39,44,51,59,66,76,91,119,133,154],title_with_t:[0,77],to_jshtml:18,todo:[16,131,148,154,160],togeth:[5,16,18,28,29,30,54,56,70,110],toggl:141,token:29,tokyo:148,toler:[5,32,97,104,110,111,119,140,141,142],tolsp:110,too:[6,47,51,54,55,118,133,141,143],took:24,tool:[7,8,17,22,23,28,30,32,33,35,36,39,45,46,47,48,51,53,56,57,58,59,67,70,75,76,77,78,80,91,106,109,114,115,119,120,124,125,142,144,152,154,156,158],toolkit:[94,158],top:[0,1,3,11,23,29,30,51,54,55,57,58,70,77,91,96,97,106,111,130,137],topgraphi:154,topic:67,topo1:152,topo1writ:154,topo2kml:59,topo2kmz:[59,127],topo2writ:154,topo3writ:154,topo:[25,32,39,45,48,51,53,59,66,78,106,113,115,121,123,126,134,142,152,154],topo_data:142,topo_fgmax_mask:66,topo_fil:154,topo_file_nam:59,topo_fnam:154,topo_func:154,topo_miss:123,topo_styl:33,topo_typ:[32,39,53,59,66,117,118,121,124,152,154],topo_upd:113,topo_xlim:51,topo_ylim:51,topofil:[32,53,59,121,122,123,124,142,152,154],topograph:51,topographi:[16,17,25,32,44,45,48,53,59,64,70,78,108,109,113,114,115,117,118,121,124,127,133,134,135,146,147,153],topograpi:152,topoplotdata:117,topotool:[39,45,47,53,59,66,114,115,116,117,118,121,122,127,152,153],topotools_exampl:[109,154],topotyp:[126,142,152],topotype1:154,torrilhon:87,tort:[61,81],total:[6,30,51,70,93,99,139,140,141,143,151],total_energi:93,total_step:[139,141,143],touch:66,tout:143,toward:[4,30],tprint:[140,141],trace:93,traceback:77,tracer:132,track:[18,24,25,28,32,33,45,51,54,56,58,71,83,91,104,111,113,122,124,127,132,142,148],track_color:148,tracker:28,tradeoff:110,tradit:[86,92],traffic:[131,157],trail:[58,59],tran:17,tranpsort:139,trans_cor:89,trans_inc:89,transect:[32,142],transfer:29,transform:[5,41],translat:70,transmiss:99,transmit:139,transon:119,transpar:[51,59],transport:[139,141,143],transpos:5,transvers:[8,89,119,126,131,132,139,157,160],transverse_wav:[89,139,141,143],trap:41,trapezoid:38,travel:140,travi:[22,126],tree:[52,58,96,137],tri:148,triangl:70,triangular:[30,45,121],trickeri:55,trigger:92,troubl:[35,36,76,91],troubleshoot:[25,56,57,91],trucat:18,truli:98,truncat:[16,92],tscale:59,tstart:99,tstart_max:32,tsunami:[4,5,16,17,18,24,25,32,39,45,46,52,64,70,93,110,113,116,122,123,133,134,135,142,149,152],tt3:[70,154],tulan:24,tune:[26,140],tupl:[3,30,47,59,70,77,89,93,154],turbul:[48,99],turn:[18,44,46,48,59,74,77,93,111,118,124],tutori:[13,29,55,79,82,86,91,100,106,109],tvd:[83,89,99,160],twice:[51,139],twine:55,twitter:24,two:[0,3,4,7,8,15,17,22,25,28,30,32,44,47,51,52,54,59,67,72,77,83,89,92,93,96,99,102,104,108,109,110,111,113,117,118,121,123,130,131,133,136,137,141,142,152,154,157,160],two_d_classic_sourc:84,txt:[28,32,44,50,55,60,81,93,119,120,121,130,148],txxxx:92,type:[3,4,7,13,20,28,30,35,36,40,44,51,62,67,77,78,79,83,84,85,87,89,94,95,99,100,103,104,133,140,141,142,148,149,152,154,160],typic:[3,20,39,62,63,67,70,72,73,79,84,94,96,99,101,110,140,141,151,152,155,156,157,160],typo:122,u_l:[97,132],u_r:[97,132],u_t:[97,103],u_x:103,ubar:97,ubuntu:13,ucar:[68,92],ucsb:[30,70,156],ucsbfault:[30,70],ulimit:71,ultim:38,ultrabe:87,unaccept:51,unalt:51,unapp:51,unavail:27,uncertainti:[48,64],unchang:[5,67],unchosen:66,uncommit:[28,50,55],undefin:102,under:[4,7,22,32,37,51,52,54,57,61,63,76,81,89,91,111,119,121,129],underflow:113,underli:[3,51,119],underlin:28,understand:[9,25,35,36,48,76,91,103,110,131],understood:48,underwat:[45,51],undesir:130,undivid:110,unequ:133,unexpect:[47,51,59,62,148],unidata:[68,92],uniform:[30,32,66,70,73,84,121,152],uniformli:152,unind:[59,148],uninstal:[55,58,106],union:[133,152],uniqu:[1,72,118,148],unit:[30,46,47,52,70,89,119,148],univers:[4,17,24,54,61,81,98],unives:24,unix:[40,69],unknown:[30,101],unkown:101,unless:[6,32,40,41,59,97,105,134,139,140,154],unlik:[28,32,54,55,72],unlimit:[71,92],unmap:89,unnam:148,unnecessari:126,unnecessarili:114,unneed:118,unpack:[55,124],unpredict:67,unrealist:32,unrecogn:104,unset:[66,110],unsplit:[89,139,141,143],unstabl:118,unstructur:154,unsuccess:98,unsur:139,untar:57,unterweg:81,until:[13,32,60,66,135],unus:[2,92],unzip:51,upbnd:[140,141],updat:[6,12,13,22,23,25,32,49,52,57,58,60,79,91,99,101,102,105,108,113,117,119,120,121,122,123,124,131,140,141,143,145,148,151,157],update_saved_valu:99,updip:[30,70],upgrad:80,uplift:[124,135],upload:55,upon:[5,101],upper:[22,32,33,38,87,89,96,133,139,141,143,152,154],upper_bound_limit:87,upper_glob:89,uprint:[140,141],upstream:55,upstrik:[30,70],upward:48,upwind:139,url:[4,12,17,51,55,121,122,152,154],usa:148,usa_ag:148,usag:[0,1,2,3,13,45,51,56,92,121,148,154],use:[3,4,5,12,13,14,18,20,21,22,25,26,28,29,30,32,34,35,36,38,39,40,41,44,45,46,47,48,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,75,76,77,79,80,81,83,84,85,86,87,88,89,91,92,93,94,96,97,99,100,101,102,103,104,105,106,108,110,111,114,116,117,118,119,120,121,125,126,129,131,132,133,134,137,139,140,141,142,143,148,152,154,155,156,157,158,159,160],use_adjoint:5,use_for_kml:51,use_fwav:[131,139,141,143],use_petsc:[88,94],used:[0,1,2,3,4,5,6,7,8,11,13,14,16,18,20,22,23,24,28,29,30,32,33,35,36,38,39,40,41,42,44,45,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,70,71,72,73,76,77,79,81,83,84,86,87,88,89,91,92,94,96,97,98,99,101,103,104,106,107,110,111,114,118,119,120,121,122,123,124,125,126,130,131,133,134,135,137,138,139,140,141,142,143,146,148,151,152,154,157,158,160],useful:[0,3,10,19,25,27,28,32,35,36,41,44,46,49,50,51,53,56,57,59,66,71,72,78,81,84,93,105,106,110,111,121,124,131,133,139,140,142,152,154,155,160],useoffset:[39,49],user:[0,2,3,4,5,6,12,13,19,20,22,23,25,26,27,28,32,41,48,51,56,58,59,64,67,70,77,84,85,88,92,94,102,104,105,106,110,117,119,121,123,131,139,141,142,143,145,154,160],user_bc_low:96,usernam:[28,29],uservari:67,uservariablefil:67,uses:[29,30,35,36,45,51,53,54,67,73,84,86,89,94,104,111,119,131,132,135,142,151,154,160],usg:[4,30,156],using:[0,1,3,4,5,6,7,9,11,12,13,14,16,17,18,19,22,23,25,26,28,29,30,32,33,35,36,37,39,41,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,62,63,64,66,68,69,70,71,72,73,76,77,78,79,80,83,84,85,86,87,89,91,92,94,95,96,97,99,101,102,103,105,106,110,111,117,120,121,123,124,126,129,131,133,135,139,141,142,147,148,151,152,154,155,156,158,160],usr:68,usual:[0,2,3,5,6,30,39,44,46,51,59,62,68,70,72,88,89,94,96,97,99,104,108,110,119,131,139,140,141,142,143,155,157],utah:24,utc:[51,59],util:[23,25,28,45,51,72,76,79,91,106,111,138,153,154,155],uwamath:13,valid:[3,48,70,86,93,98,101,119,142,148,149,154],valout:[68,72,121,124,151],valout_geo:68,valout_nc:68,valout_nc_geo:68,valu:[3,5,6,7,16,18,20,22,27,30,33,34,35,36,38,39,41,44,45,47,49,50,51,53,59,60,62,64,66,67,70,71,72,77,84,89,91,92,93,96,97,98,99,101,103,104,110,111,113,114,116,117,119,121,123,124,126,130,131,133,134,135,139,140,141,142,143,148,149,152,154,155,157,160],valueerror:[30,148,154],valuemax:32,van:[87,99,139,141,143],van_leer_klein_sharpening_limit:87,vancouv:133,vanish:5,vanleer:[83,99,139,141,143],vari:[3,15,17,25,30,39,45,53,64,96,98,117,124,131,132,134,136,140,160],variabl:[0,3,5,13,14,18,22,25,27,28,30,32,35,36,37,40,44,45,50,51,54,57,58,67,69,71,73,77,83,84,92,94,98,99,101,102,104,106,117,118,119,121,123,130,131,139,140,141,143,148,152,154,155,157],variable_dt_refinement_ratio:[140,142],variable_eta_init:135,variant:[20,56,104,111],varieti:[44,86],variou:[12,20,22,30,38,43,48,54,67,70,77,79,89,103,105,106,110,119,131,138,142,148],vastli:134,vector:[5,18,22,83,87,93,101,121,131,132],veloc:[16,18,32,47,60,67,79,96,97,103,119,134,139,140,141,142,143,157],verbatim:54,verbos:[28,30,33,47,59,66,86,89,93,99,111,133,139,141,143,148,154],verbosity_regrid:[125,140,141],veri:[3,5,16,18,22,48,51,55,56,59,70,77,81,84,92,93,94,95,96,99,111,114,118,133,135,139,149,152],verifi:[47,104,111,156],verifyerror:104,versa:5,version:[0,1,4,5,6,7,8,9,11,13,15,16,18,20,22,23,28,30,32,34,38,39,41,44,45,46,48,51,53,56,57,59,63,64,66,67,68,70,71,73,76,77,79,80,84,87,91,92,94,97,99,100,102,105,107,110,111,113,114,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,135,136,137,139,140,141,142,143,146,147,148,152,154,157,160],versu:154,vertic:[30,38,48,51,59,66,133,134,142,154,156],via:[5,13,22,23,24,28,29,30,35,36,41,42,44,46,48,51,54,55,57,58,60,62,66,67,70,71,73,77,80,83,89,92,95,98,100,102,106,110,111,121,124,131,133,137,144,146,147,152,154,157],vice:5,video:[24,108,124],view:[3,4,22,35,36,44,45,51,53,54,59,72,76,78,79,83,94,100,105,117,121,144,145],viewabl:[51,86],viewable_attribut:86,vim:28,violat:[99,154],virtual:[4,13,25,27,101],vis:86,visclaw:[1,7,13,22,23,24,28,39,44,45,46,49,51,55,56,57,58,62,66,67,73,77,78,79,80,91,95,100,106,137,138,144],visibl:[12,13,43,51,109,144],visit:[22,25,76,129],visual:[23,24,28,35,36,44,45,57,58,67,72,73,76,91,95,96,106,117,124,158],vogl:4,volcano:4,volum:[4,17,29,32,42,53,59,66,67,91,124,133,140,151,152,157],vrt:51,vstack:133,w_1:97,w_2:97,w_3:97,wai:[5,6,13,16,26,28,35,36,38,39,44,51,53,54,57,58,59,61,62,77,79,80,81,83,86,88,89,94,96,98,100,103,105,106,108,109,113,119,120,121,124,129,131,133,138,139,145,149,152,157,159,160],wait:13,wall:[16,41,96,103,118,121,123,139,141,143,151],wang:30,want:[0,3,10,12,13,14,19,20,24,28,29,32,35,36,37,39,40,41,44,47,50,51,54,55,57,58,59,62,63,64,66,71,77,79,83,84,85,86,92,93,94,106,109,111,118,121,124,129,131,132,133,137,138,141,142,145,148,152,154,155],wari:97,warm:87,warn:[24,28,92,93,99,126,139,155],warp:51,warranti:[61,81],washington:[4,17,24,54,61,123,133,154],water:[5,16,17,25,39,44,45,46,47,48,59,66,73,76,84,91,114,115,119,121,122,131,133,134,135,142,152,154,156,157],water_level:47,wave:[4,5,6,16,17,25,32,39,48,51,52,70,87,89,91,96,97,99,110,117,119,120,126,132,133,134,139,140,141,142,143,157],wave_toler:[110,142],wavelength:48,web:[23,25,28,35,36,51,54,55,121,144,154],webinar:24,webpag:[22,24,35,36,42,46,51,55,62,122,134],webserv:13,websit:[16,51,54,144,154],weight:51,welcom:[24,81],well:[4,6,18,28,33,45,51,52,54,58,59,66,70,71,72,73,76,79,80,98,99,108,120,121,124,132,135,139,140,146,147,148,157,160],wellington:148,wendroff:[89,99,139,141,143,160],weno:[73,91,99],weno_ord:99,went:[58,132],were:[4,6,14,18,20,32,44,54,60,63,67,68,84,110,113,119,122,126,133,135,152],weren:125,west:152,western:154,wet:[32,39,45,66,133],wet_point:[39,66],wetland:[39,66],what:[5,6,9,13,14,22,25,28,30,31,32,38,48,50,51,54,55,57,58,59,62,63,66,67,68,72,76,83,86,90,98,101,103,106,109,110,111,118,133,134,138,139,141,142,143,144,148,152,154,156,157],whatev:[29,68,83,98,131],when:[5,14,15,16,18,20,28,29,30,32,39,40,41,44,49,50,51,53,54,55,57,58,60,64,66,67,70,71,72,73,76,77,79,83,90,91,92,94,95,99,102,106,110,111,113,114,116,118,119,120,124,126,128,131,133,134,135,136,138,139,140,141,142,143,144,148,152,154,155,156,157,158,160],whenc:93,whenev:[28,118,157],where:[1,3,5,6,12,13,16,22,27,30,32,35,36,38,39,40,44,45,48,51,53,58,59,60,62,64,66,67,68,72,73,79,86,89,90,91,92,94,97,106,110,113,114,117,118,119,124,126,130,132,133,134,135,138,139,140,141,142,143,148,151,152,154,157,160],wherea:[44,51,76,94],wherev:[29,155],whether:[3,6,13,16,22,47,53,56,58,60,61,62,67,81,89,92,93,97,98,99,110,111,119,131,133,139,140,142,154],which:[0,1,3,4,5,6,7,11,12,13,14,16,18,20,22,25,28,29,30,32,33,35,36,37,38,39,43,44,46,48,51,53,54,55,56,57,58,59,60,62,64,66,67,70,71,72,77,79,80,83,84,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,108,110,111,113,114,117,119,121,122,124,126,130,131,132,133,134,135,139,140,141,142,148,149,152,154,156,157,159,160],whichclaw:155,whidbei:[39,66,133],white:59,white_r:39,whith:84,who:[10,12,19,22,24,32,41,48,56],whole:[28,51,93,94],whose:[3,77,84,96,97,135,139,140,154],wide:[58,106,132],wider:77,width:[30,51,59,70,72,89,96,101,110,133,141,143],wiki:100,wikipedia:53,wind:[121,142,148,149,154],wind_forc:142,wind_index:142,wind_refin:142,wind_spe:148,window:[13,30,67,79,137],wisdom:59,wise:[28,99],wish:[4,13,14,15,22,29,35,36,48,51,58,67,75,76,91,96,99,100,102,106,108,110,119,136,144,146,147,155],within:[6,16,28,29,54,58,66,73,77,95,104,106,110,131,133,138,144,154],without:[16,22,40,44,48,59,61,62,63,66,67,77,79,81,87,91,92,93,104,106,111,133,137,141,143,148,155,157],wkt:51,wmo:148,wmo_:148,wmo_ag:148,won:[12,13,66,84,154],woodward:120,word:[93,121,148],work:[3,5,8,13,16,19,20,22,24,25,26,28,29,32,35,36,40,45,48,51,52,53,54,55,56,57,58,59,66,67,69,70,71,77,80,81,82,83,85,86,87,91,92,93,94,97,99,100,105,106,108,109,110,111,115,116,117,118,119,120,121,124,126,127,129,131,137,138,139,140,142,144,149,152,155,159],workflow:[108,144,148],workshop:[108,124],workspac:[24,67,101],world:[48,64,91,94,148],worst:134,worth:101,worthwhil:96,would:[2,3,12,13,16,24,27,28,32,38,41,51,53,55,58,60,62,63,66,70,72,77,81,83,86,89,93,104,111,119,133,134,135,138,139,142,148,152,157],wouldn:63,wpalg:17,wrap:[59,81,84,89,99,104,148],wrapper:154,write:[7,28,30,33,38,39,44,45,50,53,54,64,70,72,73,76,83,86,89,90,92,93,94,98,119,121,141,143,148,152,154],write_:92,write_arrai:92,write_atcf:148,write_aux:[92,98],write_aux_alwai:[83,86,93],write_aux_init:[83,86],write_aux_int:93,write_geoclaw:148,write_hurdat:148,write_imd:148,write_jma:148,write_p:[92,98],write_tcvit:148,write_to_fgmax_data:33,written:[6,11,25,30,32,40,44,58,59,60,61,70,72,73,77,81,90,91,92,96,119,131,139,140,141,142,143,148,154,157],wrong:[58,63,67,93,106],www:[4,13,17,30,39,45,54,60,61,66,68,81,84,89,92,94,120,122,148,154],x1_desir:33,x1_domain:33,x1_new:33,x2_desir:33,x2_new:33,x_1:[5,133],x_2:[5,133],x_c:133,x_cell:59,x_center:133,x_edg:[59,133],x_i:[131,157,160],x_inch:59,x_mask:154,xarr:89,xarrai:154,xarray_d:154,xclaw:[35,36,86],xclawcmd:86,xclawerr:86,xclawout:86,xcode:80,xdir:86,xiaom:30,xinsheng:[4,52],xinshengqin:[4,52],xleft:[140,141],xlf:100,xlimit:[0,44,51,124],xllcenter:[53,121,152],xllcorner:[53,152],xllower:121,xlow:72,xlower:[0,3,16,22,27,39,84,121,141,143,152,154,157],xlowerg:84,xmax:0,xmin:0,xpoint:142,xrang:96,xtick:[39,49],xupper:[0,22,141,143,154],xxdiff:111,xxx:152,xxxx:67,xy_fil:32,xy_fnam:33,xylim:30,xzf:57,y_c:133,y_cell:59,y_center:133,y_edg:[59,133],y_inch:59,year:[4,17,22,51,59,91,112,122,148],yellow:[59,77,148],yellow_red_blu:77,yes:67,yet:[1,13,18,20,25,48,52,54,57,59,76,99,119,120,121,122,123,124,125,126,127,128,129,131,139,141,159],yianni:[4,17,81],yield:3,yleft:[140,141],ylimit:[0,44,51,124,138],yllcenter:[53,121,152],yllcorner:[53,152],yllower:121,ylow:72,ylower:[3,22,27,39,84,121,141,152,154],ylowerg:84,ymax:0,ymin:0,yml:111,yong:17,you:[0,3,4,5,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,32,35,36,37,38,40,41,42,44,47,50,51,52,53,54,55,56,57,58,59,62,63,66,67,68,69,70,71,72,73,75,76,77,79,80,81,83,84,85,86,88,91,92,93,94,95,96,97,99,100,101,102,103,105,106,107,108,109,111,113,118,119,120,121,124,126,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,150,152,155,156,157,159],your:[4,6,15,16,19,20,24,25,26,35,37,41,44,53,54,55,56,57,58,68,71,76,77,79,81,82,83,84,85,88,90,91,93,102,103,105,106,107,108,110,111,113,121,131,136,137,146,147,152,155,157],yourself:[41,44,57],youtub:[24,108,124],ypoint:142,yupper:[22,141,154],z_allow_wet:39,z_dry:39,z_format:[39,66,154],zdry:[39,66],zenodo:[4,57,124,125,126,127,128,129],zero:[3,16,30,32,39,41,59,67,83,96,97,101,103,126,133,134],zip:[12,51,55],zipinfo:51,zlib:92,zlim:59,zlower:22,zmask:66,zmax:[39,66],zmin:[39,66],znearshor:66,zone:[48,51,59,140,141],zoom:[24,51],zsh:94,zshallow:66,ztopo:66,zupper:22,zvar:154},titles:["ClawPlotAxes","ClawPlotData","ClawPlotFigure","ClawPlotItem","About this software","Guiding AMR with adjoint flagging","Adaptive mesh refinement (AMR) algorithms","AMRClaw Description and Detailed Contents","AMRClaw for 1d problems","Doxygen documentation of AMRClaw","AMRClaw Flowcharts","Application documentation","Clawpack Applications repository","Amazon Web Services EC2 Clawpack AMI","b4run function","b4step default routines","Boundary conditions","Bibliography","Changes to master since v5.8.2","Converting from Clawpack 4.3 to 4.6","Converting from Clawpack 4.6 to 5.0","Clawpack 4.x links","Changes in Clawpack 5.0","Clawpack components","Clawpack Community","Full Table of Contents","Contributing examples and applications","current_data","Developers\u2019 Guide","Docker for Clawpack","dtopotools module for moving topography","Fortran 77 vs. Fortran 90 files","Fixed grid monitoring","fgmax_tools module for working with topography data","Fixed grid output","Running an example","Testing your Fortran installation and running an example","Testing a PyClaw installation and running an example","Specifying flagregions for adaptive refinement","Force Cells to be Dry Initially","Fortran version","Fortran Compilers","Examples from the book FVMHP","Clawpack Gallery","Gauges","GeoClaw Description and Detailed Contents","Getting started with GeoClaw","geoclaw.util module of utility functions","Cautionary Hints on using GeoClaw","GeoClaw plotting tools","Keeping track of repository versions with Git","Visualizing GeoClaw results in Google Earth","Using the GPU version of Clawpack","Grid registration","Guide for updating this documentation","Guide for doing a Clawpack release","Installing Clawpack","Options for installing Clawpack Fortran codes","pip install instructions","kmltools module of utility functions","Lagrangian gauges for particle tracking","License","Clawpack Makefiles","Library routines in Makefiles","Manning friction term","The mapc2p function","Marching Front algorithm","Plotting using Matlab","Using NetCDF output","Creating a new application directory","Earthquake sources: Fault slip and the Okada model","Using OpenMP","Output data formats","Which Clawpack solver should I use?","Clawpack Community Photos","Plotting examples","Plotting with Visclaw","Plotting hints and FAQ","Plotting routines for GeoClaw","Plotting options in Python","Installation Prerequisites","About PyClaw","PyClaw Basics","Understanding Pyclaw Classes","Porting a problem from Clawpack 4.6.x to PyClaw","Running PyClaw in the cloud","Pyclaw Controller Class","Pyclaw Limiters","Working with PyClaw\u2019s built-in examples","PyClaw Geometry","Going Further","PyClaw","Pyclaw Input/Output Package","PyClaw output","Running in parallel","Plotting PyClaw results","Setting up your own problem","Riemann Solver Package","PyClaw Solutions","Using PyClaw\u2019s solvers: Classic and SharpClaw","Installing PyClaw","PyClaw State","Troubleshooting","PyClaw tutorial: Solve the acoustics equations","Pyclaw Utility Module","Python Hints","Python path","qinit default routines","Quick start guide for storm surge modeling","Quick start guide for tsunami modeling","AMR refinement criteria","Regression testing","v5.0.0 release notes","v5.1.0 release notes","v5.2.0 release notes","v5.2.1 release notes","v5.2.2 release notes","v5.3.0 release notes","v5.3.1 release notes","v5.4.0 release notes","v5.4.1 release notes","v5.5.0 release notes","v5.6.0 release notes","v5.6.1 release notes","v5.7.0 release notes","v5.7.1 release notes","v5.8.0 release notes","v5.8.1 release notes","v5.8.2 release notes","Releases of Clawpack and release notes","Checkpointing and restarting","Riemann solvers","Shallow water Riemann solvers in Clawpack","Ruled Rectangles","Setting sea_level","Set Eta Init \u2013 spatially varying initial surface elevation","setaux default routines","Set environment variables","Using setplot.py to specify the desired plots","Specifying classic run-time parameters in setrun.py","Specifying AMRClaw run-time parameters in setrun.py","Sample setrun.py module for AMRClaw","Specifying GeoClaw parameters in setrun.py","Sample setrun.py module for classic Clawpack","Saving and sharing results","Compiling the Sphinx documentation locally","src1d default routines","src default routines","Storm Specification Class and Tools","Sources for Storm Surge Data","Testing your installation","Timing Statistics","Topography data","Python tools for working with topo and dtopo","topotools module for working with topography data","Troubleshooting","Some sources of tsunami data","User files required for the Fortran code","Plotting with VisIt","Clawpack Virtual Machine","Wave-propagation algorithms"],titleterms:{"1d_fill_between":3,"1d_from_2d_data":3,"1d_plot":3,"2d_contour":3,"2d_pcolor":3,"case":135,"catch":28,"class":[83,86,148],"default":[15,107,135,136,146,147],"final":55,"function":[14,47,59,65,66,79,93,99,160],"import":106,"new":[46,54,69,88,111],"switch":67,"true":77,Adding:[28,51,88,96,131],For:6,Going:90,One:[131,132,160],The:[51,65,66,67,103],Use:102,Using:[5,13,25,29,38,52,58,63,68,71,93,96,99,131,138,157],about:[4,81],abov:29,access:79,acoust:[97,103],adapt:[6,16,25,38],add:77,addit:[51,140,142],adjoint:5,adjust:135,advect:97,after:130,afterfram:67,algorithm:[6,17,66,73,160],alias:51,all:[3,58,66],along:66,amazon:13,ami:13,amr:[3,5,6,22,66,71,110,133,140,142],amrclaw:[7,8,9,10,18,25,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,140,141,157],anoth:77,app:55,applic:[11,12,17,25,26,62,69,94],approach:8,arcsecond:[39,66],area:66,argument:66,arrai:[39,66,72,102],arriv:142,artifact:51,ascii:[72,92],attribut:[0,1,2,3,27,32,51,77,133],author:4,auto:[30,33,47,59,154],aux:[72,83],auxiliari:96,avail:[24,42],axes:49,b4run:14,b4step:[15,157],background:77,backward:[18,121,122,123,124,125,126,127,128],base:62,basic:[51,82,95],bathymetri:156,befor:157,behavior:135,below:66,better:29,between:[29,77],bibliographi:17,binari:72,binder:29,book:42,boundari:[6,16,96,157,160],bounding_box:133,branch:[28,54],buffer:66,bug:28,built:[54,88],buoi:156,burger:97,candid:55,capac:160,cautionari:48,cell:[6,39,133],cfl:87,chang:[18,22,77,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],chardiff:111,check:[28,111],checkpoint:130,chile:51,choic:32,choos:[6,66],cite:[4,91],clamshel:16,classic:[18,25,35,36,99,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,139,143,150],claw:[74,137],clawcode2html:11,clawpack:[12,13,17,18,19,20,21,22,23,24,25,29,43,52,54,55,56,57,62,73,74,84,87,99,100,120,121,122,123,124,125,126,127,128,129,132,143,159],clawplotax:0,clawplotdata:1,clawplotfigur:2,clawplotitem:[3,77],clawutil:[18,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],clinic:24,clone:[28,57],cloud:85,code:[11,25,28,39,46,57,58,74,111,155,157],color:77,colorbar:51,colormap:77,command:[29,37,67,79,88,155],commit:28,commun:[24,28,74],comparison:111,compat:[18,121,122,123,124,125,126,127,128],compil:[41,62,68,102,145,155],compon:[23,77],comput:[73,130],condit:[6,16,96,103,157,160],configur:54,contain:29,content:[7,25,28,39,45,66,77,83,93,99,111,133],continent:133,continu:111,contourf:77,contribut:[26,28,132],contributor:81,control:[83,86,103],convers:20,convert:[11,19,20],convex:133,coordin:[49,51],copi:69,correctli:94,cover:133,coverag:28,creat:[13,29,39,51,55,66,67,69,83],creation:83,criteria:110,current_data:[27,79],curv:77,custom:[99,131],dart:156,data:[33,51,72,138,142,149,152,154,155,156,157],debug:[77,140],defin:[16,133],deform:135,dem:[39,66],demonstr:132,depend:[87,100],deprec:8,depth:49,deriv:[83,93],describ:17,descript:[7,45],desir:138,detail:[6,7,45],determin:66,dev:74,develop:[24,25,28,74],diff:111,differ:[32,51,58,63,73,77],dimens:[89,132,160],dimension:131,directli:13,directori:[58,62,69,77],displac:152,doc:54,docker:29,dockerfil:[29,55],docstr:[30,33,47,59,154],doctest:111,document:[9,11,30,33,47,54,55,59,91,120,121,145,154],doing:55,domain:[89,103],done:157,download:152,doxygen:9,drop:105,dry:[39,66],dtopo:153,dtopotool:30,duplic:62,each:[28,157],earth:51,earthquak:[70,156],easi:106,ec2:13,elev:[49,66,135],environ:[41,137],equat:[97,103,132],error:[28,102],eta:135,euler:97,event:[24,51],exampl:[12,25,26,32,35,36,37,39,42,44,46,51,58,66,67,69,75,88,91,94,133],exe:155,exist:69,experi:58,extra:54,extrapol:110,f2py:155,faq:77,faster:51,fault:70,featur:91,fflag:41,fgmax:[32,66],fgmax_tool:33,figur:[51,77],file:[13,29,31,32,39,51,53,54,55,57,63,67,77,79,111,130,133,142,152,157],fileio:92,find:[13,66,77],finer:6,fix:[28,32,34,71,142],flag2refin:110,flag:[5,6,62,66,110,133,140],flagregion:38,flow:[25,83],flowchart:10,fly:76,forc:39,force_dry_init:39,fork:28,format:[32,72,152],formul:160,fort:[72,77],fortran:[22,25,31,36,39,40,41,57,80,102,111,155,157],found:67,frame:93,framework:55,friction:64,from:[13,19,20,22,25,28,30,33,37,39,42,47,54,59,66,79,84,88,95,133,154],front:66,full:25,fund:[4,81],further:90,fvmhp:42,galleri:[43,54,67],gaug:[44,51,60,93,156],gdal:51,gener:[18,22,30,33,47,54,59,121,122,123,124,125,126,127,128,142,154],geo:142,geoclaw:[5,15,16,18,22,25,29,39,45,46,47,48,49,51,71,74,78,107,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,133,136,142,146,147],geometri:89,geophys:25,get:[25,29,46,67],gfortran:[41,100],ghost:6,git:[28,50,54,57,80],github:[28,55],given:66,global:119,godunov:160,googl:51,gpu:52,grid:[6,16,32,34,53,71,89,142],guid:[5,28,54,55,108,109],guidelin:28,hack:74,hazard:48,hdf5:92,help:67,high:160,hint:[48,77,105],hll:132,host:29,how:[77,79,93],hpc3:74,html:[11,79],imag:[29,51],imagediff:111,implement:110,includ:[12,54],independ:87,indic:[66,91],init:135,initi:[6,39,66,96,103,135,157],input:[22,32,92,139,140],instal:[28,36,37,56,57,58,68,73,80,91,94,100,102,106,150,155],instanc:13,instanti:133,instruct:[28,58],integr:111,intel:41,interact:[79,88],interfac:73,intern:39,interpol:32,interpret:37,iplotclaw:79,ipython:[37,88],issu:28,item:77,jupyt:[12,29,37,144],kaust:74,keep:50,kinemat:70,kml:51,kmltool:59,kmz:51,lagrangian:60,latest:28,latex:79,latitud:[49,51],launch:13,layer:132,level:[28,135],lflag:41,librari:[51,63],licens:[4,61,81],limit:87,line:[37,79,88,111,155],link:21,load:51,local:145,locat:44,log:[13,93],longitud:[49,51],machin:[29,159],make:[77,94,144,155],make_kml:133,makefil:[40,62,63,96,130],man:64,map:51,mapc2p:65,march:66,mask:66,mask_outsid:133,master:[18,28],math:85,matlab:67,matplotlib:100,maxfram:67,maximum:142,mesh:[6,25],method:[0,1,2,3,133,160],mhw:66,migrat:25,miss:132,model:[48,70,108,109,156],modif:39,modifi:[28,63,130],modul:[30,33,47,59,91,104,141,143,154],monitor:[32,142],more:[6,36,40],most:28,move:[29,30],multipl:51,name:[62,63],need:51,netcdf:[53,68,72,92,152],never:28,next:[56,57,58,100],nose:100,note:[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],notebook:[12,29,37,105,144],number:55,numpi:100,object:[89,138],obtain:100,okada:70,old:8,older:25,onli:66,open:55,openmp:71,oper:80,option:[51,57,79,94,96],order:102,osf:55,other:[17,18,23,24,29,32,54,77,120,121,122,123,124,125,126,127,128,129,133,135],out:[28,66],outdir:77,output:[32,34,62,66,67,68,71,72,83,92,93,111,130,139,140,142,155],overlai:51,overview:[25,138],own:[13,29,96],packag:[22,58,92,97],page:54,paper:17,parallel:[73,89,94,95,101],paramet:[22,44,77,79,103,139,140,142],particl:60,pass:94,patch:89,path:[67,106],pcolor:77,petclaw:[89,101],petsc:94,photo:74,pip:[58,80,155],pixel:111,plot:[3,13,22,25,32,44,46,49,51,60,62,67,68,75,76,77,78,79,88,94,95,111,138,144,155,158],plot_typ:3,plotax:51,plotclaw:67,plotdata:51,plotfigur:51,plotitem:51,point:[32,66],pointwis:131,polygon:133,port:84,post:76,potenti:132,ppflag:41,pre:41,prepar:55,prerequisit:80,previou:[24,54],previous_pts_chosen:66,print:140,printfram:79,problem:[8,84,96,103,157],procedur:32,process:[32,76],processor:41,produc:79,propag:160,provid:77,pth:106,publish:51,pull:28,pyclaw:[18,22,25,35,37,58,81,82,83,84,85,86,87,88,89,91,92,93,95,98,99,100,101,103,104,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,150],pyflak:28,pylint:28,pypi:55,python:[20,79,80,100,105,106,124,153],pythonpath:[106,137],q0002:72,qinit:[107,142,152],quantiti:[83,93],quick:[58,108,109],raw:72,read:[39,133],readm:11,recent:[24,28],rectangl:[38,133],rectangular:70,refer:[17,25,52,91,105],refin:[6,16,25,38,110,142],region:[66,110,133,142],registr:53,regress:111,relat:133,releas:[54,55,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],remot:28,remov:51,replac:63,report:28,repositori:[12,18,23,28,50,54,55,120,121,122,123,124,125,126,127,128,131],request:28,requir:[51,157],resolut:[51,160],resourc:25,restart:[29,83,130],result:[13,46,51,68,95,144],richardson:110,riemann:[18,25,91,96,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,157],roe:132,routin:[15,22,63,78,107,136,146,147],rst:11,rule:[38,133],run:[29,35,36,37,46,83,85,88,94,95,111,139,140,155],ruptur:70,sage:85,same:63,sampl:[39,66,141,143],save:[93,144],scienc:55,script:96,sea:135,sea_level:134,search:67,seismic:135,select:133,serial:[89,101,111],servic:13,session:24,set:[46,67,77,79,96,134,135,137,155],setaux:[136,157],setplot:[67,77,79,138],setrun:[22,44,139,140,141,142,143],shallow:[97,132],share:144,sharpclaw:99,shelf:133,shoot:[28,67],shore:66,should:73,signatur:99,simpl:[32,133],simul:83,simultan:111,sinc:18,size:77,slip:70,slu:133,softwar:[4,17],solut:[77,83,98],solv:103,solver:[73,83,91,96,97,99,103,131,132,157],some:[29,77,156],someth:77,sourc:[62,70,96,149,156,157,160],space:160,spatial:[135,157],special:[3,140],specif:[32,103,111,142,148,157],specifi:[38,60,77,79,110,138,139,140,142,157],sphere:16,sphinx:[54,145],sprint:[24,74],src1d:[146,157],src:[147,157],start:[25,29,46,108,109],state:101,statist:151,step:[56,57,58,100,157],stop:[13,29],storm:[108,142,148,149],stream:24,style:[32,54],subfault:70,submodul:12,support:[105,124],surfac:[49,135],surg:[108,149],sys:106,system:80,t0002:72,tabl:[25,91],tag:54,tar:[55,57],term:[64,96,157,160],test:[28,36,37,94,100,111,150],than:77,thi:[4,54],tide:156,tile:51,time:[139,140,142,151,157],tip:[28,40,49,51,94],titl:77,tool:[20,25,44,49,60,111,148,153],top:28,topo:153,topofil:66,topographi:[30,33,39,46,51,66,142,152,154,156],topotool:154,track:[50,60],transfer:13,travi:111,triangular:70,troubl:[28,67,155],troubleshoot:[58,102,155],tsunami:[48,51,109,156],tutori:[24,103,105],tvd:87,two:132,understand:83,univers:74,upcom:24,updat:[28,54,55],usag:39,use:[73,135],used:155,useful:[29,132],user:[16,24,29,73,157],using:[48,67,157],utah:74,util:[47,59,104],valu:[32,83],vari:[135,157],variabl:[41,62,96,137],version:[25,29,40,50,52,54,55,58,106],view:13,virtual:159,visclaw:[18,25,60,76,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],visit:158,visual:[25,51],washington:74,water:[49,97,132],wave:[131,160],web:13,webpag:[13,54,144],what:[77,79,93,132],when:93,where:93,which:[73,106],whichclaw:106,work:[4,33,88,153,154,157],workflow:28,workshop:[24,74],write:[66,96,111,133],written:93,your:[13,28,29,36,51,94,96,100,144,150],zenodo:55,zone:66}}) \ No newline at end of file diff --git a/v5.8.x/storm_module.html b/v5.8.x/storm_module.html index 8c9754522..97c6d2599 100644 --- a/v5.8.x/storm_module.html +++ b/v5.8.x/storm_module.html @@ -586,7 +586,7 @@

        Navigation

        -

        System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        +

        System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 15)

        Field list ends without a blank line; unexpected unindent.

          @@ -617,7 +617,7 @@

          Navigation

          -

          System Message: WARNING/2 (/Users/rjl/git/clawpack/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          +

          System Message: WARNING/2 (/Users/rjl/clawpack_src/clawpack_master/clawpack/geoclaw/surge/storm.py:docstring of clawpack.geoclaw.surge.storm.fill_rad_w_other_source, line 26)

          Field list ends without a blank line; unexpected unindent.