function d2f extends Modelica.Icons.Function; input Real x "Argument" annotation( Dialog(__Dymola_label = "<html><i>x</i></html>")); input Real a[:] "Coefficients" annotation( Dialog(__Dymola_label = "<html><i>a</i></html>")); input Integer n = 0 "Power associated with the first term (before derivative)" annotation( Dialog(__Dymola_label = "<html><i>n</i></html>")); input Real dx "Derivative of argument" annotation( Dialog(__Dymola_label = "<html>d<i>x</i></html>")); input Real da[size(a, 1)] = zeros(size(a, 1)) "Derivatives of coefficients" annotation( Dialog(__Dymola_label = "<html>d<i>a</i></html>")); input Real d2x "Second derivative of argument" annotation( Dialog(__Dymola_label = "<html>d<sup>2</sup><i>x</i></html>")); input Real d2a[size(a, 1)] = zeros(size(a, 1)) "Second derivatives of coefficients" annotation( Dialog(__Dymola_label = "<html>d<sup>2</sup><i>a</i></html>")); output Real d2f "Second derivative" annotation( Dialog(__Dymola_label = "<html>d<sup>2</sup><i>f</i></html>")); end d2f;