11#include "libmesh/point.h"
20 params.
addParam<Real>(
"y_value", 0,
"The y value to be set in IC");
21 params.
addParam<Real>(
"z_value", 0,
"The z value to be set in IC");
29 _x_value(getParam<Real>(
"x_value")),
30 _y_value(getParam<Real>(
"y_value")),
31 _z_value(getParam<Real>(
"z_value"))
registerMooseObject("MooseApp", VectorConstantIC)
This is a template class that implements the workhorse compute and computeNodal methods.
static InputParameters validParams()
VectorConstantIC just returns a constant value.
virtual RealVectorValue value(const Point &p) override
The value of the variable at a point.
VectorConstantIC(const InputParameters ¶meters)
static InputParameters validParams()