initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / finiteVolume / gradSchemes / extendedLeastSquaresGrad / extendedLeastSquaresGrad.H
blobe8da1ca92ff66cbdbae447d16f0b934fa985df6c
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::fv::extendedLeastSquaresGrad
28 Description
29     Second-order gradient scheme using least-squares.
31 SourceFiles
32     extendedLeastSquaresGrad.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef extendedLeastSquaresGrad_H
37 #define extendedLeastSquaresGrad_H
39 #include "gradScheme.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace fv
51 /*---------------------------------------------------------------------------*\
52                       Class extendedLeastSquaresGrad Declaration
53 \*---------------------------------------------------------------------------*/
55 template<class Type>
56 class extendedLeastSquaresGrad
58     public fv::gradScheme<Type>
60     // Private Data
62         //- Minimum determinant criterion to choose extra cells
63         scalar minDet_;
66     // Private Member Functions
68         //- Disallow default bitwise copy construct
69         extendedLeastSquaresGrad(const extendedLeastSquaresGrad&);
71         //- Disallow default bitwise assignment
72         void operator=(const extendedLeastSquaresGrad&);
75 public:
77     //- Runtime type information
78     TypeName("extendedLeastSquares");
81     // Constructors
83         //- Construct from Istream
84         extendedLeastSquaresGrad(const fvMesh& mesh, Istream& schemeData)
85         :
86             gradScheme<Type>(mesh),
87             minDet_(readScalar(schemeData))
88         {
89             if (minDet_ < 0 || minDet_ > 8)
90             {
91                 FatalIOErrorIn
92                 (
93                     "extendedLeastSquaresGrad"
94                     "(const fvMesh&, Istream& schemeData)",
95                     schemeData
96                 )   << "Minimum determinant = " << minDet_
97                     << " should be >= 0 and <= 8"
98                     << exit(FatalIOError);
99             }
100         }
103     // Member Functions
105         tmp
106         <
107             GeometricField
108             <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
109         > grad
110         (
111             const GeometricField<Type, fvPatchField, volMesh>&
112         ) const;
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 } // End namespace fv
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 } // End namespace Foam
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 #ifdef NoRepository
127 #   include "extendedLeastSquaresGrad.C"
128 #endif
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 #endif
134 // ************************************************************************* //