initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / test / pointField / testPointField.C
blob8087dbaa484930ca9e3b365f1c590eae01f82945
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 Application
26     testPointField
28 Description
29     For each time calculate the magnitude of velocity.
31 \*---------------------------------------------------------------------------*/
33 #include "fvCFD.H"
34 #include "pointMesh.H"
35 #include "pointFields.H"
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 int main(int argc, char *argv[])
42 #   include "setRootCase.H"
44 #   include "createTime.H"
45 #   include "createMesh.H"
47     pointMesh pMesh(mesh);
49     pointVectorField U
50     (
51         IOobject
52         (
53             "U",
54             runTime.timeName(),
55             mesh,
56             IOobject::NO_READ,
57             IOobject::AUTO_WRITE
58         ),
59         pMesh,
60         dimensionedVector("fvmU", dimLength, vector::zero),
61         pointPatchVectorField::calculatedType()
62     );
64     pointVectorField V = U + 2*U;
66     Info<< "End\n" << endl;
68     return 0;
72 // ************************************************************************* //