Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
bc88cf96
Commit
bc88cf96
authored
Jul 21, 2009
by
Andrew Heather
Browse files
buoyantSimpleRadiationFoam tutorial update
parent
3dfc299a
Changes
4
Hide whitespace changes
Inline
Side-by-side
tutorials/heatTransfer/buoyantSimpleRadiationFoam/hotRadiationRoomFvDOM/0/alphat
View file @
bc88cf96
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version:
dev
|
| \\ / O peration | Version:
1.6
|
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format
ascii
;
format
binary
;
class volScalarField;
location "0";
object alphat;
...
...
@@ -23,22 +23,26 @@ boundaryField
{
box
{
type alphatWallFunction;
type compressible::alphatWallFunction;
Prt 0.85;
value uniform 0;
}
floor
{
type alphatWallFunction;
type compressible::alphatWallFunction;
Prt 0.85;
value uniform 0;
}
ceiling
{
type alphatWallFunction;
type compressible::alphatWallFunction;
Prt 0.85;
value uniform 0;
}
fixedWalls
{
type alphatWallFunction;
type compressible::alphatWallFunction;
Prt 0.85;
value uniform 0;
}
}
...
...
tutorials/heatTransfer/buoyantSimpleRadiationFoam/hotRadiationRoomFvDOM/0/epsilon
View file @
bc88cf96
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version:
dev
|
| \\ / O peration | Version:
1.6
|
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format
ascii
;
format
binary
;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [
0 2 -3 0 0 0 0
];
dimensions [0 2 -3 0 0 0 0];
internalField uniform 0.01;
boundaryField
{
floor
box
{
type compressible::epsilonWallFunction;
value uniform 0;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0.01;
}
ceiling
floor
{
type compressible::epsilonWallFunction;
value uniform 0;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0.01;
}
fixedWalls
ceiling
{
type compressible::epsilonWallFunction;
value uniform 0;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0.01;
}
box
fixedWalls
{
type compressible::epsilonWallFunction;
value uniform 0;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0.01;
}
}
...
...
tutorials/heatTransfer/buoyantSimpleRadiationFoam/hotRadiationRoomFvDOM/0/k
View file @
bc88cf96
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version:
dev
|
| \\ / O peration | Version:
1.6
|
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format
ascii
;
format
binary
;
class volScalarField;
location "0";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [
0 2 -2 0 0 0 0
];
dimensions [0 2 -2 0 0 0 0];
internalField uniform 0.1;
boundaryField
{
floor
box
{
type compressible::kqRWallFunction;
value uniform 0;
value uniform 0
.1
;
}
ceiling
floor
{
type compressible::kqRWallFunction;
value uniform 0;
value uniform 0
.1
;
}
fixedWalls
ceiling
{
type compressible::kqRWallFunction;
value uniform 0;
value uniform 0
.1
;
}
box
fixedWalls
{
type compressible::kqRWallFunction;
value uniform 0;
value uniform 0
.1
;
}
}
...
...
tutorials/heatTransfer/buoyantSimpleRadiationFoam/hotRadiationRoomFvDOM/0/mut
View file @
bc88cf96
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version:
dev
|
| \\ / O peration | Version:
1.6
|
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format
ascii
;
format
binary
;
class volScalarField;
location "0";
object mut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [
1 -1 -1 0 0 0 0
];
dimensions [1 -1 -1 0 0 0 0];
internalField uniform 0;
...
...
@@ -24,24 +24,33 @@ boundaryField
box
{
type mutWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
floor
{
type mutWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
ceiling
{
type mutWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
fixedWalls
{
type mutWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment