Changeset 3438
- Timestamp:
- Aug 2, 2006, 2:15:17 PM (19 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/parallel/test_parallel_sw.py
r3243 r3438 19 19 20 20 from Numeric import array, zeros, Float, take, nonzero 21 from shallow_water import Domain22 from shallow_water import Reflective_boundary as sw_reflective_boundary23 from shallow_water import Transmissive_boundary as sw_transmissive_boundary21 from pyvolution.shallow_water import Domain 22 from pyvolution.shallow_water import Reflective_boundary as sw_reflective_boundary 23 from pyvolution.shallow_water import Transmissive_boundary as sw_transmissive_boundary 24 24 from parallel_shallow_water import Parallel_Domain 25 25 from parallel_shallow_water import Reflective_boundary as par_reflective_boundary 26 26 from parallel_shallow_water import Transmissive_boundary as par_transmissive_boundary 27 from p mesh2domain import pmesh_to_domain_instance27 from pyvolution.pmesh2domain import pmesh_to_domain_instance 28 28 from utilities.norms import * 29 29 from utilities.util_ext import double_precision -
production/wollongong_2006/run_flagstaff.py
r3430 r3438 33 33 34 34 # Parallelism 35 from pypar_distimport pypar # The Python-MPI interface35 import pypar # The Python-MPI interface 36 36 from parallel.pmesh_divide import pmesh_divide_metis 37 37 from parallel.build_submesh import build_submesh … … 173 173 #------------------------------------------------------------------------------ 174 174 175 176 domain.set_quantity('elevation', quantities['elevation']) # Get elevation 175 177 domain.set_quantity('stage', project.initial_sealevel) 176 178 domain.set_quantity('friction', 0.03)
Note: See TracChangeset
for help on using the changeset viewer.