93int main(
int argc,
char *argv[])
97 "Import from various third-party surface formats into surfMesh"
106 "Perform some surface checking/cleanup on the input surface"
113 "The surface name when writing (default is 'default')"
119 "Input format (default: use file extension)"
125 "Input geometry scaling factor"
131 "Output geometry scaling factor"
143 "The source coordinate system, applied after '-read-scale'",
150 "The target coordinate system, applied before '-write-scale'",
171 const auto exportName =
args.getOrDefault<
word>(
"name",
"default");
173 const int optVerbose =
args.verbose();
175 const word readFileType
177 args.getOrDefault<
word>(
"read-format", getExtension(importName))
184 <<
"Unsupported file format(s)" <<
nl
189 scalar scaleFactor(0);
195 if (
args.found(
"from") ||
args.found(
"to"))
201 coordinateSystems::typeName,
220 if (
args.found(
"from"))
223 const auto* csPtr = globalCoords.cfind(csName);
228 <<
"Cannot find -from " << csName <<
nl
229 <<
"available coordinateSystems: "
237 if (
args.found(
"to"))
240 const auto* csPtr = globalCoords.cfind(csName);
245 <<
"Cannot find -to " << csName <<
nl
246 <<
"available coordinateSystems: "
255 if (fromCsys && toCsys)
258 <<
"Only allowed '-from' or '-to' option at the moment."
266 if (
args.readIfPresent(
"read-scale", scaleFactor) && scaleFactor > 0)
268 Info<<
"scale input " << scaleFactor <<
nl;
269 surf.scalePoints(scaleFactor);
272 if (
args.found(
"clean"))
274 surf.cleanup(optVerbose);
279 Info<<
"move points from coordinate system: "
280 << fromCsys->name() <<
endl;
282 surf.movePoints(tpf());
287 Info<<
"move points to coordinate system: "
288 << toCsys->name() <<
endl;
290 surf.movePoints(tpf());
293 if (
args.readIfPresent(
"write-scale", scaleFactor) && scaleFactor > 0)
295 Info<<
"scale output " << scaleFactor <<
nl;
296 surf.scalePoints(scaleFactor);
311 Info<<
"writing surfMesh:\n " << smesh.objectPath() <<
endl;
@ 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 canRead(const fileName &name, bool verbose=false)
void size(const label n)
Older name for setAddressableSize.
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.
An instant of time. Contains the time value and name. Uses Foam::Time when formatting the name.
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).
List< instant > instantList
List of instants.
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)