#!/bin/bash # Generate the initial conditions if they are not present. if [ ! -e zeldovichPancake.hdf5 ] then echo "Generating initial conditions for the 3D Zeldovich pancake example..." python3 makeIC.py fi # Run SWIFT ../../../swift --hydro --cosmology --self-gravity --threads=8 zeldovichPancake.yml 2>&1 | tee output.log # Plot the result for i in {0..119} do python3 plotSolution.py $i done