Changeset 4694 for anuga_validation/convergence_study/convergence.py
- Timestamp:
- Aug 31, 2007, 4:37:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/convergence_study/convergence.py
r4693 r4694 26 26 #------------------------------------------------------------------------------ 27 27 28 points, vertices, boundary = rectangular_cross(666, 3, 100000, 3000, (0.0, -0.0)) # Basic mesh 28 dx = 1000. 29 dy = dx 30 L = 100000. 31 W = 3000. 32 33 points, 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 29 37 #points, vertices, boundary = rectangular_cross(530, 10, 5300, 100, (-5000.0, -50.0)) # Basic mesh 30 38 #points, vertices, boundary = rectangular_cross(1000, 100, 20, 3) # Basic mesh
Note: See TracChangeset
for help on using the changeset viewer.