- Timestamp:
- Jun 7, 2010, 10:19:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/UQ_runup_2006/run_dam.py
r7774 r7795 17 17 18 18 # Related major packages 19 from anuga.shallow_water import Domain, Reflective_boundary, \ 20 Dirichlet_boundary, Time_boundary, File_boundary 19 import anuga 20 21 21 from anuga.abstract_2d_finite_volumes.region import Set_region 22 22 from anuga.fit_interpolate.interpolate import interpolate_sww2csv, \ … … 55 55 # Setup computational domain 56 56 #------------------------------------------------------------------------- 57 domain = Domain(project.mesh_filename, use_cache = False, verbose = False)57 domain = anuga.Domain(project.mesh_filename, use_cache = False) 58 58 domain.set_name(project.basename) 59 59 domain.set_datadir('.') … … 80 80 location = 'unique vertices') 81 81 82 Br = Reflective_boundary(domain)83 Bd = Dirichlet_boundary([0,0,0]) # to drain the water out.82 Br = anuga.Reflective_boundary(domain) 83 Bd = anuga.Dirichlet_boundary([0,0,0]) # to drain the water out. 84 84 domain.set_boundary( {'wall': Br, 'edge': Bd} ) 85 85
Note: See TracChangeset
for help on using the changeset viewer.