53 _darcy_mult(getParam<Real>(
"Darcy_multiplier")),
54 _forchheimer_mult(getParam<Real>(
"Forchheimer_multiplier"))
56 addFunctorProperty<ADRealVectorValue>(
60 RealVectorValue multipliers(1.0, 1.0, 1.0);
61 return multipliers * cast_ptr<Derived *>(
this)->computeDarcyPrefactor(r, t) *
62 cast_ptr<Derived *>(
this)->computeDarcyCoefficient(r, t) *
_darcy_mult;
65 addFunctorProperty<ADRealVectorValue>(
69 RealVectorValue multipliers(1.0, 1.0, 1.0);
70 return multipliers * cast_ptr<Derived *>(
this)->computeForchheimerPrefactor(r, t) *
71 cast_ptr<Derived *>(
this)->computeForchheimerCoefficient(r, t) *
_forchheimer_mult;