https://mooseframework.inl.gov
ADCZMComputeLocalTractionBase.C
Go to the documentation of this file.
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 
12 
15 {
17  return params;
18 }
19 
21  : InterfaceMaterial(parameters),
22  _base_name(isParamValid("base_name") && !getParam<std::string>("base_name").empty()
23  ? getParam<std::string>("base_name") + "_"
24  : ""),
25  _interface_traction(
26  declareADPropertyByName<RealVectorValue>(_base_name + "interface_traction")),
27  _interface_displacement_jump(
28  getADMaterialPropertyByName<RealVectorValue>(_base_name + "interface_displacement_jump"))
29 {
30 }
31 
32 void
34 {
36 }
37 
38 void
40 {
42 }
virtual void computeInterfaceTraction()=0
Compute the local traction.
unsigned int _qp
ADMaterialProperty< RealVectorValue > & _interface_traction
the value of the traction in local coordinates
static InputParameters validParams()
ADCZMComputeLocalTractionBase(const InputParameters &parameters)