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