-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdynamicMeshDict
45 lines (38 loc) · 1.29 KB
/
dynamicMeshDict
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object dynamicMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dynamicFvMesh dynamicWaveMakerFvMesh;
dynamicWaveMakerFvMeshCoeffs
{
times 7 ( 0 .1 .2 .3 .4 .5 .6 );
pistonPositions 5
(
7 ( 0 .1 .2 .3 .4 .5 .6 );
7 ( 0 .1 .2 .3 .4 .5 .6 );
7 ( 0 .1 .2 .3 .4 .5 .6 );
7 ( 0 .1 .2 .3 .4 .5 .6 );
7 ( 0 .1 .2 .3 .4 .5 .6 );
);
xLeft 1;
xRight 5;
// yPiston 5 ( -2 -1 0 1 2 );
// positionsToLog no;
// amplification .1;
// repetitions 2;
// timeInterpolation linear;
// spaceInterpolation spline;
}
// ************************************************************************* //