Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / combustion / PDRFoam / flamePropagationWithObstacles / constant / dynamicMeshDict
blob8229956408fa64baa4e183c72d19446f9c790b72
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     object      dynamicMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dynamicFvMesh      dynamicRefineFvMesh;
20 dynamicRefineFvMeshCoeffs
23     // Refine every refineInterval timesteps
24     refineInterval 1;
26     // Maximum refinement level (starts from 0)
27     maxRefinement 2;
29     // Maximum cell limit (approximate)
30     maxCells 10000;
32     // volScalarField to base refinement on
33     field normalisedGradP;
35     nBufferLayers 1;
37     dumpLevel true;
39     lowerRefineLevel 0.5;
40     upperRefineLevel 1.5;
42     unrefineLevel 0.5;
44     nBufferLayers 1;
45     // Newly introduced patch points optionally get projected onto a surface
46     //projectSurfaces ("fixedWalls4.stl");
47     //projectPatches (fixedWalls);
48     // Maximum project distance
49     //projectDistance 1;
51     // Fluxes to adapt. For newly created faces or split faces the flux
52     // gets estimated from an interpolated volVectorField ('velocity')
53     // First is name of the flux to adapt, second is velocity that will
54     // be interpolated and inner-producted with the face area vector.
55     correctFluxes ((phi U));
58 // ************************************************************************* //