DuctAPE.generate_plotsFunction
generate_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 namespace
  • ins::NamedTuple : returned inputs from analyze function
  • outs::Vector{NamedTuple} : retured outputs from analyze function

Keyword Arguments:

  • save_path="" : custom save path
  • static_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 plot
  • plot_panels=false : flag to include markers indicating panel edges in geometry plot
  • plot_pressure=false : flag to generate surface pressures plot
  • plot_velocity=false : flag to generate surface velocities plot
  • plot_boundary_layer=false : flag to generate boundary layer plot
  • plot_streamlines=false : flag to generate streamlines plot
  • verbose=false : print verbose statements
  • kwargs... : arguments passed into the plot functions (Plots keyword arguments/defaults to be used in every plot)
source