Changeset 8454
- Timestamp:
- Jul 5, 2012, 4:51:49 PM (13 years ago)
- Location:
- trunk/anuga_core/source/anuga/operators
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/operators/base_operator.py
r8436 r8454 38 38 39 39 if label == None: 40 self.label = " inlet_%g" % Operator.counter40 self.label = "operator_%g" % Operator.counter 41 41 else: 42 42 self.label = label + '_%g' % Operator.counter -
trunk/anuga_core/source/anuga/operators/kinematic_viscosity_operator.py
r8209 r8454 229 229 elif isinstance(boundary, num.ndarray): 230 230 231 self._update_elliptic_boundary_term(boundary .boundary_values)231 self._update_elliptic_boundary_term(boundary) 232 232 233 233 else: -
trunk/anuga_core/source/anuga/operators/rate_operators.py
r8420 r8454 98 98 timestep = self.domain.get_timestep() 99 99 100 rate = self. update_rate(t)100 rate = self.get_rate(t) 101 101 102 102 if self.verbose is True: … … 112 112 113 113 114 def update_rate(self, t):114 def get_rate(self, t): 115 115 """Provide a rate to calculate added volume 116 116 """
Note: See TracChangeset
for help on using the changeset viewer.