~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to nfem/ptst/circle_tq_gmsh.mshcad

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
R = 1.0;
 
2
n = 10; // the density of discretisation
 
3
h = 1.0/n;
 
4
Point(40) = { 0, 0, 0, h};
 
5
Point(41) = { R, 0, 0, h};
 
6
Point(42) = { 0,-R, 0, h};
 
7
Point(43) = {-R, 0, 0, h};
 
8
Point(44) = { 0, R, 0, h};
 
9
Circle(21) = {41, 40, 42};
 
10
Circle(22) = {42, 40, 43};
 
11
Circle(23) = {43, 40, 44};
 
12
Circle(24) = {44, 40, 41};
 
13
Line Loop (51) = {21,22,23,24};
 
14
Mesh.Algorithm = 1;
 
15
Plane Surface(61) = {51} ;
 
16
angle = 90.0;
 
17
Mesh.RecombinationAlgorithm = 0;
 
18
Recombine Surface{61} = angle;
 
19
Physical Line("boundary") = {21,22,23,24};
 
20
Physical Surface("interior") = {61};