Forward compatibility: flex
[foam-extend-3.2.git] / src / postProcessing / foamCalcFunctions / calcType / calcType.C
blob961115f9c05fe16a3cefeeed6fa8c2fef880435c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "calcType.H"
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 defineTypeNameAndDebug(calcType, 0);
32 defineRunTimeSelectionTable(calcType, dictionary);
35 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
37 Foam::calcType::calcType()
41 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
43 Foam::calcType::~calcType()
47 // * * * * * * * * * * * * Protected Member Functions  * * * * * * * * * * * //
49 void Foam::calcType::init()
51     // Do nothing
55 void Foam::calcType::preCalc
57     const argList& args,
58     const Time& runTime,
59     const fvMesh& mesh
62     // Do nothing
66 void Foam::calcType::calc
68     const argList& args,
69     const Time& runTime,
70     const fvMesh& mesh
73     // Do nothing
77 void Foam::calcType::postCalc
79     const argList& args,
80     const Time& runTime,
81     const fvMesh& mesh
84     // Do nothing
88 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
90 void Foam::calcType::tryInit()
92     FatalIOError.throwExceptions();
94     try
95     {
96         init();
97     }
98     catch(IOerror& err)
99     {
100         Warning<< err << endl;
101     }
105 void Foam::calcType::tryPreCalc
107     const argList& args,
108     const Time& runTime,
109     const fvMesh& mesh
112     FatalIOError.throwExceptions();
114     try
115     {
116         preCalc(args, runTime, mesh);
117     }
118     catch(IOerror& err)
119     {
120         Warning<< err << endl;
121     }
125 void Foam::calcType::tryCalc
127     const argList& args,
128     const Time& runTime,
129     const fvMesh& mesh
132     FatalIOError.throwExceptions();
134     try
135     {
136         calc(args, runTime, mesh);
137     }
138     catch(IOerror& err)
139     {
140         Warning<< err << endl;
141     }
145 void Foam::calcType::tryPostCalc
147     const argList& args,
148     const Time& runTime,
149     const fvMesh& mesh
152     FatalIOError.throwExceptions();
154     try
155     {
156         postCalc(args, runTime, mesh);
157     }
158     catch(IOerror& err)
159     {
160         Warning<< err << endl;
161     }
165 // ************************************************************************* //