1 | """Validation of the AnuGA implementation of the shallow water wave equation. |
---|
2 | |
---|
3 | This script sets up LWRU2 benchmark with initial condition stated |
---|
4 | |
---|
5 | See also |
---|
6 | |
---|
7 | http://www.cee.cornell.edu/longwave/index.cfm?page=benchmark&problem=2 |
---|
8 | |
---|
9 | Depth at western boundary is d = 13.5 cm |
---|
10 | |
---|
11 | This a parallel version. |
---|
12 | """ |
---|
13 | |
---|
14 | # Module imports |
---|
15 | from Numeric import array, zeros, Float, allclose |
---|
16 | |
---|
17 | from anuga.shallow_water import Domain |
---|
18 | from anuga.shallow_water import Reflective_boundary |
---|
19 | from anuga.shallow_water import Transmissive_Momentum_Set_Stage_boundary |
---|
20 | from anuga.abstract_2d_finite_volumes.util import file_function |
---|
21 | |
---|
22 | from anuga_parallel.parallel_api import myid, numprocs, distribute |
---|
23 | |
---|
24 | import project |
---|
25 | |
---|
26 | |
---|
27 | #------------------------- |
---|
28 | # Create Domain |
---|
29 | #------------------------- |
---|
30 | domain = Domain(project.mesh_filename, use_cache=True, verbose=True) |
---|
31 | domain.set_name('okushiri_parallel') |
---|
32 | domain.set_minimum_storable_height(0.001) |
---|
33 | domain.set_default_order(2) |
---|
34 | print domain.statistics() |
---|
35 | |
---|
36 | |
---|
37 | #------------------------- |
---|
38 | # Initial Conditions |
---|
39 | #------------------------- |
---|
40 | domain.set_quantity('friction', 0.0) |
---|
41 | domain.set_quantity('stage', 0.0) |
---|
42 | domain.set_quantity('elevation', |
---|
43 | filename = project.bathymetry_filename[:-4] + '.pts', |
---|
44 | alpha = 0.02, |
---|
45 | verbose = True, |
---|
46 | use_cache = True) |
---|
47 | |
---|
48 | #------------------------- |
---|
49 | # Boundary Conditions |
---|
50 | #------------------------- |
---|
51 | Br = Reflective_boundary(domain) |
---|
52 | |
---|
53 | domain.set_boundary({'wave': None, # Bind this one later |
---|
54 | 'wall': Br}) |
---|
55 | |
---|
56 | |
---|
57 | #------------------------- |
---|
58 | # Distribute domain |
---|
59 | #------------------------- |
---|
60 | domain = distribute(domain) |
---|
61 | |
---|
62 | |
---|
63 | # Bind boundary, that cannot be fully specified before distribution. |
---|
64 | function = file_function(project.boundary_filename[:-4] + '.tms', |
---|
65 | domain, |
---|
66 | verbose=True) |
---|
67 | |
---|
68 | Bts = Transmissive_Momentum_Set_Stage_boundary(domain, function) |
---|
69 | domain.modify_boundary({'wave': Bts}) |
---|
70 | |
---|
71 | |
---|
72 | #------------------------- |
---|
73 | # Evolve through time |
---|
74 | #------------------------- |
---|
75 | import time |
---|
76 | t0 = time.time() |
---|
77 | |
---|
78 | for t in domain.evolve(yieldstep = 0.05, finaltime = 22.5): |
---|
79 | domain.write_time() |
---|
80 | |
---|
81 | print 'That took %.2f seconds' %(time.time()-t0) |
---|