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,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,30 +10,42 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
location "0";
object rhoM;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -3 0 0 0 0 0];
dimensions [ 1 -3 0 0 0 0 0 ];
internalField uniform 0;
boundaryField
{
xPeriodic
xPeriodic_half0
{
type cyclic;
}
yPeriodic
yPeriodic_half0
{
type cyclic;
}
zPeriodic
zPeriodic_half0
{
type cyclic;
}
yPeriodic_half1
{
type cyclic;
}
zPeriodic_half1
{
type cyclic;
}
xPeriodic_half1
{
type cyclic;
}
}
// ************************************************************************* //