Ignore:
Timestamp:
Aug 29, 2008, 3:25:34 PM (16 years ago)
Author:
ole
Message:

Handover from Duncan in regard the Hinwood study and the validation paper.
Added comments about locations of data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_validation/Hinwood_2008/run_dam.py

    r5713 r5714  
    196196#-------------------------------------------------------------
    197197if __name__ == "__main__":
    198    
     198
     199    # Import scenario metadata for the simulations that is to be run
    199200    from scenarios import scenarios
    200201
    201     #scenarios = [scenarios[0]]
    202    
     202    # Basic parameters of computer flume model (default: w=0.1, max=0.0001, ys=0.01, fr=0.0)
    203203    width = 0.1
    204204    maximum_triangle_area=0.01
    205     yieldstep = 0.01
    206     #yieldstep = 0.5
     205    yieldstep = 0.5
    207206    friction=0.0
    208     isTest=True
    209     #isTest=False
    210    
     207
     208    # Select coarse fast run (isTest is True) or detailed slower run (isTest is False)
     209    #isTest=True
     210    isTest=False
     211
     212    # Loop through experiments and run simulations
    211213    for run_data in scenarios:
    212214        main(run_data,
Note: See TracChangeset for help on using the changeset viewer.