2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
8 #-------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 # Remove the contents of the constant/polyMesh directory
31 # as per the Foam::polyMesh::removeFiles() method.
33 #------------------------------------------------------------------------------
35 while [ "$#" -ge 1 ]; do echo "$1" 1>&2; shift; done
38 usage: ${0##*/} [-case dir] [-region name]
40 Remove the contents of the constant/polyMesh directory
41 as per the Foam::polyMesh::removeFiles() method.
47 unset caseDir regionName
49 # parse a single option
57 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
58 cd "$2" 2>/dev
/null || usage
"directory does not exist: '$2'"
63 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
68 usage
"unknown option/argument: '$*'"
73 if [ -n "$regionName" ]
75 meshDir
=$regionName/polyMesh
80 # if -case was specified: insist upon 'constant/polyMesh'
83 if [ -d constant
/$meshDir ]
85 # use constant/polyMesh
86 meshDir
=constant
/$meshDir
88 echo "Error: no 'constant/$meshDir' in $caseDir" 1>&2
92 if [ -d constant
/$meshDir ]
94 # use constant/polyMesh
95 meshDir
=constant
/$meshDir
98 # likely already in constant/ - do not adjust anything
100 elif [ "${PWD##*/}" = polyMesh
-a -z "$regionName" ]
102 # apparently already within polyMesh/
105 echo "Error: no appropriate 'polyMesh/' directory found" 1>&2
112 # remove files (mesh itself, modifiers, snappyHexMesh ones) and subdirectories
114 echo "Clearing ${caseDir:-.}/$meshDir" 1>&2
147 refinementHistory.gz \
154 #------------------------------------------------------------------------------