import_gds_3d#
- Maxwell2d.import_gds_3d(input_file: str, mapping_layers: dict, units: str = 'um', import_method: int = 1) bool#
Import a GDSII file.
- Parameters:
- input_file
str Path to the GDS file.
- mapping_layers
dict Dictionary keys are GDS layer numbers, and the value is a tuple with the elevation and thickness.
- units
str,optional Length unit values. The default is
"um".- import_method
integer,optional GDSII import method. The default is
1. Options are:0for script.1for Parasolid.
- input_file
- Returns:
- bool
Truewhen successful,Falsewhen failed.
References
>>> oEditor.ImportGDSII
Examples
Import a GDS file in an HFSS 3D project.
>>> gds_path = r"C:\temp\gds1.gds" >>> from ansys.aedt.core import Hfss >>> hfss = Hfss() >>> gds_number = {7: (100, 10), 9: (110, 5)} >>> hfss.import_gds_3d(gds_path, gds_number, units="um", import_method=1)