Ignore:
Timestamp:
Dec 18, 2006, 3:00:03 PM (18 years ago)
Author:
sexton
Message:

user manual updates

Location:
anuga_core/documentation/user_manual
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/documentation/user_manual/demos/cairns/GetTimeseries.py

    r3979 r4087  
    2121
    2222# nominate directory location of sww file with associated attribute
    23 production_dirs = {'slump': 'Slump',
    24                    'fixedwave': 'Fixed Wave'}
     23production_dirs = {'slide': 'Slide'}
    2524
    2625# Generate figures
    2726swwfiles = {}
    2827for label_id in production_dirs.keys():
    29     file_loc = project.outputdir + label_id + sep
    30     swwfile = file_loc + project.basename + production_dirs[label_id] + '.sww'
     28    file_loc = label_id + sep
     29    swwfile = file_loc + label_id + 'source.sww'
    3130    swwfiles[swwfile] = label_id
    3231
  • anuga_core/documentation/user_manual/demos/cairns/runcairns.py

    r4063 r4087  
    167167if scenario == 'slide':
    168168   
    169     for t in domain.evolve(yieldstep = 5, finaltime = 60):
     169    for t in domain.evolve(yieldstep = 10, finaltime = 60):
    170170        domain.write_time()
    171171        domain.write_boundary_statistics(tags = 'ocean_east')     
     
    178178        domain.set_quantity('stage', slide + thisstagestep)
    179179
    180     # save every two mins leading up to wave approaching land
    181     for t in domain.evolve(yieldstep = 5, finaltime = 5000,
     180    for t in domain.evolve(yieldstep = 10, finaltime = 5000,
    182181                           skip_initial_step = True):
    183182        domain.write_time()
    184183        domain.write_boundary_statistics(tags = 'ocean_east')
    185 
    186184
    187185if scenario == 'fixed_wave':
Note: See TracChangeset for help on using the changeset viewer.