Added example of wildcard substitution
[OpenFOAM-1.6.x.git] / applications / utilities / preProcessing / changeDictionary / changeDictionaryDict
blob164641cc1d02cdf1615128cc8feea6f0fc4223bb
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      changeDictionaryDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dictionaryReplacement
19     boundary
20     {
21         ".*"
22         {
23             type            directMappedPatch;
24         }
25     }
27     T
28     {
29         internalField   uniform 300;
31         boundaryField
32         {
33             ".*"
34             {
35                 type            zeroGradient;
36             }
38             minY
39             {
40                 type            fixedValue;
41                 value           uniform 500;
42             }
43         }
44     }
46     rho
47     {
48         internalField   uniform 8000;
50         boundaryField
51         {
52             ".*"
53             {
54                 type            zeroGradient;
55             }
57         }
58     }
60     K
61     {
62         internalField   uniform 80;
64         boundaryField
65         {
66             ".*"
67             {
68                 type            zeroGradient;
69             }
71         }
72     }
74     cp
75     {
76         internalField   uniform 450;
78         boundaryField
79         {
80             ".*"
81             {
82                 type            zeroGradient;
83             }
85         }
86     }
89 // ************************************************************************* //