LookUpTable1DColumn#

class ansys.acp.core.LookUpTable1DColumn(*, name='LookUpTable1DColumn', value_type=LookUpTableColumnValueType.SCALAR, dimension_type=DimensionType.DIMENSIONLESS, data=None)#

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

Parameters:
  • value_type (LookUpTableColumnValueType, default: <LookUpTableColumnValueType.SCALAR: 'scalar'>) – 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, default: <DimensionType.DIMENSIONLESS: 'dimensionless'>) – Dimensionality (such as time, length, force, …) of the column data.

  • data (ndarray[Any, dtype[float64]] | None, default: 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.

Methods

LookUpTable1DColumn.clone(*[, unlink])

Create a new unstored object with the same properties.

LookUpTable1DColumn.delete()

Delete the object.

LookUpTable1DColumn.store(parent)

Store the object on the server.

Attributes

LookUpTable1DColumn.data

LookUpTable1DColumn.dimension_type

LookUpTable1DColumn.id

Identifier of the object, used for example as key in maps.

LookUpTable1DColumn.name

The name of the object.

LookUpTable1DColumn.value_type