LookUpTable3DColumn#

class ansys.acp.core.LookUpTable3DColumn(*, name='LookUpTable3DColumn', value_type='scalar', dimension_type='dimensionless', data=None)#

Instantiate a Column of a 3D 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 (ndarray[Any, dtype[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.

Added in ACP server version 24.2.

Methods

LookUpTable3DColumn.clone(*[, unlink])

Create a new unstored object with the same properties.

LookUpTable3DColumn.delete()

Delete the object.

LookUpTable3DColumn.store(parent)

Store the object on the server.

Attributes

LookUpTable3DColumn.data

LookUpTable3DColumn.dimension_type

LookUpTable3DColumn.id

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

LookUpTable3DColumn.name

The name of the object.

LookUpTable3DColumn.parent

The parent of the object.

LookUpTable3DColumn.value_type

Examples using LookUpTable3DColumn#

Thickness definition example

Thickness definition example

Direction definition example

Direction definition example