Skip to content

Commit da9cd55

Browse files
FIX: Delete multizone (#421)
1 parent 66afb93 commit da9cd55

File tree

5 files changed

+14
-183
lines changed

5 files changed

+14
-183
lines changed

examples/aedt/circuit/index.rst

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,6 @@ These examples use PyAEDT to show Circuit capabilities.
8282

8383
This example demonstrates advanced postprocessing of AMI simulations.
8484

85-
.. grid-item-card:: Multi-zone simulation with SIwave
86-
:padding: 2 2 2 2
87-
:link: ../../high_frequency/layout/signal_integrity/multizone
88-
:link-type: doc
89-
90-
.. image:: ../../high_frequency/layout/signal_integrity/_static/multizone.png
91-
:alt: Multizone
92-
:width: 250px
93-
:height: 200px
94-
:align: center
95-
96-
This example shows how to simulate multiple zones with SIwave.
97-
9885
.. grid-item-card:: Circuit transient analysis and eye diagram
9986
:padding: 2 2 2 2
10087
:link: ../../high_frequency/layout/signal_integrity/circuit_transient
@@ -118,5 +105,4 @@ These examples use PyAEDT to show Circuit capabilities.
118105
../../aedt_general/report/virtual_compliance
119106
../../high_frequency/emc/subcircuit.py
120107
../../high_frequency/layout/signal_integrity/ami
121-
../../high_frequency/layout/signal_integrity/multizone
122108
../../high_frequency/layout/signal_integrity/circuit_transient

examples/edb/legacy_standalone/gds_workflow.py

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,17 @@
1616

1717
import os
1818
import tempfile
19+
20+
from ansys.aedt.core.hfss3dlayout import Hfss3dLayout
1921
from pyedb.dotnet.edb import Edb
22+
from pyedb.generic.settings import settings
2023
from pyedb.misc.downloads import download_file
21-
from ansys.aedt.core.hfss3dlayout import Hfss3dLayout
22-
from pyedb.generic.settings import Settings
2324

2425
# ### Define constants
2526
# Constants help ensure consistency and avoid repetition throughout the example.
2627

27-
Settings.specified_version = "2025.2"
28+
AEDT_VERSION = "2025.2"
29+
settings.specified_version = AEDT_VERSION
2830
NG_MODE = False # Open AEDT UI when it is launched.
2931

3032
# ### Create temporary directory
@@ -39,8 +41,8 @@
3941

4042
# ### Import a GDS file.
4143
#
42-
# Download the test case folder and copy it to the working directory. The
43-
# method ``download_file()`` retrieves example data from the
44+
# Download the test case folder and copy it to the working directory. The
45+
# method ``download_file()`` retrieves example data from the
4446
# [Ansys GitHub "example_data" repository](https://github.com/ansys/example-data/tree/main/pyaedt).
4547
#
4648
# The following files are used in this example:
@@ -79,9 +81,9 @@
7981
# ### Save and close the EDB
8082
#
8183
# The GDS file has been converted to an EDB and is ready for subsequent processing either in the
82-
# 3D Layout UI of Electronics Desktop or using
83-
# PyEDB.
84-
# The following commands save and close the EDB.
84+
# 3D Layout UI of Electronics Desktop or using
85+
# PyEDB.
86+
# The following commands save and close the EDB.
8587

8688
edb_path = os.path.join(temp_folder.name, "gds_design.aedb")
8789
edb.save_as(edb_path)
@@ -94,9 +96,11 @@
9496
#
9597
# <img src="_static/layout.png" width="800">
9698

97-
h3d = Hfss3dLayout(project=edb_path, version=Settings.specified_version, new_desktop=NG_MODE)
99+
h3d = Hfss3dLayout(
100+
project=edb_path, version=settings.specified_version, new_desktop=NG_MODE
101+
)
98102

99-
# ### Close the HFSS 3D Layout
103+
# ### Close the HFSS 3D Layout
100104
# The following command releases Ansys Electronics Desktop and closes the project.
101105

102106
h3d.release_desktop()
Binary file not shown.

examples/high_frequency/layout/signal_integrity/index.rst

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,6 @@ These examples use PyAEDT to show signal integrity examples.
7272

7373
This example demonstrates advanced postprocessing of AMI simulations.
7474

75-
.. grid-item-card:: Multi-zone simulation with SIwave
76-
:padding: 2 2 2 2
77-
:link: multizone
78-
:link-type: doc
79-
80-
.. image:: _static/multizone.png
81-
:alt: Multizone
82-
:width: 250px
83-
:height: 200px
84-
:align: center
85-
86-
This example shows how to simulate multiple zones with SIwave.
87-
8875
.. grid-item-card:: Circuit transient analysis and eye diagram
8976
:padding: 2 2 2 2
9077
:link: circuit_transient
@@ -171,7 +158,6 @@ These examples use PyAEDT to show signal integrity examples.
171158
pre_layout
172159
pre_layout_parametrized
173160
ami
174-
multizone
175161
serdes_differential
176162
circuit_transient
177163

examples/high_frequency/layout/signal_integrity/multizone.py

Lines changed: 0 additions & 145 deletions
This file was deleted.

0 commit comments

Comments
 (0)