source: anuga_core/source/anuga/examples/bed_w_file_boundary.py @ 4026

Last change on this file since 4026 was 4026, checked in by jack, 17 years ago

Moved the vpython visualiser to obsolete_code and cleared out things that call it from other code.

File size: 2.1 KB
Line 
1"""Example of shallow water wave equation.
2
3Generate slope
4
5"""
6
7######################
8# Module imports
9#
10from mesh_factory import rectangular
11from shallow_water import Domain, Reflective_boundary, Dirichlet_boundary,\
12     Constant_height, Time_boundary, File_boundary
13from Numeric import array
14
15#Create basic mesh
16points, vertices, boundary = rectangular(10, 10, 100, 100)
17
18#Create shallow water domain
19domain = Domain(points, vertices, boundary)
20domain.smooth = False
21domain.default_order=2
22
23#######################
24#Bed-slope and friction
25def x_slope(x, y):
26    return -x/3
27
28#domain.set_quantity('elevation', x_slope)
29domain.set_quantity('elevation', lambda x,y: -x/3)
30domain.set_quantity('friction', 0.1)
31
32
33######################
34# Boundary conditions
35
36
37#Write file
38import os, time
39from anuga.config import time_format
40from math import sin, pi
41
42finaltime = 100
43filename = 'bed_w_boundary'
44fid = open(filename + '.txt', 'w')
45start = time.mktime(time.strptime('2000', '%Y'))
46dt = 5  #Five second intervals
47t = 0.0
48while t <= finaltime:
49    t_string = time.strftime(time_format, time.gmtime(t+start))   
50    fid.write('%s, %f %f %f\n' %(t_string, 10*sin(t*0.1*pi), 0.0, 0.0))
51   
52    t += dt
53   
54fid.close()
55
56
57#Convert ASCII file to NetCDF (Which is what we really like!)
58from anuga.pyvolution.data_manager import timefile2swww       
59timefile2swww(filename, quantity_names = domain.conserved_quantities)
60
61
62Br = Reflective_boundary(domain)
63Bd = Dirichlet_boundary([0.2,0.,0.])
64Bw = Time_boundary(domain=domain,
65                   f=lambda t: [(10*sin(t*0.1*pi)), 0.0, 0.0])
66
67Bf = File_boundary(filename + '.sww', domain)
68
69#domain.set_boundary({'left': Bw, 'right': Br, 'top': Br, 'bottom': Br})
70domain.set_boundary({'left': Bf, 'right': Br, 'top': Br, 'bottom': Br})
71
72
73######################
74#Initial condition
75h = 0.5
76h = 0.0
77domain.set_quantity('stage', Constant_height(x_slope, h))
78
79domain.check_integrity()
80
81 
82######################
83#Evolution
84for t in domain.evolve(yieldstep = 1, finaltime = 100.0):
85    domain.write_time()
86
Note: See TracBrowser for help on using the repository browser.