Changeset 8035
- Timestamp:
- Oct 14, 2010, 5:39:04 PM (13 years ago)
- Location:
- trunk/anuga_core/source/anuga/structures
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/structures/boyd_box_operator.py
r8027 r8035 24 24 apron=None, 25 25 manning=0.013, 26 enquiry_gap=0. 2,26 enquiry_gap=0.0, 27 27 use_momentum_jet=True, 28 28 use_velocity_head=True, … … 184 184 Q = min(Q, Q_outlet_tailwater) 185 185 else: 186 186 187 pass 187 188 #FIXME(Ole): What about inlet control? -
trunk/anuga_core/source/anuga/structures/structure_operator.py
r8034 r8035 102 102 timestep = self.domain.get_timestep() 103 103 104 self. __determine_inflow_outflow()104 self.determine_inflow_outflow() 105 105 106 106 Q, barrel_speed, outlet_depth = self.discharge_routine() … … 175 175 176 176 177 def __determine_inflow_outflow(self):177 def determine_inflow_outflow(self): 178 178 # Determine flow direction based on total energy difference 179 179 … … 221 221 # direction of the culvert 222 222 223 gap = (1 + self.enquiry_gap)*h223 gap = 1.5*h + self.enquiry_gap 224 224 225 225 self.inlet_polygons = []
Note: See TracChangeset
for help on using the changeset viewer.