Go to the source code of this file.
◆ validParams< INSMomentumNoBCBCBase >()
Definition at line 15 of file INSMomentumNoBCBCBase.C.
17 InputParameters params = validParams<IntegratedBC>();
19 params.addClassDescription(
"Base class for the 'No BC' boundary condition.");
21 params.addRequiredCoupledVar(
"u",
"x-velocity");
22 params.addCoupledVar(
"v",
"y-velocity");
23 params.addCoupledVar(
"w",
"z-velocity");
24 params.addRequiredCoupledVar(
"p",
"pressure");
27 params.addRequiredParam<RealVectorValue>(
"gravity",
"Direction of the gravity vector");
28 params.addRequiredParam<
unsigned>(
30 "0,1,2 depending on if we are solving the x,y,z component of the momentum equation");
31 params.addParam<
bool>(
"integrate_p_by_parts",
33 "Allows simulations to be run with pressure BC if set to false");
36 params.addParam<MaterialPropertyName>(
"mu_name",
"mu",
"The name of the dynamic viscosity");
37 params.addParam<MaterialPropertyName>(
"rho_name",
"rho",
"The name of the density");
Referenced by validParams< INSMomentumNoBCBCLaplaceForm >(), and validParams< INSMomentumNoBCBCTractionForm >().