Files
OpenFOAM-12/tutorials/fluid/helmholtzResonance/0/T
2024-07-06 16:02:47 +01:00

55 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
location "0";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [temperature];
internalField uniform 300;
boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}
outlet
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
symmetry
{
type symmetry;
}
wall
{
type fixedValue;
value $internalField;
}
plenum
{
type fixedValue;
value $internalField;
}
}
// ************************************************************************* //