~meshing/meshing/urop

« back to all changes in this revision

Viewing changes to shape/shp.geo

  • Committer: Adam Candy
  • Date: 2013-07-23 18:17:18 UTC
  • Revision ID: adam.candy@imperial.ac.uk-20130723181718-vi35hxtsvopa74z4
Final fix (hopefully).
Licensing formally implemented.  Please update your branches and any derivative works.
Additional tidying and restructure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
//  
22
22
//////////////////////////////////////////////////////////////////////////
23
23
 
24
 
Point(2) = {-8.000000, 51.858722, 0, 1.0};
25
 
Point(3) = {-8.001667, 51.857889, 0, 1.0};
26
 
Point(4) = {-9.775028, 51.444583, 0, 1.0};
27
 
Point(5) = {-9.458361, 51.729556, 0, 1.0};
28
 
Point(6) = {-9.555861, 51.882500, 0, 1.0};
29
 
Point(7) = {-9.759194, 52.156639, 0, 1.0};
30
 
Point(8) = {-8.697556, 52.653278, 0, 1.0};
31
 
Point(9) = {-9.940889, 52.557472, 0, 1.0};
32
 
Point(10) = {-8.879167, 53.208278, 0, 1.0};
33
 
Point(11) = {-9.550861, 53.800806, 0, 1.0};
34
 
Point(12) = {-8.518417, 54.211222, 0, 1.0};
35
 
Point(13) = {-8.115861, 54.649139, 0, 1.0};
36
 
Point(14) = {-8.810917, 54.699139, 0, 1.0};
37
 
Point(15) = {-7.985056, 55.226194, 0, 1.0};
38
 
Point(16) = {-7.630111, 54.962056, 0, 1.0};
39
 
Point(17) = {-7.388417, 55.381222, 0, 1.0};
40
 
Point(18) = {-6.922528, 55.236639, 0, 1.0};
41
 
Point(19) = {-7.315028, 55.006194, 0, 1.0};
42
 
Point(20) = {-6.399167, 54.013333, 0, 1.0};
43
 
Point(21) = {-6.314250, 52.240833, 0, 1.0};
44
 
Point(22) = {-8.000000, 51.858722, 0, 1.0};
45
 
 
46
 
Line(1) = {2,3};
47
 
Line(2) = {3,4};
48
 
Line(21) = {4,5};
49
 
Line(3) = {5,6};
50
 
Line(4) = {6,7};
51
 
Line(5) = {7,8};
52
 
Line(6) = {8,9};
53
 
Line(7) = {9,10};
54
 
Line(8) = {10,11};
55
 
Line(9) = {11,12};
56
 
Line(10) = {12,13};
57
 
Line(11) = {13,14};
58
 
Line(12) = {14,15};
59
 
Line(13) = {15,16};
60
 
Line(14) = {16,17};
61
 
Line(15) = {17,18};
62
 
Line(16) = {18,19};
63
 
Line(17) = {19,20};
64
 
Line(18) = {20,21};
65
 
Line(19) = {21,22};
66
 
Line(20) = {22,2};
67
 
 
68
 
Line Loop(23) = {1,2,21,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
69
 
 
70
 
Plane Surface(1) = {23};
 
24
//////////////////////////////////////////////////////////////////////////
 
25
//  
 
26
//  Generation of boundary representation from arbitrary geophysical
 
27
//  fields and initialisation for anisotropic, unstructured meshing.
 
28
//  
 
29
//  Copyright (C) 2011-2013 Dr Adam S. Candy, adam.candy@imperial.ac.uk
 
30
//  
 
31
//  This program is free software: you can redistribute it and/or modify
 
32
//  it under the terms of the GNU General Public License as published by
 
33
//  the Free Software Foundation, either version 3 of the License, or
 
34
//  (at your option) any later version.
 
35
//  
 
36
//  This program is distributed in the hope that it will be useful,
 
37
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
38
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
39
//  GNU General Public License for more details.
 
40
//  
 
41
//  You should have received a copy of the GNU General Public License
 
42
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
43
//  
 
44
//////////////////////////////////////////////////////////////////////////
 
45