function[Mesh, Solution]=postProcess(Mesh, Data, Solution) % postProcess: General post-processing function used to compute derived % quantities % INPUT: % Mesh: Structure containing all the mesh parameters % Data: Structure containing all the data parameters % Solution: Structure containing the solution % OUTPUT: % Mesh: Updated mesh structure with coordinates of nodes where stresses % and strains were evaluated % Solution: Updated solution structure with derived quantities if any(contains(Data.PostProcessing.quantity, {'stress', 'strain'})) [Mesh, Solution]=postProcessDisp(Mesh, Data, Solution); end end