Changeset 3657
- Timestamp:
- Sep 22, 2006, 4:02:19 PM (17 years ago)
- Location:
- anuga_validation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/analytical solutions/Analytical solution_oblique_shock_01.py
r3652 r3657 37 37 leny = 30. 38 38 lenx = 40. 39 f = 540 n = 60*f39 f = 2 40 n = 50*f 41 41 m = 80*f 42 42 theta = 25 … … 66 66 67 67 # Visualization smoothing 68 domain.smooth= False68 domain.smooth=True 69 69 domain.visualise=False 70 70 … … 162 162 import time 163 163 t0 = time.time() 164 for t in domain.evolve(yieldstep = 0.1, finaltime = 6.0):164 for t in domain.evolve(yieldstep = 0.1, finaltime = 20.0): 165 165 domain.write_time() 166 166 id = 3399 -
anuga_validation/okushiri_2005/lwru2.py
r3647 r3657 45 45 domain.set_name('lwru2') 46 46 domain.set_default_order(2) 47 domain.set_minimum_storable_height(0.001) 47 48 48 49 #domain.check_integrity() -
anuga_validation/okushiri_2005/okushiri_parallel.py
r3656 r3657 30 30 domain = Domain(project.mesh_filename, use_cache=True, verbose=True) 31 31 domain.set_name('okushiri') 32 domain.set_minimum_storable_height(0.001) 32 33 domain.set_default_order(2) 33 34 print domain.statistics()
Note: See TracChangeset
for help on using the changeset viewer.