Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS: Fix example bullet points #666

Merged
merged 1 commit into from
Jul 11, 2024
Merged
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
2 changes: 1 addition & 1 deletion examples/legacy_pyaedt_integration/09_Configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
# ## Configure the simulation setup
#
# This step enables the following:

#
# - Definition of the nets to include in the cutout region
# - Cutout details
# - Components to create the ports on
Expand Down
1 change: 1 addition & 0 deletions examples/legacy_standalone/10_GDS_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#
# Download the EDB folder and copy it to a temporary folder.
# The following files are used in this example:
#
# - _sky130_fictious_dtc_exmple_contol_no_map.xml_
# defines physical information such
# as material properties, stackup layers, and boundary conditions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
cfg["general"] = {"s_parameter_library": os.path.join(temp_folder.name, "touchstone")}

# Assign the S-parameter model. Keywords
#
# - **name**. Name of the S-parameter model in AEDT.
# - **component**_definition. Known as component part number of part name.
# - **file_path**. Touchstone file or full path to the touchstone file.
Expand All @@ -67,6 +68,7 @@

# ### Define ports
# Create a circuit port between power and ground nets. Keywords
#
# - **name**. Name of the port.
# - **reference_desinator**.
# - **type**. Type of the port. Supported types are 'ciruict', 'coax'.
Expand All @@ -85,6 +87,7 @@

# ### Define SIwave SYZ analysis setup
# Keywords
#
# - **name**. Name of the setup.
# - **type**. Type of the analysis setup. Supported types are 'siwave_ac', 'siwave_dc', 'hfss'.
# - **pi_slider_position**. PI slider position. Supported values are from '0', '1', '2'. 0:speed, 1:balanced,
Expand Down Expand Up @@ -115,6 +118,7 @@

# ### Define Cutout
# Keywords
#
# - **signal_list**. List of nets to be kept after cutout.
# - **reference_list**. List of nets as reference planes.
# - **extent_type**. Supported extend types are 'Conforming', 'ConvexHull', 'Bounding'.
Expand Down
Loading