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 "WallInteractionModel.H"
00027
00028
00029
00030 template<class CloudType>
00031 Foam::autoPtr<Foam::WallInteractionModel<CloudType> >
00032 Foam::WallInteractionModel<CloudType>::New
00033 (
00034 const dictionary& dict,
00035 CloudType& owner
00036 )
00037 {
00038 word WallInteractionModelType(dict.lookup("WallInteractionModel"));
00039
00040 Info<< "Selecting WallInteractionModel " << WallInteractionModelType
00041 << endl;
00042
00043 typename dictionaryConstructorTable::iterator cstrIter =
00044 dictionaryConstructorTablePtr_->find(WallInteractionModelType);
00045
00046 if (cstrIter == dictionaryConstructorTablePtr_->end())
00047 {
00048 FatalErrorIn
00049 (
00050 "WallInteractionModel<CloudType>::New"
00051 "(const dictionary&, CloudType&)"
00052 )
00053 << "Unknown WallInteractionModelType type "
00054 << WallInteractionModelType
00055 << ", constructor not in hash table" << nl << nl
00056 << " Valid WallInteractionModel types are:" << nl
00057 << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
00058 }
00059
00060 return autoPtr<WallInteractionModel<CloudType> >(cstrIter()(dict, owner));
00061 }
00062
00063
00064