Ignore:
Timestamp:
May 16, 2006, 2:47:42 PM (19 years ago)
Author:
ole
Message:

Updated production codes in regard to replacing f.T with f.get_time()

Location:
production/karratha_2005
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • production/karratha_2005/get_cross_section.py

    r1960 r2885  
    4040          verbose = True)
    4141
    42 print f
     42#print f
    4343
     44T = f.get_time()
    4445from math import sqrt
    45 for time in [f.T[0], f.T[0] + 10]:
     46for time in [T[0], T[0] + 10]:
    4647
    4748    abscissa = []
  • production/karratha_2005/get_timeseries.py

    r2122 r2885  
    6666    max_depth = 0
    6767    max_momentum = 0   
    68     for i, t in enumerate(f.T): # T is a list of times
     68    for i, t in enumerate(f.get_time()): # T is a list of times
    6969        #if tmin < t < tmax:
    7070        w = f(t, point_id = k)[0]
Note: See TracChangeset for help on using the changeset viewer.