1 | """Create mesh for lwru2 validation of the Oshiri island tsunami |
---|
2 | """ |
---|
3 | |
---|
4 | #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
5 | # Assume that the root AnuGA dir is included in your pythonpath |
---|
6 | #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
7 | |
---|
8 | from pmesh.mesh import * |
---|
9 | from coordinate_transforms.geo_reference import Geo_reference |
---|
10 | |
---|
11 | import project |
---|
12 | def generate(): |
---|
13 | #Basic geometry |
---|
14 | |
---|
15 | xleft = -5.4 |
---|
16 | xright = .4 |
---|
17 | ybottom = 0 |
---|
18 | ytop = 0.4 |
---|
19 | xdam = 0.0 |
---|
20 | |
---|
21 | #Outline |
---|
22 | point_sw = [xleft, ybottom] |
---|
23 | point_se = [xright, ybottom] |
---|
24 | point_nw = [xleft, ytop] |
---|
25 | point_ne = [xright, ytop] |
---|
26 | |
---|
27 | # Dam seperation (left) |
---|
28 | point_dam_top = [xdam, ytop] |
---|
29 | point_dam_bottom = [xdam, ybottom] |
---|
30 | |
---|
31 | |
---|
32 | m = Mesh() |
---|
33 | |
---|
34 | #Boundary |
---|
35 | # FIXME (DSG-DSG): Update this to use new interface. |
---|
36 | dict = {} |
---|
37 | dict['points'] = [point_se, #se |
---|
38 | point_ne, |
---|
39 | point_dam_top, |
---|
40 | point_nw, |
---|
41 | point_sw, |
---|
42 | point_dam_bottom] |
---|
43 | |
---|
44 | dict['segments'] = [[0,1], [1,2], [2,3], [3,4], |
---|
45 | [4,5], [5,0], #The outer border |
---|
46 | [2,5]] #Separator |
---|
47 | |
---|
48 | dict['segment_tags'] = ['wall', |
---|
49 | 'wall', |
---|
50 | 'wall', |
---|
51 | 'wave', |
---|
52 | 'wall', |
---|
53 | 'wall', |
---|
54 | ''] #Interior |
---|
55 | |
---|
56 | |
---|
57 | m.addVertsSegs(dict) |
---|
58 | |
---|
59 | dam = m.add_region(0.2,0.2) |
---|
60 | dam.setTag("dam") |
---|
61 | #m.generateMesh('pzq28.0za0.01a') |
---|
62 | m.generateMesh('pzq28.0za0.0001a') |
---|
63 | |
---|
64 | m.export_mesh_file(project.mesh_filename) |
---|
65 | print "mesh created" |
---|
66 | |
---|
67 | #------------------------------------------------------------- |
---|
68 | if __name__ == "__main__": |
---|
69 | pass |
---|