FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

cellMDLimitedGrad.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Class
00025     Foam::fv::cellMDLimitedGrad
00026 
00027 Description
00028     cellMDLimitedGrad gradient scheme applied to a runTime selected base
00029     gradient scheme.
00030 
00031     The scalar limiter based on limiting the extrapolated face values
00032     between the maximum and minimum cell and cell neighbour values and is
00033     applied to the gradient in each face direction separately.
00034 
00035 SourceFiles
00036     cellMDLimitedGrad.C
00037 
00038 \*---------------------------------------------------------------------------*/
00039 
00040 #ifndef cellMDLimitedGrad_H
00041 #define cellMDLimitedGrad_H
00042 
00043 #include <finiteVolume/gradScheme.H>
00044 
00045 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00046 
00047 namespace Foam
00048 {
00049 
00050 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00051 
00052 namespace fv
00053 {
00054 
00055 /*---------------------------------------------------------------------------*\
00056                        Class cellMDLimitedGrad Declaration
00057 \*---------------------------------------------------------------------------*/
00058 
00059 template<class Type>
00060 class cellMDLimitedGrad
00061 :
00062     public fv::gradScheme<Type>
00063 {
00064     // Private Data
00065 
00066         tmp<fv::gradScheme<Type> > basicGradScheme_;
00067 
00068         //- Limiter coefficient
00069         const scalar k_;
00070 
00071 
00072     // Private Member Functions
00073 
00074         //- Disallow default bitwise copy construct
00075         cellMDLimitedGrad(const cellMDLimitedGrad&);
00076 
00077         //- Disallow default bitwise assignment
00078         void operator=(const cellMDLimitedGrad&);
00079 
00080 
00081 public:
00082 
00083     //- RunTime type information
00084     TypeName("cellMDLimited");
00085 
00086 
00087     // Constructors
00088 
00089         //- Construct from mesh and schemeData
00090         cellMDLimitedGrad(const fvMesh& mesh, Istream& schemeData)
00091         :
00092             gradScheme<Type>(mesh),
00093             basicGradScheme_(fv::gradScheme<Type>::New(mesh, schemeData)),
00094             k_(readScalar(schemeData))
00095         {
00096             if (k_ < 0 || k_ > 1)
00097             {
00098                 FatalIOErrorIn
00099                 (
00100                     "cellMDLimitedGrad(const fvMesh&, Istream& schemeData)",
00101                     schemeData
00102                 )   << "coefficient = " << k_
00103                     << " should be >= 0 and <= 1"
00104                     << exit(FatalIOError);
00105             }
00106         }
00107 
00108 
00109     // Member Functions
00110 
00111         static inline void limitFace
00112         (
00113             typename outerProduct<vector, Type>::type& g,
00114             const Type& maxDelta,
00115             const Type& minDelta,
00116             const vector& dcf
00117         );
00118 
00119         tmp
00120         <
00121             GeometricField
00122             <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
00123         > grad
00124         (
00125             const GeometricField<Type, fvPatchField, volMesh>&
00126         ) const;
00127 };
00128 
00129 
00130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00131 
00132 template<>
00133 inline void cellMDLimitedGrad<scalar>::limitFace
00134 (
00135     vector& g,
00136     const scalar& maxDelta,
00137     const scalar& minDelta,
00138     const vector& dcf
00139 )
00140 {
00141     scalar extrapolate = dcf & g;
00142 
00143     if (extrapolate > maxDelta)
00144     {
00145         g = g + dcf*(maxDelta - extrapolate)/magSqr(dcf);
00146     }
00147     else if (extrapolate < minDelta)
00148     {
00149         g = g + dcf*(minDelta - extrapolate)/magSqr(dcf);
00150     }
00151 }
00152 
00153 
00154 template<class Type>
00155 inline void cellMDLimitedGrad<Type>::limitFace
00156 (
00157     typename outerProduct<vector, Type>::type& g,
00158     const Type& maxDelta,
00159     const Type& minDelta,
00160     const vector& dcf
00161 )
00162 {
00163     for(direction cmpt=0; cmpt<Type::nComponents; cmpt++)
00164     {
00165         vector gi(g[cmpt], g[cmpt+3], g[cmpt+6]);
00166         cellMDLimitedGrad<scalar>::limitFace
00167         (
00168             gi,
00169             maxDelta.component(cmpt),
00170             minDelta.component(cmpt),
00171             dcf
00172         );
00173         g[cmpt] = gi.x();
00174         g[cmpt+3] = gi.y();
00175         g[cmpt+6] = gi.z();
00176     }
00177 }
00178 
00179 
00180 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00181 
00182 } // End namespace fv
00183 
00184 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00185 
00186 } // End namespace Foam
00187 
00188 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00189 
00190 #endif
00191 
00192 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines