Skip to content

Commit 07daa50

Browse files
committed
Adds breaking dam 3D test case
1 parent 5cab2c5 commit 07daa50

32 files changed

+25416
-0
lines changed

breaking-dam-3d/fluid-openfoam/0/U

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
FoamFile
2+
{
3+
version 2.0;
4+
format ascii;
5+
class volVectorField;
6+
location "0";
7+
object U;
8+
}
9+
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
10+
11+
dimensions [0 1 -1 0 0 0 0];
12+
13+
internalField uniform (0 0 0);
14+
15+
boundaryField
16+
{
17+
inlet
18+
{
19+
type noSlip;;
20+
//value $internalField;
21+
}
22+
outlet
23+
{
24+
type noSlip;
25+
}
26+
flap
27+
{
28+
type movingWallVelocity;
29+
value uniform (0 0 0);
30+
}
31+
upperWall
32+
{
33+
type zeroGradient;
34+
//value uniform (0 0 0);
35+
}
36+
lowerWall
37+
{
38+
type noSlip;
39+
}
40+
front
41+
{
42+
type empty;
43+
}
44+
back
45+
{
46+
type empty;
47+
}
48+
}
49+
50+
51+
// ************************************************************************* //

0 commit comments

Comments
 (0)