Skip to main content

High-level Python API for Ansys Electronics Desktop Framework

Project description

PyAEDT logo


English | 中文

PyAnsys pypi PyPIact PythonVersion GH-CI codecov MIT black Anaconda pre-commit deep-wiki

What is PyAEDT?

PyAEDT is a Python library that interacts directly with the API for Ansys Electronics Desktop (AEDT) to make scripting simpler. The architecture for PyAEDT can be reused for all AEDT 3D products (HFSS, Icepak, Maxwell 3D, and Q3D Extractor), 2D tools, and Ansys Mechanical inside AEDT. PyAEDT also provides support for circuit tools like Nexxim and system simulation tools like Twin Builder. Finally, PyAEDT provides scripting capabilities in Ansys layout tools like HFSS 3D Layout. The Ansys Electronics Database (EDB) is included with PyAEDT as a dependency and is recommended for any automated manipulation and setup of layout data for PCBs, electronic packages, and integrated circuits.

The PyAEDT class and method structures simplify operation while reusing information as much as possible across the API.

Install on CPython from PyPI

You can install PyAEDT on CPython 3.8 through 3.12 from PyPI with this command:

  pip install pyaedt

Install PyAEDT with all extra packages (matplotlib, numpy, pandas, pyvista):

  pip install pyaedt[all]

You can also install PyAEDT from Conda-Forge with this command:

  conda install -c conda-forge pyaedt

PyAEDT remains compatible with IronPython and can be still used in the AEDT Framework.

PyAEDT compatibility requirements

PyAEDT has different compatibility requirements based on its version. Below is an overview of the compatibility matrix between PyAEDT, Python versions, and AEDT releases:

  • PyAEDT Version ≤ 0.8.11:
    • Python Compatibility:
      • Compatible with IronPython (Python 2.7).
      • Compatible with Python 3.7 and versions up to Python 3.11.
    • AEDT Compatibility:
      • All tests were conducted using AEDT 2024 R1.
  • 0.9.0 <= PyAEDT Version < 0.18.0:
  • Python Compatibility:
    • Dropped support for python 3.7 and below.
    • Compatible with Python 3.8 and versions up to Python 3.12.
  • AEDT Compatibility:
    • Version 0.9.x has been tested using AEDT 2024 R1.
    • From versions 0.10.0 to 0.13.3, all tests have been performed with AEDT 2024 R2.
    • Starting from version 0.14.0, all tests are performed with AEDT 2025 R1.
  • PyAEDT Version ≥ 0.18.0:
    • Python Compatibility:
      • Dropped support for Python 3.8 and 3.9.
      • Compatible with Python 3.10 and versions up to Python 3.13.
    • AEDT Compatibility:
      • All tests were conducted using AEDT 2025 R1.

About PyAnsys

PyAEDT is part of the larger PyAnsys effort to facilitate the use of Ansys technologies directly from Python.

PyAEDT is intended to consolidate and extend all existing functionalities around scripting for AEDT to allow reuse of existing code, sharing of best practices, and increased collaboration.

About AEDT

AEDT is a platform that enables true electronics system design. AEDT provides access to the Ansys gold-standard electro-magnetics simulation solutions, such as Ansys HFSS, Ansys Maxwell, Ansys Q3D Extractor, Ansys SIwave, and Ansys Icepak using electrical CAD (ECAD) and Mechanical CAD (MCAD) workflows.

In addition, AEDT includes direct links to the complete Ansys portfolio of thermal, fluid, and mechanical solvers for comprehensive multiphysics analysis. Tight integration among these solutions provides unprecedented ease of use for setup and faster resolution of complex simulations for design and optimization.

PyAEDT is licensed under the MIT License

PyAEDT includes functionality for interacting with the following AEDT tools and Ansys products:

  • HFSS and HFSS 3D Layout
  • Icepak
  • Maxwell 2D, Maxwell 3D, and RMXprt
  • 2D Extractor and Q3D Extractor
  • Mechanical
  • Nexxim
  • EDB
  • Twin Builder
  • EMIT

Documentation and issues

Documentation for the latest stable release of PyAEDT is hosted at PyAEDT documentation.

In the upper right corner of the documentation's title bar, there is an option for switching from viewing the documentation for the latest stable release to viewing the documentation for the development version or previously released versions.

You can also view or download PyAEDT cheat sheets, which are one-page references providing syntax rules and commands for using the PyAEDT API and PyEDB API:

On the PyAEDT Issues page, you can create issues to report bugs and request new features. On the PyAEDT Discussions page or the Discussions page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback.

To reach the project support team, email pyansys.core@ansys.com.

Dependencies

To run PyAEDT, you must have a local licenced copy of AEDT. PyAEDT supports AEDT versions 2022 R1 or newer.

Contributing

For comprehensive information on contributing to the PyAnsys project, see the PyAnsys developer's guide.

Note that PyAEDT uses semantic naming for pull requests (PR). This convention greatly simplifies the review process by providing meaningful information in the PR title. The following prefixes should be used for pull request name:

  • "BUILD"
  • "CHORE"
  • "CI"
  • "DOCS"
  • "FEAT"
  • "FIX"
  • "PERF"
  • "REFACTOR"
  • "REVERT"
  • "STYLE"
  • "TEST"

Student version

PyAEDT supports AEDT Student versions 2022 R1 and later. For more information, see the Ansys Electronics Desktop Student - Free Software Download page on the Ansys website.

Why PyAEDT?

A quick and easy approach for automating a simple operation in the AEDT UI is to record and reuse a script. However, disadvantages of this approach are:

  • Recorded code is dirty and difficult to read and understand.
  • Recorded scripts are difficult to reuse and adapt.
  • Complex coding is required by many global users of AEDT.

The main advantages of PyAEDT are:

  • Automatic initialization of all AEDT objects, such as desktop objects like the editor and boundaries
  • Error management
  • Log management
  • Variable management
  • Compatibility with IronPython and CPython
  • Simplification of complex API syntax using data objects while maintaining PEP8 compliance.
  • Code reusability across different solvers
  • Clear documentation on functions and API
  • Unit tests of code to increase quality across different AEDT versions

Example workflow

  1. Initialize the Desktop class with the version of AEDT to use.
  2. Initialize the application to use within AEDT.

Connect to AEDT from Python IDE

PyAEDT works both inside AEDT and as a standalone application. This Python library automatically detects whether it is running in an IronPython or CPython environment and initializes AEDT accordingly. PyAEDT also provides advanced error management. Usage examples follow.

Explicit AEDT declaration and error management

    # Launch AEDT 2022 R2 in non-graphical mode

    from ansys.aedt.core import Desktop, Circuit
    with Desktop(specified_version="2022.2",
                 non_graphical=False, new_desktop_session=True,
                 close_on_exit=True, student_version=False):
        circuit = Circuit()
        ...
        # Any error here will be caught by Desktop.
        ...

    # Desktop is automatically released here.

Implicit AEDT declaration and error management

    # Launch the latest installed version of AEDT in graphical mode

    from ansys.aedt.core import Circuit
    with Circuit(specified_version="2022.2",
                 non_graphical=False) as circuit:
        ...
        # Any error here will be caught by Desktop.
        ...

    # Desktop is automatically released here.

Remote application call

You can make a remote application call on a CPython server or any Windows client machine.

On a CPython Server:

    # Launch PyAEDT remote server on CPython

    from ansys.aedt.core.common_rpc import pyaedt_service_manager
    pyaedt_service_manager()

On any Windows client machine:

    from ansys.aedt.core.common_rpc import create_session
    cl1 = create_session("server_name")
    cl1.aedt(port=50000, non_graphical=False)
    hfss = Hfss(machine="server_name", port=50000)
    # your code here

Variables

    from ansys.aedt.core.HFSS import HFSS
    with HFSS as hfss:
         hfss["dim"] = "1mm"   # design variable
         hfss["$dim"] = "1mm"  # project variable

Modeler

    # Create a box, assign variables, and assign materials.

    from ansys.aedt.core.hfss import Hfss
    with Hfss as hfss:
         hfss.modeler.create_box([0, 0, 0], [10, "dim", 10],
                                 "mybox", "aluminum")

License

PyAEDT is licensed under the MIT license.

PyAEDT makes no commercial claim over Ansys whatsoever. This library extends the functionality of AEDT by adding a Python interface to AEDT without changing the core behavior or license of the original software. The use of PyAEDT requires a legally licensed local copy of AEDT.

To get a copy of AEDT, see the Ansys Electronics page on the Ansys website.

back to top

Indices and tables

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyaedt-0.21.0.tar.gz (26.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyaedt-0.21.0-py3-none-any.whl (7.6 MB view details)

Uploaded Python 3

File details

Details for the file pyaedt-0.21.0.tar.gz.

File metadata

  • Download URL: pyaedt-0.21.0.tar.gz
  • Upload date:
  • Size: 26.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyaedt-0.21.0.tar.gz
Algorithm Hash digest
SHA256 3728cbebf7e15f7ec0034345dd89e84b98c3ed71bd94710651de8f4da45e58e1
MD5 2a17f6d998f2feb884c7efb708e944d8
BLAKE2b-256 0a16727bcbd2877f1964b835b74fda0e9a390188a818a257748317fd3ffdeb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaedt-0.21.0.tar.gz:

Publisher: ci_cd.yml on ansys/pyaedt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyaedt-0.21.0-py3-none-any.whl.

File metadata

  • Download URL: pyaedt-0.21.0-py3-none-any.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyaedt-0.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce93315805306bb9ecc866efa5e78770063b5de65c64d36b9bed0c8e0c39aa0b
MD5 212b385e961b1855a6b86719879a3ce4
BLAKE2b-256 ff6ae4742c2c7b22b2e2d529e2d2d1cb47c2f5b882be5be7a1f760f0a884522c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaedt-0.21.0-py3-none-any.whl:

Publisher: ci_cd.yml on ansys/pyaedt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page