Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / discreteMethods / dsmcFoam / freeSpaceStream / constant / dsmcProperties
blobf88a7a8fdc9634a7af10aaa11adcb47cd2c6b032
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      dsmcProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 // General Properties
20 // ~~~~~~~~~~~~~~~~~~
22 nEquivalentParticles            1e12;
25 // Wall Interaction Model
26 // ~~~~~~~~~~~~~~~~~~~~~~
28 WallInteractionModel            MaxwellianThermal;
31 // Binary Collision Model
32 // ~~~~~~~~~~~~~~~~~~~~~~
34 BinaryCollisionModel            LarsenBorgnakkeVariableHardSphere;
36 LarsenBorgnakkeVariableHardSphereCoeffs
38     Tref                        273;
39     relaxationCollisionNumber   5.0;
43 // Inflow Boundary Model
44 // ~~~~~~~~~~~~~~~~~~~~~
46 InflowBoundaryModel             FreeStream;
48 FreeStreamCoeffs
50     numberDensities
51     {
52         N2      0.777e20;
53         O2      0.223e20;
54     };
58 // Molecular species
59 // ~~~~~~~~~~~~~~~~~
61 typeIdList                      (N2 O2);
63 moleculeProperties
65     N2
66     {
67         mass                            46.5e-27;
68         diameter                        4.17e-10;
69         internalDegreesOfFreedom        2;
70         omega                           0.74;
71     }
73     O2
74     {
75         mass                            53.12e-27;
76         diameter                        4.07e-10;
77         internalDegreesOfFreedom        2;
78         omega                           0.77;
79     }
83 // ************************************************************************* //