openfoam/applications/utilities/mesh/conversion/fireToFoam/fireToFoam.C
Mark Olesen 295822daa6 ENH: cleanup/reorganize surfaceWriter and fileFormats
- remove unused surfaceWriter constructors, noexcept on methods

- relocate/rename writerCaching from surfMesh -> fileFormats

- changed from surfaceWriters::writerCaching to
  ensightOutput::writerCaching to permit reuse elsewhere

- relocate static output helpers to ensightCase

- refactor NAS coordinate writing
2022-02-10 19:28:51 +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-2021 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
);
// increase the precision of the points data
IOstream::defaultPrecision(max(10u, IOstream::defaultPrecision()));
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;
}
// ************************************************************************* //