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

Last change on this file since 7989 was 7986, checked in by habili, 14 years ago

deal with manning

File size: 732 bytes
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                 verbose=False):
23
24        culvert.Culvert.__init__(self, domain, end_points, width, height, apron, manning, enquiry_gap, verbose)
25       
26        self.routine = boyd_box_routine.Boyd_box_routine(self)
27
28    def __call__(self):
29
30        return self.routine()
31
Note: See TracBrowser for help on using the repository browser.