Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Hamman authored Feb 7, 2017
2 parents ce10fc8 + 622f45d commit 40fc9a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# RVIC Streamflow Routing Model

[![Documentation Status](https://readthedocs.org/projects/rvic/badge/?version=latest)](https://readthedocs.org/projects/rvic/?badge=latest) [![Build Status](https://travis-ci.org/UW-Hydro/RVIC.svg?branch=master)](https://travis-ci.org/UW-Hydro/RVIC) [![Code Health](https://landscape.io/github/UW-Hydro/RVIC/master/landscape.svg?style=flat)](https://landscape.io/github/UW-Hydro/RVIC/master) [![DOI](https://zenodo.org/badge/11590212.svg)](https://zenodo.org/badge/latestdoi/11590212)
| VIC Links & Badges | |
|------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| VIC Documentation | [![Documentation Status](https://readthedocs.org/projects/rvic/badge/?version=latest)](https://readthedocs.org/projects/rvic/?badge=latest) |
| Travis Build | [![Build Status](https://travis-ci.org/UW-Hydro/RVIC.svg?branch=master)](https://travis-ci.org/UW-Hydro/RVIC) |
| Code Health | [![Code Health](https://landscape.io/github/UW-Hydro/RVIC/master/landscape.svg?style=flat)](https://landscape.io/github/UW-Hydro/RVIC/master) |
| License | [![GitHub license](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://raw.githubusercontent.com/UW-Hydro/RVIC/master/LICENSE.txt) |
| Current Release DOI | [![DOI](https://zenodo.org/badge/11590212.svg)](https://zenodo.org/badge/latestdoi/11590212) |

The RVIC streamflow routing model is an adapted version of the model the model typically used as a post-processor with the Variable Infiltration Capacity (VIC) hydrology model. The routing model is a source-to-sink model that solves a linearized version of the Saint-Venant equations. This model, developed by Lohmann et al. (1996, 1998a, 1998b), has been used in many offline studies at a variety of spatial scales. Furthermore, the development of the impulse response functions (IRFs) is done as a preprocessing step, which considerably reduces the computation time in subsequent routing steps.

### Usage
See the [RVIC Documentation Site](http://rvic.readthedocs.org/en/latest/).

### License
RVIC is available under the GNU GPL v3.0 License. See LICENSE.txt for more information.
RVIC is available under the GNU GPL v3.0 License. See [LICENSE.txt](https://raw.githubusercontent.com/UW-Hydro/RVIC/master/LICENSE.txt) for more information.
2 changes: 1 addition & 1 deletion rvic/core/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def __update_out_data(self):
if np.isnan(self._out_data[field][self._out_data_i].sum()):
raise ValueError('nan found in output field: {0}, most likely '
'there is a nan/missing/fill value in the'
'input forcings')
'input forcings'.format(field))
# ------------------------------------------------------------ #

self._out_times[self._out_data_i] = self._write_ord
Expand Down

0 comments on commit 40fc9a5

Please sign in to comment.