Changeset 5991


Ignore:
Timestamp:
Nov 24, 2008, 4:55:32 PM (16 years ago)
Author:
ole
Message:

Work on startime and comments re ticket:306

Location:
anuga_core/source/anuga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/abstract_2d_finite_volumes/generic_boundary_conditions.py

    r5897 r5991  
    120120
    121121    def evaluate(self, vol_id=None, edge_id=None):
     122        # FIXME (Ole): I think this should be get_time(), see ticket:306
    122123        return self.f(self.domain.time)
    123124
     
    162163        """
    163164
     165        # FIXME (Ole): I think this should be get_time(), see ticket:306       
    164166        t = self.domain.time
    165167        return self.F(t)
     
    317319        """
    318320
     321        # FIXME (Ole): I think this should be get_time(), see ticket:306
    319322        t = self.domain.time
    320323       
     
    478481
    479482    def get_conserved_quantities(self, volume=None, face=0):
     483   
     484        # FIXME (Ole): I think this should be get_time(), see ticket:306   
    480485        return self.f(self.conserved_quantities,
    481486                      neighbour.conserved_quantities,
  • anuga_core/source/anuga/shallow_water/shallow_water_domain.py

    r5920 r5991  
    11501150
    11511151
    1152         t = self.domain.time
     1152        t = self.domain.get_time()
    11531153
    11541154        if hasattr(self.function, 'time'):
Note: See TracChangeset for help on using the changeset viewer.