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 <OpenFOAM/error.H>
00027
00028 #include "ORourkeCollisionModel.H"
00029 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00030
00031
00032
00033 namespace Foam
00034 {
00035
00036
00037
00038 defineTypeNameAndDebug(ORourkeCollisionModel, 0);
00039
00040 addToRunTimeSelectionTable
00041 (
00042 collisionModel,
00043 ORourkeCollisionModel,
00044 dictionary
00045 );
00046
00047
00048
00049
00050
00051 ORourkeCollisionModel::ORourkeCollisionModel
00052 (
00053 const dictionary& dict,
00054 spray& sm,
00055 Random& rndGen
00056 )
00057 :
00058 collisionModel(dict, sm, rndGen),
00059 vols_(sm.mesh().V()),
00060 coeffsDict_(dict.subDict(typeName + "Coeffs")),
00061 coalescence_(coeffsDict_.lookup("coalescence"))
00062 {}
00063
00064
00065
00066
00067 ORourkeCollisionModel::~ORourkeCollisionModel()
00068 {}
00069
00070
00071
00072
00073 void ORourkeCollisionModel::collideParcels(const scalar dt) const
00074 {
00075
00076 if (spray_.size() < 2)
00077 {
00078 return;
00079 }
00080
00081 spray::iterator secondParcel = spray_.begin();
00082 ++secondParcel;
00083 spray::iterator p1 = secondParcel;
00084
00085 while (p1 != spray_.end())
00086 {
00087 label cell1 = p1().cell();
00088
00089 spray::iterator p2 = spray_.begin();
00090
00091 while (p2 != p1)
00092 {
00093 label cell2 = p2().cell();
00094
00095
00096 if (cell1 == cell2)
00097 {
00098 # include "sameCell.H"
00099 }
00100
00101
00102 if (p2().m() < VSMALL)
00103 {
00104 spray::iterator tmpElmnt = p2;
00105 ++tmpElmnt;
00106 spray_.deleteParticle(p2());
00107 p2 = tmpElmnt;
00108 }
00109 else
00110 {
00111 ++p2;
00112 }
00113
00114 }
00115
00116
00117 if (p1().m() < VSMALL)
00118 {
00119 spray::iterator tmpElmnt = p1;
00120 ++tmpElmnt;
00121 spray_.deleteParticle(p1());
00122 p1 = tmpElmnt;
00123 }
00124 else
00125 {
00126 ++p1;
00127 }
00128 }
00129
00130 }
00131
00132
00133
00134
00135 }
00136
00137