Skip to content
Snippets Groups Projects
Commit e3edc00d authored by Henry's avatar Henry
Browse files

twoPhaseEulerFoam/laminar/fluidisedBed: Updated BCs

parent eb81bdcb
Branches
Tags
No related merge requests found
...@@ -22,8 +22,10 @@ boundaryField ...@@ -22,8 +22,10 @@ boundaryField
{ {
inlet inlet
{ {
type fixedValue; type interstitialInletVelocity;
value uniform (0 0.25 0); inletVelocity uniform (0 0.25 0);
alpha alpha.air;
value $internalField;
} }
outlet outlet
......
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object alpha.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 0;
boundaryField
{
inlet
{
type fixedValue;
value uniform 1;
}
outlet
{
type zeroGradient;
}
walls
{
type zeroGradient;
}
frontAndBackPlanes
{
type empty;
}
}
// ************************************************************************* //
...@@ -22,8 +22,7 @@ boundaryField ...@@ -22,8 +22,7 @@ boundaryField
{ {
inlet inlet
{ {
type fixedValue; type zeroGradient;
value uniform 0;
} }
outlet outlet
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment