Changeset 8824
- Timestamp:
- Apr 14, 2013, 6:44:33 PM (12 years ago)
- Location:
- trunk/anuga_core/source/anuga/operators
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/operators/base_operator.py
r8492 r8824 108 108 self.logging = flag 109 109 110 111 def activate_logging(self): 112 110 113 # If flag is true open file with mode = "w" to form a clean file for logging 111 114 if self.logging: … … 117 120 118 121 122 123 -
trunk/anuga_core/source/anuga/operators/rate_operators.py
r8488 r8824 32 32 33 33 rate can be a function of time. 34 35 Other units can be used by using the factor argument. 34 36 35 37 """ … … 220 222 rate can be a function of time. 221 223 224 Other units can be used by using the factor argument. 225 222 226 """ 223 227 … … 278 282 rate can be a function of time. 279 283 284 Other units can be used by using the factor argument. 285 280 286 """ 281 287 -
trunk/anuga_core/source/anuga/operators/test_erosion_operators.py
r8576 r8824 73 73 74 74 75 operator = Erosion_operator(domain, indices=indices )75 operator = Erosion_operator(domain, indices=indices, logging=True) 76 76 77 77 # Apply Operator
Note: See TracChangeset
for help on using the changeset viewer.