Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / windSimpleFoam / turbineSiting / constant / sourcesProperties
blob73926f91d2edba60a328e8afd6c299e3f8175b79
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      sourcesProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 disk1
20     type            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     type            actuationDiskSource;
40     active          on;
41     timeStart       0.0;
42     duration        1000.0;
43     selectionMode   cellSet;
44     cellSet         actuationDisk2;
45     cellZone        actuationDisk2;
47     actuationDiskSourceCoeffs
48     {
49         diskDir     (-1 0 0);
50         Cp          0.53;
51         Ct          0.58;
52         diskArea    40;
53     }
55 // ************************************************************************* //