Ignore:
Timestamp:
Oct 31, 2012, 2:03:04 PM (13 years ago)
Author:
steve
Message:

Changed from exception to warning in parallel_inlet_enquiry

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  
    55import anuga
    66
    7 scenario = 'slide'
     7scenario = 'fixed_wave'
    88name = 'cairns_' + scenario
    99
  • trunk/anuga_core/documentation/user_manual/demos/cairns/project.py

    r7838 r8592  
    4848# Make these numbers larger to reduce the number of triangles in the model,
    4949# 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
     52base_scale = 100000
     53base_scale = 1000000
     54default_res = 100 * base_scale   # Background resolution
     55islands_res = base_scale
     56cairns_res = base_scale
     57shallow_res = 5 * base_scale
    5458
    5559# Define list of interior regions with associated resolutions
  • trunk/anuga_core/documentation/user_manual/demos/cairns/runcairns.py

    r8538 r8592  
    6363domain.set_datadir('.')                       # Store sww output here
    6464domain.set_minimum_storable_height(0.01)      # Store only depth > 1cm
     65domain.set_flow_algorithm('tsunami')
    6566
    6667#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.