1 | """Example of shallow water wave equation analytical solution |
---|
2 | consists of a symmetrical converging channel with friction and bed slope. |
---|
3 | |
---|
4 | Specific methods pertaining to the 2D shallow water equation |
---|
5 | are imported from shallow_water |
---|
6 | for use with the generic finite volume framework |
---|
7 | |
---|
8 | Copyright 2004 |
---|
9 | Christopher Zoppou, Stephen Roberts, Ole Nielsen, Duncan Gray |
---|
10 | Geoscience Australia, ANU |
---|
11 | |
---|
12 | Specific methods pertaining to the 2D shallow water equation |
---|
13 | are imported from shallow_water |
---|
14 | for use with the generic finite volume framework |
---|
15 | |
---|
16 | Conserved quantities are h, uh and vh stored as elements 0, 1 and 2 in the |
---|
17 | numerical vector named conserved_quantities. Existance of 'MacDonald_77541.tsh' assumed. |
---|
18 | """ |
---|
19 | |
---|
20 | #--------------- |
---|
21 | # Module imports |
---|
22 | import sys, string |
---|
23 | from os import sep |
---|
24 | sys.path.append('..'+sep+'pyvolution') |
---|
25 | |
---|
26 | from shallow_water import Transmissive_boundary, Reflective_boundary, \ |
---|
27 | Dirichlet_boundary |
---|
28 | from shallow_water import Domain, Add_value_to_region |
---|
29 | from pmesh2domain import pmesh_to_domain_instance |
---|
30 | from Numeric import zeros, Float |
---|
31 | |
---|
32 | #------- |
---|
33 | # Domain |
---|
34 | filename = 'MacDonald_91328_wall.tsh' |
---|
35 | print 'Creating domain from', filename |
---|
36 | domain = pmesh_to_domain_instance(filename, Domain) |
---|
37 | print 'Number of triangles = ', len(domain) |
---|
38 | |
---|
39 | #------------------------------------- |
---|
40 | # Provide file name for storing output |
---|
41 | domain.store = True #Store for visualisation purposes |
---|
42 | domain.format = 'sww' #Native netcdf visualisation format |
---|
43 | domain.filename = 'MacDonald_first_order_wall' |
---|
44 | |
---|
45 | #-------------- |
---|
46 | # Bed Elevation |
---|
47 | fid = open('MacDonald_bed.xya') |
---|
48 | lines = fid.readlines() |
---|
49 | n_bed = len(lines) |
---|
50 | z_bed = zeros(n_bed, Float) |
---|
51 | x_bed = zeros(n_bed, Float) |
---|
52 | |
---|
53 | for line in range(n_bed): |
---|
54 | value = string.split(lines[line]) |
---|
55 | x_bed[line] = float(value[0]) |
---|
56 | z_bed[line] = float(value[1]) |
---|
57 | |
---|
58 | #------------------ |
---|
59 | # Set bed elevation |
---|
60 | def bed_elevation(x,y): |
---|
61 | n = x.shape[0] |
---|
62 | z = 0*x |
---|
63 | |
---|
64 | for i in range(n): |
---|
65 | # print i |
---|
66 | for j in range(n_bed-1): |
---|
67 | if x[i] >= x_bed[j] and x[i] < x_bed[j+1]: |
---|
68 | z[i] = z_bed[j] + (z_bed[j+1] - z_bed[j])/(x_bed[j+1] - x_bed[j])*(x[i] - x_bed[j]) |
---|
69 | return z |
---|
70 | |
---|
71 | # Bed elevation |
---|
72 | domain.set_quantity('elevation', bed_elevation) |
---|
73 | |
---|
74 | #----------------------------------------- |
---|
75 | # Set initial water surface stage which is |
---|
76 | # bed elevation plus an arbitrary 0.2 |
---|
77 | #--------------------------- |
---|
78 | # Add value to tagged region |
---|
79 | domain.set_region(Add_value_to_region('bed', 'stage', 0.2,location='unique vertices', initial_quantity='elevation')) |
---|
80 | |
---|
81 | #--------------------------- |
---|
82 | # Add value to tagged region |
---|
83 | domain.set_region(Add_value_to_region('floodplain', 'elevation', 2,location='unique vertices', initial_quantity='elevation')) |
---|
84 | |
---|
85 | #---------------------------------------------------------- |
---|
86 | # Decide which quantities are to be stored at each timestep |
---|
87 | domain.quantities_to_be_stored = ['stage', 'xmomentum', 'ymomentum'] |
---|
88 | |
---|
89 | #------------------------------------------ |
---|
90 | # Reduction operation for get_vertex_values |
---|
91 | from util import mean |
---|
92 | domain.reduction = mean |
---|
93 | |
---|
94 | #-------------------- |
---|
95 | # Boundary Conditions |
---|
96 | upstream_depth = 5.035 |
---|
97 | downstream_depth = 1.5 |
---|
98 | discharge = 20 |
---|
99 | tags = {} |
---|
100 | tags['upstream'] = Dirichlet_boundary([upstream_depth, 2, 0.0]) |
---|
101 | tags['exterior'] = Reflective_boundary(domain) |
---|
102 | tags['downstream'] = Dirichlet_boundary([downstream_depth, 2, 0.0]) |
---|
103 | domain.set_boundary(tags) |
---|
104 | |
---|
105 | #--------- |
---|
106 | # Friction |
---|
107 | domain.set_quantity('friction', 0.02) |
---|
108 | |
---|
109 | # ------------------- |
---|
110 | # Set order of scheme |
---|
111 | domain.default_order = 1 |
---|
112 | domain.smooth = True |
---|
113 | |
---|
114 | #---------- |
---|
115 | # Evolution |
---|
116 | import time |
---|
117 | t0 = time.time() |
---|
118 | for t in domain.evolve(yieldstep = 100, finaltime = 1500.): |
---|
119 | domain.write_time() |
---|
120 | |
---|
121 | print 'That took %.2f seconds' %(time.time()-t0) |
---|
122 | |
---|
123 | |
---|