/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
#include "vtkSetWriter.H"
#include "coordSet.H"
#include "fileName.H"
#include "OFstream.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::vtkSetWriter::vtkSetWriter()
:
writer()
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template
Foam::vtkSetWriter::~vtkSetWriter()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
Foam::fileName Foam::vtkSetWriter::getFileName
(
const coordSet& points,
const wordList& valueSetNames
) const
{
return this->getBaseName(points, valueSetNames) + ".vtk";
}
template
void Foam::vtkSetWriter::write
(
const coordSet& points,
const wordList& valueSetNames,
const List*>& valueSets,
Ostream& os
) const
{
os << "# vtk DataFile Version 2.0" << nl
<< points.name() << nl
<< "ASCII" << nl
<< "DATASET POLYDATA" << nl
<< "POINTS " << points.size() << " double" << nl;
for (const point& pt : points)
{
os << float(pt.x()) << ' '
<< float(pt.y()) << ' '
<< float(pt.z()) << nl;
}
os << "POINT_DATA " << points.size() << nl
<< " FIELD attributes " << valueSetNames.size() << nl;
forAll(valueSetNames, setI)
{
os << valueSetNames[setI] << ' '
<< int(pTraits::nComponents) << ' '
<< points.size() << " float" << nl;
const Field& fld = *valueSets[setI];
forAll(fld, pointi)
{
if (pointi != 0)
{
os << ' ';
}
writer::write(fld[pointi], os);
}
os << nl;
}
}
template
void Foam::vtkSetWriter::write
(
const bool writeTracks,
const PtrList& tracks,
const wordList& valueSetNames,
const List>>& valueSets,
Ostream& os
) const
{
if (valueSets.size() != valueSetNames.size())
{
FatalErrorInFunction
<< "Number of variables:" << valueSetNames.size() << endl
<< "Number of valueSets:" << valueSets.size()
<< exit(FatalError);
}
label nTracks = tracks.size();
label nPoints = 0;
forAll(tracks, i)
{
nPoints += tracks[i].size();
}
os << "# vtk DataFile Version 2.0" << nl
<< tracks[0].name() << nl
<< "ASCII" << nl
<< "DATASET POLYDATA" << nl
<< "POINTS " << nPoints << " double" << nl;
forAll(tracks, trackI)
{
const coordSet& points = tracks[trackI];
for (const point& pt : points)
{
os << float(pt.x()) << ' '
<< float(pt.y()) << ' '
<< float(pt.z()) << nl;
}
}
if (writeTracks)
{
os << "LINES " << nTracks << ' ' << nPoints+nTracks << nl;
// Write ids of track points to file
label globalPtI = 0;
forAll(tracks, trackI)
{
const coordSet& points = tracks[trackI];
os << points.size();
forAll(points, i)
{
os << ' ' << globalPtI;
globalPtI++;
}
os << nl;
}
}
os << "POINT_DATA " << nPoints << nl
<< " FIELD attributes " << valueSetNames.size() << nl;
forAll(valueSetNames, setI)
{
os << valueSetNames[setI] << ' '
<< int(pTraits::nComponents) << ' '
<< nPoints << " float" << nl;
const List>& fieldVals = valueSets[setI];
forAll(fieldVals, i)
{
const Field& vals = fieldVals[i];
forAll(vals, j)
{
if (j != 0)
{
os << ' ';
}
writer::write(vals[j], os);
}
os << nl;
}
}
}
// ************************************************************************* //