www.mooseframework.org
Functions
SphereSurfaceMeshGenerator.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SphereSurfaceMeshGenerator   
)

◆ validParams< SphereSurfaceMeshGenerator >()

template<>
InputParameters validParams< SphereSurfaceMeshGenerator > ( )

Definition at line 25 of file SphereSurfaceMeshGenerator.C.

26 {
27  InputParameters params = validParams<MeshGenerator>();
28  params.addClassDescription(
29  "Generated sphere mesh - a two dimensional manifold embedded in three dimensional space");
30  params.addParam<Real>("radius", 1.0, "Sphere radius");
31  params.addParam<Point>("center", Point(0, 0, 0), "Center of the sphere");
32  params.addParam<unsigned int>(
33  "depth", 3, "Iteration steps in the triangle bisection construction");
34  return params;
35 }