initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / discreteMethods / dsmcFoam / freeSpaceStream / constant / dsmcProperties
blobf6c41d5c6fa45bda64903dde22d6dc7d267a04dc
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
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;
30 MaxwellianThermalCoeffs {}
33 // Binary Collision Model
34 // ~~~~~~~~~~~~~~~~~~~~~~
36 BinaryCollisionModel            LarsenBorgnakkeVariableHardSphere;
38 LarsenBorgnakkeVariableHardSphereCoeffs
40     Tref                        273;
41     relaxationCollisionNumber   5.0;
45 // Inflow Boundary Model
46 // ~~~~~~~~~~~~~~~~~~~~~
48 InflowBoundaryModel             FreeStream;
50 FreeStreamCoeffs
52     numberDensities
53     {
54         N2      0.777e20;
55         O2      0.223e20;
56     };
60 // Molecular species
61 // ~~~~~~~~~~~~~~~~~
63 typeIdList                      (N2 O2);
65 moleculeProperties
67     N2
68     {
69         mass                            46.5e-27;
70         diameter                        4.17e-10;
71         internalDegreesOfFreedom        2;
72         viscosityCoefficient            1.656e-5;
73         omega                           0.74;
74     }
76     O2
77     {
78         mass                            53.12e-27;
79         diameter                        4.07e-10;
80         internalDegreesOfFreedom        2;
81         viscosityCoefficient            1.919e-5;
82         omega                           0.77;
83     }
87 // ************************************************************************* //