#!/bin/bash

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

###############################################################################
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 ..
#
