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 #ifndef TimeActivatedExplicitSourceList_H
00036 #define TimeActivatedExplicitSourceList_H
00037
00038 #include <OpenFOAM/IOPtrList.H>
00039 #include "TimeActivatedExplicitSource_.H"
00040
00041
00042
00043 namespace Foam
00044 {
00045
00046
00047 class fvMesh;
00048
00049 template<class Type>
00050 class TimeActivatedExplicitSource;
00051
00052 template<class Type>
00053 class TimeActivatedExplicitSourceList;
00054
00055
00056
00057 template<class Type>
00058 Ostream& operator<<
00059 (
00060 Ostream&,
00061 const TimeActivatedExplicitSourceList<Type>&
00062 );
00063
00064
00065
00066
00067
00068 template<class Type>
00069 class TimeActivatedExplicitSourceList
00070 :
00071 public IOPtrList<TimeActivatedExplicitSource<Type> >
00072 {
00073 private:
00074
00075
00076
00077
00078 word name_;
00079
00080
00081 const fvMesh& mesh_;
00082
00083
00084 dimensionSet dimensions_;
00085
00086
00087 wordList fieldNames_;
00088
00089
00090
00091
00092
00093 TimeActivatedExplicitSourceList
00094 (
00095 const TimeActivatedExplicitSourceList<Type>&
00096 );
00097
00098
00099 void operator=(const TimeActivatedExplicitSourceList<Type>&);
00100
00101
00102 public:
00103
00104
00105
00106
00107 TimeActivatedExplicitSourceList
00108 (
00109 const word& name,
00110 const fvMesh& mesh,
00111 const dimensionSet& dimensions,
00112 const wordList& fieldNames
00113 );
00114
00115
00116 TimeActivatedExplicitSourceList
00117 (
00118 const word& name,
00119 const fvMesh& mesh,
00120 const dimensionSet& dimensions,
00121 const word& fieldName
00122 );
00123
00124
00125
00126
00127
00128
00129
00130 tmp<DimensionedField<Type, volMesh> > Su
00131 (
00132 const label fieldI = 0
00133 );
00134
00135
00136 tmp<DimensionedField<Type, volMesh> > SuTot();
00137
00138
00139
00140
00141
00142
00143 bool readData(Istream& is);
00144
00145
00146 bool writeData(Ostream& os) const;
00147
00148
00149 friend Ostream& operator<< <Type>
00150 (
00151 Ostream& os,
00152 const TimeActivatedExplicitSourceList& sources
00153 );
00154 };
00155
00156
00157
00158
00159 }
00160
00161
00162
00163 #ifdef NoRepository
00164 # include "TimeActivatedExplicitSourceList.C"
00165 #endif
00166
00167
00168
00169 #endif
00170
00171