Changeset 6193
- Timestamp:
- Jan 19, 2009, 7:05:08 AM (16 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/interface.py
r6190 r6193 139 139 140 140 from anuga.shallow_water import Domain 141 from anuga. mesh_interface import create_mesh_from_regions141 from anuga.pmesh.mesh_interface import create_mesh_from_regions 142 142 143 143 create_mesh_from_regions(bounding_polygon, -
anuga_work/production/patong/project.py
r6192 r6193 48 48 finaltime=15000 # final time for simulation 15000 49 49 50 setup=' final' # Final can be replaced with trial or basic.50 setup='trial' # Final can be replaced with trial or basic. 51 51 # Either will result in a coarser mesh that will allow a 52 52 # faster, but less accurate, simulation. -
anuga_work/production/patong/run_patong.py
r6192 r6193 58 58 print 'output_dir', output_dir 59 59 60 #copy_code_files(output_dir,__file__,61 #dirname(project.__file__)+sep+ project.__name__+'.py' )60 copy_code_files(output_dir,__file__, 61 dirname(project.__file__)+sep+ project.__name__+'.py' ) 62 62 63 #start_screen_catcher(output_dir, myid, numprocs)63 start_screen_catcher(output_dir, myid, numprocs) 64 64 65 65 … … 100 100 verbose=True) 101 101 102 print 'memory usage after creation of domain', mem_usage()103 102 print domain.statistics() 104 103
Note: See TracChangeset
for help on using the changeset viewer.