summaryrefslogtreecommitdiff
path: root/src/refinement/coupler2D.hh
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-01-17 16:21:42 +0100
committerAdrian Kummerlaender2019-06-24 15:17:09 +0200
commitf234abc7b3474a4ea3d2a1544108a151f1189fd5 (patch)
tree3855c602e41c48bd2398c2e30ccf7a1f78a5c85e /src/refinement/coupler2D.hh
parentc00169276bee14e0d5418ac79fc00e3531e185ca (diff)
downloadgrid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar.gz
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar.bz2
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar.lz
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar.xz
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.tar.zst
grid_refinement_openlb-f234abc7b3474a4ea3d2a1544108a151f1189fd5.zip
Attenuate cylinder2d inflow velocity increase
Diffstat (limited to 'src/refinement/coupler2D.hh')
-rw-r--r--src/refinement/coupler2D.hh6
1 files changed, 3 insertions, 3 deletions
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<T,DESCRIPTOR>::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;