mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
Reference in New Issue
Block a user