functionbicubic

Bicubic function

Extends from Modelica.Icons.Function (Icon for functions).

Information

This function computes

y = a1 + a2 x1 + a3 x12 + a4 x2 + a5 x22 + a6 x1 x2 + a7 x1^3 + a8 x2^3 + a9 x12 x2 + a10 x1 x22

Inputs

TypeNameDefaultDescription
Real[10]aCoefficients
Realx1Independent variable
Realx2Independent variable

Outputs

TypeNameDefaultDescription
RealyResult

Revisions

  • July 21, 2025 by Hongxiang Fu:
    Made the function inlined.
    This is for #4278.
  • June 25, 2023, by Michael Wetter:
    Corrected html formatting.
  • Sep 17, 2010 by Michael Wetter:
    First implementation.