Changeset 6476 for anuga_work/production/australia_ph2/eucla_motel
- Timestamp:
- Mar 10, 2009, 9:29:00 AM (16 years ago)
- Location:
- anuga_work/production/australia_ph2/eucla_motel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/eucla_motel/project.py
r6460 r6476 28 28 tide = 0 # difference between MSL and HAT 29 29 zone = 52 # specify zone of model 30 event_number = 65371 # the event number or the mux file name 30 event_number = 64449 # the event number or the mux file name 31 # sources: 64449 (sandwich), 68755 (sumatra), 58332 (Puysegur) 32 # others: 7859 (altiplano), 11016 (andaman), 17017 (columbia), 27252 (java), 46699 (midamerica) 33 # 53961 (puna), 57582 (peru), 58332 (Puysegur), 64449 (sandwich), 68755 (sumatra) 31 34 alpha = 0.1 # smoothing parameter for mesh 32 35 friction=0.01 # manning's friction coefficient 33 36 starttime=0 # start time for simulation 34 finaltime= 1000 # final time for simulation37 finaltime=80000 # final time for simulation 35 38 36 39 # index is only used when wave = Tb 37 index = 1 203# index from the PTHA40 index = 1837 # index from the PTHA 38 41 wave = 'Tb' # Bf (sts wave) Tb (index wave) 39 42 … … 219 222 mux_input = join(event_folder, mux_input_filename) 220 223 224 # sts gauge with desired index number - used for wave 'Tb' 225 boundary_csv = join(event_folder, 'sts_gauge_' + str(index) +'.csv') -
anuga_work/production/australia_ph2/eucla_motel/run_model.py
r6460 r6476 160 160 161 161 elif project.wave == 'Tb': 162 Tb = Time_boundary(domain,f,default_boundary=Bd ) 162 Tb = Time_boundary(domain,f,default_boundary=Bd, 163 verbose=True) 163 164 164 165 domain.set_boundary({'back': Br,
Note: See TracChangeset
for help on using the changeset viewer.