Changeset 7317 for anuga_core/source/anuga/advection
- Timestamp:
- Jul 22, 2009, 9:22:11 AM (16 years ago)
- Location:
- anuga_core/source/anuga/advection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/advection/advection.py
r7276 r7317 32 32 33 33 from anuga.abstract_2d_finite_volumes.domain import * 34 import anuga.utilities.log as log 34 35 35 36 import numpy as num … … 165 166 166 167 """ 167 print "======================================"168 print "BEFORE compute_fluxes"169 print "stage_update",Stage.explicit_update170 print "stage_edge",Stage.edge_values171 print "stage_bdry",Stage.boundary_values172 print "neighbours",self.neighbours173 print "neighbour_edges",self.neighbour_edges174 print "normals",self.normals175 print "areas",self.areas176 print "radii",self.radii177 print "edgelengths",self.edgelengths178 print "tri_full_flag",self.tri_full_flag179 print "huge_timestep",huge_timestep180 print "max_timestep",max_timestep181 print "velocity",self.velocity168 log.critical("======================================") 169 log.critical("BEFORE compute_fluxes") 170 log.critical("stage_update=%s" % str(Stage.explicit_update)) 171 log.critical("stage_edge=%s" % str(Stage.edge_values)) 172 log.critical("stage_bdry=%s" % str(Stage.boundary_values)) 173 log.critical("neighbours=%s" % str(self.neighbours)) 174 log.critical("neighbour_edges=%s" % str(self.neighbour_edges)) 175 log.critical("normals=%s" % str(self.normals)) 176 log.critical("areas=%s" % str(self.areas)) 177 log.critical("radii=%s" % str(self.radii)) 178 log.critical("edgelengths=%s" % str(self.edgelengths)) 179 log.critical("tri_full_flag=%s" % str(self.tri_full_flag)) 180 log.critical("huge_timestep=%s" % str(huge_timestep)) 181 log.critical("max_timestep=%s" % str(max_timestep)) 182 log.critical("velocity=%s" % str(self.velocity)) 182 183 """ 183 184 -
anuga_core/source/anuga/advection/test_all.py
r4978 r7317 29 29 if os.path.isdir(file): 30 30 sys.path.append(file) 31 #print 'Recursing into', file32 31 test_files += get_test_files(path + os.sep + file) 33 32 elif file[:5] == 'test_' and file[-2:] == 'py': 34 #print 'Appending', file35 33 test_files.append(file) 36 34 else:
Note: See TracChangeset
for help on using the changeset viewer.