Changeset 5121
- Timestamp:
- Mar 5, 2008, 9:41:28 AM (17 years ago)
- Location:
- anuga_work/production/busselton
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/project.py
r5000 r5121 42 42 export_cellsize=50 43 43 setup='final' 44 source=' other'44 source='test' 45 45 46 46 … … 115 115 boundaries_in_dir = anuga_dir+'boundaries'+sep+'urs'+sep+'exmouth'+sep+'1_10000'+sep 116 116 117 if source==' other':118 boundaries_name = ' other' #exmouth gun117 if source=='test': 118 boundaries_name = 'test' #exmouth gun 119 119 boundaries_in_dir = anuga_dir+'boundaries'+sep+'urs'+sep+'exmouth'+sep+'1_10000'+sep 120 120 … … 127 127 #output locations 128 128 output_dir = anuga_dir+'outputs'+sep 129 output_build_time_dir = output_dir+build_time+ '_'+source+sep129 output_build_time_dir = output_dir+build_time+dir_comment+sep 130 130 #output_run_time_dir = output_dir +run_time+dir_comment+sep 131 output_run_time_dir = home+sep+state+sep+scenario+sep+'anuga'+sep+'outputs'+sep+run_time+sep131 output_run_time_dir = anuga_dir+sep+'outputs'+sep+run_time+dir_comment+sep 132 132 output_run_time_dir_name = output_run_time_dir + scenario_name #Used by post processing 133 133 -
anuga_work/production/busselton/run_busselton.py
r5000 r5121 157 157 domain.set_store_vertices_uniquely(False) 158 158 domain.set_quantities_to_be_stored(['stage', 'xmomentum', 'ymomentum']) 159 domain.set_maximum_allowed_speed(0.1) # Allow a little runoff (0.1 is OK) 159 domain.tight_slope_limiters = 1 160 #domain.set_maximum_allowed_speed(0.1) # Allow a little runoff (0.1 is OK) 160 161 print 'domain id', id(domain) 161 162 domain.beta_h = 0 162 #domain.tight_slope_limiters = 1163 163 164 164 #------------------------------------------------------------------------- … … 169 169 #print 'Reading Boundary file',project.boundaries_dir_namea + '.sww' 170 170 171 if project.source != ' other':171 if project.source != 'test': 172 172 Bf = Field_boundary(kwargs['boundary_file'], 173 173 domain, time_thinning=kwargs['time_thinning'], mean_stage=kwargs['tide'],
Note: See TracChangeset
for help on using the changeset viewer.