LCOV - code coverage report
Current view: top level - src/mfem/vectorpostprocessors - MFEMComplexPointVariableValueSampler.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: 329044 Lines: 9 10 90.0 %
Date: 2026-08-03 21:12:22 Functions: 2 2 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 "MFEMComplexPointVariableValueSampler.h"
      13             : 
      14             : registerMooseObject("MooseApp", MFEMComplexPointVariableValueSampler);
      15             : 
      16             : InputParameters
      17        2154 : MFEMComplexPointVariableValueSampler::validParams()
      18             : {
      19        2154 :   InputParameters params = MFEMComplexVariableValueSamplerBase::validParams();
      20        4308 :   params.addClassDescription("Sample a complex MFEM variable at specific points, outputting "
      21             :                              "real and imaginary parts as separate columns.");
      22        6462 :   params.addRequiredParam<std::vector<Point>>("points",
      23             :                                               "The points where you want to evaluate the variable");
      24        2154 :   return params;
      25           0 : }
      26             : 
      27          12 : MFEMComplexPointVariableValueSampler::MFEMComplexPointVariableValueSampler(
      28          12 :     const InputParameters & parameters)
      29          12 :   : MFEMComplexVariableValueSamplerBase(parameters, parameters.get<std::vector<Point>>("points"))
      30             : {
      31          12 : }
      32             : 
      33             : #endif // MOOSE_MFEM_ENABLED

Generated by: LCOV version 1.14