table_data#

property SamplingNode.table_data: list[tuple]#

Frequency Ranges Table. Table consists of 2 columns. Min:

Value should be between 1.0 and 100e9.

Max:

Value should be between 1.0 and 100e9.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> radio = app.schematic.create_component("New Radio")
>>> sampling = [c for c in radio.children if c.node_type == "SamplingNode"][0]
>>> sampling.table_data = [(2, 25.0)]