plot_3d_chart#
- FfdSolutionData.plot_3d_chart(quantity='RealizedGain', phi=0, theta=0, title='3D Plot', quantity_format='dB10', output_file=None, show=True)#
Create a 3D chart of a specified quantity in Matplotlib.
- Parameters:
- quantity
str
,optional
Far field quantity to plot. The default is
"RealizedGain"
. Available quantities are:"RealizedGain"
,"RealizedGain_Phi"
,"RealizedGain_Theta"
,"rEPhi"
,"rETheta"
, and"rETotal"
.- phi
float
,int
,optional
Phi scan angle in degree. The default is
0
.- theta
float
,int
,optional
Theta scan angle in degree. The default is
0
.- title
str
,optional
Plot title. The default is
"3D Plot"
.- quantity_format
str
,optional
Conversion data function. Available functions are:
"abs"
,"ang"
,"dB10"
,"dB20"
,"deg"
,"imag"
,"norm"
, and"real"
.- output_file
str
,optional
Full path for the image file. The default is
None
, in which case a file is not exported.- showbool,
optional
Whether to show the plot. The default is
True
. IfFalse
, the Matplotlib instance of the plot is not shown.
- quantity
- Returns:
ansys.aedt.core.visualization.plot.matplotlib.ReportPlotter
Matplotlib figure object.
Examples
>>> from ansys.aedt.core >>> app = ansys.aedt.core.Hfss(version="2023.2", design="Antenna") >>> setup_name = "Setup1 : LastAdaptive" >>> frequencies = [77e9] >>> sphere = "3D" >>> data = app.get_antenna_data(frequencies,setup_name,sphere) >>> data.polar_plot_3d(theta=10)