ENH: Adding triSurfacePointFields for vertex data.

This commit is contained in:
graham
2011-01-21 14:00:39 +00:00
parent 1c646e2143
commit bd3a0d39b5
5 changed files with 129 additions and 4 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -52,6 +52,28 @@ const word triSurfaceSymmTensorField::typeName
template<>
const word triSurfaceTensorField::typeName("triSurfaceTensorField");
template<>
const word triSurfacePointLabelField::typeName("triSurfacePointLabelField");
template<>
const word triSurfacePointScalarField::typeName("triSurfacePointScalarField");
template<>
const word triSurfacePointVectorField::typeName("triSurfacePointVectorField");
template<>
const word triSurfacePointSphericalTensorField::typeName
("triSurfacePointSphericalTensorField");
template<>
const word triSurfacePointSymmTensorField::typeName
("triSurfacePointSymmTensorField");
template<>
const word triSurfacePointTensorField::typeName("triSurfacePointTensorField");
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -37,6 +37,7 @@ SourceFiles
#include "DimensionedField.H"
#include "triSurfaceGeoMesh.H"
#include "triSurfacePointGeoMesh.H"
#include "triSurfaceFieldsFwd.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -54,6 +54,21 @@ typedef Foam::DimensionedField<symmTensor, triSurfaceGeoMesh>
typedef Foam::DimensionedField<tensor, triSurfaceGeoMesh>
triSurfaceTensorField;
class triSurfacePointGeoMesh;
typedef Foam::DimensionedField<label, triSurfacePointGeoMesh>
triSurfacePointLabelField;
typedef Foam::DimensionedField<scalar, triSurfacePointGeoMesh>
triSurfacePointScalarField;
typedef Foam::DimensionedField<vector, triSurfacePointGeoMesh>
triSurfacePointVectorField;
typedef Foam::DimensionedField<sphericalTensor, triSurfacePointGeoMesh>
triSurfacePointSphericalTensorField;
typedef Foam::DimensionedField<symmTensor, triSurfacePointGeoMesh>
triSurfacePointSymmTensorField;
typedef Foam::DimensionedField<tensor, triSurfacePointGeoMesh>
triSurfacePointTensorField;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License

View File

@ -0,0 +1,87 @@
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::triSurfaceGeoMesh
Description
The triSurface point GeoMesh (for holding vertex fields).
Similar to the volMesh used for the Finite Volume discretization.
\*---------------------------------------------------------------------------*/
#ifndef triSurfacePointGeoMesh_H
#define triSurfacePointGeoMesh_H
#include "GeoMesh.H"
#include "triSurface.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
class triSurfacePointGeoMesh
:
public GeoMesh<triSurface>
{
public:
// Constructors
//- Construct from triSurface reference
explicit triSurfacePointGeoMesh(const triSurface& mesh)
:
GeoMesh<triSurface>(mesh)
{}
// Member Functions
//- Return size
static label size(const triSurface& mesh)
{
return mesh.points().size();
}
//- Return size
label size() const
{
return size(mesh_);
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //