From e81a2804fba311c7e316f293dc6d09f6d28acb61 Mon Sep 17 00:00:00 2001 From: Lew Rossman Date: Thu, 17 Aug 2023 16:23:05 -0400 Subject: [PATCH] Update test_valve.cpp --- tests/test_valve.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_valve.cpp b/tests/test_valve.cpp index 8a0568e..925ebea 100644 --- a/tests/test_valve.cpp +++ b/tests/test_valve.cpp @@ -26,7 +26,7 @@ BOOST_FIXTURE_TEST_CASE(test_PCV_valve, FixtureOpenClose) { int npts = 5; double x[] = { 0.0, 25., 50., 75., 100. }; - double y[] = {0.0, 0.89, 18.4, 40.6, 100.0}; + double y[] = {0.0, 8.9, 18.4, 40.6, 100.0}; double v; int linkIndex, curveIndex; @@ -64,10 +64,10 @@ BOOST_FIXTURE_TEST_CASE(test_PCV_valve, FixtureOpenClose) // The PCV interpolated relative flow coeff. at 35% open is 0.127. // This translates to a minor loss coeff. of 0.19 / 0.127^2 = 11.78. // If the PCV were replaced with a TCV at that setting the resulting - // head loss would be 0.02545 ft which should equal the PCV result. + // head loss would be 0.0255 ft which should equal the PCV result. error = EN_getlinkvalue(ph, linkIndex, EN_HEADLOSS, &v); BOOST_REQUIRE(error == 0); - BOOST_REQUIRE(abs(v - 0.02545) < 0.001); + BOOST_REQUIRE(abs(v - 0.0255) < 0.001); } BOOST_AUTO_TEST_SUITE_END()