Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/edb/use_configuration/post_layout_parametrize.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
# Note that there may be some delay while AEDT is being launched.

hfss = ansys.aedt.core.Hfss3dLayout(
projectname=target_aedb,
specified_version=edb_version,
project_name=target_aedb,
version=edb_version,
non_graphical=False,
new_desktop_session=True,
new_desktop=True,
)

# The following cell can be used to ensure that the design is valid for simulation.
Expand Down
4 changes: 2 additions & 2 deletions examples/electrothermal/electrothermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@
#
# Load EDB into SIwave.

siwave = Siwave(specified_version=AEDT_VERSION)
siwave = Siwave(version=AEDT_VERSION)
time.sleep(10)
siwave.open_project(proj_path=aedb)
siwave.save_project(projectpath=temp_folder.name, projectName="ansys")
siwave.save_project(proj_path=temp_folder.name, projectName="ansys")

# ## Analyze

Expand Down
8 changes: 4 additions & 4 deletions examples/high_frequency/antenna/5G_antenna_parametrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ def points(self):
# All commands can be run without the UI by changing the value of ``non_graphical``.

h3d = ansys.aedt.core.Hfss(
projectname="Demo_3DComp",
designname="Linear_Array",
specified_version="2025.2",
new_desktop_session=True,
project="Demo_3DComp",
design="Linear_Array",
version="2025.2",
new_desktop=True,
non_graphical=non_graphical,
close_on_exit=True,
solution_type="Terminal",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@
aedt_version = edb_version

h3d = ansys.aedt.core.Hfss3dLayout(
specified_version=aedt_version,
projectname=target_aedb,
version=aedt_version,
project_name=target_aedb,
non_graphical=False,
new_desktop_session=False,
new_desktop=False,
)

# ## Analyze
Expand Down
Loading