/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2018-2019 OpenFOAM Foundation Copyright (C) 2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "LaakkonenAlopaeusAittamaa.H" #include "addToRunTimeSelectionTable.H" #include "phaseCompressibleTurbulenceModel.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { namespace diameterModels { namespace breakupModels { defineTypeNameAndDebug(LaakkonenAlopaeusAittamaa, 0); addToRunTimeSelectionTable ( breakupModel, LaakkonenAlopaeusAittamaa, dictionary ); } } } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::diameterModels::breakupModels::LaakkonenAlopaeusAittamaa:: LaakkonenAlopaeusAittamaa ( const populationBalanceModel& popBal, const dictionary& dict ) : breakupModel(popBal, dict), C1_ ( dimensionedScalar::getOrDefault ( "C1", dict, dimensionSet(0, -2.0/3.0, 0, 0, 0), 6.0 ) ), C2_(dimensionedScalar::getOrDefault("C2", dict, dimless, 0.04)), C3_(dimensionedScalar::getOrDefault("C3", dict, dimless, 0.01)) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::diameterModels::breakupModels::LaakkonenAlopaeusAittamaa::setBreakupRate ( volScalarField& breakupRate, const label i ) { const phaseModel& continuousPhase = popBal_.continuousPhase(); const sizeGroup& fi = popBal_.sizeGroups()[i]; breakupRate = C1_*cbrt(popBal_.continuousTurbulence().epsilon()) *erfc ( sqrt ( C2_*popBal_.sigmaWithContinuousPhase(fi.phase()) /( continuousPhase.rho()*pow(fi.d(), 5.0/3.0) *pow(popBal_.continuousTurbulence().epsilon(), 2.0/3.0) ) + C3_*continuousPhase.mu() /( sqrt(continuousPhase.rho()*fi.phase().rho()) *cbrt(popBal_.continuousTurbulence().epsilon()) *pow(fi.d(), 4.0/3.0) ) ) ); } // ************************************************************************* //