export_design#

ExportToAedt.export_design(export_format: ExportFormat = None, export_creation_mode: ExportCreationMode = None, export_path: str = None) 'Circuit' | 'Hfss' | 'Hfss3dLayout' | None#

Export the design directly to AEDT or generate a Python script for exporting.

When exporting to AEDT, the design can either be appended to an existing project or overwrite it. When generating a Python script, the script is created and saved to the specified file location.

Returns the design object for an exported design when export_format is set to ExportFormat.DIRECT_TO_AEDT.

The returned object type is one of Circuit, Hfss, or Hfss3dLayout.

Returns None if export_format is set to ExportFormat.PYTHON_SCRIPT.

Parameters:
export_formatExportFormat

The export format type. The default is None.

design_creation_modeExportCreationMode

The design creation mode. The default is None.

export_pathstr

The export path for Python script. The default is None.

Returns:
class:

AEDT design object ..