initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / postProcessing / foamCalcFunctions / field / div / div.H
blob85ab3303e84bc7da1e5b5147226a0884a1718b30
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 Class
26     Foam::calcTypes::div
28 Description
29     Writes scalar fields corresponding to the divergence of the supplied
30     field (name) for each time.
32 SourceFiles
33     div.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef div_H
38 #define div_H
40 #include "calcType.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 namespace calcTypes
50 /*---------------------------------------------------------------------------*\
51                           Class div Declaration
52 \*---------------------------------------------------------------------------*/
54 class div
56     public calcType
58     // Private Member Functions
60         //- Disallow default bitwise copy construct
61         div(const div&);
63         //- Disallow default bitwise assignment
64         void operator=(const div&);
67 protected:
69     // Member Functions
71         // Calculation routines
73             //- Initialise - typically setting static variables,
74             //  e.g. command line arguments
75             virtual void init();
77             //- Pre-time loop calculations
78             virtual void preCalc
79             (
80                 const argList& args,
81                 const Time& runTime,
82                 const fvMesh& mesh
83             );
85             //- Time loop calculations
86             virtual void calc
87             (
88                 const argList& args,
89                 const Time& runTime,
90                 const fvMesh& mesh
91             );
94         // I-O
96             //- Write div fields
97             template<class Type>
98             void writeDivField
99             (
100                 const IOobject& header,
101                 const fvMesh& mesh,
102                 bool& processed
103             );
106 public:
108     //- Runtime type information
109     TypeName("div");
112     // Constructors
114         //- Construct null
115         div();
118     // Destructor
120         virtual ~div();
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 } // End namespace calcTypes
127 } // End namespace Foam
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 #ifdef NoRepository
132 #   include "writeDivField.C"
133 #endif
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 #endif
139 // ************************************************************************* //