Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 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 "ComputeExtraStressBase.h" 11 : 12 : InputParameters 13 104 : ComputeExtraStressBase::validParams() 14 : { 15 104 : InputParameters params = Material::validParams(); 16 208 : params.addParam<std::string>("base_name", 17 : "Optional parameter that allows the user to define " 18 : "multiple mechanics material systems on the same " 19 : "block, i.e. for multiple phases"); 20 104 : return params; 21 0 : } 22 : 23 78 : ComputeExtraStressBase::ComputeExtraStressBase(const InputParameters & parameters) 24 : : Material(parameters), 25 78 : _base_name(isParamValid("base_name") ? getParam<std::string>("base_name") + "_" : ""), 26 78 : _extra_stress_name(_base_name + "extra_stress"), 27 156 : _extra_stress(declareProperty<RankTwoTensor>(_base_name + "extra_stress")) 28 : { 29 78 : } 30 : 31 : void 32 55576 : ComputeExtraStressBase::computeQpProperties() 33 : { 34 55576 : computeQpExtraStress(); 35 55576 : }