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