Skip to content

Commit

Permalink
use out_depth instead of out_elv
Browse files Browse the repository at this point in the history
  • Loading branch information
kumdonoaa committed Feb 8, 2024
1 parent e27b0b9 commit 8fca47b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/troute-routing/troute/routing/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -1536,14 +1536,14 @@ def compute_diffusive_routing(
)

# run the simulation
out_q, out_elv = diffusive.compute_diffusive(diffusive_inputs)
out_q, out_elv, out_depth = diffusive.compute_diffusive(diffusive_inputs)

# unpack results
rch_list, dat_all = diff_utils.unpack_output(
diffusive_inputs['pynw'],
diffusive_inputs['ordered_reaches'],
out_q,
out_elv
out_depth, #out_elv
)

# mask segments for which we already have MC solution
Expand Down

0 comments on commit 8fca47b

Please sign in to comment.