source: inundation/ga/storm_surge/pyvolution/bed_w_file_boundary.py @ 826

Last change on this file since 826 was 773, checked in by ole, 20 years ago

Changed quantity name 'level' to 'stage'

File size: 1.9 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.visualise = True
22domain.default_order=2
23
24#######################
25#Bed-slope and friction
26def x_slope(x, y):
27    return -x/3
28
29#domain.set_quantity('elevation', x_slope)
30domain.set_quantity('elevation', lambda x,y: -x/3)
31domain.set_quantity('friction', 0.1)
32
33
34######################
35# Boundary conditions
36
37
38#Write file
39import os, time
40from config import time_format
41from math import sin, pi
42
43finaltime = 100
44filename = 'bed_w_boundary.bdry'
45fid = open(filename, 'w')
46start = time.mktime(time.strptime('2000', '%Y'))
47dt = 5  #Five second intervals
48t = 0.0
49while t <= finaltime:
50    t_string = time.strftime(time_format, time.gmtime(t+start))   
51    fid.write('%s, %f %f %f\n' %(t_string, 10*sin(t*0.1*pi), 0.0, 0.0))
52   
53    t += dt
54   
55fid.close()
56
57
58
59Br = Reflective_boundary(domain)
60Bd = Dirichlet_boundary([0.2,0.,0.])
61Bw = Time_boundary(domain=domain,
62                   f=lambda t: [(10*sin(t*0.1*pi)), 0.0, 0.0])
63
64Bf = File_boundary(filename, domain)
65
66#domain.set_boundary({'left': Bw, 'right': Br, 'top': Br, 'bottom': Br})
67domain.set_boundary({'left': Bf, 'right': Br, 'top': Br, 'bottom': Br})
68
69
70######################
71#Initial condition
72h = 0.5
73h = 0.0
74domain.set_quantity('stage', Constant_height(x_slope, h))
75
76domain.check_integrity()
77
78 
79######################
80#Evolution
81for t in domain.evolve(yieldstep = 1, finaltime = 100.0):
82    domain.write_time()
83
Note: See TracBrowser for help on using the repository browser.