From f4595aae16d4d131540e1114a7a5da617e250a30 Mon Sep 17 00:00:00 2001 From: Quang Hoang Date: Tue, 8 Oct 2024 11:13:51 -0400 Subject: [PATCH] change bfbt pressure scaling factor --- source/simulator/assemblers/stokes.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/source/simulator/assemblers/stokes.cc b/source/simulator/assemblers/stokes.cc index fa35aa673f3..32864f0dc41 100644 --- a/source/simulator/assemblers/stokes.cc +++ b/source/simulator/assemblers/stokes.cc @@ -165,7 +165,6 @@ namespace aspect if (scratch.dof_component_indices[i] == pressure_component_index && scratch.dof_component_indices[j] == pressure_component_index) data.local_matrix(i, j) += ( 1.0/sqrt_eta * pressure_scaling - * pressure_scaling * (scratch.grad_phi_p[i] * scratch.grad_phi_p[j] + 1e-6*scratch.phi_p[i]*scratch.phi_p[j] )) * JxW;