afd05aef6f
The porousPlug-Tutorial shows artefacts on the interface of the porous region. This problem is common to all OF-versions Apart from that both tutorials (pressureDrop and velocity) are similar to published versions --HG-- branch : porousLagrangianBranch
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.4.1 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "/home2/mnordlun/OpenFOAM/mnordlun-1.4.1/run/pmiCases";
|
|
case "SMAR_MD2_Puffing";
|
|
instance "0";
|
|
local "";
|
|
|
|
class volScalarField;
|
|
object T;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 1 0 0 0];
|
|
|
|
internalField uniform 298.15;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type fixedValue;
|
|
value $internalField;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
inletValue $internalField;
|
|
}
|
|
lowerWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
upperWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|