From 0e676b180e4d17216c5f69aadc2ed428f3b13e8e Mon Sep 17 00:00:00 2001 From: freiler <54753719+freiler@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:11:55 -0600 Subject: [PATCH] Update INSFVTurbulentViscosityWallFunction.h #27800 #27887 #27888 --- .../INSFVTurbulentViscosityWallFunction.h | 54 ------------------- 1 file changed, 54 deletions(-) diff --git a/modules/navier_stokes/include/fvbcs/INSFVTurbulentViscosityWallFunction.h b/modules/navier_stokes/include/fvbcs/INSFVTurbulentViscosityWallFunction.h index 257988b8b99b..bd92dc76efd5 100644 --- a/modules/navier_stokes/include/fvbcs/INSFVTurbulentViscosityWallFunction.h +++ b/modules/navier_stokes/include/fvbcs/INSFVTurbulentViscosityWallFunction.h @@ -51,57 +51,3 @@ class INSFVTurbulentViscosityWallFunction : public FVDirichletBCBase /// Method used for wall treatment const MooseEnum _wall_treatment; }; - -// //* This file is part of the MOOSE framework -// //* https://www.mooseframework.org -// //* -// //* All rights reserved, see COPYRIGHT for full restrictions -// //* https://github.com/idaholab/moose/blob/master/COPYRIGHT -// //* -// //* Licensed under LGPL 2.1, please see LICENSE for details -// //* https://www.gnu.org/licenses/lgpl-2.1.html - -// #pragma once - -// #include "FVDirichletBCBase.h" -// #include "FVFluxBC.h" - -// /** -// * Applies a wall function to the turbulent viscosity field -// */ -// class INSFVTurbulentViscosityWallFunction : public FVDirichletBCBase -// { -// public: -// INSFVTurbulentViscosityWallFunction(const InputParameters & parameters); - -// static InputParameters validParams(); - -// ADReal boundaryValue(const FaceInfo & fi) const override; - -// private: -// /// the dimension of the domain -// const unsigned int _dim; - -// /// x-velocity -// const Moose::Functor & _u_var; -// /// y-velocity -// const Moose::Functor * _v_var; -// /// z-velocity -// const Moose::Functor * _w_var; - -// /// Density -// const Moose::Functor & _rho; -// /// Dynamic viscosity -// const Moose::Functor & _mu; -// /// Turbulent dynamic viscosity -// const Moose::Functor & _mu_t; - -// /// Turbulent kinetic energy -// const Moose::Functor & _k; - -// /// C_mu turbulent coefficient -// const Real _C_mu; - -// /// Method used for wall treatment -// const MooseEnum _wall_treatment; -// };