ENH: TJunction: sensible initial values

This commit is contained in:
mattijs
2012-02-24 13:01:28 +00:00
parent 2f69d3b671
commit 24bb1e34e2
4 changed files with 24 additions and 24 deletions

View File

@ -17,7 +17,7 @@ FoamFile
dimensions [ 0 2 -3 0 0 0 0 ]; dimensions [ 0 2 -3 0 0 0 0 ];
internalField uniform 1; internalField uniform 200;
boundaryField boundaryField
{ {
@ -25,19 +25,19 @@ boundaryField
{ {
type turbulentMixingLengthDissipationRateInlet; type turbulentMixingLengthDissipationRateInlet;
mixingLength 0.01; // 1cm - half channel height mixingLength 0.01; // 1cm - half channel height
value uniform 1; value $internalField;
} }
outlet1 outlet1
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
} }
outlet2 outlet2
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
} }
defaultFaces defaultFaces

View File

@ -17,7 +17,7 @@ FoamFile
dimensions [ 0 2 -2 0 0 0 0 ]; dimensions [ 0 2 -2 0 0 0 0 ];
internalField uniform 1; internalField uniform 0.2;
boundaryField boundaryField
{ {
@ -25,19 +25,19 @@ boundaryField
{ {
type turbulentIntensityKineticEnergyInlet; type turbulentIntensityKineticEnergyInlet;
intensity 0.05; // 5% turbulent intensity intensity 0.05; // 5% turbulent intensity
value uniform 1; value $internalField;
} }
outlet1 outlet1
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
} }
outlet2 outlet2
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
} }
defaultFaces defaultFaces

View File

@ -17,7 +17,7 @@ FoamFile
dimensions [0 2 -3 0 0 0 0]; dimensions [0 2 -3 0 0 0 0];
internalField uniform 1; internalField uniform 200;
boundaryField boundaryField
{ {
@ -27,19 +27,19 @@ boundaryField
mixingLength 0.01; mixingLength 0.01;
phi phi; phi phi;
k k; k k;
value uniform 1; value $internalField;
} }
outlet1 outlet1
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
value uniform 1; value $internalField;
} }
outlet2 outlet2
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
value uniform 1; value $internalField;
} }
baffles baffles
{ {
@ -47,7 +47,7 @@ boundaryField
Cmu 0.09; Cmu 0.09;
kappa 0.41; kappa 0.41;
E 9.8; E 9.8;
value uniform 1; value $internalField;
} }
fan_half0 fan_half0
{ {
@ -63,7 +63,7 @@ boundaryField
Cmu 0.09; Cmu 0.09;
kappa 0.41; kappa 0.41;
E 9.8; E 9.8;
value uniform 1; value $internalField;
} }
} }

View File

@ -17,7 +17,7 @@ FoamFile
dimensions [0 2 -2 0 0 0 0]; dimensions [0 2 -2 0 0 0 0];
internalField uniform 1; internalField uniform 0.375;
boundaryField boundaryField
{ {
@ -27,24 +27,24 @@ boundaryField
intensity 0.05; intensity 0.05;
U U; U U;
phi phi; phi phi;
value uniform 1; value $internalField;
} }
outlet1 outlet1
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
value uniform 1; value $internalField;
} }
outlet2 outlet2
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue $internalField;
value uniform 1; value $internalField;
} }
baffles baffles
{ {
type kqRWallFunction; type kqRWallFunction;
value uniform 1; value $internalField;
} }
fan_half0 fan_half0
{ {
@ -57,7 +57,7 @@ boundaryField
defaultFaces defaultFaces
{ {
type kqRWallFunction; type kqRWallFunction;
value uniform 1; value $internalField;
} }
} }