Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / porousSimpleFoam / porousPlug / constant / porousZones
blob94fd27898040a7ceb3166573465728e3ca59cff4
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      porousZones;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
20     poro
21     {
22         coordinateSystem
23         {
24             e1  (1 0 0);
25             e2  (0 1 0);
26         }
28         // Da =0.01 = K/H² = K/0.1^2 -> K=1e-4
29         // Da =0.001 = K/H² = K/0.1^2 -> K=1e-5
30         // ce = 0.2439 -> sqrt(1/K) * ce (24.39 bzw 77.12)
31         Darcy
32         {
33             d   d [0 -2 0 0 0 0 0] (1e5 1e5 1e5);
34             f   f [0 -1 0 0 0 0 0] (77.12 77.12 77.12);
35             //            d   d [0 -2 0 0 0 0 0] (1e4 1e4 1e4);
36             //            f   f [0 -1 0 0 0 0 0] (24.39 24.39 24.39);
37         }
38     }
41 // ************************************************************************* //