Plotting
using SPECReader
using GLMakieFor this short example we'll read and plot. Note that the plotting functions are part of an extension and use Makie recipes.
First we'll read in the SPEC output file
speceq = SPECEquilibrium("test/data/G3V01L0Fi.002.sp.h5")We can plot the boundary in 3D,
f, ax, sc = plotboundary(speceq)Then we can add the axis to the plot,
plotaxis!(ax, speceq)
fThis page was generated using Literate.jl.