Files
OpenFOAM-12/tutorials/multiphaseEuler/bubblePipe/0/U.air1
2024-07-06 16:02:47 +01:00

54 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 volVectorField;
object U.air1;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
inlet
{
type mappedInternalValue;
interpolationScheme cell;
value $internalField;
}
outlet
{
type pressureInletOutletVelocity;
phi phi.air1;
value $internalField;
}
walls
{
type slip;
}
}
sources
{
massSource
{
type uniformFixedValue;
uniformValue (0 0 0);
}
}
// ************************************************************************* //