table_data#

property TxSpurNode.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]
>>> spec = band.children[0]
>>> tx_spur = spec.add_spurious_emissions()
>>> tx_spur.table_data = [(2, 25.0)]