www.mooseframework.org
Functions
GaussContForcing.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PhaseFieldTestApp", GaussContForcing)
 
template<>
InputParameters validParams< GaussContForcing > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldTestApp"  ,
GaussContForcing   
)

◆ validParams< GaussContForcing >()

template<>
InputParameters validParams< GaussContForcing > ( )

Definition at line 16 of file GaussContForcing.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addParam<Real>("amplitude", 1.0, "Aplitude of the bell curve");
20  params.addParam<Real>("x_center", 4.0, "Center of the hump in the X direction");
21  params.addParam<Real>("y_center", 6.0, "Center of the hump in the Y direction");
22  params.addParam<Real>("z_center", 0.0, "Center of the hump in the Z direction");
23  params.addParam<Real>("x_spread", 1.0, "Spread of the curve in the x direction (sigma_x)");
24  params.addParam<Real>("y_spread", 1.0, "Spread of the curve in the y direction (sigma_y)");
25  params.addParam<Real>("z_spread", 1.0, "Spread of the curve in the z direction (sigma_z)");
26  return params;
27 }