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 <lagrangianIntermediate/basicThermoParcel.H>
00027
00028
00029
00030 namespace Foam
00031 {
00032 defineTypeNameAndDebug(basicThermoParcel, 0);
00033 defineParticleTypeNameAndDebug(basicThermoParcel, 0);
00034 defineParcelTypeNameAndDebug(basicThermoParcel, 0);
00035 };
00036
00037
00038
00039
00040 Foam::basicThermoParcel::basicThermoParcel
00041 (
00042 ThermoCloud<basicThermoParcel>& owner,
00043 const vector position,
00044 const label cellI
00045 )
00046 :
00047 ThermoParcel<basicThermoParcel>(owner, position, cellI)
00048 {}
00049
00050
00051 Foam::basicThermoParcel::basicThermoParcel
00052 (
00053 ThermoCloud<basicThermoParcel>& owner,
00054 const vector position,
00055 const label cellI,
00056 const label typeId,
00057 const scalar nParticle0,
00058 const scalar d0,
00059 const vector U0,
00060 const constantProperties& constProps
00061 )
00062 :
00063 ThermoParcel<basicThermoParcel>
00064 (
00065 owner,
00066 position,
00067 cellI,
00068 typeId,
00069 nParticle0,
00070 d0,
00071 U0,
00072 constProps
00073 )
00074 {}
00075
00076
00077 Foam::basicThermoParcel::basicThermoParcel
00078 (
00079 const Cloud<basicThermoParcel>& cloud,
00080 Istream& is,
00081 bool readFields
00082 )
00083 :
00084 ThermoParcel<basicThermoParcel>(cloud, is, readFields)
00085 {}
00086
00087
00088 Foam::basicThermoParcel::basicThermoParcel
00089 (
00090 const basicThermoParcel& p
00091 )
00092 :
00093 ThermoParcel<basicThermoParcel>(p)
00094 {}
00095
00096
00097
00098
00099 Foam::basicThermoParcel::~basicThermoParcel()
00100 {}
00101
00102
00103