Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / foam / algorithms / subCycle / subCycle.H
blob655b782aaf4536fa16bb6f4e53894f7657efcd79
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 Class
25     Foam::subCycle
27 Description
28     Perform a subCycleTime on a field
30 \*---------------------------------------------------------------------------*/
32 #ifndef subCycle_H
33 #define subCycle_H
35 #include "subCycleTime.H"
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 namespace Foam
42 /*---------------------------------------------------------------------------*\
43                           Class subCycleField Declaration
44 \*---------------------------------------------------------------------------*/
46 template<class GeometricField>
47 class subCycleField
49     // Private data
51         //- Reference to the field being sub-cycled
52         GeometricField& gf_;
54         //- Reference to the field old-time field being sub-cycled
55         //  Needed to avoid calls to oldTime() which may cause
56         //  unexpected updates of the old-time field
57         GeometricField& gf0_;
59         //- Copy of the "real" old-time value of the field
60         GeometricField gf_0_;
63 public:
65     // Constructors
67         //- Construct field and number of sub-cycles
68         subCycleField(GeometricField& gf)
69         :
70             gf_(gf),
71             gf0_(gf.oldTime()),
72             gf_0_(gf0_.name() + "_", gf0_)
73         {}
76     //- Destructor
77     ~subCycleField()
78     {
79         // Reset the old-time field
80         gf0_ = gf_0_;
82         // Correct the time index of the field to correspond to the global time
83         gf_.timeIndex() = gf_.time().timeIndex();
84         gf0_.timeIndex() = gf_.time().timeIndex();
85     }
88     //- Correct the time index of the field to correspond to
89     //  the sub-cycling time.
90     //
91     //  The time index is incremented to protect the old-time value from
92     //  being updated at the beginning of the time-loop in the case of
93     //  outer iteration
94     void updateTimeIndex()
95     {
96         gf_.timeIndex() = gf_.time().timeIndex() + 1;
97         gf0_.timeIndex() = gf_.time().timeIndex() + 1;
98     }
102 /*---------------------------------------------------------------------------*\
103                           Class subCycle Declaration
104 \*---------------------------------------------------------------------------*/
106 template<class GeometricField>
107 class subCycle
109     public subCycleField<GeometricField>,
110     public subCycleTime
112     // Private Member Functions
114         //- Disallow default bitwise copy construct
115         subCycle(const subCycle<GeometricField>&);
117         //- Disallow default bitwise assignment
118         void operator=(const subCycle<GeometricField>&);
121 public:
123     // Constructors
125         //- Construct field and number of sub-cycles
126         subCycle(GeometricField& gf, const label nSubCycles)
127         :
128             subCycleField<GeometricField>(gf),
129             subCycleTime(const_cast<Time&>(gf.time()), nSubCycles)
130         {
131             // Update the field time index to correspond to the sub-cycle time
132             this->updateTimeIndex();
133         }
136     //- Destructor
137     //  End the subCycleTime, which restores the time state
138     ~subCycle()
139     {
140         endSubCycle();
141     }
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 } // End namespace Foam
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 #endif
153 // ************************************************************************* //