TrioCFD 1.9.8
TrioCFD documentation
Loading...
Searching...
No Matches
Hibiki_Ishii_nucleation_site_density.h
1/****************************************************************************
2* Copyright (c) 2024, CEA
3* All rights reserved.
4*
5* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9*
10* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
11* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
12* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13*
14*****************************************************************************/
15
16#ifndef Hibiki_Ishii_nucleation_site_density_included
17#define Hibiki_Ishii_nucleation_site_density_included
18
19/*! @brief Nucleation site density using the Hibiki-Ishii 2003 correlation.
20 *
21 * Reference: T. Hibiki, M. Ishii, "Active nucleation site density in boiling systems",
22 * International Journal of Heat and Mass Transfer, 2003.
23 *
24 * The T_ref parameter is a reference temperature used in the critical cavity radius:
25 * - Hibiki model passes T_v (gas/vapor temperature)
26 * - Kommajosyula model passes Tp (wall temperature)
27 *
28 * @param rho_v Vapor density [kg/m^3]
29 * @param rho_l Liquid density [kg/m^3]
30 * @param T_ref Reference temperature for cavity radius computation [K]
31 * @param p Pressure [Pa]
32 * @param L_vap Latent heat of vaporization [J/kg]
33 * @param T_sat Saturation temperature [K]
34 * @param sigma Surface tension [N/m]
35 * @param theta Contact angle [degrees]
36 * @param molar_mass Molar mass [kg/mol]
37 * @return Nucleation site density [sites/m^2]
38 */
39double Hibiki_Ishii_site_density(double rho_v, double rho_l, double T_ref, double p,
40 double L_vap, double T_sat, double sigma,
41 double theta, double molar_mass);
42
43/*! @brief Derivative of Hibiki-Ishii nucleation site density w.r.t. T_ref.
44 *
45 * @return dN_sites/dT_ref [sites/m^2/K]
46 */
47double dT_ref_Hibiki_Ishii_site_density(double rho_v, double rho_l, double T_ref, double p,
48 double L_vap, double T_sat, double sigma,
49 double theta, double molar_mass);
50
51#endif