I'm using PyAEDT for post-processing my Icepak simulation results. While creating field plots for velocity vectors, I'm able to generate the plot successfully using the existing APIs.
However, I'm facing an issue with controlling the arrow/vector size. The default vector size results in a very cluttered and messy visualization, and I haven't found a direct way to manipulate or scale the arrow size (like we can in the AEDT GUI using the "Size" slider under Marker/Arrow settings).
I'd appreciate any guidance on how to programmatically adjust the vector size using PyAEDT.
plot_test = icepak.post.create_fieldplot_cutplane(
assignment=['my_last_plane1'],
quantity='Velocity',
plot_name='velocity_on_plane12',
)
plot = icepak.post.field_plots['velocity_on_plane12']
plot.ArrowUniform = True
# plot.SmoothShade = True
# plot.ArrowSpacing = 0.2
plot.AddGrid = False
plot.plotsettings["Size"] = 0.1
plot.update()