Run update

This commit is contained in:
Hrvoje Jasak 2011-09-22 15:18:36 +01:00
parent 192e74ab0b
commit 135d2d3117
3 changed files with 51 additions and 40 deletions

View file

@ -1,6 +1,6 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class volScalarField; class volScalarField;
location "0";
object epsilon; object epsilon;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -22,23 +23,32 @@ boundaryField
{ {
lowerWall lowerWall
{ {
type zeroGradient; type epsilonWallFunction;
refValue uniform 0;
value uniform 14.855;
Cmu 0.09;
kappa 0.41;
E 9.8;
} }
upperWall upperWall
{ {
type zeroGradient; type epsilonWallFunction;
refValue uniform 2.37003e-310;
value uniform 14.855;
Cmu 0.09;
kappa 0.41;
E 9.8;
} }
flow flow
{ {
type cyclic; type cyclic;
value uniform 14.855;
} }
defaultFaces defaultFaces
{ {
type empty; type empty;
} }
} }
// ************************************************************************* // // ************************************************************************* //

View file

@ -1,6 +1,6 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
@ -10,6 +10,7 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class volScalarField; class volScalarField;
location "0";
object k; object k;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -22,23 +23,24 @@ boundaryField
{ {
lowerWall lowerWall
{ {
type zeroGradient; type kqRWallFunction;
value uniform 0.375;
} }
upperWall upperWall
{ {
type zeroGradient; type kqRWallFunction;
value uniform 0.375;
} }
flow flow
{ {
type cyclic; type cyclic;
value uniform 0.375;
} }
defaultFaces defaultFaces
{ {
type empty; type empty;
} }
} }
// ************************************************************************* // // ************************************************************************* //

View file

@ -1,6 +1,6 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD | | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext | | \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de | | \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | | | \\/ M anipulation | |
@ -10,39 +10,38 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class polyBoundaryMesh; class polyBoundaryMesh;
location "constant/polyMesh";
object boundary; object boundary;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
4 4
( (
lowerWall lowerWall
{ {
type wall; type wall;
nFaces 1; nFaces 1;
startFace 79; startFace 79;
} }
upperWall
upperWall {
{ type wall;
type wall; nFaces 1;
nFaces 1; startFace 80;
startFace 80; }
} flow
{
flow type cyclic;
{ nFaces 160;
type cyclic; startFace 81;
nFaces 160; featureCos 0.9;
startFace 81; }
} defaultFaces
{
defaultFaces type empty;
{ nFaces 160;
type empty; startFace 241;
nFaces 160; }
startFace 241;
}
) )
// ************************************************************************* // // ************************************************************************* //