You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Code Health |[](https://landscape.io/github/UW-Hydro/RVIC/master)|
| Current Release DOI |[](http://dx.doi.org/10.5281/zenodo.32620)|
12
-
9
+
| Current Release DOI |[](https://zenodo.org/badge/latestdoi/11590212)|
13
10
14
11
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.
Copy file name to clipboardExpand all lines: docs/development/whats_new.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# What's New
2
2
3
+
v1.1.1 (7 February 2017
4
+
5
+
This release contains a number of bug and compatibility fixes.
6
+
7
+
### Enhancements
8
+
9
+
- Ability to pass a dictionary to top level RVIC functions (instead of only a file path). This allows for the generation of large ensembles of RVIC simulations in an interactive environment ([GH78](https://github.com/UW-Hydro/RVIC/pull/78)).
10
+
11
+
### Bug Fixes
12
+
13
+
- Fixed bug that in `tools/fraction2domain.bash` by using a temporary variable name ([GH88](https://github.com/UW-Hydro/RVIC/pull/88)).
14
+
- Fixed off-by-one error in `history.py` ([GH86](https://github.com/UW-Hydro/RVIC/pull/86)).
15
+
3
16
v1.1.0 (25 October 2015)
4
17
5
18
This release contains a number of bug and compatibility fixes.
Copy file name to clipboardExpand all lines: docs/user-guide/api.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ Almost all of RVIC is available via a public API.
6
6
import rvic
7
7
```
8
8
9
+
`rvic.parameters.parameters` and `rvic.convolution.convolution` both support either a path (string) to an INI style configuration file or a dictionary including configuration options. This feature is quite useful when generating ensembles of RVIC simulations.
10
+
9
11
Most of the internals of RVIC are stored int the `rvic.core` module:
0 commit comments