www.mooseframework.org
CrackFrontPointsProvider.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
11 
13 
14 InputParameters
16 {
17  InputParameters params = ElementUserObject::validParams();
18  params.addClassDescription("Base class for a class that can provide a set of points along a "
19  "crack front. The virtual functions must be overridden by a derived "
20  "class to provide this functionality.");
21  return params;
22 }
23 
24 CrackFrontPointsProvider::CrackFrontPointsProvider(const InputParameters & parameters)
25  : ElementUserObject(parameters)
26 {
27 }
CrackFrontPointsProvider.h
CrackFrontPointsProvider::CrackFrontPointsProvider
CrackFrontPointsProvider(const InputParameters &parameters)
Definition: CrackFrontPointsProvider.C:24
validParams
InputParameters validParams()
defineLegacyParams
defineLegacyParams(CrackFrontPointsProvider)
CrackFrontPointsProvider::validParams
static InputParameters validParams()
Definition: CrackFrontPointsProvider.C:15
CrackFrontPointsProvider
Base class for crack front points provider.
Definition: CrackFrontPointsProvider.h:22