tutorial updates

This commit is contained in:
andy
2009-02-18 12:29:22 +00:00
parent c2c0c66fd2
commit dee5fee4db
39 changed files with 817 additions and 253 deletions

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,42 +10,47 @@ FoamFile
version 2.0;
format ascii;
class volSymmTensorField;
location "0";
object R;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
dimensions [ 0 2 -2 0 0 0 0 ];
internalField uniform (0 0 0 0 0 0);
internalField uniform ( 0 0 0 0 0 0 );
boundaryField
{
leftWall
leftWall
{
type zeroGradient;
type kQRWallFunction;
value uniform ( 0 0 0 0 0 0 );
}
rightWall
rightWall
{
type zeroGradient;
type kQRWallFunction;
value uniform ( 0 0 0 0 0 0 );
}
lowerWall
lowerWall
{
type zeroGradient;
type kQRWallFunction;
value uniform ( 0 0 0 0 0 0 );
}
atmosphere
atmosphere
{
type inletOutlet;
inletValue uniform (0 0 0 0 0 0);
value uniform (0 0 0 0 0 0);
inletValue uniform ( 0 0 0 0 0 0 );
value uniform ( 0 0 0 0 0 0 );
}
defaultFaces
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,42 +10,47 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
dimensions [ 0 2 -3 0 0 0 0 ];
internalField uniform 0.1;
boundaryField
{
leftWall
leftWall
{
type zeroGradient;
type epsilonWallFunction;
value uniform 0;
}
rightWall
rightWall
{
type zeroGradient;
type epsilonWallFunction;
value uniform 0;
}
lowerWall
lowerWall
{
type zeroGradient;
type epsilonWallFunction;
value uniform 0;
}
atmosphere
atmosphere
{
type inletOutlet;
inletValue uniform 0.1;
value uniform 0.1;
}
defaultFaces
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,42 +10,47 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
location "0";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
dimensions [ 0 2 -2 0 0 0 0 ];
internalField uniform 0.1;
boundaryField
{
leftWall
leftWall
{
type zeroGradient;
type kQRWallFunction;
value uniform 0;
}
rightWall
rightWall
{
type zeroGradient;
type kQRWallFunction;
value uniform 0;
}
lowerWall
lowerWall
{
type zeroGradient;
type kQRWallFunction;
value uniform 0;
}
atmosphere
atmosphere
{
type inletOutlet;
inletValue uniform 0.1;
value uniform 0.1;
}
defaultFaces
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View File

@ -0,0 +1,55 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object mut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [ 1 -1 -1 0 0 0 0 ];
internalField uniform 0;
boundaryField
{
leftWall
{
type mutWallFunction;
value uniform 0;
}
rightWall
{
type mutWallFunction;
value uniform 0;
}
lowerWall
{
type mutWallFunction;
value uniform 0;
}
atmosphere
{
type calculated;
value uniform 0;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //