www.mooseframework.org
Elastic.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 
10 #include "Elastic.h"
11 
12 registerMooseObject("SolidMechanicsApp", Elastic);
13 
14 template <>
15 InputParameters
17 {
18  InputParameters params = validParams<SolidModel>();
19  params.addClassDescription("A simple hypo-elastic model");
20  return params;
21 }
22 
23 Elastic::Elastic(const InputParameters & parameters) : SolidModel(parameters)
24 {
25 
26  createConstitutiveModel("ElasticModel");
27 }
28 
30 
32 
Elastic::Elastic
Elastic(const InputParameters &parameters)
Definition: Elastic.C:23
registerMooseObject
registerMooseObject("SolidMechanicsApp", Elastic)
SolidModel
SolidModel is the base class for all this module's solid mechanics material models.
Definition: SolidModel.h:33
validParams< Elastic >
InputParameters validParams< Elastic >()
Definition: Elastic.C:16
Elastic::~Elastic
virtual ~Elastic()
Definition: Elastic.C:31
Elastic
Definition: Elastic.h:19
validParams< SolidModel >
InputParameters validParams< SolidModel >()
Definition: SolidModel.C:31
SolidModel::createConstitutiveModel
void createConstitutiveModel(const std::string &cm_name)
Definition: SolidModel.C:1591
Elastic.h