source: trunk/anuga_core/source/anuga/structures/boyd_box_culvert.py @ 7993

Last change on this file since 7993 was 7991, checked in by steve, 14 years ago

Finally resolved conflicts between nariman and steve

File size: 1.1 KB
Line 
1#! /usr/bin/python
2
3# To change this template, choose Tools | Templates
4# and open the template in the editor.
5
6__author__="steve"
7__date__ ="$30/08/2010 10:56:39 AM$"
8
9import culvert
10import boyd_box_routine
11
12class Boyd_box_culvert(culvert.Culvert):
13
14    def __init__(self,
15                 domain,
16                 end_points,
17                 width,
18                 height,
19                 apron,
20                 manning,
21                 enquiry_gap,
22                 use_velocity_head,
23                 verbose=False):
24
25
26        culvert.Culvert.__init__(self,
27                                 domain,
28                                 end_points,
29                                 width,
30                                 height,
31                                 apron,
32                                 manning,
33                                 enquiry_gap,
34                                 use_velocity_head,
35                                 verbose)
36
37
38        self.routine = boyd_box_routine.Boyd_box_routine(self)
39
40    def __call__(self):
41
42        return self.routine()
43
Note: See TracBrowser for help on using the repository browser.