Replies: 1 comment 1 reply
-
Hi @FH-DESIGN , By default for radiation pattern, the secondary_sweep_variable is Phi, you need to switch to Freq:
I prefer to use this method, because you have more control before creating the plot:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I try to plot the radiation pattern of a dipole antenna, but I found that I could not select the angles I want in the variations while all the angles (All phi-s) are plotted in the report. The code section is shown below:
expressions_rad_pattern=["dB(RealizedGainTheta)"]
variations=hfss.available_variations.nominal_w_values_dict
variations["Freq"]=["3GHz"]
variations["Theta"]=["All"]
variations["Phi"]=["0deg","90deg"]
post.create_report(
expressions=expressions_rad_pattern,
domain="Sweep",
primary_sweep_variable="Theta",
variations=variations,
report_category="Far Fields",
plot_type="Radiation Pattern")
Beta Was this translation helpful? Give feedback.
All reactions