FrequencyData#

class ansys.edb.core.simulation_setup.simulation_setup.FrequencyData(distribution: Distribution, start_f: str, end_f: str, step: str)#

Class representing a frequency setting.

Notes

Here are the choices for the distribution parameter:

Values for distribution parameter#

Distribution

Description

Example

LIN

linear (start, stop, step)

LIN 2GHz 4GHz 100MHz or LIN 1dBm 10dBm 1dB

LINC

linear (start, stop, count)

LINC 2GHz 4GHz 11

ESTP

Exponential step (start, stop, count)

ESTP 2MHz 10MHz 3

DEC

decade (start, stop, number of decades)

DEC 10KHz 10GHz 6

OCT

octave (start, stop, number of octaves)

OCT 10MHz 160MHz 5

Attributes:
distributionDistribution

Sweep distribution type (see table below).

start_fstr

Start frequency is number with optional frequency units.

end_fstr

End frequency is number with optional frequency units.

stepstr

Step is either frequency with optional frequency units or an integer

Methods