Changeset 9081
- Timestamp:
- Apr 10, 2014, 4:10:07 PM (11 years ago)
- Location:
- trunk/anuga_core/source/anuga_1d/sqpipe
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga_1d/sqpipe/culvert.py
r9080 r9081 70 70 71 71 Br = dom.Reflective_boundary(domain) 72 73 domain.set_boundary({'left': Br, 'right' : Br}) 72 Bt = dom.Transmissive_boundary(domain) 73 74 domain.set_boundary({'left': Br, 'right' : Bt}) 74 75 75 76 return domain -
trunk/anuga_core/source/anuga_1d/sqpipe/run_culvert.py
r9076 r9081 8 8 9 9 finaltime = 100.0 10 yieldstep = 0. 110 yieldstep = 0.001 11 11 12 12 model.animate_domain(domain, yieldstep, finaltime) -
trunk/anuga_core/source/anuga_1d/sqpipe/sqpipe_boundary_conditions.py
r9080 r9081 18 18 19 19 if quantities is None: 20 msg = 'Must specify one value for each evolved quantity, w,uh,z,h,u' 20 msg = 'Must specify one value for each evolved quantities' + \ 21 ' area, discharge, elevation, height,velocity, width, top stage' 21 22 raise msg 22 23
Note: See TracChangeset
for help on using the changeset viewer.