Changeset 7862
- Timestamp:
- Jun 19, 2010, 4:50:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/file/sww.py
r7861 r7862 582 582 583 583 584 self.write_dynamic_quantities(outfile, self.dynamic_quantities, times) 584 self.write_dynamic_quantities(outfile, self.dynamic_quantities, times, \ 585 precis = sww_precision) 585 586 586 587 … … 787 788 q_values = ensure_numeric(quant[q]) 788 789 789 x= q_values.astype(sww_precision)790 outfile.variables[q][slice_index] = x790 q_retyped = q_values.astype(sww_precision) 791 outfile.variables[q][slice_index] = q_retyped 791 792 792 793 # This updates the _range values
Note: See TracChangeset
for help on using the changeset viewer.