LCOV - code coverage report
Current view: top level - src/mfem/bcs - MFEMComplexVectorTangentialDirichletBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: 26ef6a Lines: 11 12 91.7 %
Date: 2026-06-24 21:19:51 Functions: 3 3 100.0 %
Legend: Lines: hit not hit

          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             : #include "MFEMComplexVectorTangentialDirichletBC.h"
      13             : 
      14             : registerMooseObject("MooseApp", MFEMComplexVectorTangentialDirichletBC);
      15             : 
      16             : InputParameters
      17        2120 : MFEMComplexVectorTangentialDirichletBC::validParams()
      18             : {
      19        2120 :   InputParameters params = MFEMComplexVectorDirichletBCBase::validParams();
      20        2120 :   params.addClassDescription(
      21             :       "Applies a complex Dirichlet condition to the tangential components of a vector variable.");
      22        2120 :   return params;
      23           0 : }
      24             : 
      25          11 : MFEMComplexVectorTangentialDirichletBC::MFEMComplexVectorTangentialDirichletBC(
      26          11 :     const InputParameters & parameters)
      27          11 :   : MFEMComplexVectorDirichletBCBase(parameters)
      28             : {
      29          11 : }
      30             : 
      31             : void
      32          11 : MFEMComplexVectorTangentialDirichletBC::ApplyBC(mfem::ParComplexGridFunction & gridfunc)
      33             : {
      34          11 :   gridfunc.ProjectBdrCoefficientTangent(_vec_coef_real, _vec_coef_imag, getBoundaryMarkers());
      35          11 : }
      36             : 
      37             : #endif

Generated by: LCOV version 1.14