18 params.
set<Real>(
"rate") = 7500;
19 params.
set<Real>(
"initial") = 500;
20 params.
set<Real>(
"final") = 500;
21 params.
set<Real>(
"duration") = 0.0;
23 "Determines boundary values via the initial and final values, flux, and exposure duration");
29 _initial(getParam<Real>(
"initial")),
30 _final(getParam<Real>(
"final")),
31 _rate(getParam<Real>(
"rate")),
32 _duration(getParam<Real>(
"duration"))
registerMooseObject("MooseApp", ConvectiveFluxBC)
ConvectiveFluxBC(const InputParameters ¶meters)
virtual Real computeQpJacobian() override
Method for computing the diagonal Jacobian at quadrature points.
static InputParameters validParams()
Factory constructor, takes parameters so that all derived classes can be built using the same constru...
Real _initial
Ratio of u to du/dn.
virtual Real computeQpResidual() override
Method for computing the residual at quadrature points.
unsigned int _qp
quadrature point index
unsigned int _i
i-th, j-th index for enumerating test and shape functions
Base class for deriving any boundary condition of a integrated type.
const VariableValue & _u
the values of the unknown variable this BC is acting on
static InputParameters validParams()
const VariablePhiValue & _phi
shape function values (in QPs)
const VariableTestValue & _test
test function values (in QPs)
virtual const OutputTools< Real >::VariableValue & value()
The value of the variable this object is operating on.