create_column#

LookUpTable1D.create_column(*, name='LookUpTable1DColumn', value_type='scalar', dimension_type='dimensionless', data=None)#

Instantiate a Column of a 1D Look-Up Table.

Parameters:
  • value_type (LookUpTableColumnValueType) – Determines whether the column data is scalar (one entry per row) or directional (three entries per row). Note that the value_type can only be set when constructing the column, and is read-only afterwards.

  • dimension_type (DimensionType) – Dimensionality (such as time, length, force, …) of the column data.

  • data (npt.NDArray[np.float64] | None) – The column data. The shape of the data must match the value_type and the length of the Location column of the parent look-up table.

Return type:

LookUpTable1DColumn

Added in ACP server version 24.2.

Examples using LookUpTable1D.create_column#

Advanced selection rules example

Advanced selection rules example