www.mooseframework.org
Functions
CrossIC.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PhaseFieldApp", CrossIC)
 
template<>
InputParameters validParams< CrossIC > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
CrossIC   
)

◆ validParams< CrossIC >()

template<>
InputParameters validParams< CrossIC > ( )

Definition at line 34 of file CrossIC.C.

35 {
36  InputParameters params = validParams<C1ICBase>();
37  params.addClassDescription("Cross-shaped initial condition");
38  params.addParam<Real>("x1", 0.0, "The x coordinate of the lower left-hand corner of the box");
39  params.addParam<Real>("y1", 0.0, "The y coordinate of the lower left-hand corner of the box");
40  params.addParam<Real>("x2", 1.0, "The x coordinate of the upper right-hand corner of the box");
41  params.addParam<Real>("y2", 1.0, "The y coordinate of the upper right-hand corner of the box");
42  return params;
43 }
validParams< C1ICBase >
InputParameters validParams< C1ICBase >()
Definition: C1ICBase.C:32