repo.or.cz
/
OpenFOAM-1.6-ext.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correction to the compilation of mesquite-2.1.2. Bug fix contributed by Philippose...
[OpenFOAM-1.6-ext.git]
/
tutorials
/
surfaceTracking
/
bubbleInterTrackFoam
/
bubble2D_r0.75mm
/
Allclean
blob
56d3efb5aa7acc8b66a82ce255bec73f6a8f2b02
1
#!/bin/sh
2
3
.
$WM_PROJECT_DIR
/
bin
/
tools
/
CleanFunctions
4
5
cleanFaMesh
()
6
{
7
rm
-rf
.
/
constant
/
faMesh
/
faceLabels
*
\
8
.
/
constant
/
faMesh
/
boundary
*
\
9
> /
dev
/
null
2
>&
1
10
}
11
12
cleanHistoryFolder
()
13
{
14
rm
-rf
.
/
history
\
15
> /
dev
/
null
2
>&
1
16
}
17
18
cleanAuxFolders
()
19
{
20
rm
-rf
forces \
21
> /
dev
/
null
2
>&
1
22
23
rm
-rf
path \
24
> /
dev
/
null
2
>&
1
25
}
26
27
cleanHistoryFolder
28
cleanTimeDirectories
29
cleanFaMesh
30
cleanAuxFolders
31