mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Description
This functionObject writes objects registered to the database in VTK format
using the foamToVTK library.
Currently only the writing of the cell-values of volFields is supported but
support for other field types, patch fields, Lagrangian data etc. will be
added.
Example of function object specification:
\verbatim
writeVTK1
{
type writeVTK;
functionObjectLibs ("libIOFunctionObjects.so");
...
objectNames (obj1 obj2);
}
\endverbatim
\heading Function object usage
\table
Property | Description | Required | Default value
type | type name: writeVTK | yes |
objectNames | objects to write | yes |
\endtable
62 lines
2.0 KiB
C
62 lines
2.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2016 OpenFOAM Foundation
|
|
\\/ 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "writeVTK.H"
|
|
#include "objectRegistry.H"
|
|
#include "DynamicList.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class GeoField>
|
|
Foam::UPtrList<const GeoField>
|
|
Foam::functionObjects::writeVTK::lookupFields() const
|
|
{
|
|
DynamicList<word> allNames(obr_.toc().size());
|
|
forAll(objectNames_, i)
|
|
{
|
|
wordList names(obr_.names<GeoField>(objectNames_[i]));
|
|
|
|
if (names.size())
|
|
{
|
|
allNames.append(names);
|
|
}
|
|
}
|
|
|
|
UPtrList<const GeoField> fields(allNames.size());
|
|
|
|
forAll(allNames, i)
|
|
{
|
|
const GeoField& field = obr_.lookupObject<GeoField>(allNames[i]);
|
|
Info<< " Writing " << GeoField::typeName
|
|
<< " field " << field.name() << endl;
|
|
fields.set(i, &field);
|
|
}
|
|
|
|
return fields;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|