Files
CFDEMcoupling-PFM/tutorials/cfdemSolverRhoPimple/VortexShedding/CFD/0/T
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

59 lines
1.3 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 T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 293.15;
boundaryField
{
out
{
type inletOutlet;
inletValue uniform 293.15;
value uniform 293.15;
}
sym1
{
type symmetryPlane;
}
sym2
{
type symmetryPlane;
}
in
{
type fixedValue;
value uniform 293.15;
}
cylinder
{
type zeroGradient;
}
back
{
type empty;
}
front
{
type empty;
}
}
// ************************************************************************* //