Skip to content
Snippets Groups Projects
Commit ce8695d8 authored by mattijs's avatar mattijs
Browse files

BUG: reachingParcelFoam: requires p_rgh

parent ffb04099
No related merge requests found
...@@ -15,21 +15,20 @@ FoamFile ...@@ -15,21 +15,20 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [ 0 1 -1 0 0 0 0 ]; dimensions [0 1 -1 0 0 0 0];
internalField uniform ( 0 0 0 ); internalField uniform (0 0 0);
boundaryField boundaryField
{ {
walls walls
{ {
type fixedValue; type noSlip;
value uniform ( 0 0 0 );
} }
inlet inlet
{ {
type fixedValue; type fixedValue;
value uniform ( 5 0 0 ); value uniform (5 0 0);
} }
outlet outlet
{ {
......
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 100000;
boundaryField
{
walls
{
type fixedFluxPressure;
}
inlet
{
type fixedFluxPressure;
}
outlet
{
type prghPressure;
p uniform 100000;
}
cycLeft_half0
{
type cyclic;
}
cycRight_half0
{
type cyclic;
}
frontAndBack
{
type empty;
}
cycLeft_half1
{
type cyclic;
}
cycRight_half1
{
type cyclic;
}
}
// ************************************************************************* //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment