Changeset 2885 for production
- Timestamp:
- May 16, 2006, 2:47:42 PM (19 years ago)
- Location:
- production
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
production/gippsland_2005/get_timeseries.py
r2604 r2885 68 68 69 69 max_depth = 0 70 for i, t in enumerate(f. T): # T is a list of times70 for i, t in enumerate(f.get_time()): # T is a list of times 71 71 #if tmin < t < tmax: 72 72 w = f(t, point_id = k)[0] -
production/karratha_2005/get_cross_section.py
r1960 r2885 40 40 verbose = True) 41 41 42 print f42 #print f 43 43 44 T = f.get_time() 44 45 from math import sqrt 45 for time in [ f.T[0], f.T[0] + 10]:46 for time in [T[0], T[0] + 10]: 46 47 47 48 abscissa = [] -
production/karratha_2005/get_timeseries.py
r2122 r2885 66 66 max_depth = 0 67 67 max_momentum = 0 68 for i, t in enumerate(f. T): # T is a list of times68 for i, t in enumerate(f.get_time()): # T is a list of times 69 69 #if tmin < t < tmax: 70 70 w = f(t, point_id = k)[0] -
production/onslow_2006/get_timeseries.py
r2773 r2885 81 81 max_velocity = 0 82 82 83 due_east = 90.0*ones([len(f.T)]) 84 due_west = 270.0*ones([len(f.T)]) 85 maxT = max(f.T) 86 tstep = maxT/(len(f.T)-1) 87 88 for i, t in enumerate(f.T): # T is a list of times 83 T = f.get_time() 84 due_east = 90.0*ones([len(T)]) 85 due_west = 270.0*ones([len(T)]) 86 maxT = max(T) 87 tstep = maxT/(len(T)-1) 88 89 for i, t in enumerate(T): # T is a list of times 89 90 #if tmin < t < tmax: 90 91 w = f(t, point_id = k)[0] -
production/sydney_2006/get_timeseries.py
r2469 r2885 73 73 max_velocity = 0 74 74 75 due_east = 90.0*ones([len(f.T)]) 76 due_west = 270.0*ones([len(f.T)]) 77 maxT = max(f.T) 78 tstep = maxT/(len(f.T)-1) 79 80 for i, t in enumerate(f.T): # T is a list of times 75 T = f.get_time() 76 due_east = 90.0*ones([len(T)]) 77 due_west = 270.0*ones([len(T)]) 78 maxT = max(T) 79 tstep = maxT/(len(T)-1) 80 81 for i, t in enumerate(T): # T is a list of times 81 82 #if tmin < t < tmax: 82 83 w = f(t, point_id = k)[0] -
production/sydney_2006/process_gauges.py
r2313 r2885 60 60 max_depth = 0 61 61 max_momentum = 0 62 for i, t in enumerate(f. T):62 for i, t in enumerate(f.get_time()): 63 63 w = f(t, point_id = k)[0] 64 64 z = f(t, point_id = k)[1]
Note: See TracChangeset
for help on using the changeset viewer.