Changeset 6516
- Timestamp:
- Mar 16, 2009, 10:27:09 AM (15 years ago)
- Location:
- anuga_work/production/geraldton
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/geraldton/NewScripts/export_results_max.py
r6420 r6516 29 29 ##time_dirs = [time_dir1, time_dir2]#, time_dir3] 30 30 31 time_dir1 = '20090 130_165532_run_final_0.6_27255_extend_dt_kvanputt'31 time_dir1 = '20090225_171439_run_final_0_wa04_val_kvanputt' 32 32 ##time_dir2 = '20081211_162311_run_final_0_27255_alpha0.1_kvanputt' 33 33 ##time_dir3 = '20081211_162346_run_final_0_68693_alpha0.1_kvanputt' … … 39 39 40 40 41 cellsize = 2 5041 cellsize = 20 42 42 ##cellsize = 5 43 43 … … 63 63 64 64 # one or more key strings from var_equations above 65 var = ['elevation' ]65 var = ['elevation','stage'] 66 66 67 67 ###### -
anuga_work/production/geraldton/NewScripts/project.py
r6421 r6516 26 26 # Model specific parameters. 27 27 # One or all can be changed each time the run_model script is executed 28 tide = 0 28 tide = 0.0 # difference between MSL and HAT 29 29 zone = 50 # specify zone of model 30 30 event_number = 'wa04_val' # the event number or the mux file name … … 32 32 friction=0.01 # manning's friction coefficient 33 33 starttime=0 # start time for simulation 34 finaltime= 1000 # final time for simulation34 finaltime=80000 # final time for simulation 35 35 36 36 setup = 'final' # This can be one of three values … … 92 92 # Used in get_timeseries.py. 93 93 # Format easting,northing,name,elevation (with header) 94 gauges_filename = ' gauges.csv'94 gauges_filename = 'nick_geraldton_gauges.csv' 95 95 96 96 # BUILDINGS EXPOSURE - for identifying inundated houses -
anuga_work/production/geraldton/NewScripts/run_model.py
r6420 r6516 141 141 domain, mean_stage=project.tide, 142 142 time_thinning=1, 143 default_boundary= Bd,143 default_boundary=Dirichlet_boundary([0, 0, 0]), 144 144 boundary_polygon=bounding_polygon_sts, 145 145 use_cache=True, -
anuga_work/production/geraldton/export_results_max.py
r6065 r6516 20 20 21 21 directory = project.output_dir 22 ##time_dir1 = '20081209_155330_run_final_0_27255_250m_none_lfountai'22 time_dir1 = '20090225_171439_run_final_0_wa04_val_kvanputt' 23 23 ##time_dir2 = '20081209_161229_run_final_0_68693_250m_none_lfountai' 24 24 ##time_dirs = [time_dir1, time_dir2] … … 26 26 ##time_dir1 = '20081117_141353_run_final_0_27283_alpha0.1_kvanputt' 27 27 ##time_dir2 = '20081117_141443_run_final_0.6_27283_alpha0.1_kvanputt' 28 time_dir3 = '20081117_141520_run_final_0_27255_alpha0.1_kvanputt'28 ##time_dir3 = '20081117_141520_run_final_0_27255_alpha0.1_kvanputt' 29 29 ##time_dir4 = '20081117_141558_run_final_0.6_27255_alpha0.1_kvanputt' 30 time_dir5 = '20081117_141634_run_final_0_68693_alpha0.1_kvanputt'30 ##time_dir5 = '20081117_141634_run_final_0_68693_alpha0.1_kvanputt' 31 31 ##time_dir6 = '20081117_141717_run_final_0.6_68693_alpha0.1_kvanputt' 32 32 ## 33 time_dirs = [time_dir 3, time_dir5] #, time_dir3, time_dir4, time_dir5, time_dir6]33 time_dirs = [time_dir1] #, time_dir3, time_dir4, time_dir5, time_dir6] 34 34 35 35 … … 38 38 cellsize = 250 39 39 40 timestep = None # None means no timestep!41 #timestep = 040 ##timestep = None # None means no timestep! 41 timestep = 0 42 42 43 43 ###### … … 59 59 60 60 # one or more key strings from var_equations above 61 var = ['stage ']61 var = ['stage,elevation'] 62 62 63 63 ###### … … 89 89 90 90 name1 = directory+time_dir+sep+project.scenario_name 91 name2 = directory+time_dir+sep+project.scenario_name+'_time_41820_0'91 # name2 = directory+time_dir+sep+project.scenario_name+'_time_41820_0' 92 92 93 names = [name1 , name2]93 names = [name1] 94 94 95 95 asc_name = []
Note: See TracChangeset
for help on using the changeset viewer.