table_data#
- property RxSelectivityNode.table_data: list[tuple]#
Rx Selectivity Table. Table consists of 2 columns. Bandwidth:
Value should be between 0 and 100e9.
- Attenuation:
Value should be between -200 and 1000.
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_selectivity = rx_profile.add_rx_selectivity() >>> rx_selectivity.table_data = [(2, 25.0)]