operations#

property VectorReal.operations: list[str]#

Copy of the calculator operation stack this expression compiles to.

Returns:
list of str

Copy of the reverse-Polish calculator entries for the expression.

Examples

Inspect the generated stack entries for a magnitude expression.

>>> from ansys.aedt.core.visualization.post.field_calculator_expressions import FieldExpressions
>>> fx = FieldExpressions(calculator=None)
>>> fx.vector("E").magnitude().operations
["Fundamental_Quantity('E')", "Operation('Mag')"]