source: anuga_work/production/australia_ph2/bamaga/run_multiple_events.py @ 6924

Last change on this file since 6924 was 6758, checked in by myall, 15 years ago

restoring 'zone' option for build_urs_boundary.py

File size: 308 bytes
Line 
1"""This script executes models for a range of event numbers.
2
3Events folders and event.list must have been created first from
4the event selection program
5"""
6
7import os
8import project
9for event_number in project.event_number_list:
10    s = 'python run_model.py %d' % event_number
11    print s
12    os.system(s)
Note: See TracBrowser for help on using the repository browser.