Tutorial update

This commit is contained in:
Hrvoje Jasak 2010-10-13 12:38:34 +01:00
parent 974746246f
commit 93effde8e9
44 changed files with 247 additions and 502 deletions

View file

@ -1,14 +0,0 @@
#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="springDamper sixDOFmotion"
tutorialPath=`dirname $0`/..
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
for case in $cases
do
cleanCase $case
rm $case/*.dat
done

View file

@ -1,13 +0,0 @@
#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="springDamper sixDOFmotion"
tutorialPath=`dirname $0`/..
. $WM_PROJECT_DIR/bin/tools/RunFunctions
for case in $cases
do
(cd $case; runApplication $application)
done

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
rm -f *.dat

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application="sixDOFSolver"
runApplication $application

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
rm -f *.dat

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application="sixDOFSolver"
runApplication $application

View file

@ -1,52 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5-dev |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
5
(
impellerWall
{
type wall;
nFaces 68;
startFace 1040;
}
baffleWall
{
type wall;
nFaces 84;
startFace 1108;
}
insideSlider
{
type patch;
nFaces 36;
startFace 1192;
}
outsideSlider
{
type patch;
nFaces 36;
startFace 1228;
}
defaultFaces
{
type empty;
nFaces 1152;
startFace 1264;
}
)
// ************************************************************************* //

View file

@ -10,12 +10,6 @@ FoamFile
{ {
version 2.0; version 2.0;
format ascii; format ascii;
root "";
case "";
instance "";
local "";
class dictionary; class dictionary;
object fvSolution; object fvSolution;
} }
@ -24,12 +18,10 @@ FoamFile
solvers solvers
{ {
pcorr PCG pcorr
{ {
preconditioner solver BiCGStab;
{ preconditioner DILU;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -37,59 +29,41 @@ solvers
relTol 0; relTol 0;
}; };
p PCG p
{ {
preconditioner solver CG;
{ preconditioner Cholesky;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
tolerance 1e-06; tolerance 1e-07;
relTol 0.05; relTol 0.0;
}; };
pFinal PCG pFinal
{ {
preconditioner solver CG;
{ preconditioner Cholesky;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
tolerance 1e-06; tolerance 1e-07;
relTol 0; relTol 0;
}; };
U PBiCG U
{ {
preconditioner solver BiCGStab;
{ preconditioner DILU;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
tolerance 1e-05; tolerance 1e-07;
relTol 0;
};
cellMotionUx PCG
{
preconditioner
{
type DIC;
}
minIter 0;
maxIter 1000;
tolerance 1e-08;
relTol 0; relTol 0;
}; };
} }
PISO PISO
{ {
nCorrectors 4; nCorrectors 4;

View file

@ -5,5 +5,5 @@
cleanCase cleanCase
rm -rf VTK rm -rf VTK
rm constant/polyMesh/boundary rm -f constant/polyMesh/boundary
rm -rf constant/polyMesh/sets rm -rf constant/polyMesh/sets

View file

@ -62,7 +62,7 @@ functions
phi phi; phi phi;
// Where to load it from (if not already in solver) // Where to load it from (if not already in solver)
functionObjectLibs ("libsampling.so"); functionObjectLibs ("libcheckFunctionObjects.so");
} }
); );

View file

@ -18,12 +18,10 @@ FoamFile
solvers solvers
{ {
pcorr BiCGStab pcorr
{ {
preconditioner solver BiCGStab;
{ preconditioner DILU;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -31,12 +29,10 @@ solvers
relTol 0; relTol 0;
}; };
p BiCGStab p
{ {
preconditioner solver CG;
{ preconditioner Cholesky;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -44,12 +40,10 @@ solvers
relTol 0.0; relTol 0.0;
}; };
pFinal BiCGStab pFinal
{ {
preconditioner solver CG;
{ preconditioner Cholesky;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -57,12 +51,10 @@ solvers
relTol 0; relTol 0;
}; };
U BiCGStab U
{ {
preconditioner solver BiCGStab;
{ preconditioner DILU;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -71,6 +63,7 @@ solvers
}; };
} }
PISO PISO
{ {
nCorrectors 4; nCorrectors 4;

View file

@ -25,7 +25,7 @@ License
Author Author
Frank Bos, TU Delft. All rights reserved. Frank Bos, TU Delft. All rights reserved.
\*----------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "RBFMotionFunctionObject.H" #include "RBFMotionFunctionObject.H"
#include "addToRunTimeSelectionTable.H" #include "addToRunTimeSelectionTable.H"
@ -56,8 +56,7 @@ Foam::RBFMotionFunctionObject::RBFMotionFunctionObject
const dictionary& dict const dictionary& dict
) )
: :
functionObject(), functionObject(name),
name_(name),
time_(t), time_(t),
regionName_(polyMesh::defaultRegion), regionName_(polyMesh::defaultRegion),
rotationAmplitude_(readScalar(dict.lookup("rotationAmplitude"))), rotationAmplitude_(readScalar(dict.lookup("rotationAmplitude"))),

View file

@ -58,9 +58,6 @@ class RBFMotionFunctionObject
{ {
// Private data // Private data
//- Name
const word name_;
//- Reference to main object registry //- Reference to main object registry
const Time& time_; const Time& time_;

View file

@ -1,9 +1,9 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5-dev | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Revision: 1708 | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | Web: http://www.OpenFOAM.org | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
{ {

View file

@ -18,32 +18,29 @@ FoamFile
solvers solvers
{ {
p CG p
{ {
preconditioner solver CG;
{ preconditioner DIC;
type DIC;
}
tolerance 1e-06; tolerance 1e-06;
relTol 0; relTol 0;
}; };
pFinal CG pFinal
{ {
preconditioner solver CG;
{ preconditioner DIC;
type DIC;
}
tolerance 1e-06; tolerance 1e-06;
relTol 0; relTol 0;
}; };
U BiCGStab U
{ {
preconditioner solver BiCGStab;
{ preconditioner DILU;
type DILU;
}
tolerance 1e-7; tolerance 1e-7;
relTol 0; relTol 0;
}; };

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format binary; format binary;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -16,29 +16,33 @@ FoamFile
solvers solvers
{ {
pcorr PCG pcorr
{ {
solver PCG;
preconditioner DIC; preconditioner DIC;
tolerance 1e-02; tolerance 1e-02;
relTol 0; relTol 0;
}; };
p PCG p
{ {
solver PCG;
preconditioner DIC; preconditioner DIC;
tolerance 1e-06; tolerance 1e-06;
relTol 0.05; relTol 0.05;
}; };
pFinal PCG pFinal
{ {
solver PCG;
preconditioner DIC; preconditioner DIC;
tolerance 1e-06; tolerance 1e-06;
relTol 0; relTol 0;
}; };
U PBiCG U
{ {
solver PBiCG;
preconditioner DILU; preconditioner DILU;
tolerance 1e-05; tolerance 1e-05;
relTol 0; relTol 0;

View file

@ -1,22 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object tetFemSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
motionU ICCG 1e-06 0;
}
// ************************************************************************* //

View file

@ -0,0 +1,8 @@
#!/bin/sh
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
rm -f 0/motionGamma
( cd setMotionMovingCone ; wclean )

View file

@ -0,0 +1,11 @@
#!/bin/sh
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
# Get application name from directory
application="icoDyMFoam"
compileApplication setMotionMovingCone
runApplication setMotionMovingCone
runApplication blockMesh
runApplication $application

View file

@ -1,25 +1,18 @@
/*---------------------------------------------------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.4.1 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.openfoam.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
{ {
version 2.0; version 2.0;
format ascii; format ascii;
root "/home/hjasak/OpenFOAM/OpenFOAM-1.4.1/tutorials/icoDyMFoam";
case "movingConeMotion";
instance "constant";
local "polyMesh";
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
8 8
@ -30,49 +23,42 @@ movingWall
nFaces 85; nFaces 85;
startFace 3665; startFace 3665;
} }
farFieldMoving farFieldMoving
{ {
type patch; type patch;
nFaces 50; nFaces 50;
startFace 3750; startFace 3750;
} }
fixedWall fixedWall
{ {
type wall; type wall;
nFaces 35; nFaces 35;
startFace 3800; startFace 3800;
} }
axis axis
{ {
type empty; type empty;
nFaces 0; nFaces 0;
startFace 3835; startFace 3835;
} }
left left
{ {
type patch; type patch;
nFaces 30; nFaces 30;
startFace 3835; startFace 3835;
} }
farField farField
{ {
type patch; type patch;
nFaces 35; nFaces 35;
startFace 3865; startFace 3865;
} }
back back
{ {
type wedge; type wedge;
nFaces 1900; nFaces 1900;
startFace 3900; startFace 3900;
} }
front front
{ {
type wedge; type wedge;

View file

@ -1,4 +1,4 @@
/*---------------------------------------------------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 | | \\ / O peration | Version: 1.4 |
@ -10,12 +10,6 @@ FoamFile
{ {
version 2.0; version 2.0;
format ascii; format ascii;
root "";
case "";
instance "";
local "";
class dictionary; class dictionary;
object fvSolution; object fvSolution;
} }
@ -24,12 +18,10 @@ FoamFile
solvers solvers
{ {
pcorr PCG pcorr
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -37,12 +29,10 @@ solvers
relTol 0; relTol 0;
}; };
p PCG p
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -50,12 +40,10 @@ solvers
relTol 0.05; relTol 0.05;
}; };
pFinal PCG pFinal
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -63,32 +51,18 @@ solvers
relTol 0; relTol 0;
}; };
U PBiCG U
{ {
preconditioner solver PBiCG;
{ preconditioner DILU;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
tolerance 1e-05; tolerance 1e-05;
relTol 0; relTol 0;
}; };
cellMotionUx PCG
{
preconditioner
{
type DIC;
} }
minIter 0;
maxIter 1000;
tolerance 1e-08;
relTol 0;
};
}
PISO PISO
{ {

View file

@ -18,8 +18,9 @@ FoamFile
solvers solvers
{ {
motionU amgSolver motionU
{ {
solver amgSolver;
cycle W-cycle; cycle W-cycle;
policy AAMG; policy AAMG;
nPreSweeps 0; nPreSweeps 0;

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5-dev | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile

View file

@ -18,12 +18,10 @@ FoamFile
solvers solvers
{ {
pcorr PCG pcorr
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -31,12 +29,10 @@ solvers
relTol 0; relTol 0;
}; };
p PCG p
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -44,12 +40,10 @@ solvers
relTol 0.0; relTol 0.0;
}; };
pFinal PCG pFinal
{ {
preconditioner solver PCG;
{ preconditioner DIC;
type DIC;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;
@ -57,12 +51,10 @@ solvers
relTol 0; relTol 0;
}; };
U PBiCG U
{ {
preconditioner solver PBiCG;
{ preconditioner DILU;
type DILU;
}
minIter 0; minIter 0;
maxIter 1000; maxIter 1000;

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -1,56 +0,0 @@
#!/bin/sh
cd PTT-Exponential
./Allclean
cd ..
cd DCPP
./Allclean
cd ..
cd Giesekus
./Allclean
cd ..
cd FENE-CR
./Allclean
cd ..
cd FENE-P
./Allclean
cd ..
cd Feta-PTT
./Allclean
cd ..
cd Leonov
./Allclean
cd ..
cd Oldroyd-B
./Allclean
cd ..
cd S-MDCPP
./Allclean
cd ..
cd PTT-Linear
./Allclean
cd ..
cd WhiteMetzner/CarreauYasuda
./Allclean
cd ../..
cd XPP_DE
./Allclean
cd ..
cd XPP_SE
./Allclean
cd ..

View file

@ -1,55 +0,0 @@
#!/bin/sh
cd PTT-Exponential
./Allrun
cd ..
cd DCPP
./Allrun
cd ..
cd Giesekus
./Allrun
cd ..
cd FENE-CR
./Allrun
cd ..
cd FENE-P
./Allrun
cd ..
cd Feta-PTT
./Allrun
cd ..
cd Leonov
./Allrun
cd ..
cd Oldroyd-B
./Allrun
cd ..
cd S-MDCPP
./Allrun
cd ..
cd PTT-Linear
./Allrun
cd ..
cd White-Metzner/Carreau-Yasuda
./Allrun
cd ../..
cd XPP_DE
./Allrun
cd ..
cd XPP_SE
./Allrun
cd ..

View file

@ -4,6 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
rm -R -f sets rm -rf sets
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"

View file

@ -4,6 +4,5 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
rm -R -f sets rm -rf sets
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"

View file

@ -4,6 +4,5 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
rm -R -f sets rm -rf sets
echo "done!"

View file

@ -5,5 +5,4 @@
cleanCase cleanCase
rm -R -f sets rm -R -f sets
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"

View file

@ -4,6 +4,5 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
rm -R -f sets rm -Rf sets
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"

View file

@ -4,5 +4,4 @@
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase cleanCase
echo "done!"