93int main(
int argc,
char *argv[])
97 "Export from surfMesh to various third-party surface formats"
106 "Perform some surface checking/cleanup on the input surface"
113 "Specify an alternative surface name when reading - "
114 "default is 'default'"
120 "Output format (default: use file extension)"
126 "Input geometry scaling factor"
132 "Output geometry scaling factor"
144 "The source coordinate system, applied after '-read-scale'",
151 "The target coordinate system, applied before '-write-scale'",
159 const auto importName =
args.getOrDefault<
word>(
"name",
"default");
161 const int optVerbose =
args.verbose();
163 const word writeFileType
165 args.getOrDefault<
word>(
"write-format", getExtension(exportName))
172 <<
"Unsupported file format(s)" <<
nl
177 scalar scaleFactor(0);
183 if (
args.found(
"from") ||
args.found(
"to"))
189 coordinateSystems::typeName,
208 if (
args.found(
"from"))
211 const auto* csPtr = globalCoords.cfind(csName);
216 <<
"Cannot find -from " << csName <<
nl
217 <<
"available coordinateSystems: "
225 if (
args.found(
"to"))
228 const auto* csPtr = globalCoords.cfind(csName);
233 <<
"Cannot find -to " << csName <<
nl
234 <<
"available coordinateSystems: "
243 if (fromCsys && toCsys)
246 <<
"Only allowed '-from' or '-to' option at the moment."
264 Info<<
"read surfMesh:\n " << smesh.objectPath() <<
endl;
271 if (
args.readIfPresent(
"read-scale", scaleFactor) && scaleFactor > 0)
273 Info<<
"scale input " << scaleFactor <<
nl;
274 surf.scalePoints(scaleFactor);
277 if (
args.found(
"clean"))
279 surf.cleanup(optVerbose);
284 Info<<
"move points from coordinate system: "
285 << fromCsys->name() <<
endl;
287 surf.movePoints(tpf());
292 Info<<
"move points to coordinate system: "
293 << toCsys->name() <<
endl;
295 surf.movePoints(tpf());
298 if (
args.readIfPresent(
"write-scale", scaleFactor) && scaleFactor > 0)
300 Info<<
"scale output " << scaleFactor <<
endl;
301 surf.scalePoints(scaleFactor);
304 surf.writeStats(
Info);
307 Info<<
"writing " << exportName <<
nl;
308 surf.write(exportName, writeFileType);
@ NO_REGISTER
Do not request registration (bool: false).
@ MUST_READ
Reading required.
@ NO_WRITE
Ignore writing from objectRegistry::writeObject().
Defines the attributes of an object for which implicit objectRegistry management is supported,...
bool typeHeaderOk(const bool checkType=true, const bool search=true, const bool verbose=true)
Read header (respects is_globalIOobject trait) and check its info. A void type suppresses trait and t...
static IOobject selectIO(const IOobject &io, const fileName &altFile, const word &ioName="")
Return the IOobject, but also consider an alternative file name.
fileName objectPath() const
The complete path + object name.
static bool canWriteType(const word &fileType, bool verbose=false)
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Extract command arguments and options from the supplied argc and argv parameters.
static void addVerboseOption(const string &usage="", bool advanced=false)
Enable a 'verbose' bool option, with usage information.
static void addArgument(const string &argName, const string &usage="")
Append a (mandatory) argument to validArgs.
static void addBoolOption(const word &optName, const string &usage="", bool advanced=false)
Add a bool option to validOptions with usage information.
static void noParallel()
Remove the parallel options.
static void addOption(const word &optName, const string ¶m="", const string &usage="", bool advanced=false)
Add an option to validOptions with usage information.
static void addNote(const string ¬e)
Add extra notes for the usage information.
static void addOptionCompat(const word &optName, std::pair< const char *, int > compat)
Specify an alias for the option name.
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
static autoPtr< T > New(Args &&... args)
Construct autoPtr with forwarding arguments.
A centralized collection of named coordinate systems.
A class for handling file names.
A surface mesh consisting of general polygon faces that has IO capabilities and a registry for storin...
A class for managing temporary objects.
A class for handling words, derived from Foam::string.
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
MeshedSurface< face > meshedSurface
FlatOutput::OutputAdaptor< Container, Delimiters > flatOutput(const Container &obj, Delimiters delim)
Global flatOutput() function with specified output delimiters.
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
errorManipArg< error, int > exit(error &err, const int errNo=1)
constexpr char nl
The newline '\n' character (0x0a).
Foam::argList args(argc, argv)