Changeset 8846 for trunk/anuga_core/demos
- Timestamp:
- Apr 21, 2013, 10:24:15 AM (12 years ago)
- Location:
- trunk/anuga_core/demos/cairns
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/demos/cairns/project.py
r8821 r8846 57 57 58 58 # bigger base_scale == less triangles 59 base_scale = 100000 # 162170 triangles 59 just_fitting = False 60 #base_scale = 25000 # 635763 # 112sec fit 61 #base_scale = 50000 # 321403 # 69sec fit 62 base_scale = 100000 # 162170 triangles # 45sec fit 60 63 #base_scale = 400000 # 42093 61 64 default_res = 100 * base_scale # Background resolution -
trunk/anuga_core/demos/cairns/run_cairns.py
r8763 r8846 26 26 import project # Definition of file names and polygons 27 27 28 time00 = time.time() 28 29 #------------------------------------------------------------------------------ 29 30 # Preparation of topographic data … … 80 81 verbose=project.verbose, 81 82 alpha=0.1) 83 84 85 time01 = time.time() 86 print 'That took %.2f seconds to fit data' %(time01-time00) 87 88 if project.just_fitting: 89 import sys 90 sys.exit() 82 91 83 92 #------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.