1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
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
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
29 Class of static functions to calculate implicit finite element derivatives
35 \*---------------------------------------------------------------------------*/
40 #include "tetPointFieldsFwd.H"
41 #include "tetFemMatrices.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 /*---------------------------------------------------------------------------*\
50 Namespace tetFem functions Declaration
51 \*---------------------------------------------------------------------------*/
58 static tmp<tetFemMatrix<Type> > laplacian
60 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
64 static tmp<tetFemMatrix<Type> > laplacian
66 const elementScalarField&,
67 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
71 static tmp<tetFemMatrix<Type> > smoother
73 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
77 static tmp<tetFemMatrix<Type> > laplacian
79 const dimensionedScalar&,
80 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
84 static tmp<tetFemMatrix<Type> > laplacianTranspose
86 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
90 static tmp<tetFemMatrix<Type> > laplacianTranspose
92 const elementScalarField&,
93 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
97 static tmp<tetFemMatrix<Type> > laplacianTranspose
99 const dimensionedScalar&,
100 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
104 static tmp<tetFemMatrix<Type> > laplacianTrace
106 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
109 static tmp<tetFemMatrix<Type> > laplacianTrace
111 const elementScalarField&,
112 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
116 static tmp<tetFemMatrix<Type> > laplacianTrace
118 const dimensionedScalar&,
119 GeometricField<Type, tetPolyPatchField, tetPointMesh>&
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 } // End namespace Foam
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 // ************************************************************************* //