source: anuga_core/documentation/user_manual/demos/channel1.py @ 7064

Last change on this file since 7064 was 7064, checked in by rwilson, 15 years ago

Fiddling with layout of user guide.

File size: 2.1 KB
Line 
1"""Simple water flow example using ANUGA
2
3Water flowing down a channel
4"""
5
6#------------------------------------------------------------------------------
7# Import necessary modules
8#------------------------------------------------------------------------------
9from anuga.abstract_2d_finite_volumes.mesh_factory import rectangular_cross
10from anuga.shallow_water import Domain
11from anuga.shallow_water import Reflective_boundary
12from anuga.shallow_water import Dirichlet_boundary
13
14#------------------------------------------------------------------------------
15# Setup computational domain
16#------------------------------------------------------------------------------
17points, vertices, boundary = rectangular_cross(10, 5,
18                                               len1=10.0, len2=5.0) # Mesh
19
20domain = Domain(points, vertices, boundary)  # Create domain
21domain.set_name('channel1')                  # Output name
22
23#------------------------------------------------------------------------------
24# Setup initial conditions
25#------------------------------------------------------------------------------
26def topography(x,y):
27    return -x/10                             # linear bed slope
28
29domain.set_quantity('elevation', topography) # Use function for elevation
30domain.set_quantity('friction', 0.01)        # Constant friction
31domain.set_quantity('stage',                 # Dry bed
32                    expression='elevation + 0.0') 
33
34#------------------------------------------------------------------------------
35# Setup boundary conditions
36#------------------------------------------------------------------------------
37Bi = Dirichlet_boundary([0.4, 0, 0])         # Inflow
38Br = Reflective_boundary(domain)             # Solid reflective wall
39
40domain.set_boundary({'left': Bi, 'right': Br, 'top': Br, 'bottom': Br})
41
42#------------------------------------------------------------------------------
43# Evolve system through time
44#------------------------------------------------------------------------------
45for t in domain.evolve(yieldstep=0.2, finaltime=40.0):
46    print domain.timestepping_statistics()
Note: See TracBrowser for help on using the repository browser.