initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / test / DimensionedField / DimensionedFieldTest.C
blobbc1f875dbd164756f8355fe879b1042178e2bc35
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 \*---------------------------------------------------------------------------*/
27 #include "argList.H"
28 #include "Time.H"
29 #include "DimensionedFields.H"
30 #include "DimensionedSphericalTensorField.H"
31 #include "vector.H"
32 #include "tensor.H"
33 #include "GeoMesh.H"
35 using namespace Foam;
37 namespace Foam
40 class vMesh
43 public:
45     vMesh()
46     {}
48     label size() const
49     {
50         return 10;
51     }
56 template<>
57 const word Foam::DimensionedField<scalar, GeoMesh<vMesh> >::typeName
59     "dimenionedScalarField"
62 template<>
63 const word Foam::DimensionedField<vector, GeoMesh<vMesh> >::typeName
65     "dimenionedVectorField"
68 template<>
69 const word Foam::DimensionedField<tensor, GeoMesh<vMesh> >::typeName
71     "dimenionedTensorField"
74 template<>
75 const word Foam::DimensionedField<sphericalTensor, GeoMesh<vMesh> >::typeName
77     "dimenionedSphericalTensorField"
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
82 // Main program:
84 int main(int argc, char *argv[])
87 #   include "setRootCase.H"
88 #   include "createTime.H"
90     vMesh vm;
92     DimensionedField<scalar, GeoMesh<vMesh> > dsf
93     (
94         IOobject
95         (
96             "dsf",
97             runTime.timeName(),
98             runTime,
99             IOobject::MUST_READ,
100             IOobject::NO_WRITE
101         ),
102         vm
103     );
105     Info<< dsf << endl;
106     dsf += dsf;
107     dsf -= dimensionedScalar("5", dsf.dimensions(), 5.0);
108     Info<< dsf << endl;
110     Info<< sqr(dsf + dsf) - sqr(dsf + dsf) << endl;
112     DimensionedField<vector, GeoMesh<vMesh> > dvf
113     (
114         IOobject
115         (
116             "dvf",
117             runTime.timeName(),
118             runTime,
119             IOobject::MUST_READ,
120             IOobject::NO_WRITE
121         ),
122         vm
123     );
125     Info<< (dvf ^ (dvf ^ dvf)) << endl;
127     Info << "End\n" << endl;
129     return 0;
133 // ************************************************************************* //