Changeset 5750
- Timestamp:
- Sep 9, 2008, 12:42:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/shallow_water/data_manager.py
r5745 r5750 3893 3893 outfile.variables['x'][:] = x - geo_ref.get_xllcorner() 3894 3894 outfile.variables['y'][:] = y - geo_ref.get_yllcorner() 3895 outfile.variables['z'][:] = z 3896 outfile.variables['elevation'][:] = z #FIXME HACK3897 outfile.variables['volumes'][:] = volumes.astype(Int32) # On Opteron 643895 outfile.variables['z'][:] = z # FIXME (Ole): Remove once viewer has been recompiled and changed to use elevation instead of z 3896 outfile.variables['elevation'][:] = z 3897 outfile.variables['volumes'][:] = volumes.astype(Int32) # On Opteron 64 3898 3898 3899 3899 stage = outfile.variables['stage'] … … 5263 5263 5264 5264 elevation = resize(elevation,outfile.variables['elevation'][:].shape) 5265 outfile.variables['permutation'][:] = permutation 5265 outfile.variables['permutation'][:] = permutation.astype(Int32) # On Opteron 64 5266 5266 outfile.variables['x'][:] = x - geo_ref.get_xllcorner() 5267 5267 outfile.variables['y'][:] = y - geo_ref.get_yllcorner()
Note: See TracChangeset
for help on using the changeset viewer.