#!/bin/bash # Generate the initial conditions if they are not present. if [ ! -e sodShock.hdf5 ] then echo "Generating initial conditions for the 1D SodShock example..." python3 makeIC.py fi # Run SWIFT ../../../swift --hydro --threads=1 sodShock.yml 2>&1 | tee output.log # Plot the result python3 plotSolution.py 1