Ignore:
Timestamp:
Sep 6, 2004, 10:09:28 AM (20 years ago)
Author:
ole
Message:

Made evlove specialisation in advection module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/shallow_water.py

    r269 r271  
    3939        #Realtime visualisation
    4040        self.visualise = False
    41 
    4241
    4342        #Stored output
     
    102101
    103102    def evolve(self, yieldstep = None, finaltime = None):
    104         #Call basic machinery from parent class
    105 
    106 
     103        """Specialisation of basic evolve method from parent class
     104        """
     105       
     106        #Initialise real time viz if requested
    107107        if self.visualise is True and self.time == 0.0:
    108108            import realtime_visualisation as visualise
     
    113113            self.store_bathymetry()       
    114114            ###self.store_conserved_quantities()       
    115                    
     115
     116        #Call basic machinery from parent class
    116117        for t in Generic_domain.evolve(self, yieldstep, finaltime):
    117118            #Real time viz
Note: See TracChangeset for help on using the changeset viewer.