table_data#

property CustomCouplingNode.table_data: list[tuple]#

Custom Coupling Values Table. Table consists of 2 columns. Frequency:

Value should be between 1.0 and 100.0e9.

Value (dB):

Value should be between -1000.0 and 0.0.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> rev = app.results.get_revision()
>>> cpl = rev.get_coupling_data_node()
>>> cust = cpl.add_custom_coupling()
>>> cust.table_data = [(2, 25.0)]