Files
OpenFOAM-12/tutorials/incompressibleVoF/mixerVessel/0/U
Henry Weller d61ea84ebb Updated rpm entries to omega with an [rpm] unit specification
This is a more convenient, consistent and flexible approach to specifying
rotational speed.
2024-06-27 17:38:22 +01:00

82 lines
1.7 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
vessel
{
type noSlip;
}
oilInlet
{
type fixedValue;
value uniform (0 0 0.2);
}
outlet
{
type pressureInletOutletVelocity;
value $internalField;
}
shaftRotating
{
type movingWallVelocity;
value $internalField;
}
shaft
{
type rotatingWallVelocity;
origin (0 0 0);
axis (0 0 1);
omega -50 [rpm];
value $internalField;
}
sparger
{
type noSlip;
}
stirrer
{
type movingWallVelocity;
value $internalField;
}
baffles
{
type noSlip;
}
nonCouple
{
type movingWallSlipVelocity;
value $internalField;
}
}
// ************************************************************************* //