- Timestamp:
- Sep 16, 2010, 2:09:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/generic_domain.py
r7967 r8018 1528 1528 raise Exception, msg 1529 1529 1530 # Yield final time and stop1530 # Log and then Yield final time and stop 1531 1531 self.time = finaltime 1532 self.log_operator_timestepping_statistics() 1532 1533 yield(self.time) 1533 1534 break … … 1540 1541 self.delete_old_checkpoints() 1541 1542 1542 # Pass control on to outer loop for more specific actions 1543 # Log and then Pass control on to outer loop for more specific actions 1544 self.log_operator_timestepping_statistics() 1543 1545 yield(self.time) 1544 1546 … … 1860 1862 for operator in self.fractional_step_operators: 1861 1863 operator() 1864 1865 1866 1867 ## 1868 # @brief log_timestepping_statistics. 1869 # Goes through all fractional step operators and logs timestepping statistics 1870 def log_operator_timestepping_statistics(self): 1871 for operator in self.fractional_step_operators: 1872 operator.log_timestepping_statistics() 1873 1874 ## 1875 # @brief print_timestepping_statistics. 1876 # Goes through all fractional step operators and logs timestepping statistics 1877 def print_operator_timestepping_statistics(self): 1878 for operator in self.fractional_step_operators: 1879 operator.print_timestepping_statistics() 1880 1862 1881 1863 1882 ##
Note: See TracChangeset
for help on using the changeset viewer.