Merge remote-tracking branch 'origin/nr/HakanNilsson_axialTurbineTutUpd' into nextRelease
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleSRFFoam / simpleBlade / system / controlDict
bloba266d152b55302bb6580c525b5d988e41cb5d9a5
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.1                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 startFrom       startTime;
19 startTime       0;
21 stopAt          endTime;
23 endTime         2000;
25 deltaT          1;
27 writeControl    timeStep;
29 writeInterval   50;
31 purgeWrite      0;
33 writeFormat     ascii;
35 writePrecision  6;
37 writeCompression uncompressed;
39 timeFormat      general;
41 timePrecision   6;
43 graphFormat     raw;
45 runTimeModifiable yes;
47 functions
49     flux
50     {
51         type        divFlux;
52         phiName     phi;
54         functionObjectLibs ("libutilityFunctionObjects.so");
55     }
57     Mach
58     {
59         type        MachNumber;
60         UName       Uabs;
62         functionObjectLibs ("libutilityFunctionObjects.so");
63     }
65     minMaxUrel
66     {
67         type        minMaxField;
69         // Where to load it from (if not already in solver)
70         functionObjectLibs ("libfieldFunctionObjects.so");
72         name Urel;
73     }
75     minMaxP
76     {
77         type        minMaxField;
79         // Where to load it from (if not already in solver)
80         functionObjectLibs ("libfieldFunctionObjects.so");
82         name p;
83     }
85     minMaxRho
86     {
87         type        minMaxField;
89         // Where to load it from (if not already in solver)
90         functionObjectLibs ("libfieldFunctionObjects.so");
92         name rho;
93     }
95     minMaxT
96     {
97         type        minMaxField;
99         // Where to load it from (if not already in solver)
100         functionObjectLibs ("libfieldFunctionObjects.so");
102         name T;
103     }
106 // ************************************************************************* //