This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/0.org/p
2010-11-25 01:27:21 +01:00

65 lines
1.8 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 101325;
boundaryField
{
inlet
{
type fixedValue;
value uniform 271724;
}
outlet
{
type waveTransmissive;
field p;
phi phi;
rho rho;
psi psi;
fieldInf 101325;
gamma 1.4;
lInf 0.025;
inletOutlet off;
correctSupercritical off;
value uniform 101325;
}
freestream
{
type totalPressure;
value uniform 101325;
p0 uniform 101325;
U U;
phi phi;
rho none;
psi psi;
gamma 1.4;
}
freestreamInlet
{
type zeroGradient;
}
wedge1 {type wedge;}
wedge2 {type wedge;}
}
// ************************************************************************* //