get_sweep#

SetupQ3D.get_sweep(sweepname=None)[source]#

Return frequency sweep object of a given sweep.

Parameters:
sweepnamestr, optional

Name of the sweep. the default is None which returns the first sweep.

Returns:
pyaedt.modules.SolveSweeps.SweepHFSS or pyaedt.modules.SolveSweeps.SweepMatrix

Examples

>>> hfss = Hfss()
>>> setup = hfss.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")