get_sweep#
- Setup3DLayout.get_sweep(name=None)[source]#
Return frequency sweep object of a given sweep.
- Parameters:
- name
str
,optional
Name of the sweep. The default is
None
, in which case the first sweep is used.
- name
- Returns:
Examples
>>> h3d = Hfss3dLayout() >>> setup = h3d.get_setup('Pyaedt_setup') >>> sweep = setup.get_sweep('Sweep1') >>> sweep.add_subrange("LinearCount",0,10,1,"Hz") >>> sweep.add_subrange("LogScale",10,1E8,100,"Hz")