#!/bin/bash cd "${0%/*}" || exit # Run from this directory . ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions #------------------------------------------------------------------------------ # Plot temperature, heat flux vs analytical graphDir="postProcessing/singleGraph" #------------------------------------------------------------------------------ plotTemperature() { graphName="Tprofile.png" echo "Creating temperature profile graph to $graphName" gnuplot</dev/null || { echo "gnuplot not found - skipping graph creation" 1>&2 exit 1 } plotTemperature plotHeatFlux fi # ------------------------------------------------------------------------------