32 const dictionary& dict,
33 const phaseInterface& interface
36 const word wallDampingModelType(dict.lookup(
"type"));
38 Info<<
"Selecting wallDampingModel for " 39 << interface.name() <<
": " << wallDampingModelType <<
endl;
41 dictionaryConstructorTable::iterator cstrIter =
42 dictionaryConstructorTablePtr_->find(wallDampingModelType);
44 if (cstrIter == dictionaryConstructorTablePtr_->end())
47 <<
"Unknown wallDampingModelType type " 48 << wallDampingModelType << endl << endl
49 <<
"Valid wallDampingModel types are : " << endl
50 << dictionaryConstructorTablePtr_->sortedToc()
54 return cstrIter()(
dict, interface);
errorManipArg< error, int > exit(error &err, const int errNo=1)
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Ostream & endl(Ostream &os)
Add newline and flush stream.
static autoPtr< wallDampingModel > New(const dictionary &dict, const phaseInterface &interface)