initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / finiteVolume / finiteVolume / fvm / fvmD2dt2.C
blob56dec560f2a7becf213bec58ff626205a1b1a6ef
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 Description
26     
28 \*---------------------------------------------------------------------------*/
30 #include "volFields.H"
31 #include "surfaceFields.H"
32 #include "fvMatrix.H"
33 #include "d2dt2Scheme.H"
35 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 namespace Foam
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace fvm
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 template<class Type>
48 tmp<fvMatrix<Type> >
49 d2dt2
51     GeometricField<Type, fvPatchField, volMesh>& vf
54     return fv::d2dt2Scheme<Type>::New
55     (
56         vf.mesh(),
57         vf.mesh().d2dt2Scheme("d2dt2(" + vf.name() + ')')
58     )().fvmD2dt2(vf);
62 template<class Type>
63 tmp<fvMatrix<Type> >
64 d2dt2
66     const dimensionedScalar& rho,
67     GeometricField<Type, fvPatchField, volMesh>& vf
70     return fv::d2dt2Scheme<Type>::New
71     (
72         vf.mesh(),
73         vf.mesh().d2dt2Scheme("d2dt2(" + rho.name() + ',' + vf.name() + ')')
74     )().fvmD2dt2(rho, vf);
78 template<class Type>
79 tmp<fvMatrix<Type> >
80 d2dt2
82     const volScalarField& rho,
83     GeometricField<Type, fvPatchField, volMesh>& vf
86     return fv::d2dt2Scheme<Type>::New
87     (
88         vf.mesh(),
89         vf.mesh().d2dt2Scheme("d2dt2(" + rho.name() + ',' + vf.name() + ')')
90     )().fvmD2dt2(rho, vf);
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 } // End namespace fvm
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 } // End namespace Foam
102 // ************************************************************************* //