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

« back to all changes in this revision

Viewing changes to doc/usrman/sphere.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
// http://sites.google.com/site/auxcapucins/maillage-3d-en-gmsh---maillage-d-une-sphere
 
2
n = 1; // density
 
3
h = 1.0/n;
 
4
R = 1.0;
 
5
Point(1) = {0,0,0,h};
 
6
Point(2) = {R,0,0,h};
 
7
Point(3) = {0,R,0,h};
 
8
Point(4) = {0,0,R,h};
 
9
Point(5) = {-R,0,0,h};
 
10
Point(6) = {0,-R,0,h};
 
11
Point(7) = {0,0,-R,h};
 
12
Circle(1) = {2,1,3}; // {start,center,end}
 
13
Circle(2) = {3,1,5};
 
14
Circle(3) = {5,1,6};
 
15
Circle(4) = {6,1,2};
 
16
Circle(5) = {2,1,7};
 
17
Circle(6) = {7,1,5};
 
18
Circle(7) = {5,1,4};
 
19
Circle(8) = {4,1,2};
 
20
Circle(9) = {6,1,7};
 
21
Circle(10) = {7,1,3};
 
22
Circle(11) = {3,1,4};
 
23
Circle(12) = {4,1,6};
 
24
Line Loop(1) = {1,11,8};
 
25
Line Loop(2) = {2,7,-11};
 
26
Line Loop(3) = {3,-12,-7};
 
27
Line Loop(4) = {4,-8,12};
 
28
Line Loop(5) = {5,10,-1};
 
29
Line Loop(6) = {-2,-10,6};
 
30
Line Loop(7) = {-3,-6,-9};
 
31
Line Loop(8) = {-4,9,-5};
 
32
Ruled Surface(1) = {1};
 
33
Ruled Surface(2) = {2};
 
34
Ruled Surface(3) = {3};
 
35
Ruled Surface(4) = {4};
 
36
Ruled Surface(5) = {5};
 
37
Ruled Surface(6) = {6};
 
38
Ruled Surface(7) = {7};
 
39
Ruled Surface(8) = {8};
 
40
Surface Loop (1) = {1,2,3,4,5,6,7,8};
 
41
Physical Surface("boundary") = {1,2,3,4,5,6,7,8};
 
42
Volume (1) = {1};
 
43
Physical Volume("internal") = {1};