table_data#
- property RxSaturationNode.table_data: list[tuple]#
Rx Saturation Profile Table. Table consists of 2 columns. Frequency:
Value should be between 1 and 100e9.
- Amplitude:
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] >>> rx_profile = band.children[1] >>> rx_saturation = rx_profile.add_rx_saturation() >>> rx_saturation.table_data = [(2, 25.0)]