table_data#

property RxSpurNode.table_data: list[tuple]#

Spurs Table. Table consists of 3 columns. Frequency (MHz):

Value should be a mathematical expression.

Bandwidth:

Value should be greater than 1.0.

Power:

Value should be between -200.0 and 150.0.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> radio = app.schematic.create_component("New Radio")
>>> band = radio.children[0]
>>> rx_profile = band.children[1]
>>> rx_spur = rx_profile.add_spurious_responses()
>>> rx_spur.table_data = [(2, 25.0)]