Changeset 5304
- Timestamp:
- May 9, 2008, 5:11:18 PM (17 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/config.py
r5303 r5304 182 182 optimise_dry_cells = True # Exclude dry and still cells from flux computation 183 183 optimised_gradient_limiter = True # Use hardwired gradient limiter 184 use_edge_limiter = False # The edge limiter is better, but most runs have been using vertex limiting 184 use_edge_limiter = False # The edge limiter is better, but most runs have been using vertex limiting. Validations passed with this one True 9th May 2008, but many unit tests need backward compatibility flag set FIXME(Ole). 185 185 186 186 points_file_block_line_size = 500 # Number of lines read in from a points file -
anuga_core/source/anuga/shallow_water/test_shallow_water_domain.py
r5303 r5304 4597 4597 # FIXME (Ole): Need tests where these two are commented out 4598 4598 domain.H0 = 0 # Backwards compatibility (6/2/7) 4599 domain.tight_slope_limiters = 0 # Backwards compatibility (14/4/7) 4600 domain.use_centroid_velocities = 0 # Backwards compatibility (7/5/8) 4599 domain.tight_slope_limiters = False # Backwards compatibility (14/4/7) 4600 domain.use_centroid_velocities = False # Backwards compatibility (7/5/8) 4601 domain.use_edge_limiter = False # Backwards compatibility (9/5/8) 4601 4602 4602 4603
Note: See TracChangeset
for help on using the changeset viewer.