Sweep#

class pyedb.workflows.utilities.hfss_log_parser.Sweep#

Frequency-sweep summary block.

Attributes:
typestr

Sweep algorithm: Interpolating, Discrete or Fast.

frequenciesint

Total number of frequency points requested.

solvedlist of float

List of frequencies (Hz) actually solved.

elapsed_secint

Wall clock time for the entire sweep.

Examples

>>> sweep = Sweep(type="Interpolating", frequencies=101, solved=[1e9, 2e9, 3e9], elapsed_sec=300)
>>> sweep.type
'Interpolating'
>>> len(sweep.solved)
3

Overview#

Import detail#

from pyedb.workflows.utilities.hfss_log_parser import Sweep

Attribute detail#

Sweep.type: str#
Sweep.frequencies: int#
Sweep.solved: list[float]#
Sweep.elapsed_sec: int#