Changeset 7612
- Timestamp:
- Jan 22, 2010, 5:01:06 PM (15 years ago)
- Location:
- anuga_work/production/wa/mandurah_2009
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/wa/mandurah_2009/export_results_max.py
r7611 r7612 30 30 31 31 ##cellsize = 250 32 cellsize = 2532 cellsize = 1 33 33 34 34 #timestep = None # None means no timestep! … … 39 39 ###### 40 40 41 area = [' AoiR'] # strings must match keys in var_equations below41 area = ['Region', 'AoiR', 'Aoi1', 'Aoi2', 'Aoi3'] # strings must match keys in var_equations below 42 42 #area = ['All'] # 'All' means no special areas - the whole thing 43 43 … … 53 53 54 54 # one or more key strings from var_equations above 55 var = [' stage']55 var = ['elevation', 'stage'] 56 56 57 57 ###### -
anuga_work/production/wa/mandurah_2009/project.py
r7611 r7612 28 28 tide = 0.6 # difference between MSL and HAT in metres 29 29 zone = 50 # specify zone of model 30 event_number = 27255# the event number or the mux file name30 event_number = 68486 # the event number or the mux file name 31 31 alpha = 0.1 # smoothing parameter for mesh 32 32 friction=0.01 # manning's friction coefficient 33 33 starttime=0 # start time for simulation 34 finaltime= 10 #80000 # final time for simulation34 finaltime=80000 #80000 # final time for simulation 35 35 yieldstep=60 # timestep to save output 36 36 … … 165 165 166 166 # ASCII export grid for mandurah for inundation maps 167 #xminRegion = 369013168 #xmaxRegion = 385914169 #yminRegion = 6390118170 #ymaxRegion = 6415260167 xminRegion = 369013 168 xmaxRegion = 385914 169 yminRegion = 6390118 170 ymaxRegion = 6415260 171 171 172 172 xminAoiR = 370407 … … 175 175 ymaxAoiR = 6405626 176 176 177 #xminAoi1 = 380524178 #xmaxAoi1 = 382123179 #yminAoi1 = 6401707180 #ymaxAoi1 = 6405240181 182 #xminAoi2 = 377764183 #xmaxAoi2 = 381493184 #yminAoi2 = 6396471185 #ymaxAoi2 = 6401692186 187 #xminAoi3 = 371074188 #xmaxAoi3 = 374219189 #yminAoi3 = 6390639190 #ymaxAoi3 = 6394731177 xminAoi1 = 380524 178 xmaxAoi1 = 382123 179 yminAoi1 = 6401707 180 ymaxAoi1 = 6405240 181 182 xminAoi2 = 377764 183 xmaxAoi2 = 381493 184 yminAoi2 = 6396471 185 ymaxAoi2 = 6401692 186 187 xminAoi3 = 371074 188 xmaxAoi3 = 374219 189 yminAoi3 = 6390639 190 ymaxAoi3 = 6394731 191 191 192 192
Note: See TracChangeset
for help on using the changeset viewer.