tutorials/modules/compressibleVoF/ballValve: Replaced 0/U with 0/U.orig

The velocity field is initialised by potentialFoam
This commit is contained in:
Henry Weller
2023-03-17 09:12:14 +00:00
parent 5fb42f1a94
commit 8cc00bdfdc
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
/*--------------------------------*- 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;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
inlet
{
type pressureInletOutletVelocity;
value uniform (6 0 0);
}
lowerOutlet
{
type pressureInletOutletVelocity;
value $internalField;
}
upperOutlet
{
type pressureInletOutletVelocity;
value $internalField;
}
wall
{
type movingWallVelocity;
value uniform (0 0 0);
}
}
// ************************************************************************* //