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
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef InflowBoundaryModel_H
00038 #define InflowBoundaryModel_H
00039
00040 #include <OpenFOAM/IOdictionary.H>
00041 #include <OpenFOAM/autoPtr.H>
00042 #include <OpenFOAM/runTimeSelectionTables.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050
00051
00052
00053 template<class CloudType>
00054 class InflowBoundaryModel
00055 {
00056
00057
00058
00059 const dictionary& dict_;
00060
00061
00062 CloudType& owner_;
00063
00064
00065 const dictionary coeffDict_;
00066
00067
00068 public:
00069
00070
00071 TypeName("InflowBoundaryModel");
00072
00073
00074 declareRunTimeSelectionTable
00075 (
00076 autoPtr,
00077 InflowBoundaryModel,
00078 dictionary,
00079 (
00080 const dictionary& dict,
00081 CloudType& owner
00082 ),
00083 (dict, owner)
00084 );
00085
00086
00087
00088
00089
00090 InflowBoundaryModel
00091 (
00092 const dictionary& dict,
00093 CloudType& owner,
00094 const word& type
00095 );
00096
00097
00098
00099 virtual ~InflowBoundaryModel();
00100
00101
00102
00103 static autoPtr<InflowBoundaryModel<CloudType> > New
00104 (
00105 const dictionary& dict,
00106 CloudType& owner
00107 );
00108
00109
00110
00111
00112
00113 inline const CloudType& owner() const;
00114
00115
00116 inline CloudType& owner();
00117
00118
00119 inline const dictionary& dict() const;
00120
00121
00122 inline const dictionary& coeffDict() const;
00123
00124
00125 virtual void inflow() = 0;
00126 };
00127
00128
00129
00130
00131 }
00132
00133
00134
00135 #define makeInflowBoundaryModel(CloudType) \
00136 \
00137 defineNamedTemplateTypeNameAndDebug(InflowBoundaryModel<CloudType>, 0); \
00138 \
00139 defineTemplateRunTimeSelectionTable \
00140 ( \
00141 InflowBoundaryModel<CloudType>, \
00142 dictionary \
00143 );
00144
00145
00146 #define makeInflowBoundaryModelType(SS, CloudType, ParcelType) \
00147 \
00148 defineNamedTemplateTypeNameAndDebug(SS<CloudType<ParcelType> >, 0); \
00149 \
00150 InflowBoundaryModel<CloudType<ParcelType> >:: \
00151 adddictionaryConstructorToTable<SS<CloudType<ParcelType> > > \
00152 add##SS##CloudType##ParcelType##ConstructorToTable_;
00153
00154
00155
00156
00157 #ifdef NoRepository
00158 # include "InflowBoundaryModel.C"
00159 #endif
00160
00161
00162
00163 #endif
00164
00165