From c0831cf019474810af92af0f4d0795600c4d0579 Mon Sep 17 00:00:00 2001 From: angelmons Date: Wed, 4 Sep 2024 12:18:40 -0400 Subject: [PATCH] Corrects typos and rename 1978 to 1979.rst Correct a few typos and rename news/1978 to news/1979 --- .../components/river_flow_dynamics/river_flow_dynamics.py | 6 +++--- news/{1978.component.rst => 1979.component.rst} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename news/{1978.component.rst => 1979.component.rst} (100%) diff --git a/landlab/components/river_flow_dynamics/river_flow_dynamics.py b/landlab/components/river_flow_dynamics/river_flow_dynamics.py index b4a321788a..cce553d5cb 100644 --- a/landlab/components/river_flow_dynamics/river_flow_dynamics.py +++ b/landlab/components/river_flow_dynamics/river_flow_dynamics.py @@ -196,9 +196,9 @@ >>> flow_depth = np.reshape(grid["node"]["surface_water__depth"], (nRows, nCols))[10, :] The average (absolute) difference between predited and expected -floe depth in percentage is: +flow depth in percentage is: ->>> np.round(np.abs(np.mean(flow_depth_expected - flow_depth)) * 100, 1) +>>> np.round(np.abs(np.mean(flow_depth_expected - flow_depth)) * 100, 0) 0.0 And the velocity at links along the center of the channel @@ -278,7 +278,7 @@ The average (absolute) difference between predited and expected flow velocity in percentage is: ->>> np.round(np.abs(np.mean(flow_velocity_expected - flow_velocity)) * 100, 1) +>>> np.round(np.abs(np.mean(flow_velocity_expected - flow_velocity)) * 100, 0) 0.0 diff --git a/news/1978.component.rst b/news/1979.component.rst similarity index 100% rename from news/1978.component.rst rename to news/1979.component.rst