added some geo files that I used to get results for thesis

This commit is contained in:
Stephen McQuay 2011-05-17 18:50:06 -06:00
parent bae7b74e7c
commit 877a42aee3
3 changed files with 26 additions and 0 deletions

View File

@ -6,3 +6,4 @@
^profiles$
^meshes$
^data$
^gmsh$

11
gmsh/gmsh.2D.geo Normal file
View File

@ -0,0 +1,11 @@
a = 0.0049;
Point(0) = {0, 0, 0, a};
Point(1) = {1, 0, 0, a};
Point(2) = {1, 1, 0, a};
Point(3) = {0, 1, 0, a};
Line(1) = {0, 1};
Line(2) = {1, 2};
Line(3) = {2, 3};
Line(4) = {3, 0};
Line Loop(6) = {3, 4, 1, 2};
Plane Surface(6) = {6};

14
gmsh/gmsh.3D.geo Normal file
View File

@ -0,0 +1,14 @@
a = 0.00885;
Point(0) = {0, 0, 0, a};
Point(1) = {1, 0, 0, a};
Point(2) = {1, 1, 0, a};
Point(3) = {0, 1, 0, a};
Line(1) = {0, 1};
Line(2) = {1, 2};
Line(3) = {2, 3};
Line(4) = {3, 0};
Line Loop(6) = {3, 4, 1, 2};
Plane Surface(6) = {6};
Extrude {0, 0, 1} {
Surface{6};
}