Changeset 7986
- Timestamp:
- Sep 2, 2010, 9:51:54 AM (14 years ago)
- Location:
- trunk/anuga_core/source/anuga/structures
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/structures/boyd_box_culvert.py
r7984 r7986 18 18 height, 19 19 apron, 20 manning, 20 21 enquiry_gap, 21 22 verbose=False): 22 23 23 culvert.Culvert.__init__(self, domain, end_points, width, height, apron, enquiry_gap, verbose)24 24 culvert.Culvert.__init__(self, domain, end_points, width, height, apron, manning, enquiry_gap, verbose) 25 25 26 self.routine = boyd_box_routine.Boyd_box_routine(self) 26 27 -
trunk/anuga_core/source/anuga/structures/boyd_box_routine.py
r7984 r7986 58 58 """ 59 59 60 def __init__(self, culvert , manning=0.0):60 def __init__(self, culvert): 61 61 62 culvert_routine.Culvert_routine.__init__(self, culvert, manning) 62 culvert_routine.Culvert_routine.__init__(self, culvert) 63 64 self.manning = culvert.manning 63 65 64 66 … … 69 71 70 72 local_debug ='false' 73 74 import pdb 75 pdb.set_trace() 76 71 77 72 78 if self.inflow.get_enquiry_height() > 0.01: #this value was 0.01: -
trunk/anuga_core/source/anuga/structures/culvert.py
r7984 r7986 23 23 height, 24 24 apron, 25 manning, 25 26 enquiry_gap, 26 27 verbose): … … 33 34 self.height = height 34 35 self.apron = apron 36 self.manning = manning 37 35 38 self.enquiry_gap = enquiry_gap 36 39 self.verbose=verbose
Note: See TracChangeset
for help on using the changeset viewer.