Evaluates a thermophysical property of a mixture, based on correlations proposed by Melinder (2010).
The polynomial has the form
f = a1 (x-xm)0(y-ym)0 + a2 (x-xm)0(y-ym)1 + ... + any[1] (x-xm)0(y-ym)ny[1]-1 + ... + any[1])+1 (x-xm)1(y-ym)0 + ... + any[1]+ny[2] (x-xm)1(y-ym)ny[2]-1 + ...
Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: IIR/IIF.
function polynomialProperty extends Modelica.Icons.Function; input Real x "First independent variable"; input Real y "Second independent variable"; input Real a[sum(proCoe.nT)] "Polynomial coefficients"; output Real f "Value of thermophysical property"; end polynomialProperty;