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::faceMDLimitedGrad 00026 00027 Description 00028 faceMDLimitedGrad gradient scheme applied to a runTime selected 00029 base gradient scheme. 00030 00031 The scalar limiter based on limiting the extrapolated face values 00032 between the face-neighbour cell values and is applied to the gradient 00033 in each face direction separately. 00034 00035 SourceFiles 00036 faceMDLimitedGrad.C 00037 00038 \*---------------------------------------------------------------------------*/ 00039 00040 #ifndef faceMDLimitedGrad_H 00041 #define faceMDLimitedGrad_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 faceMDLimitedGrad Declaration 00057 \*---------------------------------------------------------------------------*/ 00058 00059 template<class Type> 00060 class faceMDLimitedGrad 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 inline void limitFace 00075 ( 00076 scalar& limiter, 00077 const scalar maxDelta, 00078 const scalar minDelta, 00079 const scalar extrapolate 00080 ) const; 00081 00082 00083 //- Disallow default bitwise copy construct 00084 faceMDLimitedGrad(const faceMDLimitedGrad&); 00085 00086 //- Disallow default bitwise assignment 00087 void operator=(const faceMDLimitedGrad&); 00088 00089 00090 public: 00091 00092 //- RunTime type information 00093 TypeName("faceMDLimited"); 00094 00095 00096 // Constructors 00097 00098 //- Construct from mesh and schemeData 00099 faceMDLimitedGrad(const fvMesh& mesh, Istream& schemeData) 00100 : 00101 gradScheme<Type>(mesh), 00102 basicGradScheme_(fv::gradScheme<Type>::New(mesh, schemeData)), 00103 k_(readScalar(schemeData)) 00104 { 00105 if (k_ < 0 || k_ > 1) 00106 { 00107 FatalIOErrorIn 00108 ( 00109 "faceMDLimitedGrad(const fvMesh&, Istream& schemeData)", 00110 schemeData 00111 ) << "coefficient = " << k_ 00112 << " should be >= 0 and <= 1" 00113 << exit(FatalIOError); 00114 } 00115 } 00116 00117 00118 // Member Functions 00119 00120 tmp 00121 < 00122 GeometricField 00123 <typename outerProduct<vector, Type>::type, fvPatchField, volMesh> 00124 > grad 00125 ( 00126 const GeometricField<Type, fvPatchField, volMesh>& 00127 ) const; 00128 }; 00129 00130 00131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00132 00133 } // End namespace fv 00134 00135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00136 00137 } // End namespace Foam 00138 00139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00140 00141 #endif 00142 00143 // ************************ vim: set sw=4 sts=4 et: ************************ //