Changeset 8155


Ignore:
Timestamp:
Mar 19, 2011, 2:28:16 PM (13 years ago)
Author:
steve
Message:

end of week commit

Location:
trunk
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/generic_domain.py

    r8154 r8155  
    12881288        self.number_of_first_order_steps = 0
    12891289
    1290         # Update ghosts
     1290        # Update ghosts to ensure all centroid values are available
    12911291        self.update_ghosts()
    12921292
  • trunk/anuga_validation/validation_tests/periodic_wave.py

    r8103 r8155  
    6262domain.CFL = 1.0
    6363
    64 domain.beta_w      = 1.0
    65 domain.beta_w_dry  = 0.0
    66 domain.beta_uh     = 1.0
    67 domain.beta_uh_dry = 0.0
    68 domain.beta_vh     = 1.0
    69 domain.beta_vh_dry = 0.0
     64#domain.beta_w      = 1.0
     65#domain.beta_w_dry  = 0.0
     66#domain.beta_uh     = 1.0
     67#domain.beta_uh_dry = 0.0
     68#domain.beta_vh     = 1.0
     69#domain.beta_vh_dry = 0.0
    7070
    7171
     
    7373# Setup initial conditions
    7474#------------------------------------------------------------------------------
    75 domain.set_quantity('elevation',-100.0)
     75domain.set_quantity('elevation',-10.0)
    7676domain.set_quantity('friction', 0.00)
    7777domain.set_quantity('stage', 0.0)           
     
    8787Bw = anuga.Time_boundary(domain=domain,     # Time dependent boundary 
    8888## Sine wave
    89                   f=lambda t: [(-amplitude*sin((1./300.)*t*2*pi)), 0.0, 0.0])
     89                  f=lambda t: [(-amplitude*sin((1./600.)*t*2*pi)), 0.0, 0.0])
    9090## Sawtooth?
    9191#                   f=lambda t: [(-8.0*(sin((1./180.)*t*2*pi))+(1./2.)*sin((2./180.)*t*2*pi)+(1./3.)*sin((3./180.)*t*2*pi)), 0.0, 0.0])
Note: See TracChangeset for help on using the changeset viewer.