initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / postProcessing / foamCalcFunctions / calcType / calcType.C
blob90d821dfe2f166aaeab3424f3dbb39a02a5d6a88
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 \*---------------------------------------------------------------------------*/
27 #include "calcType.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 defineTypeNameAndDebug(calcType, 0);
33 defineRunTimeSelectionTable(calcType, dictionary);
36 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
38 Foam::calcType::calcType()
42 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
44 Foam::calcType::~calcType()
48 // * * * * * * * * * * * * Protected Member Functions  * * * * * * * * * * * //
50 void Foam::calcType::init()
52     // Do nothing
56 void Foam::calcType::preCalc
58     const argList& args,
59     const Time& runTime,
60     const fvMesh& mesh
63     // Do nothing
67 void Foam::calcType::calc
69     const argList& args,
70     const Time& runTime,
71     const fvMesh& mesh
74     // Do nothing
78 void Foam::calcType::postCalc
80     const argList& args,
81     const Time& runTime,
82     const fvMesh& mesh
85     // Do nothing
89 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
91 void Foam::calcType::tryInit()
93     FatalIOError.throwExceptions();
95     try
96     {
97         init();
98     }
99     catch(IOerror& err)
100     {
101         Warning<< err << endl;
102     }
106 void Foam::calcType::tryPreCalc
108     const argList& args,
109     const Time& runTime,
110     const fvMesh& mesh
113     FatalIOError.throwExceptions();
115     try
116     {
117         preCalc(args, runTime, mesh);
118     }
119     catch(IOerror& err)
120     {
121         Warning<< err << endl;
122     }
126 void Foam::calcType::tryCalc
128     const argList& args,
129     const Time& runTime,
130     const fvMesh& mesh
133     FatalIOError.throwExceptions();
135     try
136     {
137         calc(args, runTime, mesh);
138     }
139     catch(IOerror& err)
140     {
141         Warning<< err << endl;
142     }
146 void Foam::calcType::tryPostCalc
148     const argList& args,
149     const Time& runTime,
150     const fvMesh& mesh
153     FatalIOError.throwExceptions();
155     try
156     {
157         postCalc(args, runTime, mesh);
158     }
159     catch(IOerror& err)
160     {
161         Warning<< err << endl;
162     }
166 // ************************************************************************* //