initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / turbulenceModels / incompressible / RAS / laminar / laminar.H
blob8b328addf0bb2c1e18527cf2af770016b959569c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::incompressible::RASModels::laminar
28 Description
29     Dummy turbulence model for laminar incompressible flow.
31 SourceFiles
32     laminar.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef rasLaminar_H
37 #define rasLaminar_H
39 #include "RASModel.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
45 namespace incompressible
47 namespace RASModels
50 /*---------------------------------------------------------------------------*\
51                            Class laminar Declaration
52 \*---------------------------------------------------------------------------*/
54 class laminar
56     public RASModel
59 public:
61     //- Runtime type information
62     TypeName("laminar");
64     // Constructors
66         //- Construct from components
67         laminar
68         (
69             const volVectorField& U,
70             const surfaceScalarField& phi,
71             transportModel& transport
72         );
75     //- Destructor
76     virtual ~laminar()
77     {}
80     // Member Functions
82         //- Return the turbulence viscosity, i.e. 0 for laminar flow
83         virtual tmp<volScalarField> nut() const;
85         //- Return the effective viscosity, i.e. the laminar viscosity
86         virtual tmp<volScalarField> nuEff() const
87         {
88             return tmp<volScalarField>(new volScalarField("nuEff", nu()));
89         }
91         //- Return the turbulence kinetic energy, i.e. 0 for laminar flow
92         virtual tmp<volScalarField> k() const;
94         //- Return the turbulence kinetic energy dissipation rate,
95         //  i.e. 0 for laminar flow
96         virtual tmp<volScalarField> epsilon() const;
98         //- Return the Reynolds stress tensor, i.e. 0 for laminar flow
99         virtual tmp<volSymmTensorField> R() const;
101         //- Return the effective stress tensor, i.e. the laminar stress
102         virtual tmp<volSymmTensorField> devReff() const;
104         //- Return the source term for the momentum equation
105         virtual tmp<fvVectorMatrix> divDevReff(volVectorField& U) const;
107         //- Correct the laminar viscosity
108         virtual void correct();
110         //- Read RASProperties dictionary
111         virtual bool read();
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 } // End namespace RASModels
118 } // End namespace incompressible
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //