Changeset 5683 for anuga_validation
- Timestamp:
- Aug 26, 2008, 10:34:49 AM (17 years ago)
- Location:
- anuga_validation/Hinwood_2008
- Files:
-
- 1 edited
- 16 moved
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/Hinwood_2008/scenarios.py
r5682 r5683 5 5 scenarios = [] 6 6 7 # 0 - t1r3 8 # 1 - t1r5 9 # 2 - t2r7 10 # 3 - t2r8 11 # 4 - t3r28 12 # 5 - t3r29 13 # 6 - t4r31 14 # 7 - t4r32 15 16 # T1R3 7 17 8 data = {'xleft':[-3.106,0.0], # Av' of ADV and Gauge A 18 9 'xtoe':[0.0,0.0], … … 20 11 'xright':[8,.4843334], 21 12 'offshore_water_depth':.4, 22 'scenario_id':' T1R3',13 'scenario_id':'S1R2', 23 14 'gauge_names':['B','1','2','3','4','5','7'], 24 15 'gauge_x':[-0.68, 1.569, 2.568, 3.566, 4.564, 5.562, 7.559], … … 40 31 scenarios.append(data) 41 32 42 # T1R5 33 43 34 data = {'xleft':[-3.106,0.0], # Av' of ADV and Gauge A 44 35 'xtoe':[0.0,0.0], … … 46 37 'xright':[8,.4843334], 47 38 'offshore_water_depth':.4, 48 'scenario_id':' T1R5',39 'scenario_id':'S1R1', 49 40 'gauge_names':['B','1','2','3','4','5','7'], 50 41 'gauge_x':[-0.68, 1.569, 2.568, 3.566, 4.564, 5.562, 7.559], … … 68 59 69 60 70 # #T2R771 # xleft is different72 61 data = {'xleft':[-4.586,0.0], # Av' of ADV and Gauge A 73 62 'xtoe':[0.0,0.0], … … 75 64 'xright':[8,.4843334], 76 65 'offshore_water_depth':.4, 77 'scenario_id':' T2R7',66 'scenario_id':'S2R1', 78 67 'gauge_names':['B','1','2','3','4','5'], 79 68 'gauge_x':[-0.68, 1.569, 2.568, 3.566, 4.564, 5.562], … … 94 83 scenarios.append(data) 95 84 96 # #T2R897 # xleft is different98 85 data = {'xleft':[-4.586,0.0], # Av' of ADV and Gauge A 99 86 'xtoe':[0.0,0.0], … … 101 88 'xright':[8,.4843334], 102 89 'offshore_water_depth':.4, 103 'scenario_id':' T2R8',90 'scenario_id':'S2R2', 104 91 'gauge_names':['B','1','2','3','4','5'], 105 92 'gauge_x':[-0.68, 1.569, 2.568, 3.566, 4.564, 5.562], … … 121 108 scenarios.append(data) 122 109 123 # #T3R28124 # xleft is different125 110 data = {'xleft':[-3.875,0.0], # Av' of ADV and Gauge A 126 111 'xtoe':[0.0,0.0], … … 128 113 'xright':[14.,.3903881], 129 114 'offshore_water_depth':.336, 130 'scenario_id':' T3R28',115 'scenario_id':'S3R2', 131 116 'gauge_names':['B','1','2','3','5','7', 132 117 '9','10','11','12'], … … 155 140 scenarios.append(data) 156 141 157 # #T3R29158 142 data = {'xleft':[-3.875,0.0], # Av' of ADV and Gauge A 159 143 'xtoe':[0.0,0.0], … … 161 145 'xright':[14.,.3903881], 162 146 'offshore_water_depth':.336, 163 'scenario_id':' T3R29',147 'scenario_id':'S3R1', 164 148 'gauge_names':['B','1','2','3','5','7', 165 149 '9','10','11','12'], … … 188 172 scenarios.append(data) 189 173 190 # #T4R31191 # xleft is different192 174 data = {'xleft':[-2.43,0.0], # Av' of ADV and Gauge A 193 175 'xtoe':[0.0,0.0], … … 195 177 'xright':[14.,.3903881], 196 178 'offshore_water_depth':.336, 197 'scenario_id':' T4R31',179 'scenario_id':'S4R2', 198 180 'gauge_names':['B','1','2','3','5','7', 199 181 '9','10','11','12'], … … 222 204 scenarios.append(data) 223 205 224 # #T4R32225 206 data = {'xleft':[-2.43,0.0], # Av' of ADV and Gauge A 226 207 'xtoe':[0.0,0.0], … … 228 209 'xright':[14.,.3903881], 229 210 'offshore_water_depth':.336, 230 'scenario_id':' T4R32',211 'scenario_id':'S4R1', 231 212 'gauge_names':['B','1','2','3','5','7', 232 213 '9','10','11','12'], … … 256 237 scenarios.append(data) 257 238 258 # These are the indexes from 'gauge_x' of the gauges for the journal article. 259 to_publish_indexes = {'T1R5':[0, 5, 6], 260 'T2R7':[0, 3, 5], 261 'T3R29':[0, 6, 8], 262 'T4R32':[0, 5, 8] 263 } 264 265 266 239
Note: See TracChangeset
for help on using the changeset viewer.