MRFZone: Added function to convert between absolute and relative velocities.
[OpenFOAM-1.6.x.git] / src / finiteVolume / cfdTools / general / MRF / MRFZones.H
blob66bc52d99a5dbf6741056c1b3b4a0cf5c356cee1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 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 Class
26     Foam::MRFZones
28 Description
29     Container class for a set of MRFZones with the MRFZone member functions
30     implemented to loop over the functions for each MRFZone.
32 SourceFiles
33     MRFZones.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef MRFZones_H
38 #define MRFZones_H
40 #include "MRFZone.H"
41 #include "IOPtrList.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class MRFZones Declaration
50 \*---------------------------------------------------------------------------*/
52 class MRFZones
54     public IOPtrList<MRFZone>
57     // Private Member Functions
59         //- Disallow default bitwise copy construct
60         MRFZones(const MRFZones&);
62         //- Disallow default bitwise assignment
63         void operator=(const MRFZones&);
66 public:
68     // Constructors
70         //- Construct from fvMesh
71         MRFZones(const fvMesh& mesh);
74     // Member Functions
76         //- Add the Coriolis force contribution to the momentum equation
77         void addCoriolis(fvVectorMatrix& UEqn) const;
79         //- Add the Coriolis force contribution to the momentum equation
80         void addCoriolis(const volScalarField& rho, fvVectorMatrix& UEqn) const;
82         //- Make the given absolute velocity relative within the MRF region
83         void relativeVelocity(volVectorField& U) const;
85         //- Make the given relative velocity absolute within the MRF region
86         void absoluteVelocity(volVectorField& U) const;
88         //- Make the given absolute flux relative within the MRF region
89         void relativeFlux(surfaceScalarField& phi) const;
91         //- Make the given absolute mass-flux relative within the MRF region
92         void relativeFlux
93         (
94             const surfaceScalarField& rho,
95             surfaceScalarField& phi
96         ) const;
98         //- Make the given relative flux absolute within the MRF region
99         void absoluteFlux(surfaceScalarField& phi) const;
101         //- Make the given relative mass-flux absolute within the MRF region
102         void absoluteFlux
103         (
104             const surfaceScalarField& rho,
105             surfaceScalarField& phi
106         ) const;
108         //- Correct the boundary velocity for the roation of the MRF region
109         void correctBoundaryVelocity(volVectorField& U) const;
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 } // End namespace Foam
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 #endif
121 // ************************************************************************* //