LCOV - code coverage report
Current view: top level - src/mfem/bcs - MFEMComplexVectorNormalDirichletBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #32971 (54bef8) with base c6cf66 Lines: 11 12 91.7 %
Date: 2026-05-29 20:35:17 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 "MFEMComplexVectorNormalDirichletBC.h"
      13             : 
      14             : registerMooseObject("MooseApp", MFEMComplexVectorNormalDirichletBC);
      15             : 
      16             : InputParameters
      17        2106 : MFEMComplexVectorNormalDirichletBC::validParams()
      18             : {
      19        2106 :   InputParameters params = MFEMComplexVectorDirichletBCBase::validParams();
      20        2106 :   params.addClassDescription(
      21             :       "Applies a complex Dirichlet condition to the normal components of a vector variable.");
      22        2106 :   return params;
      23           0 : }
      24             : 
      25           4 : MFEMComplexVectorNormalDirichletBC::MFEMComplexVectorNormalDirichletBC(
      26           4 :     const InputParameters & parameters)
      27           4 :   : MFEMComplexVectorDirichletBCBase(parameters)
      28             : {
      29           4 : }
      30             : 
      31             : void
      32           4 : MFEMComplexVectorNormalDirichletBC::ApplyBC(mfem::ParComplexGridFunction & gridfunc)
      33             : {
      34           4 :   gridfunc.ProjectBdrCoefficientNormal(_vec_coef_real, _vec_coef_imag, getBoundaryMarkers());
      35           4 : }
      36             : 
      37             : #endif

Generated by: LCOV version 1.14