Changeset 4775
- Timestamp:
- Oct 31, 2007, 4:57:56 PM (17 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/util.py
r4712 r4775 1095 1095 production_dirs, time_min, time_max, time_unit, 1096 1096 title_on, label_id, generate_fig, verbose): 1097 """ Generate figures based on required quantities and gauges for each sww file 1097 """ Generate figures based on required quantities and gauges for 1098 each sww file 1098 1099 """ 1099 1100 from math import sqrt, atan, degrees … … 1639 1640 time series on one plot. Filenames must follow this convention, 1640 1641 <base_name><plot_number>.csv eg gauge_timeseries3.csv 1642 1643 Each file represents a location and within each file there are 1644 time, quantity columns. 1641 1645 1642 1646 For example: … … 1663 1667 the follow 0,1,2,3,4,10,15,16,17 1664 1668 quantities: Currently limited to "Stage", "Speed", and 1665 "Momentum", should be changed to incorporate1669 "Momentum", should be changed to incorporate 1666 1670 any quantity read from CSV file.... 1667 1671 -
anuga_core/source/anuga/shallow_water/data_manager.py
r4706 r4775 957 957 Also, create a dic, title as key and column index as value, 958 958 to keep track of the column order. 959 960 Two dictionaries are returned. 959 961 960 962 WARNING: Vaules are returned as strings. 961 963 do this to change a list of strings to a list of floats 962 964 time = [float(x) for x in time] 965 966 963 967 """ 964 968
Note: See TracChangeset
for help on using the changeset viewer.