mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- additional boundaryData options (header, binary, compression) - remove vtkSurfaceWriter "writePrecision" keyword (1806 compatibilty) and use "precision" in format option sub-dictionary.
126 lines
3.5 KiB
C++
126 lines
3.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
Copyright (C) 2016-2020 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::SMESHsurfaceFormat
|
|
|
|
Description
|
|
Write tetgen SMESH format (Tetgen http://tetgen.berlios.de)
|
|
|
|
Output stream options:
|
|
- ASCII only
|
|
- compression on/off
|
|
|
|
Output dictionary options: ignored
|
|
|
|
See also
|
|
File format information:
|
|
http://tetgen.berlios.de/fformats.smesh.html
|
|
|
|
SourceFiles
|
|
SMESHsurfaceFormat.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef SMESHsurfaceFormat_H
|
|
#define SMESHsurfaceFormat_H
|
|
|
|
#include "MeshedSurface.H"
|
|
#include "MeshedSurfaceProxy.H"
|
|
#include "UnsortedMeshedSurface.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fileFormats
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class fileFormats::SMESHsurfaceFormat Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Face>
|
|
class SMESHsurfaceFormat
|
|
:
|
|
public MeshedSurface<Face>
|
|
{
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Default construct
|
|
SMESHsurfaceFormat() = default;
|
|
|
|
|
|
//- Destructor
|
|
virtual ~SMESHsurfaceFormat() = default;
|
|
|
|
|
|
// Static Functions
|
|
|
|
//- Write surface mesh components by proxy
|
|
static void write
|
|
(
|
|
const fileName& filename,
|
|
const MeshedSurfaceProxy<Face>& surf,
|
|
IOstreamOption streamOpt = IOstreamOption(),
|
|
const dictionary& /*unused*/ = dictionary::null
|
|
);
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Write surface mesh to file
|
|
virtual void write
|
|
(
|
|
const fileName& name,
|
|
IOstreamOption streamOpt = IOstreamOption(),
|
|
const dictionary& options = dictionary::null
|
|
) const
|
|
{
|
|
write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace fileFormats
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "SMESHsurfaceFormat.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|