get_rcs_data#
- Hfss.get_rcs_data(frequencies=None, setup=None, expression='ComplexMonostaticRCSTheta', variations=None, overwrite=True, link_to_hfss=True, variation_name=None)#
Export the radar cross-section data.
This method returns an instance of the
RcsSolutionDataExporterobject.- Parameters:
- frequencies
float,list,optional Frequency value or list of frequencies to compute the data. The default is
None,in which case all available frequencies are computed.- setup
str,optional Name of the setup to use. The default is
None,in which casenominal_adaptiveis used.- expression
str,optional Monostatic expression name. The default value is
"ComplexMonostaticRCSTheta".- variations
dict,optional Variation dictionary. The default is
None, in which case the nominal variation is exported.- overwritebool,
optional Whether to overwrite metadata files. The default is
True.- link_to_hfssbool,
optional Whether to return an instance of the
ansys.aedt.core.visualization.post.rcs_exporter.MonostaticRCSExporterclass, which requires a connection to an instance of theHfssclass. The default is `` True``. IfFalse, returns an instance ofansys.aedt.core.visualization.advanced.rcs_visualization.MonostaticRCSDataclass, which is independent of the running HFSS instance.- variation_name
str,optional Variation name. The default is
None, in which case the nominal variation is added.
- frequencies
- Returns:
ansys.aedt.core.post.rcs_exporter.MonostaticRCSExporterSolutionData object.
Examples
The method
get_antenna_data()is used to export the farfield of each element of the design.Open a design and create the objects.
>>> from ansys.aedt.core import Hfss >>> hfss = Hfss() >>> rcs_data = hfss.get_rcs_data()