Variable#
This module provides all functionalities for creating and editing design and project variables in the 3D tools.
from ansys.aedt.core import Hfss
app = Hfss(specified_version="2023.1",
non_graphical=False, new_desktop_session=True,
close_on_exit=True, student_version=False)
# This call returns the VariableManager class
variable_manager = self.aedtapp._variable_manager
# Set and get a variable
app["w"] = "10mm"
a = app["w"]
...
Manages design properties and project variables. |
|
Stores design properties and project variables and provides operations to perform on them. |
|
Manages datasets. |
|
Reads in a CSV file and extracts data, which can be augmented with constant values. |