Ignore:
Timestamp:
Dec 12, 2011, 2:36:51 PM (12 years ago)
Author:
neweyv
Message:

Additional information written to the log file. This information will assist in creating an algorithm to predict the runtime of ANUGA given various parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/general_mesh.py

    r8200 r8279  
    8484        if verbose: log.critical('General_mesh: Building basic mesh structure '
    8585                                 'in ANUGA domain')
    86 
     86        if verbose: log.timingInfo("numTriangles, " + str(triangles.shape[0]))
     87       
    8788        self.triangles = num.array(triangles, num.int)
    8889        self.nodes = num.array(nodes, num.float)
     
    198199        if verbose: log.critical('Building inverted triangle structure')
    199200        self.build_inverted_triangle_structure()
     201       
     202        if verbose: log.timingInfo("aoi, '%s'" % self.get_area())
     203       
    200204
    201205    def __len__(self):
Note: See TracChangeset for help on using the changeset viewer.