Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include <finiteVolume/fv.H>
00027 #include <OpenFOAM/HashTable.H>
00028 #include <finiteVolume/linear.H>
00029 #include <finiteVolume/fvMatrix.H>
00030
00031
00032
00033 namespace Foam
00034 {
00035
00036
00037
00038 namespace fv
00039 {
00040
00041
00042
00043 template<class Type, class GType>
00044 tmp<laplacianScheme<Type, GType> > laplacianScheme<Type, GType>::New
00045 (
00046 const fvMesh& mesh,
00047 Istream& schemeData
00048 )
00049 {
00050 if (fv::debug)
00051 {
00052 Info<< "laplacianScheme<Type, GType>::New(const fvMesh&, Istream&) : "
00053 "constructing laplacianScheme<Type, GType>"
00054 << endl;
00055 }
00056
00057 if (schemeData.eof())
00058 {
00059 FatalIOErrorIn
00060 (
00061 "laplacianScheme<Type, GType>::New(const fvMesh&, Istream&)",
00062 schemeData
00063 ) << "Laplacian scheme not specified" << endl << endl
00064 << "Valid laplacian schemes are :" << endl
00065 << IstreamConstructorTablePtr_->sortedToc()
00066 << exit(FatalIOError);
00067 }
00068
00069 word schemeName(schemeData);
00070
00071 typename IstreamConstructorTable::iterator cstrIter =
00072 IstreamConstructorTablePtr_->find(schemeName);
00073
00074 if (cstrIter == IstreamConstructorTablePtr_->end())
00075 {
00076 FatalIOErrorIn
00077 (
00078 "laplacianScheme<Type, GType>::New(const fvMesh&, Istream&)",
00079 schemeData
00080 ) << "unknown laplacian scheme " << schemeName << endl << endl
00081 << "Valid laplacian schemes are :" << endl
00082 << IstreamConstructorTablePtr_->sortedToc()
00083 << exit(FatalIOError);
00084 }
00085
00086 return cstrIter()(mesh, schemeData);
00087 }
00088
00089
00090
00091
00092 template<class Type, class GType>
00093 laplacianScheme<Type, GType>::~laplacianScheme()
00094 {}
00095
00096
00097
00098
00099 template<class Type, class GType>
00100 tmp<fvMatrix<Type> >
00101 laplacianScheme<Type, GType>::fvmLaplacian
00102 (
00103 const GeometricField<GType, fvPatchField, volMesh>& gamma,
00104 GeometricField<Type, fvPatchField, volMesh>& vf
00105 )
00106 {
00107 return fvmLaplacian(tinterpGammaScheme_().interpolate(gamma)(), vf);
00108 }
00109
00110
00111 template<class Type, class GType>
00112 tmp<GeometricField<Type, fvPatchField, volMesh> >
00113 laplacianScheme<Type, GType>::fvcLaplacian
00114 (
00115 const GeometricField<GType, fvPatchField, volMesh>& gamma,
00116 const GeometricField<Type, fvPatchField, volMesh>& vf
00117 )
00118 {
00119 return fvcLaplacian(tinterpGammaScheme_().interpolate(gamma)(), vf);
00120 }
00121
00122
00123
00124
00125 }
00126
00127
00128
00129 }
00130
00131