{ "cells": [ { "cell_type": "markdown", "id": "4b8c383f", "metadata": {}, "source": [ "# EDB: geometry creation" ] }, { "cell_type": "markdown", "id": "0ccb5941", "metadata": {}, "source": [ "This example shows how you can use EDB to create a layout.\n", "## Final expected project\n", "\n", "\n", "\n", "## Import EDB layout object\n", "Import the EDB layout object and initialize it on version 2023 R2." ] }, { "cell_type": "code", "execution_count": null, "id": "0a50b9f3", "metadata": {}, "outputs": [], "source": [ "import os\n", "import tempfile\n", "\n", "import pyedb\n", "\n", "temp_dir = tempfile.TemporaryDirectory(suffix=\".ansys\")\n", "aedb_path = os.path.join(temp_dir.name, \"create_via.aedb\")\n", "print(f\"AEDB file path: {aedb_path}\")\n", "\n", "# Select EDB version (change it manually if needed, e.g. \"2025.1\")\n", "edb_version = \"2025.1\"\n", "print(f\"EDB version: {edb_version}\")\n", "\n", "edb = pyedb.Edb(edbpath=aedb_path, edbversion=edb_version)" ] }, { "cell_type": "markdown", "id": "4f19ebde", "metadata": {}, "source": [ "## Add stackup layers\n", "Add stackup layers.\n", "A stackup can be created layer by layer or imported from a CSV file or XML file." ] }, { "cell_type": "code", "execution_count": null, "id": "572564fa", "metadata": {}, "outputs": [], "source": [ "edb.stackup.add_layer(\"GND\")\n", "edb.stackup.add_layer(\"Diel\", \"GND\", layer_type=\"dielectric\", thickness=\"0.1mm\", material=\"FR4_epoxy\")\n", "edb.stackup.add_layer(\"TOP\", \"Diel\", thickness=\"0.05mm\")" ] }, { "cell_type": "markdown", "id": "967ccd74", "metadata": {}, "source": [ "## Create signal net and ground planes\n", "Create a signal net and ground planes." ] }, { "cell_type": "code", "execution_count": null, "id": "37973b24", "metadata": { "lines_to_next_cell": 2 }, "outputs": [], "source": [ "points = [[0.0, 0], [100e-3, 0.0]]\n", "edb.modeler.create_trace(points, \"TOP\", width=1e-3)\n", "points = [[0.0, 1e-3], [0.0, 10e-3], [100e-3, 10e-3], [100e-3, 1e-3], [0.0, 1e-3]]\n", "edb.modeler.create_polygon(points, \"TOP\")\n", "points = [[0.0, -1e-3], [0.0, -10e-3], [100e-3, -10e-3], [100e-3, -1e-3], [0.0, -1e-3]]\n", "edb.modeler.create_polygon(points, \"TOP\")" ] }, { "cell_type": "markdown", "id": "dd93b777", "metadata": {}, "source": [ "## Create vias with parametric positions\n", "Create vias with parametric positions." ] }, { "cell_type": "code", "execution_count": null, "id": "652d71f9", "metadata": { "lines_to_next_cell": 2 }, "outputs": [], "source": [ "edb.padstacks.create(\"MyVia\")\n", "edb.padstacks.place([5e-3, 5e-3], \"MyVia\")\n", "edb.padstacks.place([15e-3, 5e-3], \"MyVia\")\n", "edb.padstacks.place([35e-3, 5e-3], \"MyVia\")\n", "edb.padstacks.place([45e-3, 5e-3], \"MyVia\")\n", "edb.padstacks.place([5e-3, -5e-3], \"MyVia\")\n", "edb.padstacks.place([15e-3, -5e-3], \"MyVia\")\n", "edb.padstacks.place([35e-3, -5e-3], \"MyVia\")\n", "edb.padstacks.place([45e-3, -5e-3], \"MyVia\")" ] }, { "cell_type": "markdown", "id": "2e5ea3d2", "metadata": {}, "source": [ "## Generate geometry plot" ] }, { "cell_type": "code", "execution_count": null, "id": "a8d90d4b", "metadata": {}, "outputs": [], "source": [ "edb.nets.plot(None, color_by_net=True)" ] }, { "cell_type": "markdown", "id": "53b24955", "metadata": {}, "source": [ "## Generate stackup plot" ] }, { "cell_type": "code", "execution_count": null, "id": "3764fc5f", "metadata": {}, "outputs": [], "source": [ "edb.stackup.plot(plot_definitions=\"MyVia\")" ] }, { "cell_type": "markdown", "id": "46b2bb00", "metadata": {}, "source": [ "## Save and close EDB\n", "Save and close EDB." ] }, { "cell_type": "code", "execution_count": null, "id": "a3bc6fdd", "metadata": {}, "outputs": [], "source": [ "if edb:\n", " edb.save_edb()\n", " edb.close_edb()\n", "print(\"EDB saved correctly to {}. You can import in AEDT.\".format(aedb_path))" ] }, { "cell_type": "markdown", "id": "4bc78949", "metadata": {}, "source": [ "### Clean up temporary directory\n", "\n", "The following command removes the project and the temporary directory.\n", "If you'd like to save this project, save it to a folder of your choice\n", "prior to running the following cell." ] }, { "cell_type": "code", "execution_count": null, "id": "5b2aa9df", "metadata": {}, "outputs": [], "source": [ "temp_dir.cleanup()" ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "-all", "main_language": "python", "notebook_metadata_filter": "-all" } }, "nbformat": 4, "nbformat_minor": 5 }