Files
CFDEMcoupling-PFM/tutorials/cfdemSolverRhoPimple/VortexShedding/CFD/0/p
danielque 6147878a1b add vortex shedding test case [ci skip]
add test case based on OpenFOAM tutorial by J. Guerrero to compare p, U,
T, rho from compressible rhoPimpleFoam solver to cfdemSolverRhoPimple
2021-12-23 16:54:55 +01:00

57 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 101325;
boundaryField
{
out
{
type fixedValue;
value uniform 101325;
}
sym1
{
type symmetryPlane;
}
sym2
{
type symmetryPlane;
}
in
{
type zeroGradient;
}
cylinder
{
type zeroGradient;
}
back
{
type empty;
}
front
{
type empty;
}
}
// ************************************************************************* //