1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
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
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"
29 #include "ddtScheme.H"
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 const GeometricField<Type, fvPatchField, volMesh>& vf
50 return fv::ddtScheme<Type>::New
53 vf.mesh().ddtScheme("ddt(" + vf.name() + ')')
63 const GeometricField<Type, fvPatchField, volMesh>& vf
74 const dimensionedScalar& rho,
75 const GeometricField<Type, fvPatchField, volMesh>& vf
78 return fv::ddtScheme<Type>::New
81 vf.mesh().ddtScheme("ddt(" + rho.name() + ',' + vf.name() + ')')
90 const volScalarField& rho,
91 const GeometricField<Type, fvPatchField, volMesh>& vf
94 return fv::ddtScheme<Type>::New
97 vf.mesh().ddtScheme("ddt(" + rho.name() + ',' + vf.name() + ')')
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 } // End namespace fvm
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace Foam
110 // ************************************************************************* //