ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / finiteVolume / cfdTools / general / MRF / MRFZones.C
blob52d26b310831a5cccab7b10b22631f1c71c1ebd0
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 \*---------------------------------------------------------------------------*/
26 #include "MRFZones.H"
27 #include "Time.H"
28 #include "fvMesh.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 namespace Foam
34     defineTemplateTypeNameAndDebug(IOPtrList<MRFZone>, 0);
37 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
39 Foam::MRFZones::MRFZones(const fvMesh& mesh)
41     IOPtrList<MRFZone>
42     (
43         IOobject
44         (
45             "MRFZones",
46             mesh.time().constant(),
47             mesh,
48             IOobject::MUST_READ_IF_MODIFIED,
49             IOobject::NO_WRITE
50         ),
51         MRFZone::iNew(mesh)
52     )
56 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
58 void Foam::MRFZones::addCoriolis(fvVectorMatrix& UEqn) const
60     forAll(*this, i)
61     {
62         operator[](i).addCoriolis(UEqn);
63     }
67 void Foam::MRFZones::addCoriolis
69     const volScalarField& rho,
70     fvVectorMatrix& UEqn
71 ) const
73     forAll(*this, i)
74     {
75         operator[](i).addCoriolis(rho, UEqn);
76     }
80 void Foam::MRFZones::relativeVelocity(volVectorField& U) const
82     forAll(*this, i)
83     {
84         operator[](i).relativeVelocity(U);
85     }
89 void Foam::MRFZones::absoluteVelocity(volVectorField& U) const
91     forAll(*this, i)
92     {
93         operator[](i).absoluteVelocity(U);
94     }
98 void Foam::MRFZones::relativeFlux(surfaceScalarField& phi) const
100     forAll(*this, i)
101     {
102         operator[](i).relativeFlux(phi);
103     }
107 void Foam::MRFZones::relativeFlux
109     const surfaceScalarField& rho,
110     surfaceScalarField& phi
111 ) const
113     forAll(*this, i)
114     {
115         operator[](i).relativeFlux(rho, phi);
116     }
120 void Foam::MRFZones::absoluteFlux(surfaceScalarField& phi) const
122     forAll(*this, i)
123     {
124         operator[](i).absoluteFlux(phi);
125     }
129 void Foam::MRFZones::absoluteFlux
131     const surfaceScalarField& rho,
132     surfaceScalarField& phi
133 ) const
135     forAll(*this, i)
136     {
137         operator[](i).absoluteFlux(rho, phi);
138     }
142 void Foam::MRFZones::correctBoundaryVelocity(volVectorField& U) const
144     forAll(*this, i)
145     {
146         operator[](i).correctBoundaryVelocity(U);
147     }
151 // ************************************************************************* //