initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / postProcessing / graphics / PVFoamReader / vtkFoam / vtkFoamConvertVolField.H
blob7762e906d17f2d49fdfecfc7fff96ffabd78941c
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 InClass
26     Foam::vtkFoam
28 \*---------------------------------------------------------------------------*/
30 #ifndef vtkFoamConvertVolField_H
31 #define vtkFoamConvertVolField_H
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 template<class Type>
36 void Foam::vtkFoam::convertVolField
38     const GeometricField<Type, fvPatchField, volMesh>& tf
41     vtkUnstructuredGrid *vtkMesh =
42         vtkUnstructuredGrid::SafeDownCast(reader_->GetOutput(0));
44     vtkFloatArray *cellTypes = vtkFloatArray::New();
45     cellTypes->SetNumberOfTuples(superCells_.size());
46     cellTypes->SetNumberOfComponents(Type::nComponents);
47     cellTypes->Allocate(Type::nComponents*tf.size());
48     cellTypes->SetName(tf.name().c_str());
50     float vec[Type::nComponents];
52     forAll(superCells_, sci)
53     {
54         const Type& t = tf[superCells_[sci]];
55         for (direction d=0; d<Type::nComponents; d++)
56         {
57             vec[d] = t[d];
58         }
60         cellTypes->InsertTuple(sci, vec);
61     }
63     vtkMesh->GetCellData()->AddArray(cellTypes);
64     cellTypes->Delete();
68 template<>
69 void Foam::vtkFoam::convertVolField
71     const GeometricField<scalar, fvPatchField, volMesh>& sf
74     vtkUnstructuredGrid *vtkMesh =
75         vtkUnstructuredGrid::SafeDownCast(reader_->GetOutput(0));
77     vtkFloatArray *cellScalars = vtkFloatArray::New();
78     cellScalars->SetNumberOfTuples(superCells_.size());
79     cellScalars->SetNumberOfComponents(1);
80     cellScalars->Allocate(sf.size());
81     cellScalars->SetName(sf.name().c_str());
83     forAll(superCells_, sci)
84     {
85         cellScalars->InsertComponent(sci, 0, sf[superCells_[sci]]);
86     }
88     vtkMesh->GetCellData()->AddArray(cellScalars);
89     if (!vtkMesh->GetCellData()->GetScalars())
90     {
91         vtkMesh->GetCellData()->SetScalars(cellScalars);
92     }
94     cellScalars->Delete();
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 #endif
102 // ************************************************************************* //