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

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

Added enquiry points to culverts

File size: 689 bytes
RevLine 
[7980]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,
[7984]17                 width,
18                 height,
19                 apron,
20                 enquiry_gap,
[7980]21                 verbose=False):
22
[7984]23        culvert.Culvert.__init__(self, domain, end_points, width, height, apron, enquiry_gap, verbose)
[7980]24
25        self.routine = boyd_box_routine.Boyd_box_routine(self)
26
27    def __call__(self):
28
29        return self.routine()
30
Note: See TracBrowser for help on using the repository browser.