LCOV - code coverage report
Current view: top level - src/bcs - INSFEMomentumFreeSlipBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose navier_stokes: #32971 (54bef8) with base c6cf66 Lines: 9 10 90.0 %
Date: 2026-05-29 20:37:52 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             : #include "INSFEMomentumFreeSlipBC.h"
      11             : 
      12             : registerMooseObject("NavierStokesApp", INSFEMomentumFreeSlipBC);
      13             : registerMooseObjectRenamed("NavierStokesApp",
      14             :                            MDMomentumFreeSlipBC,
      15             :                            "02/01/2024 00:00",
      16             :                            INSFEMomentumFreeSlipBC);
      17             : 
      18             : InputParameters
      19          18 : INSFEMomentumFreeSlipBC::validParams()
      20             : {
      21          18 :   InputParameters params = MomentumFreeSlipBC::validParams();
      22          36 :   params.renameCoupledVar("rho_u", "u", "x-component of velocity");
      23          36 :   params.renameCoupledVar("rho_v", "v", "y-component of velocity");
      24          36 :   params.renameCoupledVar("rho_w", "w", "z-component of velocity");
      25          18 :   return params;
      26           0 : }
      27             : 
      28           9 : INSFEMomentumFreeSlipBC::INSFEMomentumFreeSlipBC(const InputParameters & parameters)
      29           9 :   : MomentumFreeSlipBC(parameters)
      30             : {
      31           9 : }

Generated by: LCOV version 1.14