50 Info<<
"thermophysicalFunction::New(Istream&) : "
51 <<
"constructing thermophysicalFunction"
55 const word thermophysicalFunctionType(is);
57 IstreamConstructorTable::iterator cstrIter =
58 IstreamConstructorTablePtr_->find(thermophysicalFunctionType);
60 if (cstrIter == IstreamConstructorTablePtr_->end())
63 <<
"Unknown thermophysicalFunction type "
64 << thermophysicalFunctionType
66 <<
"Valid thermophysicalFunction types are :" <<
endl
67 << IstreamConstructorTablePtr_->sortedToc()
82 Info<<
"thermophysicalFunction::New(const dictionary&) : "
83 <<
"constructing thermophysicalFunction"
87 const word thermophysicalFunctionType(
dict.lookup(
"functionType"));
89 dictionaryConstructorTable::iterator cstrIter =
90 dictionaryConstructorTablePtr_->find(thermophysicalFunctionType);
92 if (cstrIter == IstreamConstructorTablePtr_->end())
95 <<
"Unknown thermophysicalFunction type "
96 << thermophysicalFunctionType
98 <<
"Valid thermophysicalFunction types are :" <<
endl
99 << dictionaryConstructorTablePtr_->sortedToc()