#!/bin/bash

# Export paths here if necessary or recommended.
export PATH="/usr/local/Cluster-Apps/openmpi/gnu/1.8.8//bin":$PATH
export LD_LIBRARY_PATH="/usr/local/Cluster-Apps/openmpi/gnu/1.8.8//lib":$LD_LIBRARY_PATH

# Load environment if this script is run directly.
if test "$CS_ENVIRONMENT_SET" != "true" ; then
  module purge
fi

cd /scratch/ow222/codeSaturneWork/cylinder_pw/notworking/RESU/20160831-1801

# Run solver.
./cs_solver $@
export CS_RET=$?

exit $CS_RET
