1 | """Read in sww file, interpolate at specified locations and |
---|
2 | Cross section at specified T |
---|
3 | |
---|
4 | """ |
---|
5 | from os import sep |
---|
6 | import Numeric |
---|
7 | import project |
---|
8 | from pyvolution.util import file_function |
---|
9 | from create_buildings import WidtH |
---|
10 | # from run_friction import fric |
---|
11 | from pylab import * |
---|
12 | |
---|
13 | fric = 'Dbl' |
---|
14 | #swwfile = project.newoutputname + '.sww' |
---|
15 | #swwfile = project.outputname |
---|
16 | |
---|
17 | #swwfile_B = project.outputdir + sep + 'Buildings_3790.sww' |
---|
18 | swwfile_B = project.outputdir + sep + 'buildings_Str_half_Off_D=6.9_1116.sww' |
---|
19 | #swwfile_F = project.outputdir + sep + 'buildings_Str_half_Off_D=6.89_1116.sww' |
---|
20 | #swwfile_B = project.outputdir + sep + 'friction_n=6_3135.sww' |
---|
21 | swwfile_F = project.outputdir + sep + 'friction_n=7_3135.sww' |
---|
22 | |
---|
23 | # gauge_depth = Numeric.arrayrange(51, 1.5*WidtH, 25) # Random special |
---|
24 | gauge_depth = Numeric.arrayrange(0, 5*WidtH, 25) |
---|
25 | gauge_breadth = 100 |
---|
26 | gauge_locations = [] |
---|
27 | |
---|
28 | for GD in gauge_depth: |
---|
29 | gauge_location = [GD,gauge_breadth] |
---|
30 | gauge_locations.append(gauge_location) |
---|
31 | |
---|
32 | |
---|
33 | #Read model output |
---|
34 | quantities = ['stage', 'xmomentum', 'ymomentum'] |
---|
35 | |
---|
36 | f_B = file_function(swwfile_B, |
---|
37 | quantities = quantities, |
---|
38 | interpolation_points = gauge_locations, |
---|
39 | verbose = True, |
---|
40 | use_cache = True) |
---|
41 | |
---|
42 | f_F = file_function(swwfile_F, |
---|
43 | quantities = quantities, |
---|
44 | interpolation_points = gauge_locations, |
---|
45 | verbose = True, |
---|
46 | use_cache = True) |
---|
47 | |
---|
48 | |
---|
49 | T = Numeric.arrayrange(700,1000,10) |
---|
50 | #T = [ 20, 50, 100, 150, 200 ] |
---|
51 | |
---|
52 | for t in T: |
---|
53 | model_time = [] |
---|
54 | stages_B = [] |
---|
55 | stages_F = [] |
---|
56 | elevations = [] |
---|
57 | momenta = [] |
---|
58 | velocity = [] |
---|
59 | for i, GL in enumerate(gauge_depth): |
---|
60 | |
---|
61 | # mines data from specified time values in sww file |
---|
62 | wB = f_B(t, point_id = i)[0] |
---|
63 | uhB = f_B(t, point_id = i)[1] |
---|
64 | vhB = f_B(t, point_id = i)[2] |
---|
65 | |
---|
66 | wF = f_F(t, point_id = i)[0] |
---|
67 | uhF = f_B(t, point_id = i)[1] |
---|
68 | vhF = f_B(t, point_id = i)[2] |
---|
69 | #m = sqrt(uh*uh + vh*vh) #Absolute momentum |
---|
70 | velB = sqrt(uhB*uhB + vhB*vhB) / (wB + 1.e-30) #Absolute velocity |
---|
71 | velF = sqrt(uhF*uhF + vhF*vhF) / (wF + 1.e-30) #Absolute velocity |
---|
72 | #print velB, "buiding velocity" |
---|
73 | #print velF, "friction velocity" |
---|
74 | |
---|
75 | stages_B.append(wB) |
---|
76 | stages_F.append(wF) |
---|
77 | #elevations.append(zB) #Should be constant over time |
---|
78 | #momenta.append(mB) |
---|
79 | #velocityB.append(velB) |
---|
80 | #velocityF.append(velF) |
---|
81 | |
---|
82 | #print len(stages), "stages" |
---|
83 | diff = abs(Numeric.array(stages_B) - Numeric.array(stages_F)) |
---|
84 | #print diff, "difference" |
---|
85 | |
---|
86 | |
---|
87 | ion() |
---|
88 | hold(True) |
---|
89 | subplot(211) |
---|
90 | |
---|
91 | plot(gauge_depth, stages_B, '-b',gauge_depth,stages_F,'-r') |
---|
92 | title('Stage@Time_%d_ vs Gauge length (m)[red: fric, blue: buildings] ' %t) |
---|
93 | xlabel('gauge length(m)') |
---|
94 | ylabel('water depths (m)') |
---|
95 | #savefig('Comp_Time%d_B_vs_F' %t) |
---|
96 | hold(False) |
---|
97 | #savefig('Final_comp_n=%s' %fric) |
---|
98 | subplot(212) |
---|
99 | subplots_adjust(hspace = 0.4) |
---|
100 | plot(gauge_depth, diff, 'g') |
---|
101 | title('Final Differences in water levels') |
---|
102 | xlabel('gauge length(m)') |
---|
103 | ylabel('water differences (m)') |
---|
104 | savefig('Final_Water_diff_n=%s' %fric) |
---|
105 | print "finished" |
---|
106 | |
---|
107 | |
---|