Changeset 5483
- Timestamp:
- Jul 10, 2008, 11:20:00 AM (17 years ago)
- Location:
- anuga_work/development/boxingday08
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified anuga_work/development/boxingday08/project.py ¶
r5465 r5483 110 110 # Create ordering file 111 111 # Usually this would be provided before hand 112 boundary,boundary_utm=create_sts_boundary_order_file(urs_filename+' _waveheight-z-mux2',order_filename,base_name,verbose=False)112 boundary,boundary_utm=create_sts_boundary_order_file(urs_filename+'-z-mux2',order_filename,base_name,verbose=False) 113 113 114 114 # Create ordered sts file 115 if not os.path.exists(base_name+'.sts'):116 117 118 ordering_filename=order_filename,119 mean_stage=tide,120 verbose=False)121 else:122 print 'sts file exists'115 #if not os.path.exists(base_name+'.sts'): 116 print 'creating sts file' 117 urs2sts(urs_filename,basename_out=base_name, 118 ordering_filename=order_filename, 119 mean_stage=tide, 120 verbose=False) 121 #else: 122 # print 'sts file exists' 123 123 124 124 # Read in boundary from ordered sts file -
TabularUnified anuga_work/development/boxingday08/run_boxingday_polyline.py ¶
r5458 r5483 46 46 #------------------------------------------------------------------------------ 47 47 48 scenario = 'poor_simulation'49 #scenario = 'good_simulation'48 #scenario = 'poor_simulation' 49 scenario = 'good_simulation' 50 50 51 51 if os.access(scenario, os.F_OK) == 0: … … 146 146 #------------------------------------------------------------------------------ 147 147 148 tide = 0.35148 tide = project.tide 149 149 domain.set_quantity('stage', tide) 150 150 domain.set_quantity('friction', 0.01)
Note: See TracChangeset
for help on using the changeset viewer.