Changeset 8074
- Timestamp:
- Nov 19, 2010, 4:56:37 PM (14 years ago)
- Location:
- trunk/anuga_validation/validation_tests
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_validation/validation_tests/dam_break/dam_break.py
r8067 r8074 34 34 # Setup domain 35 35 #------------------------------------------------------------------------------ 36 dx = 200.36 dx = 1000. 37 37 dy = dx 38 38 L = 100000. … … 73 73 74 74 h0 = 10.0 75 h1 = 0.075 h1 = 1.0 76 76 77 77 def height(x,y): … … 113 113 114 114 for t in domain.evolve(yieldstep = 100.0, finaltime = 60*60.): 115 print domain.timestepping_statistics(track_speeds=True) 115 #print domain.timestepping_statistics(track_speeds=True) 116 print domain.timestepping_statistics() 116 117 vis.update() 118 119 120 #test against know data 117 121 118 122 vis.evolveFinished() -
trunk/anuga_validation/validation_tests/thacker_parabolic/yoon_parabolic_basin_cross_mesh.py
r8067 r8074 11 11 #--------------- 12 12 # Module imports 13 from anuga.shallow_water_balanced.swb_domain import Domain, Transmissive_boundary, Reflective_boundary,\ 13 #from anuga.shallow_water_balanced.swb_domain import Domain, Transmissive_boundary, Reflective_boundary,\ 14 # Dirichlet_boundary 15 16 from anuga.interface import Domain, Transmissive_boundary, Reflective_boundary,\ 14 17 Dirichlet_boundary 15 16 #from anuga.interface import Domain, Transmissive_boundary, Reflective_boundary,\17 # Dirichlet_boundary18 18 from math import sqrt, cos, sin, pi 19 19 from anuga.interface import rectangular_cross
Note: See TracChangeset
for help on using the changeset viewer.