create#

EMIReceiver.create(name: str = None) EMIReceiver#

Create an EMI receiver report.

Parameters:
namestr, optional

Plot name. The default is None, in which case the default name is used.

Returns:
bool

True when successful, False when failed.

Examples

>>> from ansys.aedt.core import Circuit
>>> circuit = Circuit()
>>> new_report = circuit.post.reports_by_category.emi_receiver()
>>> new_report.band = "2"
>>> new_report.emission = "RE"
>>> new_report.time_start = "1ns"
>>> new_report.time_stop = "2us"
>>> new_report.create()