operations#
- property VectorComplex.operations: list[str]#
Copy of the calculator operation stack this expression compiles to.
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')"]