DuctAPE.generate_plots
— Functiongenerate_plots(
::staticPlots, (or ::animatedPlots)
Plots,
ins,
outs;
save_path="",
static_file_type=".pdf",
suffix=nothing,
plot_geometry=true,
plot_pressure=false,
plot_velocity=false,
plot_boundary_layer=false,
plot_streamlines=false,
verbose=false,
kwargs...,
)
Generate standard suite of plots or animations from input and output objects.
Arguments:
::staticPlots (or ::animatedPlots)
:Plots::
: the Plots package namespaceins::NamedTuple
: returned inputs fromanalyze
functionouts::Vector{NamedTuple}
: retured outputs fromanalyze
function
Keyword Arguments:
save_path=""
: custom save pathstatic_file_type=".pdf"
: file type for static files (must be compatible with the desired backend)suffix=nothing
: custom suffixes, if unused plots files will be numbered starting from 1.plot_geometry=true
: flag to generate geometry plotplot_panels=false
: flag to include markers indicating panel edges in geometry plotplot_pressure=false
: flag to generate surface pressures plotplot_velocity=false
: flag to generate surface velocities plotplot_boundary_layer=false
: flag to generate boundary layer plotplot_streamlines=false
: flag to generate streamlines plotverbose=false
: print verbose statementskwargs...
: arguments passed into the plot functions (Plots keyword arguments/defaults to be used in every plot)