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 : #ifdef MOOSE_MFEM_ENABLED 11 : 12 : #pragma once 13 : 14 : #include "MFEMAuxKernel.h" 15 : 16 : /** 17 : * Project \f$ s \vec u \times \vec v \f$ onto a vector MFEM auxvariable. 18 : * 19 : * Notes: 20 : * - Enforces 3D: all involved vdim must be 3. 21 : * - The target variable's FE Space must be L2. 22 : * - Currently supports only interior DOFs (no shared/constrained DOFs). 23 : */ 24 : class MFEMCrossProductAux : public MFEMAuxKernel 25 : { 26 : public: 27 : static InputParameters validParams(); 28 : 29 : MFEMCrossProductAux(const InputParameters & parameters); 30 6 : ~MFEMCrossProductAux() override = default; 31 : 32 : void execute() override; 33 : 34 : protected: 35 : /// Cross product coefficient 36 : mfem::VectorCrossProductCoefficient _cross; 37 : 38 : /// Final coefficient that applies a scaling factor to the cross product 39 : mfem::ScalarVectorProductCoefficient _scaled_cross; 40 : }; 41 : 42 : #endif // MOOSE_MFEM_ENABLED