#!/bin/sh

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

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

# Remove generated case files
cleanCase0

# Remove mesh and overset interpolation files
rm -f constant/polyMesh/boundary
rm -f constant/polyMesh/zoneID
rm -f constant/cellInterpolationWeight

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