Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
fixed error with flow_out, scalar value
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcd-mscb committed May 30, 2020
1 parent 5770e3c commit 7569e70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bmi_prms_streamflow.f90
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ function prms_var_grid(this, name, grid) result (bmi_status)
bmi_status = BMI_SUCCESS
case('flow_out')
grid = 2
bmi_status = BMI_SUCCESS
case('nowtime')
grid = 3
bmi_status = BMI_SUCCESS
Expand Down Expand Up @@ -373,7 +374,7 @@ function prms_grid_rank(this, grid, rank) result (bmi_status)
case(1)
rank = 1
case(2)
rank = 1
rank = 0
case(3)
rank = 1
case default
Expand Down

0 comments on commit 7569e70

Please sign in to comment.