initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / interDyMFoam / sloshingTank2D3DoF / constant / dynamicMeshDict
blob2b9f0bed1195391eeea3f4c700c909217a838025
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      motionProperties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dynamicFvMesh solidBodyMotionFvMesh;
19 solidBodyMotionFvMeshCoeffs
21     solidBodyMotionFunction SDA;
23     SDACoeffs
24     {
25         // Centre of gravity
26         CofG        (0 0 0);
28         // Model scale ratio
29         lamda       50;
31         // Max roll amplitude [rad]
32         rollAmax    0.2;
34         // Min roll amplitude [rad]
35         rollAmin    0.1;
37         // Heave amplitude [m]
38         heaveA      4;
40         // Sway amplitude [m]
41         swayA       2.4;
43         // Damping Coefficient [-]
44         Q           2;
46         // Time Period for liquid [sec]
47         Tp          14;
49         // Natural Period of Ship [sec]
50         Tpn         12;
52         // Reference time step [sec]
53         dTi         0.06;
55         // Incr. in Tp/unit 'dTi'[-]
56         dTp         -0.001;
57     }
60 // ************************************************************************* //