initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / cfdTools / general / porousMedia / porousZonesTemplates.C
blobf2b7f4b2ad5ea3ece8c2c2aaa1cb930d0479290d
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 "porousZones.H"
28 #include "volFields.H"
29 #include "fvMatrix.H"
30 #include "fvm.H"
32 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
34 template<class Type>
35 void Foam::porousZones::modifyDdt(fvMatrix<Type>& m) const
37     forAll(*this, i)
38     {
39         operator[](i).modifyDdt(m);
40     }
44 // * * * * * * * * * * * * * * *  Member Functions * * * * * * * * * * * * * //
46 template<class Type>
47 Foam::tmp<Foam::fvMatrix<Type> >
48 Foam::porousZones::ddt
50     GeometricField<Type, fvPatchField, volMesh>& vf
53     tmp<fvMatrix<Type> > tres = fvm::ddt(vf);
54     modifyDdt(tres());
55     return tres;
59 template<class Type>
60 Foam::tmp<Foam::fvMatrix<Type> >
61 Foam::porousZones::ddt
63     const oneField&,
64     GeometricField<Type, fvPatchField, volMesh>& vf
67     tmp<fvMatrix<Type> > tres = fvm::ddt(vf);
68     modifyDdt(tres());
69     return tres;
73 template<class Type>
74 Foam::tmp<Foam::fvMatrix<Type> >
75 Foam::porousZones::ddt
77     const dimensionedScalar& rho,
78     GeometricField<Type, fvPatchField, volMesh>& vf
81     tmp<fvMatrix<Type> > tres = fvm::ddt(rho,vf);
82     modifyDdt(tres());
83     return tres;
87 template<class Type>
88 Foam::tmp<Foam::fvMatrix<Type> >
89 Foam::porousZones::ddt
91     const volScalarField& rho,
92     GeometricField<Type, fvPatchField, volMesh>& vf
95     tmp<fvMatrix<Type> > tres = fvm::ddt(rho,vf);
96     modifyDdt(tres());
97     return tres;
100 // ************************************************************************* //