openfoam/applications/utilities/mesh/conversion/fireToFoam/fireToFoam.C
Mark Olesen b98f53ceca ENH: make ITstream positioning methods noexcept
ENH: add rank() method for compound tokens

ENH: add IOstream::minPrecision(unsigned)

- reduced typing, more expressive, no namespace ambiguity with max()

    new: IOstream::minPrecision(10);
    old: IOstream::defaultPrecision(max(10u, IOstream::defaultPrecision()));

STYLE: namespace qualify min/max for some buffer sizing [clang/hipp]
2024-03-06 11:01:57 +01:00

126 lines
3.2 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016-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/>.
Application
fireToFoam
Group
grpMeshConversionUtilities
Description
Convert AVL/FIRE polyhedral mesh to OpenFOAM format
Usage
\b fireToFoam [OPTION] firePolyMesh
Options:
- \par -ascii
Write in ASCII format instead of binary
- \par -check
Perform edge checking
- \par -scale \<factor\>
Specify an alternative geometry scaling factor.
The default is \b 1 (no scaling).
\*---------------------------------------------------------------------------*/
#include "argList.H"
#include "Time.H"
#include "FIREMeshReader.H"
#include "checkFireEdges.H"
using namespace Foam;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
argList::addNote
(
"Convert AVL/FIRE polyhedral mesh to OpenFOAM format"
);
argList::noParallel();
argList::addArgument("firePolyMesh", "The input FIRE mesh");
argList::addBoolOption
(
"ascii",
"Write in ASCII format instead of binary"
);
argList::addBoolOption
(
"check",
"Perform edge checking as well"
);
argList::addOption
(
"scale",
"scale",
"Geometry scaling factor - default is 1 (no scaling)"
);
argList args(argc, argv);
Time runTime(args.rootPath(), args.caseName());
// Binary output, unless otherwise specified
const IOstreamOption::streamFormat format =
(
args.found("ascii")
? IOstreamOption::ASCII
: IOstreamOption::BINARY
);
// More precision (for points data)
IOstream::minPrecision(10);
fileFormats::FIREMeshReader reader
(
args.get<fileName>(1),
// Default no scaling
args.getOrDefault<scalar>("scale", 1)
);
autoPtr<polyMesh> mesh = reader.mesh(runTime);
reader.writeMesh(mesh(), format);
if (args.found("check"))
{
checkFireEdges(mesh());
}
Info<< "\nEnd\n" << endl;
return 0;
}
// ************************************************************************* //