https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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
13
14// Forward Declarations
15
16// Class for Air with constant properties
17// TODO: Add thermal conductivity
19{
20public:
22
24
25protected:
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};
Definition Air.h:19
Real _mu
Definition Air.h:43
virtual void computeProperties()
Must be called after the child class computes dynamic_viscocity.
Definition Air.C:35
static InputParameters validParams()
Definition Air.C:17
const InputParameters & parameters() const
This is the base class all materials should use if you are trying to use the Navier-Stokes Kernels.