Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interDyMFoam / ras / testTubeMixer / constant / dynamicMeshDict
blob45b3a7eda6ab6bbd475e1f67a81aeef12b1c4dcd
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     location    "constant";
14     object      dynamicMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dynamicFvMesh   solidBodyMotionFvMesh;
20 solidBodyMotionFvMeshCoeffs
22     solidBodyMotionFunction multiMotion;
24     multiMotionCoeffs
25     {
26         // Table rotating in z axis
27         rotatingTable
28         {
29             solidBodyMotionFunction rotatingMotion;
30             rotatingMotionCoeffs
31             {
32                 CofG            (0 0.1 0);
33                 radialVelocity  (0 0 360);    // degrees/s
34             }
35         }
37         //// Box rotates on rotating table
38         //rotatingBox
39         //{
40         //    solidBodyMotionFunction rotatingMotion;
41         //    rotatingMotionCoeffs
42         //    {
43         //        CofG            (0 0 0);
44         //        radialVelocity  (720 0 0);    // degrees/s
45         //    }
46         //}
47         // Tube rocking on rotating table
48         rotatingBox
49         {
50             solidBodyMotionFunction oscillatingRotatingMotion;
51             oscillatingRotatingMotionCoeffs
52             {
53                 CofG            (0 0 0);
54                 omega           40;         // rad/s
55                 amplitude       (45 0 0);   // 45 degrees max tilt
56             }
57         }
58     }
62 // ************************************************************************* //