Evaluates the Nusselt Correlation for Natural Convection Heat Transfer at rectangular vertical surfaces.
(Description)
L (characteristic lenght) must be height of surface
10^-1 < Ra < 10^12
10^-3 < Pr
(none)
Ra := Rayleigh number,
Pr := Prandtl number
Nu := Nusselt number
Nu := (0.825 + 0.387 (Ra *f_1(Pr))^{1/6})^2
use together with functions calculating correct Rayleigh and Prandtl numbers
(no validation or testing necessary)
[1] Klan, H., & Thess, A. (2013). F2 Wärmeübertragung durch freie Konvektion: Außenströmung. In VDI-Wärmeatlas (pp. 757-764). Springer Vieweg, Berlin, Heidelberg.
Created by Philipp Jahneke (philipp.koziol@tuhh.de), Aug 2018
function NusseltFreeConvection_verticalSurface extends TransiEnt.Basics.Icons.Function; input Modelica.Units.SI.RayleighNumber Ra "Rayleight number calculated with properties of medium"; input Modelica.Units.SI.PrandtlNumber Pr "Prandtl number (property of medium)"; output Modelica.Units.SI.NusseltNumber Nu "Nusselt Number calculated by the correlation"; end NusseltFreeConvection_verticalSurface;