ENH. Update dsmc submodels to allow models with no coeffs dictionary.

Updated dsmc and md tuts, including new cyclic handling.
This commit is contained in:
graham
2010-05-20 16:49:03 +01:00
parent 49ccf0ffaa
commit 0368f38a7c
45 changed files with 450 additions and 217 deletions

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -15,28 +15,49 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
3
6
(
xPeriodic
xPeriodic_half0
{
type cyclic;
nFaces 512;
nFaces 256;
startFace 14464;
featureCos 0.9;
neighbourPatch xPeriodic_half1;
}
yPeriodic
xPeriodic_half1
{
type cyclic;
nFaces 640;
nFaces 256;
startFace 14720;
neighbourPatch xPeriodic_half0;
}
yPeriodic_half0
{
type cyclic;
nFaces 320;
startFace 14976;
featureCos 0.9;
neighbourPatch yPeriodic_half1;
}
zPeriodic
yPeriodic_half1
{
type cyclic;
nFaces 640;
nFaces 320;
startFace 15296;
neighbourPatch yPeriodic_half0;
}
zPeriodic_half0
{
type cyclic;
nFaces 320;
startFace 15616;
featureCos 0.9;
neighbourPatch zPeriodic_half1;
}
zPeriodic_half1
{
type cyclic;
nFaces 320;
startFace 15936;
neighbourPatch zPeriodic_half0;
}
)