Changeset 6577
- Timestamp:
- Mar 23, 2009, 10:52:41 AM (14 years ago)
- Location:
- anuga_work/production/new_south_wales/batemans_bay
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/new_south_wales/batemans_bay/export_results_max.py
r6552 r6577 29 29 ##time_dirs = [time_dir1, time_dir2]#, time_dir3] 30 30 31 time_dir1 = '200903 06_165253_run_final_0_58368_jgriffin'31 time_dir1 = '20090317_112148_run_final_0_58368_jgriffin' 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' … … 63 63 64 64 # one or more key strings from var_equations above 65 var = [' elevation', 'stage', 'speed','depth']65 var = ['stage','depth','speed','elevation']#, 'stage', 'speed','depth'] 66 66 67 67 ###### -
anuga_work/production/new_south_wales/batemans_bay/project.py
r6526 r6577 27 27 # One or all can be changed each time the run_model script is executed 28 28 tide = 0 # difference between MSL and HAT 29 event_number = 5 1414# the event number or the mux file name29 event_number = 58368 # the event number or the mux file name 30 30 alpha = 0.1 # smoothing parameter for mesh 31 31 friction=0.01 # manning's friction coefficient 32 32 starttime=0 # start time for simulation 33 finaltime= 1000 # final time for simulation33 finaltime=6000 # final time for simulation 34 34 35 35 setup = 'final' # This can be one of three values … … 78 78 point_filenames = ['SD100031996_jgriffin_clip.csv', 79 79 'tomaga_offshore_AHD_MGA_1997.csv', 80 'Batemans_BBHD_MGA_1995.csv'] 80 'Batemans_BBHD_MGA_1995.csv', 81 'moruya_AHD_MGA_2000.csv'] 81 82 82 83 -
anuga_work/production/new_south_wales/batemans_bay/run_model.py
r6427 r6577 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, … … 147 147 148 148 domain.set_boundary({'back': Br, 149 'side': B d,149 'side': Bt, 150 150 'ocean': Bf}) 151 151 … … 156 156 t0 = time.time() 157 157 for t in domain.evolve(yieldstep=project.yieldstep, 158 finaltime= project.finaltime,158 finaltime=1440, 159 159 skip_initial_step=False): 160 160 print domain.timestepping_statistics() 161 161 print domain.boundary_statistics(tags='ocean') 162 162 163 for t in domain.evolve(yieldstep=5, 164 finaltime=project.finaltime, 165 skip_initial_step=True): 166 print domain.timestepping_statistics() 167 print domain.boundary_statistics(tags='ocean') 168 163 169 print 'Simulation took %.2f seconds' % (time.time()-t0)
Note: See TracChangeset
for help on using the changeset viewer.