Changeset 5236 for anuga_work/development
- Timestamp:
- Apr 23, 2008, 5:07:51 PM (17 years ago)
- Location:
- anuga_work/development
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/Hinwood_2008/run_dam.py
r5092 r5236 152 152 print 'finished' 153 153 154 points = [[2.8,0.5], #-1.8m from SWL 155 [5.1,0.5], #0.5m from SWL 156 [6.6,0.5], #2m from SWL 157 [6.95,0.5], #2.35m from SWL 158 [7.6,0.5], #3m from SWL 159 [8.2,0.5], #3.5m from SWL 160 [9.2,0.5] #4.5m from SWL 154 flume_y_middle = 0.225 155 points = [[2.8,flume_y_middle], #-1.8m from SWL 156 [5.1,flume_y_middle], #0.5m from SWL 157 [6.6,flume_y_middle], #2m from SWL 158 [6.95,flume_y_middle], #2.35m from SWL 159 [7.6,flume_y_middle], #3m from SWL 160 [8.2,flume_y_middle], #3.5m from SWL 161 [9.2,flume_y_middle] #4.5m from SWL 161 162 ] 162 163 … … 166 167 #------------------------------------------------------------------------- 167 168 168 if False:169 if True: 169 170 interpolate_sww2csv(pro_instance.outputdir + basename +".sww", 170 171 points, -
anuga_work/development/attenuation_near_shore/create_mesh.py
r5166 r5236 16 16 xright = 10000 # wave generated here 17 17 if thinner: 18 ytop = 50019 ybottom = - 50018 ytop = 10 19 ybottom = -ytop 20 20 else: 21 21 ytop = 2000 22 ybottom = - 200022 ybottom = -ytop 23 23 24 24 -
anuga_work/development/near_shore_PMD/run_beach.py
r5192 r5236 231 231 print 'finished' 232 232 233 points = [[-2,0.0], #-1.8m from SWL 234 [0,0.0], #0.5m from SWL 235 [2,0.0], #2m from SWL 233 points = [[-2,0.0], 234 [0,0.0], 235 [1,0.0], 236 [2,0.0], 237 [3,0.0], 238 [4,0.0], 239 [5,0.0], 240 [6,0.0], 241 [7,0.0], 242 [8,0.0], 243 [9,0.0], 244 [10,0.0], 245 [11,0.0], 246 [12,0.0], 247 [13,0.0], 248 [14,0.0], 249 [15,0.0], 250 [16,0.0], 251 [17,0.0], 252 [18,0.0], 253 [1980,0.0], 254 [1981,0.0], 255 [1982,0.0], 256 [1983,0.0], 257 [1984,0.0], 258 [1985,0.0], 259 [1986,0.0], 260 [1987,0.0], 261 [1988,0.0], 262 [1989,0.0], 263 [1990,0.0], 264 [1991,0.0], 265 [1992,0.0], 266 [1993,0.0], 267 [1994,0.0], 268 [1995,0.0], 269 [1996,0.0], 270 [1997,0.0], 271 [1998,0.0], 236 272 ] 237 273 … … 256 292 friction=0.0, 257 293 is_structured=True, 258 outputdir_name='structured_ ramp_up2')294 outputdir_name='structured_many_points')
Note: See TracChangeset
for help on using the changeset viewer.