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 "ADCZMComputeGlobalTractionSmallStrain.h" 11 : #include "CZMComputeGlobalTractionSmallStrain.h" 12 : 13 : registerMooseObject("SolidMechanicsApp", ADCZMComputeGlobalTractionSmallStrain); 14 : 15 : InputParameters 16 12 : ADCZMComputeGlobalTractionSmallStrain::validParams() 17 : { 18 12 : InputParameters params = CZMComputeGlobalTractionSmallStrain::validParams(); 19 12 : return params; 20 : } 21 : 22 6 : ADCZMComputeGlobalTractionSmallStrain::ADCZMComputeGlobalTractionSmallStrain( 23 6 : const InputParameters & parameters) 24 6 : : ADCZMComputeGlobalTractionBase(parameters) 25 : { 26 6 : } 27 : 28 : void 29 7776 : ADCZMComputeGlobalTractionSmallStrain::computeEquilibriumTracion() 30 : { 31 15552 : _traction_global[_qp] = _czm_total_rotation[_qp] * _interface_traction[_qp]; 32 7776 : }