#!/bin/bash # Generate the initial conditions if they are not present. if [ ! -e glassCube_64.hdf5 ] then echo "Fetching initial glass file for the 3D vacuum expansion example..." ./getGlass.sh fi if [ ! -e vacuum.hdf5 ] then echo "Generating initial conditions for the 3D vacuum expansion example..." python3 makeIC.py fi # Run SWIFT ../../../swift --hydro --threads=16 vacuum.yml 2>&1 | tee output.log # Get the reference solution if it is not present. if [ ! -e vacuumSpherical3D_exact.txt ] then echo "Fetching reference solution for the 3D vacuum expansion test..." ./getReference.sh fi # Plot the result python3 plotSolution.py 1