source: anuga_work/production/busselton/get_timeseries.py @ 5647

Last change on this file since 5647 was 5647, checked in by kristy, 16 years ago

updated

File size: 1.1 KB
Line 
1"""
2Generate time series of nominated "gauges" read from project.gauge_filename. This
3is done by first running sww2csv_gauges on two different directories to make
4'csv' files. Then running csv2timeseries_graphs detailing the two directories
5containing the csv file and produces one set of graphs in the 'output_dir' containing
6the details at the gauges for both these sww files.
7
8Note, this script will only work if pylab is installed on the platform
9
10"""
11
12from os import sep
13from anuga.abstract_2d_finite_volumes.util import sww2csv_gauges,csv2timeseries_graphs
14
15import project
16
17
18#timestamp='20080724_121200_run_trial_0.6_polyline_alpha0.1_kvanputt'
19#timestamp='20080724_161830_run_final_0.6_polyline_alpha0.1_kvanputt'
20timestamp='20080807_102253_run_final_0.0_polyline_newExtent_kvanputt'
21
22filename=project.output_dir+timestamp+sep+project.scenario_name+'.sww'
23print 'Hello', filename
24
25sww2csv_gauges(filename,
26                #project.gauges_dir_name,
27                project.gauges_dir_name2,
28                quantities = ['stage','speed','depth','elevation'],
29                verbose=True)
30               
31
32   
33
Note: See TracBrowser for help on using the repository browser.