This package contains internal utility functions for the computation of erf, erfc, erfInc and erfcInv. These functions should not be directly used by the user.
Extends from Modelica.Icons.InternalPackage
(Icon for an internal package (indicating that the package should not be directly utilized by user)).
Name | Description |
---|---|
erfcUtil | Evaluate erfc(z) for 0.5 <= z |
erfInvUtil | Utility function for erfInv(u) and erfcInv(u) |
polyEval | Evaluate a polynomial c[1] + c[2]*u + c[3]*u^2 + .... |
Evaluate a polynomial using Horner's scheme.
Extends from Modelica.Icons.Function
(Icon for functions).
Type | Name | Description |
---|---|---|
Real | c[:] | Polynomial coefficients |
Real | u | Abscissa value |
Type | Name | Description |
---|---|---|
Real | y | = c[1] + u*(c[2] + u*(c[3] + u*(c[4]*u^3 + ...))) |
Utility function in order to compute part of erf(..) and erfc(..).
Extends from Modelica.Icons.Function
(Icon for functions).
Type | Name | Description |
---|---|---|
Real | z | Input argument 0.5 <= z required (but not checked) |
Type | Name | Description |
---|---|---|
Real | y | Result erfc(z) for 0.5 <= z |
Utility function in order to compute erfInv(..) and erfcInv(..).
Extends from Modelica.Icons.Function
(Icon for functions).
Type | Name | Description |
---|---|---|
Real | p | First input argument |
Real | q | Second input argument |
Type | Name | Description |
---|---|---|
Real | y | Result value |
Generated 2018-12-12 12:14:35 EST by MapleSim.