54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM:.Uhe Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1912 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format binary;
|
|
class volVectorField;
|
|
location "0";
|
|
object U;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "include/caseSettings"
|
|
|
|
dimensions [0 1 -1 0 0 0 0];
|
|
|
|
internalField uniform $:internalField.U;
|
|
|
|
boundaryField
|
|
{
|
|
back
|
|
{
|
|
type wedge;
|
|
}
|
|
|
|
front
|
|
{
|
|
$back;
|
|
}
|
|
|
|
liner
|
|
{
|
|
$:wall.U;
|
|
}
|
|
|
|
cylinderHead
|
|
{
|
|
$liner;
|
|
}
|
|
|
|
piston
|
|
{
|
|
$:piston.U;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|