import_gds_3d#
- Maxwell3d.import_gds_3d(input_file, mapping_layers, units='um', import_method=1)[source]#
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 thickness and elevation.
- units
str
,optional
Length unit values. The default is
"um"
.- import_method
integer
,optional
GDSII import method. The default is
1
. Options are:0
for script.1
for Parasolid.
- input_file
- Returns:
- bool
True
when successful,False
when 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)