mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Film tutorial updates
This commit is contained in:
@ -22,7 +22,7 @@ internalField uniform 0.0;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ internalField uniform 0.79;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ internalField uniform 0.21;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -9,8 +9,8 @@ FoamFile
|
|||||||
{
|
{
|
||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
location "0";
|
||||||
|
class volScalarField;
|
||||||
object T;
|
object T;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -21,16 +21,16 @@ internalField uniform 300;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
walls
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 300;
|
value uniform 300;
|
||||||
}
|
}
|
||||||
wallFilm
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -21,17 +21,14 @@ internalField uniform (0 0 0);
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type pressureInletOutletVelocity;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type directMapped;
|
type fixedValue;
|
||||||
fieldName Usf;
|
|
||||||
average ( 0 0 0 );
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -11,7 +11,7 @@ FoamFile
|
|||||||
format ascii;
|
format ascii;
|
||||||
class volScalarField;
|
class volScalarField;
|
||||||
location "0";
|
location "0";
|
||||||
object p;
|
object p_rgh;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -21,13 +21,13 @@ internalField uniform 100000;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient; // buoyantPressure;
|
type buoyantPressure;
|
||||||
}
|
}
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type zeroGradient; // buoyantPressure;
|
type buoyantPressure;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ FoamFile
|
|||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
internalField uniform 288;
|
internalField uniform 300;
|
||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
@ -27,25 +27,15 @@ boundaryField
|
|||||||
}
|
}
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform 312.3;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
|
|
||||||
right
|
filmWalls
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -10,8 +10,8 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class volVectorField;
|
class volVectorField;
|
||||||
location "0";
|
location "0/wallFilmRegion";
|
||||||
object U;
|
object Uf;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -21,12 +21,18 @@ internalField uniform (0 0 0);
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
walls
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type slip;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
wallFilm
|
|
||||||
|
filmWalls
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object deltaf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -22,7 +22,7 @@ internalField uniform 0.0;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ internalField uniform 0.79;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ internalField uniform 0.21;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
@ -9,8 +9,8 @@ FoamFile
|
|||||||
{
|
{
|
||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
location "0";
|
||||||
|
class volScalarField;
|
||||||
object T;
|
object T;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -21,16 +21,16 @@ internalField uniform 300;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
walls
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform 300;
|
value uniform 300;
|
||||||
}
|
}
|
||||||
wallFilm
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -21,17 +21,14 @@ internalField uniform (0 0 0);
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type pressureInletOutletVelocity;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type directMapped;
|
type fixedValue;
|
||||||
fieldName Usf;
|
|
||||||
average ( 0 0 0 );
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/p
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/p
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -11,7 +11,7 @@ FoamFile
|
|||||||
format ascii;
|
format ascii;
|
||||||
class volScalarField;
|
class volScalarField;
|
||||||
location "0";
|
location "0";
|
||||||
object p;
|
object p_rgh;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -21,13 +21,13 @@ internalField uniform 100000;
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
"(.*)"
|
"(sides|frontAndBack)"
|
||||||
{
|
{
|
||||||
type zeroGradient; // buoyantPressure;
|
type buoyantPressure;
|
||||||
}
|
}
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type zeroGradient; // buoyantPressure;
|
type buoyantPressure;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ FoamFile
|
|||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
internalField uniform 288;
|
internalField uniform 300;
|
||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
@ -27,25 +27,15 @@ boundaryField
|
|||||||
}
|
}
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform 312.3;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
|
|
||||||
right
|
filmWalls
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -10,8 +10,8 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class volVectorField;
|
class volVectorField;
|
||||||
location "0";
|
location "0/wallFilmRegion";
|
||||||
object U;
|
object Uf;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -21,12 +21,18 @@ internalField uniform (0 0 0);
|
|||||||
|
|
||||||
boundaryField
|
boundaryField
|
||||||
{
|
{
|
||||||
walls
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type slip;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
wallFilm
|
|
||||||
|
filmWalls
|
||||||
{
|
{
|
||||||
type fixedValue;
|
type fixedValue;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object deltaf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object H2O;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object N2;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.79;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object O2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.21;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
location "0";
|
||||||
|
class volScalarField;
|
||||||
|
object T;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 300;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
37
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U
Normal file
37
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ 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
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type pressureInletOutletVelocity;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p_rgh;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type buoyantPressure;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type buoyantPressure;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object Tf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 300;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,43 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volVectorField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object Uf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 -1 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform (0 0 0);
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type slip;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object deltaf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object H2O;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object N2;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.79;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object O2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0.21;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
location "0";
|
||||||
|
class volScalarField;
|
||||||
|
object T;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 300;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
37
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U
Normal file
37
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ 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
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type pressureInletOutletVelocity;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p
Normal file
36
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type calculated;
|
||||||
|
value $internalField;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
34
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh
Normal file
34
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0";
|
||||||
|
object p_rgh;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 100000;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
"(sides|frontAndBack)"
|
||||||
|
{
|
||||||
|
type buoyantPressure;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type buoyantPressure;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object Tf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 0 0 1 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 300;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,43 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volVectorField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object Uf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 -1 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform (0 0 0);
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type slip;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type fixedValue;
|
||||||
|
value uniform (0 0 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class volScalarField;
|
||||||
|
location "0/wallFilmRegion";
|
||||||
|
object deltaf;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
dimensions [0 1 0 0 0 0 0];
|
||||||
|
|
||||||
|
internalField uniform 0;
|
||||||
|
|
||||||
|
boundaryField
|
||||||
|
{
|
||||||
|
wallFilmFaces_top
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
|
||||||
|
filmWalls
|
||||||
|
{
|
||||||
|
type zeroGradient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -4,10 +4,11 @@
|
|||||||
|
|
||||||
cleanCase
|
cleanCase
|
||||||
|
|
||||||
rm -rf system/wallFilmRegion
|
|
||||||
rm -rf constant/wallFilmRegion
|
rm -rf constant/wallFilmRegion
|
||||||
rm -rf 0
|
rm -rf 0
|
||||||
cp -rf 0.org 0
|
cp -rf 0.org 0
|
||||||
|
|
||||||
rm -f *.obj
|
rm -f *.obj
|
||||||
|
|
||||||
|
#rm -rf VTK
|
||||||
|
|
||||||
11
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun
Executable file
11
tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
|
|
||||||
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|
||||||
|
./Allrun.pre
|
||||||
|
|
||||||
|
application=`getApplication`
|
||||||
|
|
||||||
|
runApplication $application
|
||||||
|
|
||||||
@ -1,15 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|
||||||
rm -fr log.*
|
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
|
|
||||||
runApplication setSet -batch wallFilmRegion.setSet
|
runApplication setSet -batch wallFilmRegion.setSet
|
||||||
mv log.setSet log.wallFilmRegion.setSet
|
mv log.setSet log.wallFilmRegion.setSet
|
||||||
|
|
||||||
runApplication setsToZones -noFlipMap
|
|
||||||
mv log.setsToZones log.setsToZones.primaryRegion
|
|
||||||
|
|
||||||
runApplication extrudeToRegionMesh -overwrite
|
runApplication extrudeToRegionMesh -overwrite
|
||||||
|
|
||||||
@ -15,6 +15,6 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
solvePrimaryRegion false; // true;
|
solvePrimaryRegion true; // false; // true;
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -11,16 +11,19 @@ FoamFile
|
|||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
location "constant";
|
||||||
object RASProperties;
|
object chemistryProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
RASModel kEpsilon;
|
psiChemistryModel ODEChemistryModel<gasThermoPhysics>;
|
||||||
|
|
||||||
turbulence on;
|
chemistry off;
|
||||||
|
|
||||||
printCoeffs on;
|
turbulentReaction off;
|
||||||
|
|
||||||
|
chemistrySolver noChemistrySolver;
|
||||||
|
|
||||||
|
initialChemicalTimeStep 1e-07;
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
/* vim: set filetype=cpp : */
|
|
||||||
@ -11,11 +11,11 @@ FoamFile
|
|||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
location "constant";
|
||||||
object turbulenceProperties;
|
object combustionProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
simulationType laminar;
|
combustionModel none;
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -3,7 +3,8 @@ species
|
|||||||
O2
|
O2
|
||||||
H2O
|
H2O
|
||||||
N2
|
N2
|
||||||
);
|
)
|
||||||
|
;
|
||||||
|
|
||||||
reactions
|
reactions
|
||||||
{}
|
{}
|
||||||
@ -16,7 +16,7 @@ FoamFile
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
dimensions [0 1 -2 0 0 0 0];
|
dimensions [0 1 -2 0 0 0 0];
|
||||||
value (0 0 -9.81);
|
value (0 -9.81 0);
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 1.7.1 |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
location "constant";
|
||||||
|
object scalarListList;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// (x y z) (u v w) d rho mDot T cp (Y0..Y2) (Yg0..YgN) (Yl0..YlN) (Ys0..YsN)
|
||||||
|
(
|
||||||
|
(0 1.95 -0.2) (0 -5 0) 0.001 1000 0.002 300 4200 (1)
|
||||||
|
(0 1.95 0) (0 -5 0) 0.001 1000 0.002 300 4200 (1)
|
||||||
|
(0 1.95 0.2) (0 -5 0) 0.001 1000 0.002 300 4200 (1)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -20,21 +20,21 @@ convertToMeters 0.1;
|
|||||||
vertices
|
vertices
|
||||||
(
|
(
|
||||||
//back
|
//back
|
||||||
( 0 0 0)
|
( 0 0 0)
|
||||||
( 1 0 0)
|
( 1 0 0)
|
||||||
( 0 0.5 0)
|
( 0 0.5 0)
|
||||||
( 1 0.5 0)
|
( 1 0.5 0)
|
||||||
|
|
||||||
// front
|
// front
|
||||||
( 0 0 0.2)
|
( 0 0 1)
|
||||||
( 1 0 0.2)
|
( 1 0 1)
|
||||||
( 0 0.5 0.2)
|
( 0 0.5 1)
|
||||||
( 1 0.5 0.2)
|
( 1 0.5 1)
|
||||||
);
|
);
|
||||||
|
|
||||||
blocks
|
blocks
|
||||||
(
|
(
|
||||||
hex (0 1 3 2 4 5 7 6 ) (20 30 1) simpleGrading (1 1 1)
|
hex (0 1 3 2 4 5 7 6 ) (20 10 20) simpleGrading (1 1 1)
|
||||||
);
|
);
|
||||||
|
|
||||||
edges
|
edges
|
||||||
@ -43,7 +43,7 @@ edges
|
|||||||
|
|
||||||
patches
|
patches
|
||||||
(
|
(
|
||||||
wall walls
|
patch sides
|
||||||
(
|
(
|
||||||
(1 5 7 3)
|
(1 5 7 3)
|
||||||
(4 5 7 6)
|
(4 5 7 6)
|
||||||
@ -0,0 +1,242 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class polyBoundaryMesh;
|
||||||
|
location "constant/polyMesh";
|
||||||
|
object boundary;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
2
|
||||||
|
(
|
||||||
|
sides
|
||||||
|
{
|
||||||
|
type patch;
|
||||||
|
nFaces 1400;
|
||||||
|
startFace 11200;
|
||||||
|
}
|
||||||
|
region0_to_wallFilmRegion_wallFilmFaces
|
||||||
|
{
|
||||||
|
type directMappedWall;
|
||||||
|
nFaces 200;
|
||||||
|
startFace 12600;
|
||||||
|
sampleMode nearestPatchFace;
|
||||||
|
sampleRegion wallFilmRegion;
|
||||||
|
samplePatch region0_to_wallFilmRegion_wallFilmFaces;
|
||||||
|
offsets
|
||||||
|
200
|
||||||
|
(
|
||||||
|
(-4.33680869e-19 -4.33680869e-19 -0)
|
||||||
|
(-4.33680869e-19 -8.67361738e-19 -0)
|
||||||
|
(-4.33680869e-19 -1.734723476e-18 -0)
|
||||||
|
(-0 3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-4.33680869e-19 -3.469446952e-18 -0)
|
||||||
|
(-4.33680869e-19 -6.938893904e-18 -0)
|
||||||
|
(-4.33680869e-19 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-4.33680869e-19 -0 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(-1.734723476e-18 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-8.67361738e-19 -0 -0)
|
||||||
|
(-8.67361738e-19 3.469446952e-18 -0)
|
||||||
|
(-2.602085214e-18 -3.469446952e-18 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-8.67361738e-19 -6.938893904e-18 -0)
|
||||||
|
(-0 6.938893904e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(1.734723476e-18 -0 -0)
|
||||||
|
(-1.734723476e-18 -0 -0)
|
||||||
|
(-0 -3.469446952e-18 -0)
|
||||||
|
(1.734723476e-18 6.938893904e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(1.734723476e-18 -0 -0)
|
||||||
|
(3.469446952e-18 6.938893904e-18 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-1.734723476e-18 -6.938893904e-18 -0)
|
||||||
|
(3.469446952e-18 6.938893904e-18 -0)
|
||||||
|
(-3.469446952e-18 4.33680869e-19 -0)
|
||||||
|
(-0 -1.734723476e-18 -0)
|
||||||
|
(-0 1.734723476e-18 -0)
|
||||||
|
(3.469446952e-18 3.469446952e-18 -0)
|
||||||
|
(3.469446952e-18 3.469446952e-18 -0)
|
||||||
|
(-0 3.469446952e-18 -0)
|
||||||
|
(-3.469446952e-18 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-3.469446952e-18 -0 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(-0 -8.67361738e-19 -0)
|
||||||
|
(-3.469446952e-18 -0 -0)
|
||||||
|
(-3.469446952e-18 -3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-3.469446952e-18 -6.938893904e-18 -0)
|
||||||
|
(-3.469446952e-18 6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -1.387778781e-17 -0)
|
||||||
|
(-3.469446952e-18 -4.33680869e-19 -0)
|
||||||
|
(-3.469446952e-18 1.734723476e-18 -0)
|
||||||
|
(3.469446952e-18 -0 -0)
|
||||||
|
(-0 3.469446952e-18 -0)
|
||||||
|
(-3.469446952e-18 -3.469446952e-18 -0)
|
||||||
|
(-3.469446952e-18 -1.040834086e-17 -0)
|
||||||
|
(3.469446952e-18 6.938893904e-18 -0)
|
||||||
|
(-3.469446952e-18 -0 -0)
|
||||||
|
(-3.469446952e-18 -6.938893904e-18 -0)
|
||||||
|
(3.469446952e-18 -0 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(6.938893904e-18 8.67361738e-19 -0)
|
||||||
|
(-6.938893904e-18 -1.734723476e-18 -0)
|
||||||
|
(-6.938893904e-18 -3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -1.387778781e-17 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(6.938893904e-18 1.734723476e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-0 6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -2.602085214e-18 -0)
|
||||||
|
(6.938893904e-18 3.469446952e-18 -0)
|
||||||
|
(6.938893904e-18 3.469446952e-18 -0)
|
||||||
|
(6.938893904e-18 -3.469446952e-18 -0)
|
||||||
|
(6.938893904e-18 -3.469446952e-18 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -4.33680869e-19 -0)
|
||||||
|
(6.938893904e-18 8.67361738e-19 -0)
|
||||||
|
(-6.938893904e-18 -1.734723476e-18 -0)
|
||||||
|
(-1.387778781e-17 -3.469446952e-18 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -1.387778781e-17 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 1.734723476e-18 -0)
|
||||||
|
(6.938893904e-18 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-0 6.938893904e-18 -0)
|
||||||
|
(6.938893904e-18 -0 -0)
|
||||||
|
(-6.938893904e-18 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-6.938893904e-18 -2.602085214e-18 -0)
|
||||||
|
(-0 3.469446952e-18 -0)
|
||||||
|
(-6.938893904e-18 3.469446952e-18 -0)
|
||||||
|
(-6.938893904e-18 -3.469446952e-18 -0)
|
||||||
|
(-0 -3.469446952e-18 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.081668171e-17 -4.33680869e-19 -0)
|
||||||
|
(-6.938893904e-18 8.67361738e-19 -0)
|
||||||
|
(6.938893904e-18 -1.734723476e-18 -0)
|
||||||
|
(-0 -3.469446952e-18 -0)
|
||||||
|
(6.938893904e-18 -0 -0)
|
||||||
|
(1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-0 -1.387778781e-17 -0)
|
||||||
|
(-1.387778781e-17 -4.33680869e-19 -0)
|
||||||
|
(-0 8.67361738e-19 -0)
|
||||||
|
(-0 -1.734723476e-18 -0)
|
||||||
|
(-1.387778781e-17 -3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -1.387778781e-17 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 1.734723476e-18 -0)
|
||||||
|
(1.387778781e-17 -3.469446952e-18 -0)
|
||||||
|
(-0 -3.469446952e-18 -0)
|
||||||
|
(-0 3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-1.387778781e-17 6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-0 -1.387778781e-17 -0)
|
||||||
|
(-1.387778781e-17 -4.33680869e-19 -0)
|
||||||
|
(1.387778781e-17 8.67361738e-19 -0)
|
||||||
|
(-1.387778781e-17 -1.734723476e-18 -0)
|
||||||
|
(-0 -3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -0 -0)
|
||||||
|
(-2.775557562e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -1.387778781e-17 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(-0 8.67361738e-19 -0)
|
||||||
|
(-1.387778781e-17 -1.734723476e-18 -0)
|
||||||
|
(-1.387778781e-17 -3.469446952e-18 -0)
|
||||||
|
(1.387778781e-17 -0 -0)
|
||||||
|
(1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -1.387778781e-17 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(-1.387778781e-17 -8.67361738e-19 -0)
|
||||||
|
(-0 1.734723476e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-1.387778781e-17 -1.040834086e-17 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(1.387778781e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -1.387778781e-17 -0)
|
||||||
|
(-0 -4.33680869e-19 -0)
|
||||||
|
(1.387778781e-17 8.67361738e-19 -0)
|
||||||
|
(1.387778781e-17 -1.734723476e-18 -0)
|
||||||
|
(-2.775557562e-17 -3.469446952e-18 -0)
|
||||||
|
(-1.387778781e-17 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -6.938893904e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -1.387778781e-17 -0)
|
||||||
|
(-2.775557562e-17 -4.33680869e-19 -0)
|
||||||
|
(1.387778781e-17 8.67361738e-19 -0)
|
||||||
|
(-1.387778781e-17 -1.734723476e-18 -0)
|
||||||
|
(-1.387778781e-17 -3.469446952e-18 -0)
|
||||||
|
(-0 -0 -0)
|
||||||
|
(-0 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-2.775557562e-17 -0 -0)
|
||||||
|
(-1.387778781e-17 -6.938893904e-18 -0)
|
||||||
|
(-1.387778781e-17 -1.387778781e-17 -0)
|
||||||
|
)
|
||||||
|
;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class regIOobject;
|
||||||
|
location "constant/polyMesh";
|
||||||
|
object cellZones;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
0
|
||||||
|
()
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,232 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class regIOobject;
|
||||||
|
location "constant/polyMesh";
|
||||||
|
object faceZones;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
1
|
||||||
|
(
|
||||||
|
wallFilmFaces
|
||||||
|
{
|
||||||
|
type faceZone;
|
||||||
|
faceLabels List<label>
|
||||||
|
200
|
||||||
|
(
|
||||||
|
12600
|
||||||
|
12601
|
||||||
|
12602
|
||||||
|
12603
|
||||||
|
12604
|
||||||
|
12605
|
||||||
|
12606
|
||||||
|
12607
|
||||||
|
12608
|
||||||
|
12609
|
||||||
|
12610
|
||||||
|
12611
|
||||||
|
12612
|
||||||
|
12613
|
||||||
|
12614
|
||||||
|
12615
|
||||||
|
12616
|
||||||
|
12617
|
||||||
|
12618
|
||||||
|
12619
|
||||||
|
12620
|
||||||
|
12621
|
||||||
|
12622
|
||||||
|
12623
|
||||||
|
12624
|
||||||
|
12625
|
||||||
|
12626
|
||||||
|
12627
|
||||||
|
12628
|
||||||
|
12629
|
||||||
|
12630
|
||||||
|
12631
|
||||||
|
12632
|
||||||
|
12633
|
||||||
|
12634
|
||||||
|
12635
|
||||||
|
12636
|
||||||
|
12637
|
||||||
|
12638
|
||||||
|
12639
|
||||||
|
12640
|
||||||
|
12641
|
||||||
|
12642
|
||||||
|
12643
|
||||||
|
12644
|
||||||
|
12645
|
||||||
|
12646
|
||||||
|
12647
|
||||||
|
12648
|
||||||
|
12649
|
||||||
|
12650
|
||||||
|
12651
|
||||||
|
12652
|
||||||
|
12653
|
||||||
|
12654
|
||||||
|
12655
|
||||||
|
12656
|
||||||
|
12657
|
||||||
|
12658
|
||||||
|
12659
|
||||||
|
12660
|
||||||
|
12661
|
||||||
|
12662
|
||||||
|
12663
|
||||||
|
12664
|
||||||
|
12665
|
||||||
|
12666
|
||||||
|
12667
|
||||||
|
12668
|
||||||
|
12669
|
||||||
|
12670
|
||||||
|
12671
|
||||||
|
12672
|
||||||
|
12673
|
||||||
|
12674
|
||||||
|
12675
|
||||||
|
12676
|
||||||
|
12677
|
||||||
|
12678
|
||||||
|
12679
|
||||||
|
12680
|
||||||
|
12681
|
||||||
|
12682
|
||||||
|
12683
|
||||||
|
12684
|
||||||
|
12685
|
||||||
|
12686
|
||||||
|
12687
|
||||||
|
12688
|
||||||
|
12689
|
||||||
|
12690
|
||||||
|
12691
|
||||||
|
12692
|
||||||
|
12693
|
||||||
|
12694
|
||||||
|
12695
|
||||||
|
12696
|
||||||
|
12697
|
||||||
|
12698
|
||||||
|
12699
|
||||||
|
12700
|
||||||
|
12701
|
||||||
|
12702
|
||||||
|
12703
|
||||||
|
12704
|
||||||
|
12705
|
||||||
|
12706
|
||||||
|
12707
|
||||||
|
12708
|
||||||
|
12709
|
||||||
|
12710
|
||||||
|
12711
|
||||||
|
12712
|
||||||
|
12713
|
||||||
|
12714
|
||||||
|
12715
|
||||||
|
12716
|
||||||
|
12717
|
||||||
|
12718
|
||||||
|
12719
|
||||||
|
12720
|
||||||
|
12721
|
||||||
|
12722
|
||||||
|
12723
|
||||||
|
12724
|
||||||
|
12725
|
||||||
|
12726
|
||||||
|
12727
|
||||||
|
12728
|
||||||
|
12729
|
||||||
|
12730
|
||||||
|
12731
|
||||||
|
12732
|
||||||
|
12733
|
||||||
|
12734
|
||||||
|
12735
|
||||||
|
12736
|
||||||
|
12737
|
||||||
|
12738
|
||||||
|
12739
|
||||||
|
12740
|
||||||
|
12741
|
||||||
|
12742
|
||||||
|
12743
|
||||||
|
12744
|
||||||
|
12745
|
||||||
|
12746
|
||||||
|
12747
|
||||||
|
12748
|
||||||
|
12749
|
||||||
|
12750
|
||||||
|
12751
|
||||||
|
12752
|
||||||
|
12753
|
||||||
|
12754
|
||||||
|
12755
|
||||||
|
12756
|
||||||
|
12757
|
||||||
|
12758
|
||||||
|
12759
|
||||||
|
12760
|
||||||
|
12761
|
||||||
|
12762
|
||||||
|
12763
|
||||||
|
12764
|
||||||
|
12765
|
||||||
|
12766
|
||||||
|
12767
|
||||||
|
12768
|
||||||
|
12769
|
||||||
|
12770
|
||||||
|
12771
|
||||||
|
12772
|
||||||
|
12773
|
||||||
|
12774
|
||||||
|
12775
|
||||||
|
12776
|
||||||
|
12777
|
||||||
|
12778
|
||||||
|
12779
|
||||||
|
12780
|
||||||
|
12781
|
||||||
|
12782
|
||||||
|
12783
|
||||||
|
12784
|
||||||
|
12785
|
||||||
|
12786
|
||||||
|
12787
|
||||||
|
12788
|
||||||
|
12789
|
||||||
|
12790
|
||||||
|
12791
|
||||||
|
12792
|
||||||
|
12793
|
||||||
|
12794
|
||||||
|
12795
|
||||||
|
12796
|
||||||
|
12797
|
||||||
|
12798
|
||||||
|
12799
|
||||||
|
)
|
||||||
|
;
|
||||||
|
flipMap List<bool> 200{0};
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class regIOobject;
|
||||||
|
location "constant/polyMesh";
|
||||||
|
object pointZones;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
0
|
||||||
|
()
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,223 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class faceSet;
|
||||||
|
location "constant/polyMesh/sets";
|
||||||
|
object wallFilmFaces;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
200
|
||||||
|
(
|
||||||
|
12600
|
||||||
|
12601
|
||||||
|
12602
|
||||||
|
12603
|
||||||
|
12604
|
||||||
|
12605
|
||||||
|
12606
|
||||||
|
12607
|
||||||
|
12608
|
||||||
|
12609
|
||||||
|
12610
|
||||||
|
12611
|
||||||
|
12612
|
||||||
|
12613
|
||||||
|
12614
|
||||||
|
12615
|
||||||
|
12616
|
||||||
|
12617
|
||||||
|
12618
|
||||||
|
12619
|
||||||
|
12620
|
||||||
|
12621
|
||||||
|
12622
|
||||||
|
12623
|
||||||
|
12624
|
||||||
|
12625
|
||||||
|
12626
|
||||||
|
12627
|
||||||
|
12628
|
||||||
|
12629
|
||||||
|
12630
|
||||||
|
12631
|
||||||
|
12632
|
||||||
|
12633
|
||||||
|
12634
|
||||||
|
12635
|
||||||
|
12636
|
||||||
|
12637
|
||||||
|
12638
|
||||||
|
12639
|
||||||
|
12640
|
||||||
|
12641
|
||||||
|
12642
|
||||||
|
12643
|
||||||
|
12644
|
||||||
|
12645
|
||||||
|
12646
|
||||||
|
12647
|
||||||
|
12648
|
||||||
|
12649
|
||||||
|
12650
|
||||||
|
12651
|
||||||
|
12652
|
||||||
|
12653
|
||||||
|
12654
|
||||||
|
12655
|
||||||
|
12656
|
||||||
|
12657
|
||||||
|
12658
|
||||||
|
12659
|
||||||
|
12660
|
||||||
|
12661
|
||||||
|
12662
|
||||||
|
12663
|
||||||
|
12664
|
||||||
|
12665
|
||||||
|
12666
|
||||||
|
12667
|
||||||
|
12668
|
||||||
|
12669
|
||||||
|
12670
|
||||||
|
12671
|
||||||
|
12672
|
||||||
|
12673
|
||||||
|
12674
|
||||||
|
12675
|
||||||
|
12676
|
||||||
|
12677
|
||||||
|
12678
|
||||||
|
12679
|
||||||
|
12680
|
||||||
|
12681
|
||||||
|
12682
|
||||||
|
12683
|
||||||
|
12684
|
||||||
|
12685
|
||||||
|
12686
|
||||||
|
12687
|
||||||
|
12688
|
||||||
|
12689
|
||||||
|
12690
|
||||||
|
12691
|
||||||
|
12692
|
||||||
|
12693
|
||||||
|
12694
|
||||||
|
12695
|
||||||
|
12696
|
||||||
|
12697
|
||||||
|
12698
|
||||||
|
12699
|
||||||
|
12700
|
||||||
|
12701
|
||||||
|
12702
|
||||||
|
12703
|
||||||
|
12704
|
||||||
|
12705
|
||||||
|
12706
|
||||||
|
12707
|
||||||
|
12708
|
||||||
|
12709
|
||||||
|
12710
|
||||||
|
12711
|
||||||
|
12712
|
||||||
|
12713
|
||||||
|
12714
|
||||||
|
12715
|
||||||
|
12716
|
||||||
|
12717
|
||||||
|
12718
|
||||||
|
12719
|
||||||
|
12720
|
||||||
|
12721
|
||||||
|
12722
|
||||||
|
12723
|
||||||
|
12724
|
||||||
|
12725
|
||||||
|
12726
|
||||||
|
12727
|
||||||
|
12728
|
||||||
|
12729
|
||||||
|
12730
|
||||||
|
12731
|
||||||
|
12732
|
||||||
|
12733
|
||||||
|
12734
|
||||||
|
12735
|
||||||
|
12736
|
||||||
|
12737
|
||||||
|
12738
|
||||||
|
12739
|
||||||
|
12740
|
||||||
|
12741
|
||||||
|
12742
|
||||||
|
12743
|
||||||
|
12744
|
||||||
|
12745
|
||||||
|
12746
|
||||||
|
12747
|
||||||
|
12748
|
||||||
|
12749
|
||||||
|
12750
|
||||||
|
12751
|
||||||
|
12752
|
||||||
|
12753
|
||||||
|
12754
|
||||||
|
12755
|
||||||
|
12756
|
||||||
|
12757
|
||||||
|
12758
|
||||||
|
12759
|
||||||
|
12760
|
||||||
|
12761
|
||||||
|
12762
|
||||||
|
12763
|
||||||
|
12764
|
||||||
|
12765
|
||||||
|
12766
|
||||||
|
12767
|
||||||
|
12768
|
||||||
|
12769
|
||||||
|
12770
|
||||||
|
12771
|
||||||
|
12772
|
||||||
|
12773
|
||||||
|
12774
|
||||||
|
12775
|
||||||
|
12776
|
||||||
|
12777
|
||||||
|
12778
|
||||||
|
12779
|
||||||
|
12780
|
||||||
|
12781
|
||||||
|
12782
|
||||||
|
12783
|
||||||
|
12784
|
||||||
|
12785
|
||||||
|
12786
|
||||||
|
12787
|
||||||
|
12788
|
||||||
|
12789
|
||||||
|
12790
|
||||||
|
12791
|
||||||
|
12792
|
||||||
|
12793
|
||||||
|
12794
|
||||||
|
12795
|
||||||
|
12796
|
||||||
|
12797
|
||||||
|
12798
|
||||||
|
12799
|
||||||
|
)
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,132 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 1.7.1 |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object blockMeshDict;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
convertToMeters 1;
|
||||||
|
|
||||||
|
vertices
|
||||||
|
(
|
||||||
|
(0.5 0 -0.5)
|
||||||
|
(1 0 -0.5)
|
||||||
|
(2 0 -0.5)
|
||||||
|
(2 0.707107 -0.5)
|
||||||
|
(0.707107 0.707107 -0.5)
|
||||||
|
(0.353553 0.353553 -0.5)
|
||||||
|
(2 2 -0.5)
|
||||||
|
(0.707107 2 -0.5)
|
||||||
|
(0 2 -0.5)
|
||||||
|
(0 1 -0.5)
|
||||||
|
(0 0.5 -0.5)
|
||||||
|
(-0.5 0 -0.5)
|
||||||
|
(-1 0 -0.5)
|
||||||
|
(-2 0 -0.5)
|
||||||
|
(-2 0.707107 -0.5)
|
||||||
|
(-0.707107 0.707107 -0.5)
|
||||||
|
(-0.353553 0.353553 -0.5)
|
||||||
|
(-2 2 -0.5)
|
||||||
|
(-0.707107 2 -0.5)
|
||||||
|
(0.5 0 0.5)
|
||||||
|
(1 0 0.5)
|
||||||
|
(2 0 0.5)
|
||||||
|
(2 0.707107 0.5)
|
||||||
|
(0.707107 0.707107 0.5)
|
||||||
|
(0.353553 0.353553 0.5)
|
||||||
|
(2 2 0.5)
|
||||||
|
(0.707107 2 0.5)
|
||||||
|
(0 2 0.5)
|
||||||
|
(0 1 0.5)
|
||||||
|
(0 0.5 0.5)
|
||||||
|
(-0.5 0 0.5)
|
||||||
|
(-1 0 0.5)
|
||||||
|
(-2 0 0.5)
|
||||||
|
(-2 0.707107 0.5)
|
||||||
|
(-0.707107 0.707107 0.5)
|
||||||
|
(-0.353553 0.353553 0.5)
|
||||||
|
(-2 2 0.5)
|
||||||
|
(-0.707107 2 0.5)
|
||||||
|
);
|
||||||
|
|
||||||
|
blocks
|
||||||
|
(
|
||||||
|
hex (5 4 9 10 24 23 28 29) (10 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (0 1 4 5 19 20 23 24) (10 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (1 2 3 4 20 21 22 23) (20 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (4 3 6 7 23 22 25 26) (20 20 11) simpleGrading (1 1 1)
|
||||||
|
hex (9 4 7 8 28 23 26 27) (10 20 11) simpleGrading (1 1 1)
|
||||||
|
hex (15 16 10 9 34 35 29 28) (10 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (12 11 16 15 31 30 35 34) (10 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (13 12 15 14 32 31 34 33) (20 10 11) simpleGrading (1 1 1)
|
||||||
|
hex (14 15 18 17 33 34 37 36) (20 20 11) simpleGrading (1 1 1)
|
||||||
|
hex (15 9 8 18 34 28 27 37) (10 20 11) simpleGrading (1 1 1)
|
||||||
|
);
|
||||||
|
|
||||||
|
edges
|
||||||
|
(
|
||||||
|
arc 0 5 (0.469846 0.17101 -0.5)
|
||||||
|
arc 5 10 (0.17101 0.469846 -0.5)
|
||||||
|
arc 1 4 (0.939693 0.34202 -0.5)
|
||||||
|
arc 4 9 (0.34202 0.939693 -0.5)
|
||||||
|
arc 19 24 (0.469846 0.17101 0.5)
|
||||||
|
arc 24 29 (0.17101 0.469846 0.5)
|
||||||
|
arc 20 23 (0.939693 0.34202 0.5)
|
||||||
|
arc 23 28 (0.34202 0.939693 0.5)
|
||||||
|
arc 11 16 (-0.469846 0.17101 -0.5)
|
||||||
|
arc 16 10 (-0.17101 0.469846 -0.5)
|
||||||
|
arc 12 15 (-0.939693 0.34202 -0.5)
|
||||||
|
arc 15 9 (-0.34202 0.939693 -0.5)
|
||||||
|
arc 30 35 (-0.469846 0.17101 0.5)
|
||||||
|
arc 35 29 (-0.17101 0.469846 0.5)
|
||||||
|
arc 31 34 (-0.939693 0.34202 0.5)
|
||||||
|
arc 34 28 (-0.34202 0.939693 0.5)
|
||||||
|
);
|
||||||
|
|
||||||
|
defaultPatch
|
||||||
|
{
|
||||||
|
name frontAndBack;
|
||||||
|
type wall;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
patches
|
||||||
|
(
|
||||||
|
wall filmWalls
|
||||||
|
(
|
||||||
|
(0 1 20 19)
|
||||||
|
(1 2 21 20)
|
||||||
|
(12 11 30 31)
|
||||||
|
(13 12 31 32)
|
||||||
|
(10 5 24 29)
|
||||||
|
(5 0 19 24)
|
||||||
|
(16 10 29 35)
|
||||||
|
(11 16 35 30)
|
||||||
|
)
|
||||||
|
patch sides
|
||||||
|
(
|
||||||
|
(2 3 22 21)
|
||||||
|
(3 6 25 22)
|
||||||
|
(7 8 27 26)
|
||||||
|
(6 7 26 25)
|
||||||
|
(8 18 37 27)
|
||||||
|
(18 17 36 37)
|
||||||
|
(14 13 32 33)
|
||||||
|
(17 14 33 36)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
mergePatchPairs
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
File diff suppressed because it is too large
Load Diff
@ -18,27 +18,18 @@ FoamFile
|
|||||||
solution
|
solution
|
||||||
{
|
{
|
||||||
active true;
|
active true;
|
||||||
coupled true;
|
coupled no;
|
||||||
transient yes;
|
transient yes;
|
||||||
cellValueSourceCorrection on;
|
cellValueSourceCorrection no;
|
||||||
|
|
||||||
sourceTerms
|
sourceTerms
|
||||||
{
|
{
|
||||||
rho
|
schemes
|
||||||
{
|
{
|
||||||
semiImplicit false;
|
rho explicit 1;
|
||||||
}
|
U explicit 1;
|
||||||
U
|
Yi explicit 1;
|
||||||
{
|
hs explicit 1;
|
||||||
semiImplicit false;
|
|
||||||
}
|
|
||||||
Yi
|
|
||||||
{
|
|
||||||
semiImplicit false;
|
|
||||||
}
|
|
||||||
hs
|
|
||||||
{
|
|
||||||
semiImplicit false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,7 +46,7 @@ solution
|
|||||||
integrationSchemes
|
integrationSchemes
|
||||||
{
|
{
|
||||||
U Euler;
|
U Euler;
|
||||||
T Analytical;
|
T analytical;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,88 +75,62 @@ constantProperties
|
|||||||
constantVolume false;
|
constantVolume false;
|
||||||
}
|
}
|
||||||
|
|
||||||
particleForces
|
|
||||||
{
|
|
||||||
gravity on;
|
|
||||||
virtualMass off;
|
|
||||||
pressureGradient off;
|
|
||||||
paramagnetic off;
|
|
||||||
}
|
|
||||||
|
|
||||||
subModels
|
subModels
|
||||||
{
|
{
|
||||||
InjectionModel ConeInjectionMP;
|
particleForces
|
||||||
|
{
|
||||||
|
sphereDrag;
|
||||||
|
gravity;
|
||||||
|
}
|
||||||
|
|
||||||
DragModel SphereDrag;
|
injectionModel reactingLookupTableInjection;
|
||||||
|
|
||||||
DispersionModel none;
|
dispersionModel none;
|
||||||
|
|
||||||
PatchInteractionModel StandardWallInteraction;
|
patchInteractionModel standardWallInteraction;
|
||||||
|
|
||||||
HeatTransferModel none;
|
heatTransferModel none;
|
||||||
|
|
||||||
CompositionModel SinglePhaseMixture;
|
compositionModel singlePhaseMixture;
|
||||||
|
|
||||||
PhaseChangeModel none;
|
phaseChangeModel none;
|
||||||
|
|
||||||
PostProcessingModel none;
|
postProcessingModel none;
|
||||||
|
|
||||||
CollisionModel none;
|
surfaceFilmModel thermoSurfaceFilm;
|
||||||
|
|
||||||
SurfaceFilmModel ThermoSurfaceFilm; // none;
|
|
||||||
|
|
||||||
radiation off;
|
radiation off;
|
||||||
|
|
||||||
ConeInjectionMPCoeffs
|
reactingLookupTableInjectionCoeffs
|
||||||
{
|
{
|
||||||
SOI 0.000;
|
massTotal 0.5;
|
||||||
duration 20.000;
|
|
||||||
positionAxis
|
|
||||||
(
|
|
||||||
(0.3 0.35 1.45) (0 0 -1)
|
|
||||||
(0.6 0.35 1.45) (0 0 -1)
|
|
||||||
);
|
|
||||||
massTotal 10;
|
|
||||||
parcelsPerInjector 20000;
|
|
||||||
parcelsPerSecond 500;
|
|
||||||
parcelBasisType mass;
|
parcelBasisType mass;
|
||||||
flowRateProfile constant 0.1;
|
SOI 0;
|
||||||
Umag constant 3.0;
|
inputFile "parcelInjectionProperties";
|
||||||
thetaInner constant 0;
|
duration 20.0;
|
||||||
thetaOuter constant 45;
|
parcelsPerSecond 50;
|
||||||
|
|
||||||
sizeDistribution
|
|
||||||
{
|
|
||||||
pdfType RosinRammler;
|
|
||||||
RosinRammlerDistribution
|
|
||||||
{
|
|
||||||
minValue 5e-04;
|
|
||||||
maxValue 0.0012;
|
|
||||||
d 7.5e-05;
|
|
||||||
n 0.5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StandardWallInteractionCoeffs
|
standardWallInteractionCoeffs
|
||||||
{
|
{
|
||||||
type rebound;
|
type rebound;
|
||||||
}
|
}
|
||||||
|
|
||||||
SinglePhaseMixtureCoeffs
|
singlePhaseMixtureCoeffs
|
||||||
{
|
{
|
||||||
phases
|
phases
|
||||||
(
|
(
|
||||||
liquid
|
liquid
|
||||||
{
|
{
|
||||||
H2O 1;
|
H2O 1;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
ThermoSurfaceFilmCoeffs
|
thermoSurfaceFilmCoeffs
|
||||||
{}
|
{
|
||||||
|
interactionType absorb;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -18,68 +18,44 @@ FoamFile
|
|||||||
//surfaceFilmModel kinematicSingleLayer;
|
//surfaceFilmModel kinematicSingleLayer;
|
||||||
surfaceFilmModel thermoSingleLayer;
|
surfaceFilmModel thermoSingleLayer;
|
||||||
|
|
||||||
filmRegionName wallFilmRegion;
|
regionName wallFilmRegion;
|
||||||
|
|
||||||
active true;
|
active true;
|
||||||
|
|
||||||
kinematicSingleLayerCoeffs
|
kinematicSingleLayerCoeffs
|
||||||
{
|
{
|
||||||
thermoModel constant;
|
thermoModel constant;
|
||||||
|
|
||||||
Cf 0.005;
|
|
||||||
|
|
||||||
rho0 rho0 [1 -3 0 0 0] 1000;
|
rho0 rho0 [1 -3 0 0 0] 1000;
|
||||||
mu0 mu0 [1 -1 -1 0 0] 1e-3;
|
mu0 mu0 [1 -1 -1 0 0] 1e-3;
|
||||||
sigma0 sigma0 [1 0 -2 0 0] 0.07;
|
sigma0 sigma0 [1 0 -2 0 0] 0.07;
|
||||||
|
|
||||||
injectionModel remove; // none; // cloudInjection;
|
deltaStable deltaStable [0 1 0 0 0] 0;
|
||||||
|
Cf 0.005;
|
||||||
|
|
||||||
|
injectionModels ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
thermoSingleLayerCoeffs
|
thermoSingleLayerCoeffs
|
||||||
{
|
{
|
||||||
thermoModel constant;
|
thermoModel singleComponent;
|
||||||
liquid H2O;
|
liquid H2O;
|
||||||
|
|
||||||
|
deltaStable deltaStable [0 1 0 0 0] 0;
|
||||||
Cf 0.005;
|
Cf 0.005;
|
||||||
|
|
||||||
rho0 rho0 [1 -3 0 0 0] 1000;
|
injectionModels ();
|
||||||
mu0 mu0 [1 -1 -1 0 0] 1e-3;
|
|
||||||
sigma0 sigma0 [1 0 -2 0 0] 0.07;
|
|
||||||
Cp0 Cp0 [0 2 -2 -1 0] 4187;
|
|
||||||
kappa0 kappa0 [1 1 -3 -1 0] 0.58;
|
|
||||||
|
|
||||||
injectionModel cloudInjection; // remove; // none; // cloudInjection;
|
|
||||||
|
|
||||||
phaseChangeModel none;
|
phaseChangeModel none;
|
||||||
|
|
||||||
cloudInjectionCoeffs
|
radiationModel none;
|
||||||
{
|
|
||||||
cloudName reactingCloud1;
|
|
||||||
|
|
||||||
deltaStable 0;
|
|
||||||
|
|
||||||
particlesPerParcel 100.0;
|
|
||||||
|
|
||||||
sizeDistribution
|
|
||||||
{
|
|
||||||
pdfType RosinRammler;
|
|
||||||
RosinRammlerDistribution
|
|
||||||
{
|
|
||||||
minValue 5e-04;
|
|
||||||
maxValue 0.0012;
|
|
||||||
d 7.5e-05;
|
|
||||||
n 0.5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
upperSurfaceModels
|
upperSurfaceModels
|
||||||
{
|
{
|
||||||
heatTransferModel constant;
|
heatTransferModel constant;
|
||||||
constantCoeffs
|
constantCoeffs
|
||||||
{
|
{
|
||||||
c0 1e-8;
|
c0 1e-8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,8 +64,7 @@ thermoSingleLayerCoeffs
|
|||||||
heatTransferModel constant;
|
heatTransferModel constant;
|
||||||
constantCoeffs
|
constantCoeffs
|
||||||
{
|
{
|
||||||
c0 1e-8;
|
c0 1e-8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -25,18 +25,21 @@ foamChemistryThermoFile "$FOAM_CASE/constant/foam.dat";
|
|||||||
|
|
||||||
inertSpecie N2;
|
inertSpecie N2;
|
||||||
|
|
||||||
|
|
||||||
liquids
|
liquids
|
||||||
{
|
{
|
||||||
liquidComponents ( H2O );
|
liquidComponents (H2O);
|
||||||
|
|
||||||
H2O
|
H2O
|
||||||
{
|
{
|
||||||
defaultCoeffs yes;
|
defaultCoeffs yes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
solids
|
solids
|
||||||
{
|
{
|
||||||
solidComponents ( );
|
solidComponents ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -17,19 +17,19 @@ FoamFile
|
|||||||
|
|
||||||
application reactingParcelFilmFoam;
|
application reactingParcelFilmFoam;
|
||||||
|
|
||||||
startFrom latestTime;
|
startFrom latestTime; // startTime;
|
||||||
|
|
||||||
startTime 0;
|
startTime 0;
|
||||||
|
|
||||||
stopAt endTime;
|
stopAt endTime;
|
||||||
|
|
||||||
endTime 10;
|
endTime 20;
|
||||||
|
|
||||||
deltaT 1e-02;
|
deltaT 1e-02;
|
||||||
|
|
||||||
writeControl adjustableRunTime;
|
writeControl adjustableRunTime;
|
||||||
|
|
||||||
writeInterval 0.05;
|
writeInterval 0.1;
|
||||||
|
|
||||||
purgeWrite 0;
|
purgeWrite 0;
|
||||||
|
|
||||||
@ -45,11 +45,11 @@ timePrecision 6;
|
|||||||
|
|
||||||
runTimeModifiable yes;
|
runTimeModifiable yes;
|
||||||
|
|
||||||
adjustTimeStep no;
|
adjustTimeStep yes;
|
||||||
|
|
||||||
maxCo 0.5;
|
maxCo 0.3;
|
||||||
|
|
||||||
maxDeltaT 1e-03;
|
maxDeltaT 1;
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -17,7 +17,7 @@ FoamFile
|
|||||||
// Tolerance used in matching faces. Absolute tolerance is span of
|
// Tolerance used in matching faces. Absolute tolerance is span of
|
||||||
// face times this factor. To load incorrectly matches meshes set this
|
// face times this factor. To load incorrectly matches meshes set this
|
||||||
// to a higher value.
|
// to a higher value.
|
||||||
matchTolerance 1e-3;
|
matchTolerance 1E-3;
|
||||||
|
|
||||||
// Do a synchronisation of coupled points after creation of any patches.
|
// Do a synchronisation of coupled points after creation of any patches.
|
||||||
pointSync false;
|
pointSync false;
|
||||||
@ -17,7 +17,7 @@ FoamFile
|
|||||||
|
|
||||||
numberOfSubdomains 4;
|
numberOfSubdomains 4;
|
||||||
|
|
||||||
method scotch;
|
method metis;
|
||||||
|
|
||||||
simpleCoeffs
|
simpleCoeffs
|
||||||
{
|
{
|
||||||
@ -32,6 +32,11 @@ hierarchicalCoeffs
|
|||||||
order xyz;
|
order xyz;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
metisCoeffs
|
||||||
|
{
|
||||||
|
processorWeights ( 1 1 1 1 );
|
||||||
|
}
|
||||||
|
|
||||||
manualCoeffs
|
manualCoeffs
|
||||||
{
|
{
|
||||||
dataFile "";
|
dataFile "";
|
||||||
@ -10,26 +10,27 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
object extrudeToRegionMeshDict;
|
||||||
object SurfaceFilmProperties;
|
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
surfaceFilmModel kinematicSingleLayer;
|
region wallFilmRegion;
|
||||||
|
|
||||||
filmRegionName wallFilmRegion;
|
faceZones (wallFilmFaces);
|
||||||
|
|
||||||
active true;
|
oneD false;
|
||||||
|
|
||||||
kinematicSingleLayerCoeffs
|
extrudeModel linearNormal;
|
||||||
|
|
||||||
|
nLayers 1;
|
||||||
|
|
||||||
|
expansionRatio 1;
|
||||||
|
|
||||||
|
adaptMesh yes; // apply directMapped to both regions
|
||||||
|
|
||||||
|
linearNormalCoeffs
|
||||||
{
|
{
|
||||||
thermoModel constant;
|
thickness 0.01;
|
||||||
Cf 0.005;
|
|
||||||
|
|
||||||
rho0 rho0 [1 -3 0 0 0] 1000;
|
|
||||||
mu0 mu0 [1 -1 -1 0 0] 1e-3;
|
|
||||||
sigma0 sigma0 [1 0 -2 0 0] 0.07;
|
|
||||||
|
|
||||||
injectionModel none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -36,12 +36,12 @@ divSchemes
|
|||||||
div(phi,epsilon) Gauss upwind;
|
div(phi,epsilon) Gauss upwind;
|
||||||
div(U) Gauss linear;
|
div(U) Gauss linear;
|
||||||
div((muEff*dev2(T(grad(U))))) Gauss linear;
|
div((muEff*dev2(T(grad(U))))) Gauss linear;
|
||||||
div(phi,Yi_h) Gauss upwind;
|
div(phi,Yi_hs) Gauss upwind;
|
||||||
}
|
}
|
||||||
|
|
||||||
laplacianSchemes
|
laplacianSchemes
|
||||||
{
|
{
|
||||||
default Gauss linear limited 0.5;
|
default Gauss linear corrected;
|
||||||
}
|
}
|
||||||
|
|
||||||
interpolationSchemes
|
interpolationSchemes
|
||||||
@ -51,14 +51,15 @@ interpolationSchemes
|
|||||||
|
|
||||||
snGradSchemes
|
snGradSchemes
|
||||||
{
|
{
|
||||||
default limited 0.5;
|
default corrected;
|
||||||
}
|
}
|
||||||
|
|
||||||
fluxRequired
|
fluxRequired
|
||||||
{
|
{
|
||||||
default no;
|
default no;
|
||||||
p;
|
p_rgh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -21,42 +21,69 @@ solvers
|
|||||||
{
|
{
|
||||||
solver PCG;
|
solver PCG;
|
||||||
preconditioner DIC;
|
preconditioner DIC;
|
||||||
|
tolerance 0;
|
||||||
|
relTol 0.1;
|
||||||
|
}
|
||||||
|
|
||||||
|
"(rho|G)Final"
|
||||||
|
{
|
||||||
|
$rho;
|
||||||
tolerance 1e-05;
|
tolerance 1e-05;
|
||||||
relTol 0;
|
relTol 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
"(U|h|k|epsilon)"
|
"(U|hs)"
|
||||||
{
|
{
|
||||||
solver PBiCG;
|
solver PBiCG;
|
||||||
preconditioner DILU;
|
preconditioner DILU;
|
||||||
tolerance 1e-05;
|
tolerance 0;
|
||||||
relTol 0;
|
relTol 0.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
p
|
"(U|hs)Final"
|
||||||
|
{
|
||||||
|
$U;
|
||||||
|
relTol 0;
|
||||||
|
tolerance 1e-05;
|
||||||
|
}
|
||||||
|
|
||||||
|
"(k|epsilon)"
|
||||||
|
{
|
||||||
|
$UFinal;
|
||||||
|
}
|
||||||
|
|
||||||
|
p_rgh
|
||||||
{
|
{
|
||||||
solver PCG;
|
solver PCG;
|
||||||
preconditioner DIC;
|
preconditioner DIC;
|
||||||
|
tolerance 0;
|
||||||
|
relTol 0.1;
|
||||||
|
}
|
||||||
|
|
||||||
|
p_rghFinal
|
||||||
|
{
|
||||||
|
$p_rgh;
|
||||||
tolerance 1e-06;
|
tolerance 1e-06;
|
||||||
relTol 0;
|
relTol 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
"(Yi|O2|N2|H2O)"
|
"(Yi|O2|N2|H2O)"
|
||||||
{
|
{
|
||||||
solver PBiCG;
|
$hsFinal;
|
||||||
preconditioner DILU;
|
|
||||||
tolerance 1e-06;
|
|
||||||
relTol 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PISO
|
PIMPLE
|
||||||
{
|
{
|
||||||
transonic no;
|
|
||||||
nCorrectors 2;
|
nCorrectors 2;
|
||||||
nNonOrthogonalCorrectors 0;
|
nNonOrthogonalCorrectors 0;
|
||||||
momentumPredictor yes;
|
momentumPredictor yes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
relaxationFactors
|
||||||
|
{
|
||||||
|
".*Final" 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
@ -1,7 +1,7 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
| ========= | |
|
| ========= | |
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
| \\ / O peration | Version: dev.FMGlobal |
|
| \\ / O peration | Version: dev |
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||||
| \\/ M anipulation | |
|
| \\/ M anipulation | |
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -30,6 +30,9 @@ divSchemes
|
|||||||
div(phi,Uf) Gauss upwind;
|
div(phi,Uf) Gauss upwind;
|
||||||
div(phid,deltaf) Gauss upwind;
|
div(phid,deltaf) Gauss upwind;
|
||||||
div(phi,hsf) Gauss upwind;
|
div(phi,hsf) Gauss upwind;
|
||||||
|
|
||||||
|
div(nHat) Gauss linear;
|
||||||
|
div(grad(nHat)) Gauss linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
gradSchemes
|
gradSchemes
|
||||||
@ -37,24 +40,25 @@ gradSchemes
|
|||||||
default none;
|
default none;
|
||||||
grad(pL) Gauss linear;
|
grad(pL) Gauss linear;
|
||||||
grad(sigmaf) Gauss linear;
|
grad(sigmaf) Gauss linear;
|
||||||
grad(omega) Gauss linear;
|
|
||||||
snGradCorr(deltaf) Gauss linear;
|
snGradCorr(deltaf) Gauss linear;
|
||||||
snGradCorr(pp) Gauss linear;
|
snGradCorr(pp) Gauss linear;
|
||||||
snGradCorr(pu) Gauss linear;
|
snGradCorr(pu) Gauss linear;
|
||||||
|
|
||||||
|
grad(radius) Gauss linear;
|
||||||
|
grad(nHat) Gauss linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
laplacianSchemes
|
laplacianSchemes
|
||||||
{
|
{
|
||||||
default none;
|
default none;
|
||||||
laplacian(sigmaf,deltaf) Gauss linear uncorrected;
|
laplacian(sigmaf,deltaf) Gauss linear uncorrected;
|
||||||
laplacian((((interpolate(deltaf)*interpolate((deltaf*(1|A(Uf)))))*interpolate(rhof))*interpolate(pp)),deltaf) Gauss linear uncorrected;
|
laplacian(deltaCoeff,deltaf) Gauss linear uncorrected;
|
||||||
}
|
}
|
||||||
|
|
||||||
snGradSchemes
|
snGradSchemes
|
||||||
{
|
{
|
||||||
snGrad(p) uncorrected;
|
snGrad(p) uncorrected;
|
||||||
snGrad(deltaf) uncorrected;
|
snGrad(deltaf) uncorrected;
|
||||||
snGrad(omega) uncorrected;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fluxRequired
|
fluxRequired
|
||||||
@ -40,7 +40,6 @@ PISO
|
|||||||
nOuterCorr 1;
|
nOuterCorr 1;
|
||||||
nCorr 1;
|
nCorr 1;
|
||||||
nNonOrthCorr 0;
|
nNonOrthCorr 0;
|
||||||
dfMin 1e-10;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
# Create face set
|
||||||
|
faceSet wallFilmFaces new patchToFace filmWalls
|
||||||
|
faceZoneSet wallFilmFaces new setToFaceZone wallFilmFaces
|
||||||
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
location "0";
|
|
||||||
class volScalarField;
|
|
||||||
object T;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 500;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMapped;
|
|
||||||
fieldName Tsf;
|
|
||||||
average 300;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object alphat;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type alphatWallFunction;
|
|
||||||
Prt 0.85;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type alphatWallFunction;
|
|
||||||
Prt 0.85;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object epsilon;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 2 -3 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 1e-07;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type compressible::epsilonWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 1e-07;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type compressible::epsilonWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 1e-07;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object htcConv;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 0 -1 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type calculated;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type htcConvection;
|
|
||||||
L 1.0;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
/* vim: set filetype=cpp : */
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object k;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 2 -2 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 1e-05;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type compressible::kqRWallFunction;
|
|
||||||
value uniform 1e-05;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type compressible::kqRWallFunction;
|
|
||||||
value uniform 1e-05;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ 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
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type mutWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type mutWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object T;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 300;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average 300;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object U;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average (0 0 0);
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object USpf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0]; // kg.m/s/(m2.s)
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedPushedInternalValue;
|
|
||||||
average (0 0 0);
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,54 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object Uf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type slip;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object p;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 100000;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average 100000;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 100000;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object pSpf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0]; // Pa
|
|
||||||
|
|
||||||
internalField uniform 0.0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedPushedInternalValue;
|
|
||||||
average 0.0;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 0.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
location "0";
|
|
||||||
class volScalarField;
|
|
||||||
object T;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 500;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMapped;
|
|
||||||
fieldName Tsf;
|
|
||||||
average 300;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object alphat;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type alphatWallFunction;
|
|
||||||
Prt 0.85;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type alphatWallFunction;
|
|
||||||
Prt 0.85;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object epsilon;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 2 -3 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 1e-07;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type compressible::epsilonWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 1e-07;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type compressible::epsilonWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 1e-07;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object htcConv;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 0 -1 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type calculated;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type htcConvection;
|
|
||||||
L 1.0;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
/* vim: set filetype=cpp : */
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0";
|
|
||||||
object k;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 2 -2 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 1e-05;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type compressible::kqRWallFunction;
|
|
||||||
value uniform 1e-05;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type compressible::kqRWallFunction;
|
|
||||||
value uniform 1e-05;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ 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
|
|
||||||
{
|
|
||||||
"(.*)"
|
|
||||||
{
|
|
||||||
type mutWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type mutWallFunction;
|
|
||||||
Cmu 0.09;
|
|
||||||
kappa 0.41;
|
|
||||||
E 9.8;
|
|
||||||
value uniform 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object T;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 0 0 1 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 300;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average 300;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object U;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average (0 0 0);
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object USpf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0]; // kg.m/s/(m2.s)
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedPushedInternalValue;
|
|
||||||
average (0 0 0);
|
|
||||||
setAverage no;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,54 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volVectorField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object Uf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [0 1 -1 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform (0 0 0);
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type slip;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type fixedValue;
|
|
||||||
value uniform (0 0 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object p;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0];
|
|
||||||
|
|
||||||
internalField uniform 100000;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedInternalValue;
|
|
||||||
average 100000;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 100000;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
||||||
| \\ / O peration | Version: dev |
|
|
||||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class volScalarField;
|
|
||||||
location "0/wallFilmRegion";
|
|
||||||
object pSpf;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
dimensions [1 -1 -2 0 0 0 0]; // Pa
|
|
||||||
|
|
||||||
internalField uniform 0.0;
|
|
||||||
|
|
||||||
boundaryField
|
|
||||||
{
|
|
||||||
wallFilmFaces_top
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
region0_to_wallFilmRegion_wallFilmFaces
|
|
||||||
{
|
|
||||||
type directMappedFixedPushedInternalValue;
|
|
||||||
average 0.0;
|
|
||||||
setAverage no;
|
|
||||||
value uniform 0.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
left
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
right
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
|
|
||||||
frontAndBack
|
|
||||||
{
|
|
||||||
type zeroGradient;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user