table_data#

property TxHarmonicNode.table_data: list[tuple]#

Edit Harmonics Table. Table consists of 2 columns. Harmonic:

Value should be between 2 and 1000.

Power (Relative or Absolute):

Value should be between -1000 and 1000.

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_harmonics = spec.add_custom_tx_harmonics()
>>> tx_harmonics.table_data = [(2, 25.0)]