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 "AdvectionIPHDGAssemblyHelper.h" 11 : InputParameters 12 12975 : AdvectionIPHDGAssemblyHelper::validParams() 13 : { 14 12975 : return AdvectionHDGAssemblyHelper::validParams(); 15 : } 16 : 17 303 : AdvectionIPHDGAssemblyHelper::AdvectionIPHDGAssemblyHelper( 18 : const MooseObject * const moose_obj, 19 : MooseVariableDependencyInterface * const mvdi, 20 : const TransientInterface * const ti, 21 : SystemBase & sys, 22 : const Assembly & assembly, 23 : const THREAD_ID tid, 24 : const std::set<SubdomainID> & block_ids, 25 303 : const std::set<BoundaryID> & boundary_ids) 26 : : AdvectionHDGAssemblyHelper(moose_obj, mvdi, ti, sys, assembly, tid, block_ids, boundary_ids), 27 606 : _face_velocity(getFaceADMaterialProperty<RealVectorValue>("velocity")) 28 : { 29 303 : } 30 : 31 : ADRealVectorValue 32 802680 : AdvectionIPHDGAssemblyHelper::faceVelocity(const unsigned int qp) const 33 : { 34 802680 : return _face_velocity[qp]; 35 : }