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
for i in network.index:
ds = topo.get_next_reach(i)
if ds is None:
ds = topo.get_next_chain(i)
if ds is not None:
if network.loc[ds, 'Slope'] <= 0.5 * network.loc[i, 'Slope']:
network.loc[ds, 'Slope'] = 0.5 * network.loc[i, 'Slope']
If there is a sudden drop in slope between two segments it creates a huge storage bottleneck.
The text was updated successfully, but these errors were encountered: