27 #include "phasePair.H"
33 const dictionary&
dict,
37 word wallDampingModelType(
dict.lookup(
"type"));
39 Info<<
"Selecting wallDampingModel for "
40 << pair <<
": " << wallDampingModelType <<
endl;
42 dictionaryConstructorTable::iterator cstrIter =
43 dictionaryConstructorTablePtr_->find(wallDampingModelType);
45 if (cstrIter == dictionaryConstructorTablePtr_->end())
48 <<
"Unknown wallDampingModelType type "
49 << wallDampingModelType <<
endl <<
endl
50 <<
"Valid wallDampingModel types are : " <<
endl
51 << dictionaryConstructorTablePtr_->sortedToc()
55 return cstrIter()(
dict, pair);