https://mooseframework.inl.gov
NSEntropyError.C
Go to the documentation of this file.
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 // Navier-Stokes includes
11 #include "NSEntropyError.h"
12 #include "NS.h"
13 
14 // FluidProperties includes
16 
17 registerMooseObject("NavierStokesApp", NSEntropyError);
18 
21 {
23  params.addClassDescription("Computes entropy error.");
24  params.addRequiredParam<Real>("rho_infty", "Freestream density");
25  params.addRequiredParam<Real>("p_infty", "Freestream pressure");
26  params.addRequiredCoupledVar("rho", "density");
27  params.addRequiredCoupledVar(NS::pressure, "pressure");
28  params.addRequiredParam<UserObjectName>("fluid_properties",
29  "The name of the user object for fluid properties");
30  return params;
31 }
32 
34  : ElementIntegralPostprocessor(parameters),
35  _rho_infty(getParam<Real>("rho_infty")),
36  _p_infty(getParam<Real>("p_infty")),
37  _rho(coupledValue("rho")),
38  _pressure(coupledValue(NS::pressure)),
39  _fp(getUserObject<IdealGasFluidProperties>("fluid_properties"))
40 {
41 }
42 
43 Real
45 {
46  return std::sqrt(ElementIntegralPostprocessor::getValue());
47 }
48 
49 Real
51 {
53  return integrand * integrand;
54 }
registerMooseObject("NavierStokesApp", NSEntropyError)
virtual Real getValue() const override
virtual Real computeQpIntegral() override
NSEntropyError(const InputParameters &parameters)
void addRequiredParam(const std::string &name, const std::string &doc_string)
Real integrand(const Point &p)
static InputParameters validParams()
const VariableValue & _pressure
const VariableValue & _rho
virtual Real getValue() const override
static InputParameters validParams()
void addRequiredCoupledVar(const std::string &name, const std::string &doc_string)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const IdealGasFluidProperties & _fp
static const std::string pressure
Definition: NS.h:56
void addClassDescription(const std::string &doc_string)
Ideal gas fluid properties Default parameters are for air at atmospheric pressure and temperature...
MooseUnits pow(const MooseUnits &, int)