https://mooseframework.inl.gov
Loading...
Searching...
No Matches
navier_stokes
include
materials
Air.h
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
#pragma once
11
12
#include "
NavierStokesMaterial.h
"
13
14
// Forward Declarations
15
16
// Class for Air with constant properties
17
// TODO: Add thermal conductivity
18
class
Air
:
public
NavierStokesMaterial
19
{
20
public
:
21
static
InputParameters
validParams
();
22
23
Air
(
const
InputParameters
&
parameters
);
24
25
protected
:
26
virtual
void
computeProperties
();
27
28
// The dynamic viscosity we will report back to the base class in computeProperties()
29
// This can be set in the input file, otherwise a default value for air at 300K will be
30
// used. Some tabulated values for air at different temperatures are given below:
31
//
32
// 100K, 0.6924e-5
33
// 150K, 1.0283e-5
34
// 200K, 1.3289e-5
35
// 250K, 1.4880e-5
36
// 300K, 1.9830e-5
37
// 350K, 2.0750e-5
38
// 400K, 2.2860e-5
39
// 450K, 2.4840e-5
40
// 500K, 2.6710e-5
41
// 550K, 2.8480e-5
42
// 600K, 3.0180e-5
43
Real
_mu
;
44
};
NavierStokesMaterial.h
Air
Definition
Air.h:19
Air::_mu
Real _mu
Definition
Air.h:43
Air::computeProperties
virtual void computeProperties()
Must be called after the child class computes dynamic_viscocity.
Definition
Air.C:35
Air::validParams
static InputParameters validParams()
Definition
Air.C:17
Material::parameters
const InputParameters & parameters() const
NavierStokesMaterial
This is the base class all materials should use if you are trying to use the Navier-Stokes Kernels.
Definition
NavierStokesMaterial.h:33
InputParameters
Generated on Fri Aug 21 2026 13:41:07 for https://mooseframework.inl.gov by
1.9.8