Changeset 4694


Ignore:
Timestamp:
Aug 31, 2007, 4:37:44 PM (17 years ago)
Author:
ole
Message:

Update on Will's convergence example

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_validation/convergence_study/convergence.py

    r4693 r4694  
    2626#------------------------------------------------------------------------------
    2727
    28 points, vertices, boundary = rectangular_cross(666, 3, 100000, 3000, (0.0, -0.0)) # Basic mesh
     28dx = 1000.
     29dy = dx
     30L = 100000.
     31W = 3000.
     32
     33points, vertices, boundary = rectangular_cross(int(L/dx), int(L/dy),
     34                                               L, W, (0.0, -W/2)) # Basic mesh
     35
     36#points, vertices, boundary = rectangular_cross(666, 3, 100000, 3000, (0.0, -0.0)) # Basic mesh
    2937#points, vertices, boundary = rectangular_cross(530, 10, 5300, 100, (-5000.0, -50.0)) # Basic mesh
    3038#points, vertices, boundary = rectangular_cross(1000, 100, 20, 3) # Basic mesh
Note: See TracChangeset for help on using the changeset viewer.