initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / fields / fvPatchFields / derived / timeVaryingFlowRateInletVelocity / timeVaryingFlowRateInletVelocityFvPatchVectorField.C
blobfcf87b2d6d794bb24d18abeb960bbfd71ecd9fa1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2006-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 "timeVaryingFlowRateInletVelocityFvPatchVectorField.H"
28 #include "volFields.H"
29 #include "addToRunTimeSelectionTable.H"
30 #include "fvPatchFieldMapper.H"
31 #include "surfaceFields.H"
32 #include "Time.H"
34 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
36 Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
37 timeVaryingFlowRateInletVelocityFvPatchVectorField
39     const fvPatch& p,
40     const DimensionedField<vector, volMesh>& iF
43     flowRateInletVelocityFvPatchVectorField(p, iF),
44     timeSeries_()
48 Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
49 timeVaryingFlowRateInletVelocityFvPatchVectorField
51     const timeVaryingFlowRateInletVelocityFvPatchVectorField& ptf,
52     const fvPatch& p,
53     const DimensionedField<vector, volMesh>& iF,
54     const fvPatchFieldMapper& mapper
57     flowRateInletVelocityFvPatchVectorField(ptf, p, iF, mapper),
58     timeSeries_(ptf.timeSeries_)
62 Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
63 timeVaryingFlowRateInletVelocityFvPatchVectorField
65     const fvPatch& p,
66     const DimensionedField<vector, volMesh>& iF,
67     const dictionary& dict
70     flowRateInletVelocityFvPatchVectorField(p, iF, dict),
71     timeSeries_(dict)
75 Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
76 timeVaryingFlowRateInletVelocityFvPatchVectorField
78     const timeVaryingFlowRateInletVelocityFvPatchVectorField& ptf
81     flowRateInletVelocityFvPatchVectorField(ptf),
82     timeSeries_(ptf.timeSeries_)
86 Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
87 timeVaryingFlowRateInletVelocityFvPatchVectorField
89     const timeVaryingFlowRateInletVelocityFvPatchVectorField& ptf,
90     const DimensionedField<vector, volMesh>& iF
93     flowRateInletVelocityFvPatchVectorField(ptf, iF),
94     timeSeries_(ptf.timeSeries_)
98 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
100 void Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
101 updateCoeffs()
103     if (updated())
104     {
105         return;
106     }
108     flowRate() = timeSeries_(this->db().time().timeOutputValue());
109     flowRateInletVelocityFvPatchVectorField::updateCoeffs();
113 void Foam::timeVaryingFlowRateInletVelocityFvPatchVectorField::
114 write(Ostream& os) const
116     flowRateInletVelocityFvPatchVectorField::write(os);
117     timeSeries_.write(os);
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 namespace Foam
125    makePatchTypeField
126    (
127        fvPatchVectorField,
128        timeVaryingFlowRateInletVelocityFvPatchVectorField
129    );
133 // ************************************************************************* //