From f378f8c5645230e9fc15bd9ee5d9fef5e22d3b83 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 18 Oct 2007 20:19:29 +0000 Subject: [PATCH] Reduce order of quadrature formulas to what is needed. Reduce amount of output. git-svn-id: https://svn.dealii.org/trunk@15345 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/step-22.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index 6904b50903..861d753592 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -643,8 +643,8 @@ void BoussinesqFlowProblem::assemble_system () template void BoussinesqFlowProblem::assemble_rhs_T () { - QGauss quadrature_formula(degree+2); - QGauss face_quadrature_formula(degree+2); + QGauss quadrature_formula(degree+1); + QGauss face_quadrature_formula(degree+1); FEValues fe_values (fe, quadrature_formula, update_values | update_gradients | update_quadrature_points | update_JxW_values); @@ -875,7 +875,7 @@ void BoussinesqFlowProblem::output_results () const DataOut::type_dof_data, data_component_interpretation); - data_out.build_patches (degree+1); + data_out.build_patches (); std::ostringstream filename; filename << "solution-" << Utilities::int_to_string(timestep_number, 4) << ".vtk"; -- 2.39.5