Changeset 3116
- Timestamp:
- Jun 8, 2006, 2:12:03 PM (18 years ago)
- Location:
- inundation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/fit_interpolate/fit.py
r3030 r3116 241 241 #print "_build_matrix_AtA_Atz - self.point_count", self.point_count 242 242 if verbose: print 'Getting indices inside mesh boundary' 243 #print "self.mesh.get_boundary_polygon()",self.mesh.get_boundary_polygon() 243 #print 'point_coordinates.shape', point_coordinates.shape 244 #print 'self.mesh.get_boundary_polygon()',\ 245 # self.mesh.get_boundary_polygon() 246 244 247 self.inside_poly_indices, self.outside_poly_indices = \ 245 248 in_and_outside_polygon(point_coordinates, -
inundation/parallel/parallel_shallow_water.py
r3096 r3116 76 76 self.communication_broadcast_time = 0.0 77 77 78 79 def set_name(self, name): 80 """Assign name based on processor number 81 """ 82 83 # Call parents method with processor number attached. 84 Domain.set_name(self, name + '_P%d' %self.processor) 78 85 79 86 -
inundation/pyvolution/shallow_water.py
r3021 r3116 289 289 if self.store is True and self.time == 0.0: 290 290 self.initialise_storage() 291 #print 'Storing results in ' + self.writer.filename291 print 'Storing results in ' + self.writer.filename 292 292 else: 293 293 pass
Note: See TracChangeset
for help on using the changeset viewer.