MonostaticRCSPlotter#

class ansys.aedt.core.visualization.advanced.rcs_visualization.MonostaticRCSPlotter(rcs_data)#

Provides monostatic radar cross-section (RCS) plot functionalities.

Parameters:
rcs_dataansys.aedt.core.generic.rcs_visualization.MonostaticRCSData

Monostatic RCS data object.

Examples

>>> from ansys.aedt.core import Hfss
>>> from ansys.aedt.core.generic.rcs_visualization import MonostaticRCSData
>>> from ansys.aedt.core.generic.rcs_visualization import MonostaticRCSPlotter
>>> app = Hfss(version="2023.2", design="Antenna")
>>> data = app.get_rcs_data()
>>> metadata_file = data.metadata_file
>>> app.release_desktop()
>>> rcs_data = MonostaticRCSData(input_file=metadata_file)
>>> rcs_plotter = MonostaticRCSPlotter(rcs_data)

Methods

MonostaticRCSPlotter.add_isar_2d_settings([...])

Add a 2D ISAR (Inverse Synthetic Aperture Radar) visualization to the current 3D scene.

MonostaticRCSPlotter.add_range_profile([...])

Add the 3D range profile.

MonostaticRCSPlotter.add_range_profile_settings([...])

Add a 3D range profile setting representation to the current scene.

MonostaticRCSPlotter.add_rcs([color_bar])

Add a 3D RCS representation to the current scene.

MonostaticRCSPlotter.add_waterfall([color_bar])

Add the 3D waterfall.

MonostaticRCSPlotter.add_waterfall_settings([...])

Add a 3D waterfall setting representation to the current scene.

MonostaticRCSPlotter.clear_scene([...])

MonostaticRCSPlotter.plot_isar_2d([title, ...])

Create a 2D contour plot of the ISAR.

MonostaticRCSPlotter.plot_range_profile([...])

Create a 2D plot of the range profile.

MonostaticRCSPlotter.plot_rcs([...])

Create a 2D plot of the monostatic RCS.

MonostaticRCSPlotter.plot_rcs_3d([title, ...])

Create a 3D plot of the monostatic RCS.

MonostaticRCSPlotter.plot_scene([show])

Plot the 3D scene including models, annotations, and results.

MonostaticRCSPlotter.plot_waterfall([title, ...])

Create a 2D contour plot of the waterfall.

MonostaticRCSPlotter.stretch_data(data, ...)

Stretches and scales the input data to a specified range.

Attributes