Changeset 8007
- Timestamp:
- Sep 7, 2010, 10:17:56 AM (14 years ago)
- Location:
- trunk/anuga_core/source/anuga/structures
- Files:
-
- 11 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/structures/testing_culvert.py
r7979 r8007 10 10 import anuga 11 11 12 from anuga.structures. culvert_operator import Culvert_operator12 from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator 13 13 14 14 #from anuga.culvert_flows.culvert_routines import boyd_generalised_culvert_model … … 31 31 32 32 length = 40. 33 width = 5.33 width = 15. 34 34 35 35 dx = dy = 0.5 # Resolution: Length of subdivisions on both axes … … 86 86 87 87 filename=os.path.join(path, 'example_rating_curve.csv') 88 culvert1 = Culvert_operator(domain, 89 end_point0=[9.0, 2.5], 88 89 90 91 Boyd_pipe_operator(domain, 92 end_point0=[9.0, 2.5], 90 93 end_point1=[13.0, 2.5], 91 width=1.00, 94 losses=1.5, 95 diameter=1.5, 96 apron=5.0, 97 use_momentum_jet=True, 98 use_velocity_head=False, 99 manning=0.013, 92 100 verbose=False) 101 93 102 94 103 #culvert2 = Generic_box_culvert(domain,
Note: See TracChangeset
for help on using the changeset viewer.