Changeset 3870
- Timestamp:
- Oct 26, 2006, 7:56:56 AM (18 years ago)
- Location:
- anuga_work/production/dampier_2006
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/dampier_2006/build_dampier.py
r3853 r3870 32 32 from anuga.pmesh.mesh_interface import create_mesh_from_regions 33 33 from anuga.geospatial_data.geospatial_data import * 34 from anuga.abstract_2d_finite_volumes.util import Screen_Catcher 34 35 35 36 # Application specific imports -
anuga_work/production/dampier_2006/project.py
r3851 r3870 36 36 #mesh_name = 'elevation50m' 37 37 boundaries_name = 'dampier' 38 boundaries_source = ' mag_9_corrected'38 boundaries_source = 'test' 39 39 40 40 # topography file names -
anuga_work/production/dampier_2006/run_dampier.py
r3851 r3870 33 33 34 34 from anuga.geospatial_data.geospatial_data import * 35 from anuga.abstract_2d_finite_volumes.util import Screen_Catcher 35 36 36 37 # Application specific imports … … 62 63 copy (__file__, project.output_run_time_dir + basename(__file__)) 63 64 print 'project.output_run_time_dir',project.output_run_time_dir 65 66 #normal screen output is stored in 67 screen_output_name = project.outputtimedir + "screen_output.txt" 68 screen_error_name = project.outputtimedir + "screen_error.txt" 69 70 #used to catch screen output to file 71 sys.stdout = Screen_Catcher(screen_output_name) 72 sys.stderr = Screen_Catcher(screen_error_name) 73 74 print 'USER: ', project.user 64 75 65 76 #--------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.