Added save directory to mixer tutorial

This commit is contained in:
Hrvoje Jasak 2017-01-11 12:07:17 +00:00
parent bbcef01b58
commit 4348876544
2 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,51 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.0 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
impellerWall
{
type fixedValue;
value uniform (0 0 0);
}
baffleWall
{
type fixedValue;
value uniform (0 0 0);
}
insideSlider
{
type ggi;
value uniform (0 0 0);
}
outsideSlider
{
type ggi;
value uniform (0 0 0);
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View file

@ -0,0 +1,49 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.0 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField uniform 0;
boundaryField
{
impellerWall
{
type zeroGradient;
}
baffleWall
{
type zeroGradient;
}
insideSlider
{
type ggi;
value uniform 0;
}
outsideSlider
{
type ggi;
value uniform 0;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //