This function calculates the density of R245fa from absolute pressure and temperature. The function can only be executed in one-phase region. The safety margin to the phase boundary is 1[K] and 1000[Pa].
The function cannot be inverted in a numerical way. Please use functions rho_props_ph and T_props_ph for this purpose.
function dofpT extends Modelica.Icons.Function; input AbsolutePressure p "Pressure"; input Temperature T "Temperature"; input AbsolutePressure delp "Iteration converged if (p-pre(p) < delp)"; output Density d "Density"; end dofpT;
2020-01-08 Stefan Wischhusen: Iteration converges better with guesses of rho_liq(T) and rho_vap(T).