-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add runoff volume calculator * parameterize variable names
- Loading branch information
1 parent
bdb9552
commit b8f03ae
Showing
9 changed files
with
417 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
{ | ||
"routing_params_file": "", | ||
"connectivity_file": "", | ||
"runoff_file": "", | ||
"runoff_volumes_file": "", | ||
"outflow_file": "", | ||
"routing": "", | ||
"lhs_file": "", | ||
"lhsinv_file": "", | ||
"adj_file": "", | ||
"nonlinear_routing_params_file": "", | ||
"nonlinear_thresholds_file": "", | ||
"dt_routing": "", | ||
"dt_outflows": "", | ||
"positive_flow": true, | ||
"initial_state_file": "", | ||
"final_state_file": "", | ||
"log": false, | ||
"log_stream": "", | ||
"log_level": "", | ||
"progress_bar": "", | ||
"job_name": "", | ||
"progress_bar": "" | ||
"log_level": "", | ||
"log_stream": "", | ||
"var_runoff_volume": "ro_vol", | ||
"var_river_id": "river_id", | ||
"var_outflow": "Q" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
Parameter Name,Type,Description | ||
routing_params_file,string,Path to the routing parameters file. | ||
connectivity_file,string,Path to the network connectivity file. | ||
runoff_file,string,Path to the file with runoff values to be routed. | ||
runoff_volumes_file,string,Path to the file with catchment level runoff volumes to be routed. | ||
outflow_file,string,Path where the outflows file should be saved. | ||
lhs_file,string,Path where the LHS matrix should be cached. | ||
lhsinv_file,string,Path where the LHS inverse matrix should be cached. | ||
adj_file,string,Path where the adjacency matrix should be cached. | ||
dt_routing,number,Time interval in seconds between routing computations. | ||
dt_outflows,number,Time interval in seconds between writing flows to disc. | ||
routing,string,Either 'linear' or 'nonlinear' routing- default 'linear'. | ||
nonlinear_routing_params_file,string,Path to the file with nonlinear routing parameters. | ||
nonlinear_thresholds_file,string,Path to the file with nonlinear routing thresholds. | ||
positive_flows,boolean,Force minimum flow value to be >= 0. | ||
initial_state_file,string,Path to the file with initial state values. | ||
final_state_file,string,Path to the file with final state values. | ||
log,boolean,whether to display log messages defaulting to False | ||
log_stream,string,the destination for logged messages: stdout stderr or a file path. default to stdout | ||
log_level,string,Level of logging: either 'debug' 'info' 'warning' 'error' or 'critical'. | ||
job_name,string,A name for this job to be printed in debug statements. | ||
progress_bar,boolean,Indicates whether or not to show a progress bar in debug statements: true or false. | ||
progress_bar,boolean,Indicates whether or not to show a progress bar in debug statements: true or false. | ||
var_runoff_volume,string,Name of the variable in the runoff volumes file that contains the runoff volumes. | ||
var_river_id,string,Name of the variable in all files that contains the river IDs. | ||
var_outflow,string,Name of the variable in the outflows file that contains the outflows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = '0.6.0' | ||
__version__ = '0.7.0' | ||
__author__ = 'Riley Hales PhD' | ||
__url__ = 'https://github.com/rileyhales/river-route' |
Oops, something went wrong.