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