Changeset 4581 for anuga_work/production/dampier_2006/export_results.py
- Timestamp:
- Jul 3, 2007, 4:28:38 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/dampier_2006/export_results.py
r4498 r4581 5 5 from os import sep 6 6 7 time_dir = '20070426_045818_run' # HAT 1 in Dampier 10000 yr - CIPMA scenario 8 #time_dir = '20070419_065050_run' # HAT 1 in Dampier 10000 yr 9 #time_dir = '20070419_065018_run' # MSL 1 in Dampier 10000 yr 10 #time_dir = '' # HAT 1 in Broome 10000 yr 11 #time_dir = '' # MSL 1 in Broome 10000 yr 12 #time_dir = '' # HAT 1 in Pt Hedland 10000 yr 13 #time_dir = '' # MSL 1 in Pt Hedland 10000 yr 14 #time_dir = '' # HAT 1 in Onslow 10000 yr 15 #time_dir = '' # MSL 1 in Onslow 10000 yr 16 #time_dir = '' # HAT 1 in Exmouth 10000 yr 17 #time_dir = '' # MSL 1 in Exmouth 10000 yr 18 cellsize = 20 7 #time_dir = '20070426_045818_run' # HAT 1 in Dampier 10000 yr - CIPMA scenario 8 #time_dir = '20070419_065050_run_final_2.4_dampier_nbartzis' # HAT 1 in Dampier 10000 yr 9 #time_dir = '20070419_065018_run_final_0.0_dampier_nbartzis' # MSL 1 in Dampier 10000 yr 10 #time_dir = '20070618_063824_run_final_2.4_onslow_nbartzis' # HAT 1 in Onslow 10000 yr 11 #time_dir = '20070618_050232_run_final_0.0_onslow_nbartzis' # MSL 1 in Onslow 10000 yr 12 #time_dir = '20070620_044413_run_final_2.4_exmouth_nbartzis' # HAT 1 in Exmouth 10000 yr 13 time_dir = '20070620_044352_run_final_0.0_exmouth_nbartzis' # MSL 1 in Exmouth 10000 yr 14 #time_dir = '20070618_063824_run_final_2.4_onslow_nbartzis' # HAT onslow 15 #time_dir = '20070618_050232_run_final_0.0_onslow_nbartzis' # MSL onslow 16 cellsize = 25 19 17 timestep = None 20 18 directory = project.output_dir … … 27 25 28 26 #var = [2,3] # depth and speed 29 var = [ 3]27 var = [0,2,3] 30 28 31 29 for which_var in var: 32 30 if which_var == 0: # Stage 33 outname = name + '_stage '31 outname = name + '_stage_dampier' 34 32 quantityname = 'stage' 35 33 … … 39 37 40 38 if which_var == 2: # Depth 41 outname = name + '_depth_ facility'39 outname = name + '_depth_dampier' 42 40 quantityname = 'stage-elevation' 43 41 44 42 if which_var == 3: # Speed 45 outname = name + '_speed_ facility'43 outname = name + '_speed_dampier' 46 44 quantityname = '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-6/(stage-elevation))' #Speed 47 45 48 46 if which_var == 4: # Elevation 49 outname = name + '_elevation '47 outname = name + '_elevation_dampier' 50 48 quantityname = 'elevation' #Elevation 51 49 … … 75 73 timestep = timestep, 76 74 cellsize = cellsize, 77 #easting_min = project.e_min_area,78 #easting_max = project.e_max_area,79 #northing_min = project.n_min_area,80 #northing_max = project.n_max_area,75 easting_min = project.e_min_area_d, 76 easting_max = project.e_max_area_d, 77 northing_min = project.n_min_area_d, 78 northing_max = project.n_max_area_d, 81 79 reduction = max, 82 80 verbose = True,
Note: See TracChangeset
for help on using the changeset viewer.