rhoSimplecFoam: Added coupled-patch handling to H1 to support parallel running

This commit is contained in:
Henry
2012-05-02 10:53:29 +01:00
parent 687232488f
commit ac9203e1b8
8 changed files with 123 additions and 64 deletions

View File

@ -28,7 +28,7 @@ boundaryField
inlet
{
type flowRateInletVelocity;
flowRate constant 0.5; //0.75;
flowRate constant 0.5;
value uniform (0 0 0);
}
outlet

View File

@ -0,0 +1,45 @@
/*--------------------------------*- 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 dictionary;
location "system";
object decomposeParDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
numberOfSubdomains 8;
method hierarchical;
simpleCoeffs
{
n (8 1 1);
delta 0.001;
}
hierarchicalCoeffs
{
n (4 2 1);
delta 0.001;
order xyz;
}
manualCoeffs
{
dataFile "";
}
distributed no;
roots ( );
// ************************************************************************* //