This function is related to Math.polyCoefReal, but modified for polynomes of the form
product(1 + p*T[k]), k in 1:nwith real time constants T. It calculates the n coefficients of the powers 1:n of p
a[k] for k in 1:ni.e. the constant factor 1 is omitted.
See also polyTime
function polyCoef extends Modelica.Icons.Function; input SI.Angle[:] T "time constant"; output Real[size(T, 1)] a "coefficients of polynome"; end polyCoef;