Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
OpenFOAM-plus
Commits
5d8edc21
Commit
5d8edc21
authored
Sep 27, 2017
by
mattijs
Browse files
BUG: reachingParcelFoam: requires p_rgh
parent
07cf12c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
tutorials/mesh/parallel/filter/0.orig/U
View file @
5d8edc21
...
...
@@ -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
{
walls
{
type fixedValue;
value uniform ( 0 0 0 );
type noSlip;
}
inlet
{
type fixedValue;
value uniform (
5 0 0
);
value uniform (5 0 0);
}
outlet
{
...
...
tutorials/mesh/parallel/filter/0.orig/p_rgh
0 → 100644
View file @
5d8edc21
/*--------------------------------*- 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;
}
}
// ************************************************************************* //
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment