initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / compressibleLesInterFoam / depthCharge3D / system / setFieldsDict
blobd0e435037219410e9f082c6b98ea271b807be53c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  dev                                   |
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      setFieldsDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 defaultFieldValues
19     volScalarFieldValue alpha1 1
20     volScalarFieldValue pd 1e5
23 regions
25     sphereToCell
26     {
27         centre (0.5 0.5 0.5);
28         radius 0.1;
30         fieldValues
31         (
32             volScalarFieldValue alpha1 0
33             volScalarFieldValue pd 10e5
34         );
35     }
37     boxToCell
38     {
39         box (-10 1 -1) (10 10 1);
41         fieldValues
42         (
43             volScalarFieldValue alpha1 0
44         );
45     }
48 // ************************************************************************* //