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