File: boundary

package info (click to toggle)
calculix-cgx 2.21%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 65,752 kB
  • sloc: ansic: 109,184; cpp: 3,087; sh: 70; makefile: 35
file content (46 lines) | stat: -rwxr-xr-x 464 bytes parent folder | download | duplicates (2)
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
46
#!/usr/bin/cgx -foam
FoamFile
{
    version 2.0;
    format ascii;

    root "..";
    case ".";
    instance "constant";
    local "polyMesh";

    class polyBoundaryMesh;
    object boundary;
}

4
(
  SYMP3
  {
    type empty;
    nFaces 320;
    startFace 276;
  }

  in
  {
    type cyclic;
    nFaces 80;
    startFace 596;
  }

  wall
  {
    type wall;
    nFaces 4;
    startFace 676;
  }

  slip
  {
    type wall;
    nFaces 4;
    startFace 680;
  }

)