Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 #include "PhaseChangeModel.H"
00027 
00028 
00029 
00030 template<class CloudType>
00031 Foam::autoPtr<Foam::PhaseChangeModel<CloudType> >
00032 Foam::PhaseChangeModel<CloudType>::New
00033 (
00034     const dictionary& dict,
00035     CloudType& owner
00036 )
00037 {
00038     word PhaseChangeModelType(dict.lookup("PhaseChangeModel"));
00039 
00040     Info<< "Selecting PhaseChangeModel " << PhaseChangeModelType << endl;
00041 
00042     typename dictionaryConstructorTable::iterator cstrIter =
00043         dictionaryConstructorTablePtr_->find(PhaseChangeModelType);
00044 
00045     if (cstrIter == dictionaryConstructorTablePtr_->end())
00046     {
00047         FatalErrorIn
00048         (
00049             "PhaseChangeModel<CloudType>::New"
00050             "("
00051                 "const dictionary&, "
00052                 "CloudType&"
00053             ")"
00054         )   << "Unknown PhaseChangeModelType type "
00055             << PhaseChangeModelType
00056             << ", constructor not in hash table" << nl << nl
00057             << "    Valid PhaseChangeModel types are:" << nl
00058             << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
00059     }
00060 
00061     return autoPtr<PhaseChangeModel<CloudType> >(cstrIter()(dict, owner));
00062 }
00063 
00064 
00065