Ignore:
Timestamp:
Apr 30, 2005, 8:48:11 AM (20 years ago)
Author:
steve
Message:

Adding faster vpython visualisation using faces interface

File:
1 edited

Legend:

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

    r1194 r1265  
    174174        msg = 'Parameter beta_h must be in the interval [0, 1['
    175175        assert 0 <= self.beta_h < 1.0, msg
    176         msg = 'Parameter beta_w must be in the interval [0, 1['       
    177         assert 0 <= self.beta_w < 1.0, msg       
     176        msg = 'Parameter beta_w must be in the interval [0, 1['
     177        assert 0 <= self.beta_w < 1.0, msg
    178178
    179179
     
    185185        #Initialise real time viz if requested
    186186        if self.visualise is True and self.time == 0.0:
    187             import realtime_visualisation as visualise
     187            import realtime_visualisation_new as visualise
    188188            visualise.create_surface(self)
    189189
     
    345345
    346346    #Flux computation
    347    
    348     #FIXME(Ole): Why is it again that we don't 
     347
     348    #FIXME(Ole): Why is it again that we don't
    349349    #use uh_left and uh_right directly in the first entries?
    350350    flux_left  = array([u_left*h_left,
Note: See TracChangeset for help on using the changeset viewer.