Files
OpenFOAM-12/tutorials/fluid/engine2Valve2D/0/p
2024-07-06 16:02:47 +01:00

119 lines
2.7 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;
location "0";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 1 [bar];
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
inlet
{
type uniformTotalPressure;
p0
{
type table;
format csv;
file "constant/expData/pInlet";
nHeaderLine 2; // Number of header lines
units ([CAD] [bar]);
columns (0 1); // Column indices
separator " "; // Optional (defaults to ",")
mergeSeparators yes; // Merge multiple separators
outOfBounds repeat; // For multi-cycle simulations, use repeat
interpolationScheme linear;
}
value $internalField;
psi psi;
rho rho;
gamma 1.4;
}
outlet
{
type uniformTotalPressure;
p0
{
type table;
units ([CAD] [bar]);
values
(
(0 1.0)
(100 1.0)
(240 1.7)
(380 1.0)
(720 1.0)
);
outOfBounds repeat; // For multi-cycle simulations, use repeat
interpolationScheme linear;
}
value $internalField;
psi psi;
rho rho;
gamma 1.4;
}
piston
{
type zeroGradient;
}
liner
{
type zeroGradient;
}
cylinderHead
{
type zeroGradient;
}
ivHead
{
type zeroGradient;
}
evHead
{
type zeroGradient;
}
ivStem
{
type zeroGradient;
}
evStem
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
"nonCouple.*"
{
type zeroGradient;
}
}
// ************************************************************************* //