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

Last change on this file since 7983 was 7980, checked in by steve, 14 years ago

Added new tests

File size: 625 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=None,
18                 height=None,
19                 verbose=False):
20
21        culvert.Culvert.__init__(self, domain, end_points, width, height, verbose)
22
23        self.routine = boyd_box_routine.Boyd_box_routine(self)
24
25    def __call__(self):
26
27        return self.routine()
28
Note: See TracBrowser for help on using the repository browser.