From: bangerth Date: Thu, 16 Feb 2012 16:56:04 +0000 (+0000) Subject: A number of minor changes. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b7809cc18dc5dce759a84bcbc7ace835e12934a;p=dealii-svn.git A number of minor changes. git-svn-id: https://svn.dealii.org/trunk@25104 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-43/step-43.cc b/deal.II/examples/step-43/step-43.cc index e0c819d04c..e2d4bdccf6 100644 --- a/deal.II/examples/step-43/step-43.cc +++ b/deal.II/examples/step-43/step-43.cc @@ -670,7 +670,7 @@ namespace Step43 // (e.g. replace // RandomMedium::KInverse by // SingleCurvingCrack::KInverse). - const RandomMedium::KInverse k_inverse; + const SingleCurvingCrack::KInverse k_inverse; }; @@ -708,7 +708,7 @@ namespace Step43 FE_Q(darcy_degree), 1), darcy_dof_handler (triangulation), - saturation_degree (degree+1), + saturation_degree (degree), saturation_fe (saturation_degree), saturation_dof_handler (triangulation), @@ -1139,7 +1139,7 @@ namespace Step43 // $\mathbf{M}^{\mathbf{u}}$ and // another based on the scalar // Laplace matrix - // $\tilde\mathbf{S}^p$ (which is + // $\tilde{\mathbf S}^p$ (which is // spectrally close to the Schur // complement of the Darcy // matrix). Usually, the @@ -2300,8 +2300,8 @@ namespace Step43 TwoPhaseFlowProblem::project_back_saturation () { for (unsigned int i=0; i 1) saturation_solution(i) = 1; @@ -2529,7 +2529,7 @@ namespace Step43 max_velocity_times_dF_dS); } - const double c_R = 1e-16; + const double c_R = 1; const double global_scaling = c_R * porosity * (global_max_u_F_prime) * global_S_variation / std::pow(global_Omega_diameter, alpha - 2.); @@ -2569,7 +2569,7 @@ namespace Step43 template void TwoPhaseFlowProblem::run () { - const unsigned int initial_refinement = (dim == 2 ? 5 : 2); + const unsigned int initial_refinement = (dim == 2 ? 4 : 2); const unsigned int n_pre_refinement_steps = (dim == 2 ? 3 : 2);