Skip to content

Commit 6e2e0e1

Browse files
author
Artur
committed
Added a missing file in 0/ in tutorial 9
1 parent c6345e7 commit 6e2e0e1

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*--------------------------------*- C++ -*----------------------------------*\
2+
| ========= | |
3+
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
4+
| \\ / O peration | Version: 3.0.0 |
5+
| \\ / A nd | Web: www.OpenFOAM.org |
6+
| \\/ M anipulation | |
7+
\*---------------------------------------------------------------------------*/
8+
FoamFile
9+
{
10+
version 2.0;
11+
format ascii;
12+
class volScalarField;
13+
object beta;
14+
}
15+
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16+
17+
// Make this a dimensionless scalar
18+
dimensions [0 0 0 0 0 0 0];
19+
20+
internalField uniform 0;
21+
22+
boundaryField
23+
{
24+
left
25+
{
26+
type fixedValue;
27+
value uniform 1;
28+
}
29+
30+
lower
31+
{
32+
type fixedValue;
33+
value uniform 0;
34+
}
35+
36+
"(upper|right)"
37+
{
38+
type zeroGradient;
39+
}
40+
41+
frontAndBack
42+
{
43+
type empty;
44+
}
45+
}
46+
47+
// ************************************************************************* //
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
rm 0/result* 0/beta* constant/polyMesh/* log.* 2>/dev/null
2+
rm 0/result* constant/polyMesh/* log.* 2>/dev/null

0 commit comments

Comments
 (0)