FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

ORourkeCollisionModel.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
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 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
00037 
00038 defineTypeNameAndDebug(ORourkeCollisionModel, 0);
00039 
00040 addToRunTimeSelectionTable
00041 (
00042     collisionModel,
00043     ORourkeCollisionModel,
00044     dictionary
00045 );
00046 
00047 
00048 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
00049 
00050 // Construct from components
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 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
00066 
00067 ORourkeCollisionModel::~ORourkeCollisionModel()
00068 {}
00069 
00070 
00071 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
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             // No collision if parcels are not in the same cell
00096             if (cell1 == cell2)
00097             {
00098 #               include "sameCell.H"
00099             } // if - parcels in same cell
00100 
00101             // remove coalesced droplet
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         } // inner loop
00115 
00116         // remove coalesced droplet
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     } // outer loop
00129 
00130 } // end
00131 
00132 
00133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00134 
00135 } // End namespace Foam
00136 
00137 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines