From bcf1f84753374968ac2ab631a9c35f1b070625bb Mon Sep 17 00:00:00 2001 From: leicht Date: Fri, 9 Feb 2007 09:10:32 +0000 Subject: [PATCH] Adjust to new interface of QProjector. git-svn-id: https://svn.dealii.org/trunk@14454 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/rt_normal_02.cc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/fe/rt_normal_02.cc b/tests/fe/rt_normal_02.cc index 4241359eda..e5fa58fbcf 100644 --- a/tests/fe/rt_normal_02.cc +++ b/tests/fe/rt_normal_02.cc @@ -106,7 +106,10 @@ void EvaluateNormal2 (DoFHandler<2> *dof_handler, { const QProjector<2>::DataSetDescriptor offset = (QProjector<2>::DataSetDescriptor:: - face (f, cell->face_orientation(f), + face (f, + cell->face_orientation(f), + cell->face_flip(f), + cell->face_rotation(f), quad.n_quadrature_points)); fe_v_face.reinit (cell, f); @@ -116,7 +119,10 @@ void EvaluateNormal2 (DoFHandler<2> *dof_handler, const QProjector<2>::DataSetDescriptor offset_n = (QProjector<2>::DataSetDescriptor:: - face (neighbor, cell_n->face_orientation(neighbor), + face (neighbor, + cell_n->face_orientation(neighbor), + cell_n->face_flip(neighbor), + cell_n->face_rotation(neighbor), quad.n_quadrature_points)); // Get values from solution vector (For Trap.Rule) -- 2.39.5