#!/bin/sh

# Navigate to case directory
cd ${0%/*} || exit 1

# Load OpenFOAM cleaning functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions

# Remove generated case files
cleanCase0

# Remove overset mesh files

rm -f constant/polyMesh/boundary
rm -f constant/polyMesh/zoneID
rm -f constant/cellInterpolationWeight

#------------------------------------------------------------------------------