Changeset 6196
- Timestamp:
- Jan 19, 2009, 9:13:04 AM (16 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/quantity.py
r6195 r6196 857 857 raise msg 858 858 859 if False: 860 # FIXME (Ole) 859 if True: 861 860 # Use mesh as defined by domain 862 # This causesproblems for caching861 # This used to cause problems for caching 863 862 # due to quantities changing, but 864 # it would work if we only passed in 865 # the appropriate Mesh object. 866 # See ticket:242 863 # it now works using the appropriate Mesh object. 864 # This should close ticket:242 867 865 vertex_attributes = fit_to_mesh(filename, 868 mesh=self.domain ,866 mesh=self.domain.mesh, 869 867 alpha=alpha, 870 868 attribute_name=attribute_name, … … 875 873 # This variant will cause Mesh object to be recreated 876 874 # in fit_to_mesh thus doubling up on the neighbour structure 875 # FIXME(Ole): This is now obsolete 19 Jan 2009. 877 876 nodes = self.domain.get_nodes(absolute=True) 878 877 triangles = self.domain.get_triangles() -
anuga_validation/okushiri_2005/test_caching_of_set_quantity.py
r5857 r6196 19 19 mesh before running this script. 20 20 21 21 22 """ 23 # NOTE: Cache should be cleared before running this script 24 22 25 23 26 # Module imports
Note: See TracChangeset
for help on using the changeset viewer.