create#
- EMIReceiver.create(name: str = None) EMIReceiver#
Create an EMI receiver report.
- Parameters:
- name
str,optional Plot name. The default is
None, in which case the default name is used.
- name
- Returns:
- bool
Truewhen successful,Falsewhen 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()