vtkPVFoamMeshZone.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "vtkPVFoam.H"
27 
28 // OpenFOAM includes
29 #include "vtkOpenFOAMPoints.H"
30 
31 // VTK includes
32 #include "vtkPoints.h"
33 #include "vtkPolyData.h"
34 #include "vtkCellArray.h"
35 
36 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
37 
38 vtkPolyData* Foam::vtkPVFoam::pointZoneVTKMesh
39 (
40  const fvMesh& mesh,
41  const labelList& pointLabels
42 )
43 {
44  vtkPolyData* vtkmesh = vtkPolyData::New();
45 
46  if (debug)
47  {
48  Info<< "<beg> Foam::vtkPVFoam::pointZoneVTKMesh" << endl;
49  printMemory();
50  }
51 
52  const pointField& meshPoints = mesh.points();
53 
54  vtkPoints* vtkpoints = vtkPoints::New();
55  vtkpoints->Allocate(pointLabels.size());
56 
57  forAll(pointLabels, pointi)
58  {
59  vtkInsertNextOpenFOAMPoint(vtkpoints, meshPoints[pointLabels[pointi]]);
60  }
61 
62  vtkmesh->SetPoints(vtkpoints);
63  vtkpoints->Delete();
64 
65  if (debug)
66  {
67  Info<< "<beg> Foam::vtkPVFoam::pointZoneVTKMesh" << endl;
68  printMemory();
69  }
70 
71  return vtkmesh;
72 }
73 
74 
75 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
static void printMemory()
Simple memory used debugging information.
void vtkInsertNextOpenFOAMPoint(vtkPoints *points, const Foam::point &p)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:256
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
vectorField pointField
pointField is a vectorField.
Definition: pointFieldFwd.H:42
List< label > labelList
A List of labels.
Definition: labelList.H:56
messageStream Info