Changeset 3788 for anuga_work/production/onslow_2006/run_onslow.py
- Timestamp:
- Oct 16, 2006, 2:12:04 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/onslow_2006/run_onslow.py
r3535 r3788 23 23 24 24 # Related major packages 25 from anuga. pyvolution.shallow_water import Domain, Reflective_boundary, \25 from anuga.shallow_water import Domain, Reflective_boundary, \ 26 26 Dirichlet_boundary, Time_boundary, File_boundary 27 from anuga.pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts 28 from anuga.pyvolution.combine_pts import combine_rectangular_points_files 29 from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance 27 from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts 28 from anuga.abstract_2d_finite_volumes.combine_pts import combine_rectangular_points_files 30 29 from anuga.geospatial_data.geospatial_data import * 31 from anuga. pyvolution.util import Screen_Catcher30 from anuga.abstract_2d_finite_volumes.util import Screen_Catcher 32 31 33 32 # Application specific imports … … 144 143 #------------------------------------------------------------------------------- 145 144 146 domain = pmesh_to_domain_instance(meshname, Domain, 147 use_cache = False, 148 verbose = True) 145 #domain = pmesh_to_domain_instance(meshname, Domain, 146 # use_cache = False, 147 # verbose = True) 148 149 domain = Domain(meshname, use_cache = False, verbose = True) 149 150 150 151 print 'Number of triangles = ', len(domain)
Note: See TracChangeset
for help on using the changeset viewer.