openfoam/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/0/boundaryT
2014-12-11 08:35:10 +00:00

43 lines
1.1 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;
object boundaryT;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 0;
boundaryField
{
flow
{
type fixedValue;
value uniform 300;
}
obstacle
{
type fixedValue;
value uniform 550;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //