get_sweep#

Setup3DLayout.get_sweep(name=None)#

Return frequency sweep object of a given sweep.

Parameters:
namestr, optional

Name of the sweep. The default is None, in which case the first sweep is used.

Returns:
ansys.aedt.core.modules.solve_sweeps.SweepHFSS3DLayout

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")