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