- Timestamp:
- Aug 8, 2009, 2:19:58 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/damage_modelling/test_inundation_damage.py
r7276 r7340 15 15 from anuga.shallow_water import Domain, Transmissive_boundary 16 16 from anuga.utilities.numerical_tools import mean 17 from anuga.shallow_water.data_manager import get_dataobject17 from anuga.shallow_water.data_manager import SWW_file 18 18 19 19 import numpy as num … … 112 112 self.domain.reduction = mean 113 113 114 sww = get_dataobject(self.domain)114 sww = SWW_file(self.domain) 115 115 sww.store_connectivity() 116 116 sww.store_timestep(['stage', 'xmomentum', 'ymomentum']) … … 182 182 domain.reduction = mean 183 183 184 sww = get_dataobject(domain)184 sww = SWW_file(domain) 185 185 sww.store_connectivity() 186 186 sww.store_timestep(['stage', 'xmomentum', 'ymomentum']) … … 282 282 domain.reduction = mean 283 283 284 sww = get_dataobject(domain)284 sww = SWW_file(domain) 285 285 sww.store_connectivity() 286 286 sww.store_timestep(['stage', 'xmomentum', 'ymomentum']) … … 354 354 domain.reduction = mean 355 355 356 sww = get_dataobject(domain)356 sww = SWW_file(domain) 357 357 sww.store_connectivity() 358 358 sww.store_timestep(['stage', 'xmomentum', 'ymomentum'])
Note: See TracChangeset
for help on using the changeset viewer.