initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / errorEstimation / errorEstimate / resErrorSup.C
blobedd02f32b0c132d807f63b888a2002d062d06c34
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 "resErrorSup.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 namespace resError
39 template<class Type>
40 tmp<errorEstimate<Type> >
43     const volScalarField& sp,
44     GeometricField<Type, fvPatchField, volMesh>& vf
47     return tmp<errorEstimate<Type> >
48     (
49         new errorEstimate<Type>
50         (
51             vf,
52             sp.dimensions()*vf.dimensions(),
53             sp.internalField()*vf.internalField(),
54             scalarField(vf.internalField().size(), 0)
55         )
56     );
59 template<class Type>
60 tmp<errorEstimate<Type> >
63     const tmp<volScalarField>& tsp,
64     GeometricField<Type, fvPatchField, volMesh>& vf
67     tmp<errorEstimate<Type> > tee = resError::Sp(tsp(), vf);
68     tsp.clear();
69     return tee;
73 template<class Type>
74 tmp<errorEstimate<Type> >
77     const dimensionedScalar& sp,
78     GeometricField<Type, fvPatchField, volMesh>& vf
81     return tmp<errorEstimate<Type> >
82     (
83         new errorEstimate<Type>
84         (
85             vf,
86             sp.dimensions()*vf.dimensions(),
87             sp.value()*vf.internalField(),
88             scalarField(vf.internalField().size(), 0)
89         )
90     );
94 template<class Type>
95 tmp<errorEstimate<Type> >
96 SuSp
98     const volScalarField& sp,
99     GeometricField<Type, fvPatchField, volMesh>& vf
102     return Sp(sp, vf);
105 template<class Type>
106 tmp<errorEstimate<Type> >
107 SuSp
109     const tmp<volScalarField>& tsp,
110     GeometricField<Type, fvPatchField, volMesh>& vf
113     tmp<errorEstimate<Type> > tee = resError::SuSp(tsp(), vf);
114     tsp.clear();
115     return tee;
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace resError
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // ************************************************************************* //
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //