File: ng_vol.cpp_orig

package info (click to toggle)
calculix-cgx 2.21%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 67,052 kB
  • sloc: ansic: 109,187; cpp: 3,087; sh: 70; makefile: 37
file content (95 lines) | stat: -rw-r--r-- 1,715 bytes parent folder | download | duplicates (3)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <iostream>
#include <fstream>

using namespace std;

namespace nglib {
#include <nglib.h>
}

int main (int argc, char ** argv)
{
  using namespace nglib;

  cout << "Netgen Testing" << endl;

  if (argc < 2)
    {
      cerr << "use: ng_vol filename" << endl;
      return 1;
    }



  Ng_Mesh * mesh;

  Ng_Init();

  // creates mesh structure
  mesh = Ng_NewMesh ();





  int i, np, nse, ne;
  double point[3];
  int trig[3], tet[4];


  // reads surface mesh from file
  ifstream in(argv[1]);

  in >> np;
  cout << "Reading " << np  << " points..."; cout.flush();
  for (i = 1; i <= np; i++)
    {
      in >> point[0] >> point[1] >> point[2];
      Ng_AddPoint (mesh, point);
    }
  cout << "done" << endl;

  in >> nse;
  cout << "Reading " << nse  << " faces..."; cout.flush();
  for (i = 1; i <= nse; i++)
    {
      in >> trig[0] >> trig[1] >> trig[2];
      Ng_AddSurfaceElement (mesh, NG_TRIG, trig);
    }
  cout << "done" << endl;


  // generate volume mesh
  Ng_Meshing_Parameters mp;
  mp.maxh = 1e6;
  mp.fineness = 1;
  mp.secondorder = 0;

  cout << "start meshing" << endl;
  Ng_GenerateVolumeMesh (mesh, &mp);
  cout << "meshing done" << endl;

  // volume mesh output
  np = Ng_GetNP(mesh);
  cout << "Points: " << np << endl;

  for (i = 1; i <= np; i++)
    {
      Ng_GetPoint (mesh, i, point);
      cout << i << ": " << point[0] << " " << point[1] << " " << point[2] << endl;
    }

  ne = Ng_GetNE(mesh);
  cout << "Elements: " << ne << endl;
  for (i = 1; i <= ne; i++)
    {
      Ng_GetVolumeElement (mesh, i, tet);
      cout << i << ": " << tet[0] << " " << tet[1] 
	   << " " << tet[2] << " " << tet[3] << endl;
    }

  Ng_SaveMesh(mesh,"test.vol");


  return 0;
}