Files
OpenFOAM-12/tutorials/mesh/foamyHexMesh/mixerVessel/0/nut
Will Bainbridge 76ba65be69 tutorials: Clean up geometry resources
A surface geometry file should be stored in
$FOAM_TUTORIALS/resources/geometry if it is used in multiple cases,
otherwise it should be stored locally to the case. This change enforces
that across all tutorials.
2019-11-01 12:32:33 +00:00

89 lines
2.0 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
class volScalarField;
location "0";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField uniform 0;
boundaryField
{
outlet
{
type inletOutlet;
inletValue uniform 0;
value uniform 0;
}
vessel
{
type nutkWallFunction;
value uniform 0;
}
oilInlet
{
type fixedValue;
value uniform 0;
}
sparger
{
type nutkWallFunction;
value uniform 0;
}
spargerShaft
{
type nutkWallFunction;
value uniform 0;
}
shaftRotating
{
type nutkWallFunction;
value uniform 0;
}
shaft
{
type nutkWallFunction;
value uniform 0;
}
stirrer_baffles
{
type nutkWallFunction;
value uniform 0;
}
stirrer
{
type nutkWallFunction;
value uniform 0;
}
baffles
{
type nutkWallFunction;
value uniform 0;
}
AMI1
{
type cyclicAMI;
value uniform 0;
}
AMI2
{
type cyclicAMI;
value uniform 0;
}
}
// ************************************************************************* //