Changeset 2990
- Timestamp:
- May 27, 2006, 7:15:27 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/util.py
r2981 r2990 844 844 vel = m / (depth + 1.e-30) 845 845 bearing = calc_bearing(uh, vh) 846 model_time[i,k] = t 846 model_time[i,k] = t/60.0 847 847 stages[i,k] = w 848 848 elevations[i,k] = z … … 867 867 #### finished generating quantities ##### 868 868 869 stage_axis = axis([time_min, time_max, min(min_stages), max(max_stages)*1.1]) 870 vel_axis = axis([time_min, time_max, min(max_velocitys), max(max_velocitys)*1.1]) 871 mom_axis = axis([time_min, time_max, min(max_momentums), max(max_momentums)*1.1]) 869 stage_axis = axis([time_min/60.0, time_max/60.0, min(min_stages), 870 max(max_stages)*1.1]) 871 vel_axis = axis([time_min/60.0, time_max/60.0, min(max_velocitys), 872 max(max_velocitys)*1.1]) 873 mom_axis = axis([time_min/60.0, time_max/60.0, min(max_momentums), 874 max(max_momentums)*1.1]) 872 875 873 876 nn = len(plot_quantity)
Note: See TracChangeset
for help on using the changeset viewer.