47 const triSurfaceMesh& surface,
48 const scalar& defaultCellSize
51 cellSizeCalculationTypeDict_(cellSizeCalculationTypeDict),
53 defaultCellSize_(defaultCellSize)
62 const triSurfaceMesh& surface,
63 const scalar& defaultCellSize
66 const word modelType(
dict.get<word>(
"cellSizeCalculationType"));
68 Info<<
indent <<
"Selecting cellSizeCalculationType " << modelType <<
endl;
70 auto* ctorPtr = dictionaryConstructorTable(modelType);
77 "cellSizeCalculationType",
79 *dictionaryConstructorTablePtr_
83 return autoPtr<cellSizeCalculationType>
85 ctorPtr(
dict, surface, defaultCellSize)
Macros for easy insertion into run-time selection tables.
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Abstract base class for specifying target cell sizes.
static autoPtr< cellSizeCalculationType > New(const dictionary &cellSizeCalculationTypeDict, const triSurfaceMesh &surface, const scalar &defaultCellSize)
Return a reference to the selected cellSizeCalculationType.
cellSizeCalculationType(const cellSizeCalculationType &)=delete
No copy construct.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
#define FatalIOErrorInLookup(ios, lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalIOError.
const wordList surface
Standard surface field types (scalar, vector, tensor, etc).
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
Ostream & indent(Ostream &os)
Indent stream.
IOerror FatalIOError
Error stream (stdout output on all processes), with additional 'FOAM FATAL IO ERROR' header text and ...
errorManipArg< error, int > exit(error &err, const int errNo=1)
#define defineRunTimeSelectionTable(baseType, argNames)
Define run-time selection table.