fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / tetDecompositionFiniteElement / tetFemMethod / tetFem.H
blob1a8eb7b3001098f64a5ca7565cca46fc4602c156
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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     tetFem
28 Description
29     Class of static functions to calculate implicit finite element derivatives
30     returning a matrix.
32 SourceFiles
33     tetFem.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef tetFem_H
38 #define tetFem_H
40 #include "tetPointFieldsFwd.H"
41 #include "tetFemMatrices.H"
42 #include "tmp.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                   Namespace tetFem functions Declaration
51 \*---------------------------------------------------------------------------*/
53 namespace tetFem
55     // Laplacian
57         template<class Type>
58         static tmp<tetFemMatrix<Type> > laplacian
59         (
60             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
61         );
63         template<class Type>
64         static tmp<tetFemMatrix<Type> > laplacian
65         (
66             const elementScalarField&,
67             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
68         );
70         template<class Type>
71         static tmp<tetFemMatrix<Type> > smoother
72         (
73             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
74         );
76         template<class Type>
77         static tmp<tetFemMatrix<Type> > laplacian
78         (
79             const dimensionedScalar&,
80             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
81         );
83         template<class Type>
84         static tmp<tetFemMatrix<Type> > laplacianTranspose
85         (
86             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
87         );
89         template<class Type>
90         static tmp<tetFemMatrix<Type> > laplacianTranspose
91         (
92             const elementScalarField&,
93             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
94         );
96         template<class Type>
97         static tmp<tetFemMatrix<Type> > laplacianTranspose
98         (
99             const dimensionedScalar&,
100             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
101         );
103         template<class Type>
104         static tmp<tetFemMatrix<Type> > laplacianTrace
105         (
106             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
107         );
108         template<class Type>
109         static tmp<tetFemMatrix<Type> > laplacianTrace
110         (
111             const elementScalarField&,
112             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
113         );
115         template<class Type>
116         static tmp<tetFemMatrix<Type> > laplacianTrace
117         (
118             const dimensionedScalar&,
119             GeometricField<Type, tetPolyPatchField, tetPointMesh>&
120         );
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 } // End namespace Foam
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 #ifdef NoRepository
131 #   include "tetFem.C"
132 #endif
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 #endif
138 // ************************************************************************* //