Plotting

The following special plot functions are available and basically delegate to the plotting routines from ExtendableFEM/GridVisualize.

ExtendableASGFEM.plot_basisMethod
plot_basis(
    ONB::ONBasis{T, OBT, npoly, nquad};
    Plotter,
    resolution,
    kwargs...
)

plots the basis functions of the ONBasis ONB via GridVisualize. The Plotter argument determines the backend (e.g. GLMakie, CairoMakie, PyPlot, Plots).

source
ExtendableASGFEM.plot_modesMethod
plot_modes(
    sol::SGFEVector;
    unknown,
    Plotter,
    nmodes,
    ncols,
    width,
    sort
) -> GridVisualize.GridVisualizer

plots scalarplots of the stochastic modes of sol sorted by their norm via ExtendableFEM.plots/GridVisualize. The Plotter argument determines the backend (e.g. GLMakie, CairoMakie, PyPlot, Plots).

source