repo.or.cz
/
OpenFOAM-1.5.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
intersection with triangle plane for miss
[OpenFOAM-1.5.x.git]
/
tutorials
/
rasInterFoam
/
Allclean
blob
62275784712aebe76b90f3356879dce098912e1e
1
#!/bin/sh
2
3
# Source tutorial clean functions
4
.
$WM_PROJECT_DIR
/
bin
/
tools
/
CleanFunctions
5
6
keepCases
=
"damBreak"
7
loseCases
=
"damBreakFine"
8
9
for case in
$keepCases
10
do
11
(
cd
$case
&&
foamCleanTutorials
)
12
13
if
[
"
$case
"
=
"damBreak"
]
14
then
15
cp
$case
/
0
/
gamma.org
$case
/
0
/
gamma
16
fi
17
done
18
19
for case in
$loseCases
20
do
21
removeCase
$case
22
done