Changeset 3996
- Timestamp:
- Nov 16, 2006, 9:12:18 AM (18 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/util.py
r3994 r3996 944 944 thisfile = file_loc[j]+sep+'gauges_time_series'+'_'+gaugeloc+'.csv' 945 945 fid_out = open(thisfile, 'w') 946 s = 'Time, Stage, Momentum, Speed \n'946 s = 'Time, Stage, Momentum, Speed, Elevation \n' 947 947 fid_out.write(s) 948 948 … … 972 972 thisgauge = gauges[k] 973 973 eastings[i,k,j] = thisgauge[0] 974 s = '%.2f, %.2f, %.2f, %.2f \n' %(t, w, m, vel)974 s = '%.2f, %.2f, %.2f, %.2f, %.2f\n' %(t, w, m, vel, z) 975 975 fid_out.write(s) 976 976 if t/60.0 <= 13920: tindex = i … … 981 981 982 982 983 s = '%.2f, %.2f, %.2f, % s\n' %(max_stage, min_stage, z, leg_label[j])983 s = '%.2f, %.2f, %.2f, %.2f, %s\n' %(max_stage, min_stage, z, thisgauge[0], leg_label[j]) 984 984 fid_compare.write(s) 985 985 max_stages.append(max_stage) … … 1184 1184 north = thisgauge[1] 1185 1185 elev_output.append([locations[k],east,north,elevations[0,k,j]]) 1186 1186 1187 1187 s = '\end{tabular} \n \\caption{%s} \n \label{fig:%s} \n \end{figure} \n \n' %(caption, label) 1188 1188 fid.write(s) -
anuga_work/production/dampier_2006/project.py
r3955 r3996 65 65 combined_final_name ='dampier_combined_elevation_final' 66 66 67 gauge_name = 'dampier_gauges .csv'67 gauge_name = 'dampier_gauges_up2.csv' 68 68 69 69 #Derive subdirectories and filenames … … 97 97 98 98 gauge_dir = home+sep+state+sep+scenario_datas_name+sep+'anuga'+sep+'gauges'+sep 99 gauge_filename = gauge_dir + 'dampier_gauges .csv'99 gauge_filename = gauge_dir + 'dampier_gauges_up2.csv' 100 100 101 101 gauges_dir_name = gauges_dir + gauge_name -
anuga_work/production/hobart_2006/make_report.py
r3992 r3996 173 173 s = """ 174 174 \maketitle 175 \verb|\usepackage{draftcopy}| 175 176 176 \section{Executive Summary} 177 177 \label{sec:execsum}
Note: See TracChangeset
for help on using the changeset viewer.