Changeset 6161
- Timestamp:
- Jan 14, 2009, 2:58:45 PM (16 years ago)
- Location:
- anuga_core/source/anuga/abstract_2d_finite_volumes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/ermapper_grids.py
r6145 r6161 22 22 ofile: string - filename for output (note the output will consist of two files 23 23 ofile and ofile.ers. Either of these can be entered into this function 24 data: num.array - 2D array containing the data to be output to the grid24 data: array - 2D array containing the data to be output to the grid 25 25 header: dictionary - contains spatial information about the grid, in particular: 26 26 header['datum'] datum for the data ('"GDA94"') -
anuga_core/source/anuga/abstract_2d_finite_volumes/general_mesh.py
r6145 r6161 449 449 triangle_list.append( (volume_id, vertex_id) ) 450 450 451 triangle_list = num.array(triangle_list )451 triangle_list = num.array(triangle_list, num.Int) #array default# 452 452 else: 453 453 # Get info for all nodes recursively.
Note: See TracChangeset
for help on using the changeset viewer.