Pressure settings, too, are the same for the steady-state and transient case. The total pressure (sum of static pressure and specific kinetic energy) is set to fixed value on inlet. On outlet we use the fixed mean value; on average the pressure is supposed to have some reference value, but it can fluctuate. Otherwise we use standard boundary conditions.
listing of 0/p :
dimensions [1 -1 -2 0 0 0 0];
internalField 100000;
boundaryField
{
".*_inlet"
{
type totalPressure;
p0 uniform 100000;
U U;
phi phi;
rho none;
psi thermo:psi;
gamma 1.4;
value $internalField;
}
".*_outlet"
{
type fixedMeanValue;
meanValue 100500;
value $internalField;
}
".*_wall"
{
type zeroGradient;
}
".*_ami"
{
type cyclicAMI;
value $internalField;
}
}