Changeset 4884


Ignore:
Timestamp:
Dec 12, 2007, 3:25:15 PM (17 years ago)
Author:
ole
Message:

Shark bay embayment study.
Reduced verbose output further (ticket:238)

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/fit_interpolate/fit.py

    r4882 r4884  
    268268                     in_and_outside_polygon(point_coordinates,
    269269                                            self.mesh_boundary_polygon,
    270                                             closed = True, verbose = verbose)
     270                                            closed = True,
     271                                            verbose = False) # There's too much output if True
    271272        #print "self.inside_poly_indices",self.inside_poly_indices
    272273        #print "self.outside_poly_indices",self.outside_poly_indices
     
    274275       
    275276        n = len(inside_poly_indices)
    276         if verbose: print 'Building fitting matrix from %d points' %n       
     277        #if verbose: print 'Building fitting matrix from %d points' %n       
     278
    277279        #Compute matrix elements for points inside the mesh
    278280        triangles = self.mesh.triangles #Did this for speed, did ~nothing
     
    347349                    # I suggest deleting this verbose output and make
    348350                    # Geospatial_data more informative for txt files.
     351                    #
     352                    # I still think so (12/12/7, Ole).
    349353           
    350354
  • anuga_core/source/anuga_parallel/parallel_shallow_water.py

    r4398 r4884  
    152152            t0 = time.time()
    153153            pypar.reduce(self.local_timestep, pypar.MIN, 0,
    154                          buffer=self.global_timestep,
    155                          bypass=True)
     154                         buffer=self.global_timestep)#,
     155                         #bypass=True)
    156156
    157157        else:
     
    178178        #Broadcast minimal timestep to all
    179179        t0 = time.time()
    180         pypar.broadcast(self.global_timestep, 0,
    181                         bypass=True)
     180        pypar.broadcast(self.global_timestep, 0)#,
     181                        #bypass=True)
    182182
    183183        self.communication_broadcast_time += time.time()-t0
  • anuga_work/production/shark_bay_2007/project.py

    r4856 r4884  
    5151source='shark_bay'
    5252
    53 boundary_event = 'july2006'
     53#boundary_event = 'july2006'
    5454#boundary_event = '10000'
    55 #boundary_event = 'experimental'
     55boundary_event = 'experimental'
    5656
    5757if setup =='trial':
  • anuga_work/production/shark_bay_2007/run_shark_bay_frequency_sweep.py

    r4689 r4884  
    163163    print 'domain id', id(domain)
    164164    domain.beta_h = 0
    165     #domain.tight_slope_limiters = 1
     165    domain.tight_slope_limiters = 1
    166166   
    167167
Note: See TracChangeset for help on using the changeset viewer.