mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- Some commonly used write methods that are independent of the calling context (ie, 2D/3D data, geometry, fields) - Provide singleton null() for ensightFile, ensightGeoFile. Can be used for MPI slaves that need a file reference for their methods, but will never write to it, but it is also reasonable to use an autoPtr with rawRef() for that as well.
131 lines
3.1 KiB
C
131 lines
3.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "ensightGeoFile.H"
|
|
#include "foamVersion.H"
|
|
|
|
// Macros to stringify macro contents.
|
|
#define STRINGIFY(content) #content
|
|
#define STRING_QUOTE(input) STRINGIFY(input)
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::ensightGeoFile::initialize()
|
|
{
|
|
writeBinaryHeader();
|
|
|
|
// Description line 1
|
|
write("Ensight Geometry File");
|
|
newline();
|
|
|
|
// Description line 2
|
|
#ifdef OPENFOAM_PLUS
|
|
write(string("Written by OpenFOAM+ " STRING_QUOTE(OPENFOAM_PLUS)));
|
|
#else
|
|
write(string("Written by OpenFOAM-" + string(Foam::FOAMversion)));
|
|
#endif
|
|
|
|
newline();
|
|
write("node id assign");
|
|
newline();
|
|
|
|
write("element id assign");
|
|
newline();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::ensightGeoFile::ensightGeoFile
|
|
(
|
|
const fileName& pathname,
|
|
IOstream::streamFormat format
|
|
)
|
|
:
|
|
ensightFile(pathname, format)
|
|
{
|
|
initialize();
|
|
}
|
|
|
|
|
|
Foam::ensightGeoFile::ensightGeoFile
|
|
(
|
|
const fileName& path,
|
|
const fileName& name,
|
|
IOstream::streamFormat format
|
|
)
|
|
:
|
|
ensightFile(path, name, format)
|
|
{
|
|
initialize();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::ensightGeoFile::~ensightGeoFile()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::Ostream& Foam::ensightGeoFile::writeKeyword(const keyType& key)
|
|
{
|
|
// ensure we get ensightFile::write(const string&)
|
|
write(static_cast<const string&>(key));
|
|
newline();
|
|
|
|
return *this;
|
|
}
|
|
|
|
|
|
//
|
|
// Convenience Output Methods
|
|
//
|
|
|
|
void Foam::ensightGeoFile::beginPart
|
|
(
|
|
const label index,
|
|
const string& description
|
|
)
|
|
{
|
|
beginPart(index);
|
|
write(description);
|
|
newline();
|
|
}
|
|
|
|
|
|
void Foam::ensightGeoFile::beginCoordinates(const label npoints)
|
|
{
|
|
write("coordinates");
|
|
newline();
|
|
write(npoints);
|
|
newline();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|