#!/bin/bash # Generate the initial conditions if they are not present. if [ ! -e small_cosmo_volume.hdf5 ] then echo "Fetching initial conditions for the small cosmological volume example..." ./getIC.sh fi # Run SWIFT ../../../swift --cosmology --hydro --self-gravity --threads=8 small_cosmo_volume.yml 2>&1 | tee output.log # Plot the temperature evolution python3 plotTempEvolution.py