Line data Source code
1 : //* This file is part of the RACCOON application 2 : //* being developed at Dolbow lab at Duke University 3 : //* http://dolbow.pratt.duke.edu 4 : 5 : #include "LargeDeformationViscoelasticityModel.h" 6 : 7 : InputParameters 8 142 : LargeDeformationViscoelasticityModel::validParams() 9 : { 10 142 : InputParameters params = Material::validParams(); 11 142 : params += BaseNameInterface::validParams(); 12 : 13 142 : params.set<bool>("compute") = false; 14 142 : params.suppressParameter<bool>("compute"); 15 : 16 142 : return params; 17 0 : } 18 : 19 3 : LargeDeformationViscoelasticityModel::LargeDeformationViscoelasticityModel( 20 3 : const InputParameters & parameters) 21 3 : : Material(parameters), BaseNameInterface(parameters) 22 : { 23 3 : } 24 : 25 : void 26 62224 : LargeDeformationViscoelasticityModel::setQp(unsigned int qp) 27 : { 28 62224 : _qp = qp; 29 62224 : }