source: anuga_work/production/australia_ph2/melbourne_east/single_urs/run_multiple_events.py @ 7023

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

exporting results;
making new folder in melbourne_east called single_urs, for scripts to run the model with both east and west boundaries from urs

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.