Changeset 8592 for trunk/anuga_core/documentation/user_manual
- Timestamp:
- Oct 31, 2012, 2:03:04 PM (13 years ago)
- Location:
- trunk/anuga_core/documentation/user_manual/demos/cairns
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/documentation/user_manual/demos/cairns/ExportResults.py
r7877 r8592 5 5 import anuga 6 6 7 scenario = ' slide'7 scenario = 'fixed_wave' 8 8 name = 'cairns_' + scenario 9 9 -
trunk/anuga_core/documentation/user_manual/demos/cairns/project.py
r7838 r8592 48 48 # Make these numbers larger to reduce the number of triangles in the model, 49 49 # and hence speed up the simulation 50 default_res = 10000000 # Background resolution 51 islands_res = 100000 52 cairns_res = 100000 53 shallow_res = 500000 50 51 # bigger base_scale == less triangles 52 base_scale = 100000 53 base_scale = 1000000 54 default_res = 100 * base_scale # Background resolution 55 islands_res = base_scale 56 cairns_res = base_scale 57 shallow_res = 5 * base_scale 54 58 55 59 # Define list of interior regions with associated resolutions -
trunk/anuga_core/documentation/user_manual/demos/cairns/runcairns.py
r8538 r8592 63 63 domain.set_datadir('.') # Store sww output here 64 64 domain.set_minimum_storable_height(0.01) # Store only depth > 1cm 65 domain.set_flow_algorithm('tsunami') 65 66 66 67 #------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.