Files
OpenFOAM-6/tutorials/combustion/reactingFoam/RAS/membrane/0/O2.orig
Henry Weller d8954d4370 tutorials: Removed 0.orig directories in favor of <field>.orig
The new automated <field>.orig reading has made 0.orig directories and
associated scripting redundant.
2018-02-16 23:10:09 +00:00

66 lines
1.8 KiB
C++

/*--------------------------------*- 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;
location "0";
object O2;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "include"
dimensions [0 0 0 0 0 0 0];
internalField uniform 0;
boundaryField
{
inletSleeve
{
type fixedValue;
value uniform $:sleeve.O2;
}
inletPipe
{
type fixedValue;
value uniform $:pipe.O2;
}
outletSleeve
{
type inletOutlet;
inletValue uniform $:sleeve.O2;
value uniform $:sleeve.O2;
}
outletPipe
{
type inletOutlet;
inletValue uniform $:pipe.O2;
value uniform $:pipe.O2;
}
wall
{
type zeroGradient;
}
membraneSleeve
{
type semiPermeableBaffleMassFraction;
value uniform $:sleeve.O2;
}
membranePipe
{
type semiPermeableBaffleMassFraction;
value uniform $:pipe.O2;
}
}
// ************************************************************************* //