ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / db / Time / subCycleTime.H
blob594ee56ea6cf4f5c06d01b416f3e8fb8dc97c49c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::subCycleTime
27 Description
28     A class for managing sub-cycling times
30 SourceFiles
31     subCycleTime.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef subCycleTime_H
36 #define subCycleTime_H
38 #include "Time.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                         Class subCycleTime Declaration
47 \*---------------------------------------------------------------------------*/
49 class subCycleTime
51     // Private data
53         Time& time_;
55         label nSubCycles_;
56         label subCycleIndex_;
58 public:
60     // Constructors
62         //- Construct from original time and number of sub-cycles
63         subCycleTime(Time&, const label nSubCycles);
66     //- Destructor
67     ~subCycleTime();
70     // Member functions
72         //- Return true if the number of sub-cycles has been reached
73         bool end() const;
75         //- End the sub-cycling and reset the time-state
76         void endSubCycle();
79     // Member operators
81         //- Prefix increment
82         subCycleTime& operator++();
84         //- Postfix increment
85         subCycleTime& operator++(int);
89 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 } // End namespace Foam
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 #endif
97 // ************************************************************************* //