initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / interpolation / surfaceInterpolation / multivariateSchemes / multivariateSelectionScheme / multivariateSelectionScheme.C
blobb993c682f134329beadb7860b6e334232619845c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 \*---------------------------------------------------------------------------*/
27 #include "multivariateSelectionScheme.H"
28 #include "limitedSurfaceInterpolationScheme.H"
29 #include "volFields.H"
30 #include "surfaceFields.H"
31 #include "upwind.H"
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 namespace Foam
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 template<class Type>
41 multivariateSelectionScheme<Type>::multivariateSelectionScheme
43     const fvMesh& mesh,
44     const typename multivariateSurfaceInterpolationScheme<Type>::
45         fieldTable& fields,
46     const surfaceScalarField& faceFlux,
47     Istream& schemeData
50     multivariateSurfaceInterpolationScheme<Type>
51     (
52         mesh,
53         fields,
54         faceFlux,
55         schemeData
56     ),
57     schemes_(schemeData),
58     faceFlux_(faceFlux),
59     weights_
60     (
61         IOobject
62         (
63             "multivariateWeights",
64             mesh.time().timeName(),
65             mesh
66         ),
67         mesh,
68         dimless
69     )
71     typename multivariateSurfaceInterpolationScheme<Type>::
72         fieldTable::const_iterator iter = this->fields().begin();
74     surfaceScalarField limiter =
75     (
76         limitedSurfaceInterpolationScheme<Type>::New
77         (
78             mesh,
79             faceFlux_,
80             schemes_.lookup(iter()->name())
81         )().limiter(*iter())
82     );
84     for (++iter; iter != this->fields().end(); ++iter)
85     {
86         limiter = min
87         (
88             limiter,
89             limitedSurfaceInterpolationScheme<Type>::New
90             (
91                 mesh,
92                 faceFlux_,
93                 schemes_.lookup(iter()->name())
94             )().limiter(*iter())
95         );
96     }
98     weights_ =
99         limiter*mesh.surfaceInterpolation::weights()
100       + (scalar(1) - limiter)*upwind<Type>(mesh, faceFlux_).weights();
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 } // End namespace Foam
108 // ************************************************************************* //