mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
160 lines
4.6 KiB
C++
160 lines
4.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2017-2024 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 <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::fileFormats::VTPsurfaceFormat
|
|
|
|
Description
|
|
Write surfaces in VTP (xml) format.
|
|
The default format is INLINE_BASE64
|
|
|
|
The output is never sorted by zone.
|
|
|
|
Output stream options: ignored (dictionary options only)
|
|
|
|
\heading Format options
|
|
\table
|
|
Property | Description | Required | Default
|
|
format | ascii or binary format | no | binary
|
|
precision | Write precision in ascii | no | same as IOstream
|
|
\endtable
|
|
|
|
SourceFiles
|
|
VTPsurfaceFormat.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef Foam_VTPsurfaceFormat_H
|
|
#define Foam_VTPsurfaceFormat_H
|
|
|
|
#include "MeshedSurface.H"
|
|
#include "MeshedSurfaceProxy.H"
|
|
#include "UnsortedMeshedSurface.H"
|
|
#include "VTPsurfaceFormatCore.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fileFormats
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class fileFormats::VTPsurfaceFormat Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Face>
|
|
class VTPsurfaceFormat
|
|
:
|
|
public MeshedSurface<Face>,
|
|
public VTPsurfaceFormatCore
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Write polygons
|
|
static void writePolys
|
|
(
|
|
vtk::formatter& format,
|
|
const UList<Face>& faces
|
|
);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Default construct
|
|
VTPsurfaceFormat() = default;
|
|
|
|
|
|
//- Destructor
|
|
virtual ~VTPsurfaceFormat() = default;
|
|
|
|
|
|
// Static Functions
|
|
|
|
//- Write surface mesh components (by proxy) in VTP format
|
|
static void write
|
|
(
|
|
const fileName& filename,
|
|
const MeshedSurfaceProxy<Face>& surf,
|
|
IOstreamOption /*ignored*/ = IOstreamOption(),
|
|
const dictionary& options = dictionary::null
|
|
);
|
|
|
|
//- Write UnsortedMeshedSurface, the output remains unsorted
|
|
static void write
|
|
(
|
|
const fileName& filename,
|
|
const UnsortedMeshedSurface<Face>& surf,
|
|
IOstreamOption /*ignored*/ = IOstreamOption(),
|
|
const dictionary& options = dictionary::null
|
|
);
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Write surface mesh to file (by proxy)
|
|
virtual void write
|
|
(
|
|
const fileName& name,
|
|
IOstreamOption streamOpt = IOstreamOption(),
|
|
const dictionary& options = dictionary::null
|
|
) const override
|
|
{
|
|
write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
|
|
}
|
|
|
|
//- Write surface mesh to file (by proxy)
|
|
virtual void write
|
|
(
|
|
const fileName& name,
|
|
const word& fileType, /* ignored */
|
|
IOstreamOption streamOpt = IOstreamOption(),
|
|
const dictionary& options = dictionary::null
|
|
) const override
|
|
{
|
|
write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace fileFormats
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "VTPsurfaceFormat.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|