Changeset 5303
- Timestamp:
- May 9, 2008, 4:11:37 PM (17 years ago)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/config.py
r5290 r5303 92 92 # reconstruction of stage and this option speeds ANUGA up 93 93 # 94 # This option must be used with tight_slope_limiters.95 use_centroid_velocities = True94 # This option is good with tight_slope_limiters, especially for large domains. 95 use_centroid_velocities = False 96 96 97 97 -
anuga_core/source/anuga/shallow_water/shallow_water_domain.py
r5294 r5303 1519 1519 domain, 1520 1520 quantity_name, 1521 rate= None,1521 rate=0.0, 1522 1522 center=None, radius=None, 1523 1523 polygon=None, … … 1534 1534 self.polygon = polygon 1535 1535 self.verbose = verbose 1536 self.value = 0.0 # Can be used to remember value at 1537 # previous timestep in order to obtain rate 1536 1538 1537 1539 # Update area if applicable -
anuga_core/source/anuga/shallow_water/test_data_manager.py
r5290 r5303 565 565 self.domain.beta_h = 0 566 566 567 self.domain.tight_slope_limiters = True 568 self.domain.use_centroid_velocities = True 569 567 570 # In this case tight_slope_limiters as default 568 571 # in conjunction with protection -
anuga_core/source/anuga/shallow_water/test_shallow_water_domain.py
r5294 r5303 2930 2930 domain = Domain(points, elements) 2931 2931 domain.check_integrity() 2932 domain.tight_slope_limiters = True 2933 domain.use_centroid_velocities = True 2932 2934 2933 2935 # Create non-flat bed - closely hugging initial stage in places -
anuga_validation/automated_validation_tests/okushiri_tank_validation/run_okushiri.py
r5297 r5303 65 65 domain.beta_h = 0.0 66 66 domain.tight_slope_limiters = True # Run time invariant in this case 67 domain.use_centroid_velocities = True 67 68 68 69 #-------------------------
Note: See TracChangeset
for help on using the changeset viewer.