fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / compressible / rhoPorousSimpleFoam / beaverJoseph / system / sampleDict
blobb520bb9bbb0c6802c85f441aa1ab1c28f528025b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    system;
14     object      sampleDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Set output format : choice of
19 //      xmgr
20 //      jplot
21 //      gnuplot
22 //      raw
23 setFormat raw;
25 // Surface output format. Choice of
26 //      null        : suppress output
27 //      foamFile    : separate points, faces and values file
28 //      dx          : DX scalar or vector format
29 //      vtk         : VTK ascii format
30 //      raw         : x y z value format for use with e.g. gnuplot 'splot'.
32 // Note:
33 // other formats such as obj, stl, etc can also be written (by proxy)
34 // but without any values!
35 surfaceFormat vtk;
37 // interpolationScheme. choice of
38 //      cell          : use cell-centre value only; constant over cells (default)
39 //      cellPoint     : use cell-centre and vertex values
40 //      cellPointFace : use cell-centre, vertex and face values.
41 // 1] vertex values determined from neighbouring cell-centre values
42 // 2] face values determined using the current face interpolation scheme
43 //    for the field (linear, gamma, etc.)
44 interpolationScheme cellPoint;
46 // Fields to sample.
47 fields
49     p
50     U
51     mu
52     rhoFluid
55 // Set sampling definition: choice of
56 //      uniform             evenly distributed points on line
57 //      face                one point per face intersection
58 //      midPoint            one point per cell, inbetween two face intersections
59 //      midPointAndFace     combination of face and midPoint
61 //      curve               specified points, not nessecary on line, uses
62 //                          tracking
63 //      cloud               specified points, uses findCell
65 // axis: how to write point coordinate. Choice of
66 // - x/y/z: x/y/z coordinate only
67 // - xyz: three columns
68 //  (probably does not make sense for anything but raw)
69 // - distance: distance from start of sampling line (if uses line) or
70 //             distance from first specified sampling point
72 // type specific:
73 //      uniform, face, midPoint, midPointAndFace : start and end coordinate
74 //      uniform: extra number of sampling points
75 //      curve, cloud: list of coordinates
76 sets
78     middle
79     {
80         type        uniform;
81         axis        distance;
83         //- cavity. Slightly perturbed so not to align with face or edge.
84         start       (0.201 -0.0001 0.00001);
85         end         (0.201 0.2001 0.00001);
86         nPoints     100;
87     }
88     end
89     {
90         type        uniform;
91         axis        distance;
93         //- cavity. Slightly perturbed so not to align with face or edge.
94         start       (0.39 -0.0001 0.00001);
95         end         (0.39 0.2001 0.00001);
96         nPoints     100;
97     }
98     start
99     {
100         type        uniform;
101         axis        distance;
103         //- cavity. Slightly perturbed so not to align with face or edge.
104         start       (0.009 -0.0001 0.00001);
105         end         (0.009 0.2001 0.00001);
106         nPoints     100;
107     }
111 // Surface sampling definition: choice of
112 //      plane : values on plane defined by point, normal.
113 //      patch : values on patch.
115 // 1] patches are not triangulated by default
116 // 2] planes are always triangulated
117 // 3] iso-surfaces are always triangulated
118 surfaces
123 // *********************************************************************** //