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
fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git]
/
tutorials
/
stressAnalysis
/
newContactStressFoam
/
Allclean
blob
fd002fa71f126cdb14914e1ddb8291af6d22baae
1
#!/bin/sh
2
3
currDir
=
`pwd`
4
application
=
`basename
$currDir
`
5
cases
=
"ballAndBrickFriction"
6
7
tutorialPath
=
`dirname
$0
`
/
..
8
.
$WM_PROJECT_DIR
/
bin
/
tools
/
CleanFunctions
9
10
for case in
$cases
11
do
12
(
cd
$case
;
cleanCase
)
13
cp
$case
/
0
/
materials.org
$case
/
0
/
materials
14
rm
-rf
$case
/
0
/
polyMesh
15
done
16