FUNCTION.XY

Parent

FE_MODEL

INFLATOR_CHAR

JET_CHAR.CENTRE_VEL

JET_CHAR.CONSTANT_MOMENTUM

JET_CHAR.IDELCHIK

MADYMO

SYSTEM.MODEL

SYSTEM.REF_SPACE

FUNCTION_3D.ISO

MADYMO_RESTART

Description

Provides a definition of a function, described as a series of X-Y pairs.

Attributes

AttributeTypeDefaultUnitDescription
IDInt  Numerical identifier
NAMEName  Alphanumerical identifier[1]
DECRYPTString  For internal use only
Notes:
1. The total length of a full path of a NAME attribute (including ID and NAME and strings generated by madymo) may not exceed 256 characters.

Related Elements

Related ElementsOne/ManyDescription
XY_PAIRManyData for function: Y = function(X)

Additional Information

Examples

<FUNCTION.XY
   ID = "1"
   NAME = "Function1_fun"
   >
   <XY_PAIR  XI = "0.0"  YI= "0.0" />
   <XY_PAIR  XI = "1.0"  YI= "1.0" />
</FUNCTION.XY>

Or, in table format:


<FUNCTION.XY
   ID   = "1"
   NAME = "Function1_fun"
   >
   <TABLE
      TYPE = "XY_PAIR"
      >
      |     XI     YI    |
           0.0    0.0
           1.0    1.0
   </TABLE>
</FUNCTION.XY>