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
| Type | Name | Default | Description |
|---|---|---|---|
| Real[10] | a | Coefficients | |
| Real | x1 | Independent variable | |
| Real | x2 | Independent variable |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real | y | Result |
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.