Changeset 8695


Ignore:
Timestamp:
Feb 14, 2013, 4:58:29 PM (11 years ago)
Author:
steve
Message:

Small change to fit_mesh (check_integrity is very slow

Location:
trunk/anuga_core
Files:
2 edited

Legend:

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

    r8694 r8695  
    578578            log.critical('FitInterpolate: Building mesh')
    579579        mesh = Mesh(vertex_coordinates, triangles)
    580         mesh.check_integrity()
     580
     581        # This is very slow!
     582        #mesh.check_integrity()
    581583
    582584    interp = Fit(mesh=mesh,
  • trunk/anuga_core/validation_tests/Tests/Case_studies/Okushiri/create_okushiri.py

    r8694 r8695  
    3030base_resolution = 0.02 # 1,972,289 triangles
    3131base_resolution = 0.04 # 989,669 triangles
    32 base_resolution = 0.1 # 397,456 triangles
     32#base_resolution = 0.1 # 397,456 triangles
    3333base_resolution = 0.6 # 68162 triangles
    3434base_resolution = 2.0 # 21214 triangles
    35 base_resolution = 4.0 # 11069 triangles
     35#base_resolution = 4.0 # 11069 triangles
    3636
    3737print base_resolution
Note: See TracChangeset for help on using the changeset viewer.