ENH: partialWrite: support regions
[OpenFOAM-1.7.x.git] / tutorials / incompressible / simpleWindFoam / turbineSiting / constant / sourcesProperties
blob8be1f309127f6def7c666c424a77d40e29f2340a
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      sourcesProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 disk1
20     typeModel       actuationDiskSource;
21     active          on;            // on/off switch
22     timeStart       0.0;           // start time
23     duration        1000.0;         // duration
24     selectionMode   cellSet;       // cellSet // points //cellZone
25     cellSet         actuationDisk1; // cellSet name when selectionMode = cellSet
26     cellZone        actuationDisk1; // cellZone name when selectionMode = cellZone
28     actuationDiskSourceCoeffs
29     {
30         diskDir     (-1 0 0); // orientation of the disk
31         Cp          0.53;     // Cp
32         Ct          0.58;     // Ct
33         diskArea    40;       // disk area
34     }
37 disk2
39     typeModel       actuationDiskSource;
40     active          on;            // on/off switch
41     timeStart       0.0;           // start time
42     duration        1000.0;         // duration
43     selectionMode   cellSet;       // cellSet // points //cellZone
44     cellSet         actuationDisk2; // cellSet name when selectionMode = cellSet
45     cellZone        actuationDisk2; // cellZone name when selectionMode = cellZone
47     actuationDiskSourceCoeffs
48     {
49         diskDir     (-1 0 0); // orientation of the disk
50         Cp          0.53;     // Cp
51         Ct          0.58;     // Ct
52         diskArea    40;       // disk area
53     }
55 // ************************************************************************* //