From f234abc7b3474a4ea3d2a1544108a151f1189fd5 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 17 Jan 2019 16:21:42 +0100 Subject: Attenuate cylinder2d inflow velocity increase --- src/refinement/coupler2D.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/refinement/coupler2D.hh') diff --git a/src/refinement/coupler2D.hh b/src/refinement/coupler2D.hh index 78aad46..92c8d26 100644 --- a/src/refinement/coupler2D.hh +++ b/src/refinement/coupler2D.hh @@ -201,9 +201,9 @@ void FineCoupler2D::couple() } for (int y=1; y < this->_coarseSize-2; ++y) { - const auto rho = order2interpolation(_c2f_rho, y); - const auto u = order2interpolation(_c2f_u, y); - const auto fneq = order2interpolation(_c2f_fneq, y); + const auto rho = order4interpolation(_c2f_rho, y); + const auto u = order4interpolation(_c2f_u, y); + const auto fneq = order4interpolation(_c2f_fneq, y); const T uSqr = u*u; -- cgit v1.2.3