Postprocessing and Visualization
LowLevelFEM provides built-in postprocessing and visualization tools based on Gmsh. Results can be displayed interactively, exported, probed at arbitrary locations, or evaluated along user-defined paths.
Typical workflow:
u = solveDisplacement(problem, load=[force], support=[bc])
S = solveStress(u)
showDoFResults(u)
showStressResults(S)
openPostProcessor()The most commonly used visualization functions are:
showDoFResults– displacement and other nodal degrees of freedomshowStressResults– stress components and equivalent stressshowStrainResults– strain componentsshowHeatFluxResults– heat flux fieldsshowElementResults– element-wise results (e.g. stress, strain, heat flux), which may be discontinuous across element boundariesplotOnPath– evaluate and plot results along a user-defined pathprobe– evaluate field values at arbitrary locations
For complete function documentation, see the API reference below.