Changeset 4884
- Timestamp:
- Dec 12, 2007, 3:25:15 PM (17 years ago)
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/fit_interpolate/fit.py
r4882 r4884 268 268 in_and_outside_polygon(point_coordinates, 269 269 self.mesh_boundary_polygon, 270 closed = True, verbose = verbose) 270 closed = True, 271 verbose = False) # There's too much output if True 271 272 #print "self.inside_poly_indices",self.inside_poly_indices 272 273 #print "self.outside_poly_indices",self.outside_poly_indices … … 274 275 275 276 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 277 279 #Compute matrix elements for points inside the mesh 278 280 triangles = self.mesh.triangles #Did this for speed, did ~nothing … … 347 349 # I suggest deleting this verbose output and make 348 350 # Geospatial_data more informative for txt files. 351 # 352 # I still think so (12/12/7, Ole). 349 353 350 354 -
anuga_core/source/anuga_parallel/parallel_shallow_water.py
r4398 r4884 152 152 t0 = time.time() 153 153 pypar.reduce(self.local_timestep, pypar.MIN, 0, 154 buffer=self.global_timestep ,155 bypass=True)154 buffer=self.global_timestep)#, 155 #bypass=True) 156 156 157 157 else: … … 178 178 #Broadcast minimal timestep to all 179 179 t0 = time.time() 180 pypar.broadcast(self.global_timestep, 0 ,181 bypass=True)180 pypar.broadcast(self.global_timestep, 0)#, 181 #bypass=True) 182 182 183 183 self.communication_broadcast_time += time.time()-t0 -
anuga_work/production/shark_bay_2007/project.py
r4856 r4884 51 51 source='shark_bay' 52 52 53 boundary_event = 'july2006'53 #boundary_event = 'july2006' 54 54 #boundary_event = '10000' 55 #boundary_event = 'experimental'55 boundary_event = 'experimental' 56 56 57 57 if setup =='trial': -
anuga_work/production/shark_bay_2007/run_shark_bay_frequency_sweep.py
r4689 r4884 163 163 print 'domain id', id(domain) 164 164 domain.beta_h = 0 165 #domain.tight_slope_limiters = 1165 domain.tight_slope_limiters = 1 166 166 167 167
Note: See TracChangeset
for help on using the changeset viewer.