Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / finiteVolume / finiteVolume / fvm / fvmDdt.C
blobe9977ccd756730e7299b155d5687a8b6aa57f7eb
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-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
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 "volFields.H"
27 #include "surfaceFields.H"
28 #include "fvMatrix.H"
29 #include "ddtScheme.H"
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 namespace Foam
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 namespace fvm
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 template<class Type>
44 tmp<fvMatrix<Type> >
45 ddt
47     const GeometricField<Type, fvPatchField, volMesh>& vf
50     return fv::ddtScheme<Type>::New
51     (
52         vf.mesh(),
53         vf.mesh().ddtScheme("ddt(" + vf.name() + ')')
54     )().fvmDdt(vf);
58 template<class Type>
59 tmp<fvMatrix<Type> >
60 ddt
62     const one&,
63     const GeometricField<Type, fvPatchField, volMesh>& vf
66     return ddt(vf);
70 template<class Type>
71 tmp<fvMatrix<Type> >
72 ddt
74     const dimensionedScalar& rho,
75     const GeometricField<Type, fvPatchField, volMesh>& vf
78     return fv::ddtScheme<Type>::New
79     (
80         vf.mesh(),
81         vf.mesh().ddtScheme("ddt(" + rho.name() + ',' + vf.name() + ')')
82     )().fvmDdt(rho, vf);
86 template<class Type>
87 tmp<fvMatrix<Type> >
88 ddt
90     const volScalarField& rho,
91     const GeometricField<Type, fvPatchField, volMesh>& vf
94     return fv::ddtScheme<Type>::New
95     (
96         vf.mesh(),
97         vf.mesh().ddtScheme("ddt(" + rho.name() + ',' + vf.name() + ')')
98     )().fvmDdt(rho, vf);
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 } // End namespace fvm
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace Foam
110 // ************************************************************************* //