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 "MortarUserObject.h" 11 : 12 : InputParameters 13 14315 : MortarUserObject::validParams() 14 : { 15 14315 : InputParameters params = UserObject::validParams(); 16 14315 : params += MortarConsumerInterface::validParams(); 17 14315 : params += TwoMaterialPropertyInterface::validParams(); 18 14315 : return params; 19 0 : } 20 : 21 26 : MortarUserObject::MortarUserObject(const InputParameters & parameters) 22 : : UserObject(parameters), 23 : ScalarCoupleable(this), 24 : MortarConsumerInterface(this), 25 26 : TwoMaterialPropertyInterface(this, Moose::EMPTY_BLOCK_IDS, _secondary_set), 26 26 : NeighborCoupleable(this, /*nodal=*/false, /*neighbor_nodal=*/false, /*is_fv=*/false) 27 : { 28 26 : }