Go to the source code of this file.
|
class | INSProjection |
| This class computes the "projection" part of the "split" method for solving incompressible Navier-Stokes. More...
|
|
◆ validParams< INSProjection >()
Definition at line 17 of file INSProjection.C.
19 InputParameters params = validParams<Kernel>();
21 params.addClassDescription(
"This class computes the 'projection' part of the 'split' method for "
22 "solving incompressible Navier-Stokes.");
24 params.addRequiredCoupledVar(
"a1",
"x-acceleration");
25 params.addCoupledVar(
"a2",
"y-acceleration");
26 params.addCoupledVar(
"a3",
"z-acceleration");
27 params.addRequiredCoupledVar(
"p",
"pressure");
30 params.addRequiredParam<
unsigned>(
32 "0,1,2 depending on if we are solving the x,y,z component of the momentum equation");
35 params.addParam<MaterialPropertyName>(
"rho_name",
"rho",
"density name");