initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / finiteVolume / finiteVolume / fvc / fvcDiv.H
blob81884c6e0c8188f53d67891564faf3657249e8d4
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
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 InNamespace
26     Foam::fvc
28 Description
29     Calculate the divergence of the given field.
31 SourceFiles
32     fvcDiv.C
34 \*---------------------------------------------------------------------------*/
37 #ifndef fvcDiv_H
38 #define fvcDiv_H
40 #include "volFieldsFwd.H"
41 #include "surfaceFieldsFwd.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                      Namespace fvc functions Declaration
50 \*---------------------------------------------------------------------------*/
52 namespace fvc
54     template<class Type>
55     tmp<GeometricField<Type, fvPatchField, volMesh> > div
56     (
57         const GeometricField<Type, fvsPatchField, surfaceMesh>&
58     );
60     template<class Type>
61     tmp<GeometricField<Type, fvPatchField, volMesh> > div
62     (
63         const tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >&
64     );
67     template<class Type>
68     tmp
69     <
70         GeometricField
71         <typename innerProduct<vector, Type>::type, fvPatchField, volMesh>
72     > div
73     (
74         const GeometricField<Type, fvPatchField, volMesh>&,
75         const word& name
76     );
78     template<class Type>
79     tmp
80     <
81         GeometricField
82         <typename innerProduct<vector, Type>::type, fvPatchField, volMesh>
83     > div
84     (
85         const tmp<GeometricField<Type, fvPatchField, volMesh> >&,
86         const word& name
87     );
90     template<class Type>
91     tmp
92     <
93         GeometricField
94         <typename innerProduct<vector, Type>::type, fvPatchField, volMesh>
95     > div
96     (
97         const GeometricField<Type, fvPatchField, volMesh>&
98     );
100     template<class Type>
101     tmp
102     <
103         GeometricField
104         <typename innerProduct<vector, Type>::type, fvPatchField, volMesh>
105     > div
106     (
107         const tmp<GeometricField<Type, fvPatchField, volMesh> >&
108     );
111     template<class Type>
112     tmp<GeometricField<Type, fvPatchField, volMesh> > div
113     (
114         const surfaceScalarField&,
115         const GeometricField<Type, fvPatchField, volMesh>&,
116         const word& name
117     );
119     template<class Type>
120     tmp<GeometricField<Type, fvPatchField, volMesh> > div
121     (
122         const tmp<surfaceScalarField>&,
123         const GeometricField<Type, fvPatchField, volMesh>&,
124         const word& name
125     );
127     template<class Type>
128     tmp<GeometricField<Type, fvPatchField, volMesh> > div
129     (
130         const surfaceScalarField&,
131         const tmp<GeometricField<Type, fvPatchField, volMesh> >&,
132         const word& name
133     );
135     template<class Type>
136     tmp<GeometricField<Type, fvPatchField, volMesh> > div
137     (
138         const tmp<surfaceScalarField>&,
139         const tmp<GeometricField<Type, fvPatchField, volMesh> >&,
140         const word& name
141     );
144     template<class Type>
145     tmp<GeometricField<Type, fvPatchField, volMesh> > div
146     (
147         const surfaceScalarField&,
148         const GeometricField<Type, fvPatchField, volMesh>&
149     );
151     template<class Type>
152     tmp<GeometricField<Type, fvPatchField, volMesh> > div
153     (
154         const tmp<surfaceScalarField>&,
155         const GeometricField<Type, fvPatchField, volMesh>&
156     );
158     template<class Type>
159     tmp<GeometricField<Type, fvPatchField, volMesh> > div
160     (
161         const surfaceScalarField&,
162         const tmp<GeometricField<Type, fvPatchField, volMesh> >&
163     );
165     template<class Type>
166     tmp<GeometricField<Type, fvPatchField, volMesh> > div
167     (
168         const tmp<surfaceScalarField>&,
169         const tmp<GeometricField<Type, fvPatchField, volMesh> >&
170     );
174 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176 } // End namespace Foam
178 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 #ifdef NoRepository
181 #   include "fvcDiv.C"
182 #endif
184 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
186 #endif
188 // ************************************************************************* //