/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2016-2018 OpenFOAM Foundation Copyright (C) 2021 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 . Class Foam::wallBoilingModels::departureDiameterModels::TolubinskiKostanchuk Description A correlation for bubble departure diameter modelling based on Tolubinski-Kostanchuk (1970) for boiling flows. Reference: \verbatim Tolubinsky, V. I., & Kostanchuk, D. M. (1970). Vapour bubbles growth rate and heat transfer intensity at subcooled water boiling. In International Heat Transfer Conference 4 (Vol. 23). Begel House Inc.. \endverbatim Usage Example of the model specification: \verbatim departureDiameterModel { // Mandatory entries type TolubinskiKostanchuk; // Optional entries dRef ; dMax ; dMin ; } \endverbatim where the entries mean: \table Property | Description | Type | Reqd | Deflt type | Type name: TolubinskiKostanchuk | word | yes | - dRef | Coefficient of the temperature term | scalar | no | 6e-4 dMax | Maximum diameter | scalar | no | 0.0014 dMin | Minimum diameter | scalar | no | 1e-6 \endtable SourceFiles TolubinskiKostanchuk.C \*---------------------------------------------------------------------------*/ #ifndef TolubinskiKostanchuk_H #define TolubinskiKostanchuk_H #include "departureDiameterModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace wallBoilingModels { namespace departureDiameterModels { /*---------------------------------------------------------------------------*\ Class TolubinskiKostanchuk Declaration \*---------------------------------------------------------------------------*/ class TolubinskiKostanchuk : public departureDiameterModel { // Private Data //- Coefficient of the temperature term scalar dRef_; //- Maximum diameter scalar dMax_; //- Minimum diameter scalar dMin_; // Private Member Functions //- No copy construct TolubinskiKostanchuk(const TolubinskiKostanchuk&) = delete; //- No copy assignment void operator=(const TolubinskiKostanchuk&) = delete; public: //- Runtime type information TypeName("TolubinskiKostanchuk"); // Constructors //- Construct from a dictionary TolubinskiKostanchuk(const dictionary& dict); //- Destructor virtual ~TolubinskiKostanchuk() = default; // Member Functions //- Calculate and return the departure diameter field virtual tmp dDeparture ( const phaseModel& liquid, const phaseModel& vapor, const label patchi, const scalarField& Tl, const scalarField& Tsatw, const scalarField& L ) const; // I-O // Write virtual void write(Ostream& os) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace departureDiameterModels } // End namespace wallBoilingModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //