#!/usr/bin/env bash

#edit these lines as needed
BGW_BIN="$HOME/BerkeleyGW/bin"

# put argument for number of procs here too if needed, e.g. -n 8
MPIRUN="mpirun"
###############################################################################
EPSILON="$BGW_BIN/epsilon.real.x"
SIGMA="$BGW_BIN/sigma.real.x"
#
cd ./07-epsilon
$MPIRUN $EPSILON &> ./OUT.eps
cd ..
#
cd ./07-epsilon_fine
$MPIRUN $EPSILON &> ./OUT.eps
cd ..
#
cd ./08-sigma
$MPIRUN $SIGMA &> ./OUT.sig
cd ..
#
