From: Martin Kronbichler Date: Mon, 14 Jul 2014 09:10:06 +0000 (+0000) Subject: Fix bug X-Git-Tag: v8.2.0-rc1~308 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46e892d5943744b7ddc5e885056ad251eedcc4cf;p=dealii.git Fix bug git-svn-id: https://svn.dealii.org/trunk@33162 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/matrix_free/fe_evaluation.h b/deal.II/include/deal.II/matrix_free/fe_evaluation.h index 58df9f018e..92c1a884e9 100644 --- a/deal.II/include/deal.II/matrix_free/fe_evaluation.h +++ b/deal.II/include/deal.II/matrix_free/fe_evaluation.h @@ -1647,7 +1647,7 @@ FEEvaluationBase matrix_info (0), dof_info (0), mapping_info (0), - stored_shape_info (new internal::MatrixFreeFunctions::ShapeInfo(geometry.get_quadrature(), dof_handler_in.get_fe(), 0)), + stored_shape_info (new internal::MatrixFreeFunctions::ShapeInfo(geometry.get_quadrature(), dof_handler_in.get_fe(), dof_handler_in.get_fe().component_to_base_index(first_selected_component).first)), data (stored_shape_info.get()), cartesian_data (0), jacobian (geometry.get_inverse_jacobians().begin()), @@ -1663,6 +1663,8 @@ FEEvaluationBase dof_handler (&dof_handler_in), first_selected_component (first_selected_component) { + const unsigned int base_element_number = + dof_handler_in.get_fe().component_to_base_index(first_selected_component).first; for (unsigned int c=0; c for (unsigned int d=0; d<(dim*dim+dim)/2; ++d) hessians_quad[c][d] = 0; } - Assert(dof_handler->get_fe().element_multiplicity(0) == 1 || - dof_handler->get_fe().element_multiplicity(0)-first_selected_component >= n_components_, + Assert(dof_handler->get_fe().element_multiplicity(base_element_number) == 1 || + dof_handler->get_fe().element_multiplicity(base_element_number)-first_selected_component >= n_components_, ExcMessage("The underlying element must at least contain as many " "components as requested by this class")); } @@ -5249,6 +5251,9 @@ namespace internal const bool evaluate_grad, const bool evaluate_lapl) { + if (evaluate_val == false && evaluate_grad == false && evaluate_lapl == false) + return; + const EvaluatorVariant variant = EvaluatorSelector4)>::variant; typedef EvaluatorTensorProduct