Breaking changes in release 1.0#

This page describes the breaking changes expected in the upcoming major version 1.0 of PyAEDT. These changes include the deprecation of certain function argument names and the restructuring of the codebase.

Deprecation of function argument names#

In the 1.0 release, several function argument names are deprecated. You should review your code and check the warnings that are logged at run time. The following example shows a warning triggered by the use of an argument that is currently acceptable but is not going to work with version 1.0.

from pyaedt import Circuit
c = Circuit(designname="whatever")

Expected log output:

PyAEDT WARNING: Argument `designname` is deprecated for method `__init__`; use `design` instead.

Restructuring of the codebase#

To facilitate the maintenance of PyAEDT and to adhere to PyAnsys’ guidelines, the codebase is being restructured. The sources are to be moved from pyaedt to ansys.aedt.core to improve the organization and maintainability of the codebase.

The changes follow the structure below:

Old structure:
--------------

pyaedt/
├── application/
└── ...

New structure:
--------------

src/
└── ansys/
    └── aedt/
        └── core/
            ├── application/
            ├── ...

When migrating to major release 1.0, please update any references or imports in your project accordingly. An example of migration is shown below:

Old import:

from pyaedt import Circuit

New import:

from ansys.aedt.core import Circuit

Python files renaming#

To harmonize the names of the Python files and to follow PEP 8 conventions, some Python files are being renamed. This initiative aims to improve the consistency of the codebase and ensure that file names are clearer and adhere to Python community best practices. For further information, see PEP 8 Package and Module Names .

An example of migration is shown below:

Old import:

from pyaedt.application.Analysis3DLayout import FieldAnalysis3DLayout

New import:

from ansys.aedt.core.application.analysis_3d_layout import FieldAnalysis3DLayout

The following table list the name changes with the old and new paths:

Old path without file rename

New path with renamed file

pyaedt\application\Analysis3D.py

src\ansys\aedt\core\application\analysis_3d.py

pyaedt\application\Analysis3DLayout.py

src\ansys\aedt\core\application\analysis_3d_layout.py

pyaedt\application\AnalysisMaxwellCircuit.py

src\ansys\aedt\core\application\analysis_maxwell_circuit.py

pyaedt\application\AnalysisNexxim.py

src\ansys\aedt\core\application\analysis_nexxim.py

pyaedt\application\AnalysisRMxprt.py

src\ansys\aedt\core\application\analysis_r_m_xprt.py

pyaedt\application\AnalysisTwinBuilder.py

src\ansys\aedt\core\application\analysis_twin_builder.py

pyaedt\application\JobManager.py

src\ansys\aedt\core\application\job_manager.py

pyaedt\generic\DataHandlers.py

src\ansys\aedt\core\generic\data_handlers.py

pyaedt\generic\LoadAEDTFile.py

src\ansys\aedt\core\generic\load_aedt_file.py

pyaedt\modeler\modeler2d.py

src\ansys\aedt\core\modeler\modeler_2d.py

pyaedt\modeler\modeler3d.py

src\ansys\aedt\core\modeler\modeler_3d.py

pyaedt\modeler\modelerpcb.py

src\ansys\aedt\core\modeler\modeler_pcb.py

pyaedt\modeler\cad\Primitives2D.py

src\ansys\aedt\core\modeler\cad\primitives_2d.py

pyaedt\modeler\cad\Primitives3D.py

src\ansys\aedt\core\modeler\cad\primitives_3d.py

pyaedt\modeler\cad\elements3d.py

src\ansys\aedt\core\modeler\cad\elements_3d.py

pyaedt\modeler\cad\object3d.py

src\ansys\aedt\core\modeler\cad\object_3d.py

pyaedt\modeler\circuits\PrimitivesCircuit.py

src\ansys\aedt\core\modeler\circuits\primitives_circuit.py

pyaedt\modeler\circuits\PrimitivesEmit.py

src\ansys\aedt\core\modeler\circuits\primitives_emit.py

pyaedt\modeler\circuits\PrimitivesMaxwellCircuit.py

src\ansys\aedt\core\modeler\circuits\primitives_maxwell_circuit.py

pyaedt\modeler\circuits\PrimitivesNexxim.py

src\ansys\aedt\core\modeler\circuits\primitives_nexxim.py

pyaedt\modeler\circuits\PrimitivesTwinBuilder.py

src\ansys\aedt\core\modeler\circuits\primitives_twin_builder.py

pyaedt\modeler\circuits\object3dcircuit.py

src\ansys\aedt\core\modeler\circuits\object_3d_circuit.py

pyaedt\modeler\pcb\Primitives3DLayout.py

src\ansys\aedt\core\modeler\pcb\primitives_3d_layout.py

pyaedt\modeler\pcb\object3dlayout.py

src\ansys\aedt\core\modeler\pcb\object_3d_layout.py

pyaedt\modules\AdvancedPostProcessing.py

src\ansys\aedt\core\modules\advanced_post_processing.py

pyaedt\modules\CableModeling.py

src\ansys\aedt\core\modules\cable_modeling.py

pyaedt\modules\CircuitTemplates.py

src\ansys\aedt\core\modules\circuit_templates.py

pyaedt\modules\DesignXPloration.py

src\ansys\aedt\core\modules\design_xploration.py

pyaedt\modules\LayerStackup.py

src\ansys\aedt\core\modules\layer_stackup.py

pyaedt\modules\MaterialLib.py

src\ansys\aedt\core\modules\material_lib.py

pyaedt\modules\Mesh3DLayout.py

src\ansys\aedt\core\modules\mesh_3d_layout.py

pyaedt\modules\MeshIcepak.py

src\ansys\aedt\core\modules\mesh_icepak.py

pyaedt\modules\OptimetricsTemplates.py

src\ansys\aedt\core\modules\optimetrics_templates.py

pyaedt\modules\PostProcessor.py

src\ansys\aedt\core\modules\post_processor.py

pyaedt\modules\SetupTemplates.py

src\ansys\aedt\core\modules\setup_templates.py

pyaedt\modules\SolveSetup.py

src\ansys\aedt\core\modules\solve_setup.py

pyaedt\modules\SolveSweeps.py

src\ansys\aedt\core\modules\solve_sweeps.py

Other changes in release 1.0#

In addition to the major changes described earlier, modifications are continuously performed to improve the quality of the project, its maintainability, its documentation, and to ensure users’ needs are met as efficiently as possible. This includes ensuring consistent argument names, improving data encapsulation, strengthening CI/CD, and migrate examples to a different repository.

For more information on the status of the 1.0 release, see PyAEDT Milestone .