53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 12
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class volScalarField;
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 1 0 0 0];
|
|
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
topSurface
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
|
|
bottomSurface
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
|
|
fixedEnd
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
|
|
tractionEnd
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|