20 params.
addClassDescription(
"This class computes the pressure Poisson solve which is part of the "
21 "'split' scheme used for solving the incompressible Navier-Stokes "
29 params.
addParam<MaterialPropertyName>(
"rho_name",
"rho",
"density_name");
38 _grad_a1(coupledGradient(
"a1")),
39 _grad_a2(_mesh.dimension() >= 2 ? coupledGradient(
"a2") : _grad_zero),
40 _grad_a3(_mesh.dimension() == 3 ? coupledGradient(
"a3") : _grad_zero),
43 _a1_var_number(coupled(
"a1")),
44 _a2_var_number(_mesh.dimension() >= 2 ? coupled(
"a2") :
libMesh::invalid_uint),
45 _a3_var_number(_mesh.dimension() == 3 ? coupled(
"a3") :
libMesh::invalid_uint),
48 _rho(getMaterialProperty<Real>(
"rho_name"))
63 return laplacian_part + div_part;
registerMooseObject("NavierStokesApp", INSPressurePoisson)
This class computes the pressure Poisson solve which is part of the "split" scheme used for solving t...
virtual Real computeQpOffDiagJacobian(unsigned jvar)
const VariableGradient & _grad_a3
static InputParameters validParams()
virtual Real computeQpJacobian()
const VariableGradient & _grad_a2
const MaterialProperty< Real > & _rho
const VariableGradient & _grad_a1
INSPressurePoisson(const InputParameters ¶meters)
virtual Real computeQpResidual()
const VariableGradient & _grad_u
const VariableTestValue & _test
static InputParameters validParams()
const VariablePhiGradient & _grad_phi
const VariableTestGradient & _grad_test
The following methods are specializations for using the Parallel::packed_range_* routines for a vecto...