#!/bin/sh
cd ${0%/*} || exit 1    # Run from this directory

# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions

cleanCase
cp 0/alpha.water.orig 0/alpha.water

for i in {1..10}
do 
    rm system/singleGraph.${i} > /dev/null 2>&1
done

if [ elapsed_time ]
then	
    rm elapsed_time > /dev/null 2>&1
fi

if [ timeList ]
then
    rm timeList > /dev/null 2>&1
fi
#------------------------------------------------------------------------------
