Changeset 3116


Ignore:
Timestamp:
Jun 8, 2006, 2:12:03 PM (18 years ago)
Author:
ole
Message:

Supporting modifications for parallel wollongong

Location:
inundation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • inundation/fit_interpolate/fit.py

    r3030 r3116  
    241241        #print "_build_matrix_AtA_Atz - self.point_count", self.point_count
    242242        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
    244247        self.inside_poly_indices, self.outside_poly_indices  = \
    245248                     in_and_outside_polygon(point_coordinates,
  • inundation/parallel/parallel_shallow_water.py

    r3096 r3116  
    7676        self.communication_broadcast_time = 0.0
    7777
     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)
    7885
    7986
  • inundation/pyvolution/shallow_water.py

    r3021 r3116  
    289289        if self.store is True and self.time == 0.0:
    290290            self.initialise_storage()
    291             #print 'Storing results in ' + self.writer.filename
     291            print 'Storing results in ' + self.writer.filename
    292292        else:
    293293            pass
Note: See TracChangeset for help on using the changeset viewer.