source: trunk/anuga_core/source/anuga/structures/boyd_box_operator.py @ 8020

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

Fixed bug with log_to_file on boyd_box_operator

File size: 8.9 KB
Line 
1import anuga
2import math
3import types
4
5class Boyd_box_operator(anuga.Structure_operator):
6    """Culvert flow - transfer water from one rectangular box to another.
7    Sets up the geometry of problem
8   
9    This is the base class for culverts. Inherit from this class (and overwrite
10    compute_discharge method for specific subclasses)
11   
12    Input: Two points, pipe_size (either diameter or width, height),
13    mannings_rougness,
14    """
15
16
17    def __init__(self,
18                 domain,
19                 end_point0, 
20                 end_point1,
21                 losses,
22                 width,
23                 height=None,
24                 apron=None,
25                 manning=0.013,
26                 enquiry_gap=0.2,
27                 use_momentum_jet=True,
28                 use_velocity_head=True,
29                 description=None,
30                 label=None,
31                 structure_type='boyd_box',
32                 logging=False,
33                 verbose=False):
34
35                     
36        anuga.Structure_operator.__init__(self,
37                                          domain,
38                                          end_point0, 
39                                          end_point1,
40                                          width,
41                                          height,
42                                          apron,
43                                          manning,
44                                          enquiry_gap,                                                       
45                                          description,
46                                          label,
47                                          structure_type,
48                                          logging,
49                                          verbose)     
50       
51       
52        if type(losses) == types.DictType:
53            self.sum_loss = sum(losses.values())
54        elif type(losses) == types.ListType:
55            self.sum_loss = sum(losses)
56        else:
57            self.sum_loss = losses
58       
59        self.use_momentum_jet = use_momentum_jet
60        self.use_velocity_head = use_velocity_head
61       
62        self.culvert_length = self.get_culvert_length()
63        self.culvert_width = self.get_culvert_width()
64        self.culvert_height = self.get_culvert_height()
65
66        self.max_velocity = 10.0
67
68        self.inlets = self.get_inlets()
69
70
71        # Stats
72       
73        self.discharge = 0.0
74        self.velocity = 0.0
75
76   
77    def discharge_routine(self):
78
79        local_debug ='false'
80       
81        if self.inflow.get_enquiry_height() > 0.01: #this value was 0.01:
82            if local_debug =='true':
83                anuga.log.critical('Specific E & Deltat Tot E = %s, %s'
84                             % (str(self.inflow.get_enquiry_specific_energy()),
85                                str(self.delta_total_energy)))
86                anuga.log.critical('culvert type = %s' % str(culvert_type))
87            # Water has risen above inlet
88
89
90            msg = 'Specific energy at inlet is negative'
91            assert self.inflow.get_enquiry_specific_energy() >= 0.0, msg
92
93            if self.use_velocity_head :
94                self.driving_energy = self.inflow.get_enquiry_specific_energy()
95            else:
96                self.driving_energy = self.inflow.get_enquiry_height()
97
98            height = self.culvert_height
99            width = self.culvert_width
100            flow_width = self.culvert_width
101            # intially assume the culvert flow is controlled by the inlet
102            # check unsubmerged and submerged condition and use Min Q
103            # but ensure the correct flow area and wetted perimeter are used
104            Q_inlet_unsubmerged = 0.544*anuga.g**0.5*width*self.driving_energy**1.50 # Flow based on Inlet Ctrl Inlet Unsubmerged
105            Q_inlet_submerged = 0.702*anuga.g**0.5*width*height**0.89*self.driving_energy**0.61  # Flow based on Inlet Ctrl Inlet Submerged
106
107            # FIXME(Ole): Are these functions really for inlet control?
108            if Q_inlet_unsubmerged < Q_inlet_submerged:
109                Q = Q_inlet_unsubmerged
110                dcrit = (Q**2/anuga.g/width**2)**0.333333
111                if dcrit > height:
112                    dcrit = height
113                    flow_area = width*dcrit
114                    perimeter= 2.0*(width+dcrit)
115                else: # dcrit < height
116                    flow_area = width*dcrit
117                    perimeter= 2.0*dcrit+width
118                outlet_culvert_depth = dcrit
119                case = 'Inlet unsubmerged Box Acts as Weir'
120            else: # Inlet Submerged but check internal culvert flow depth
121                Q = Q_inlet_submerged
122                dcrit = (Q**2/anuga.g/width**2)**0.333333
123                if dcrit > height:
124                    dcrit = height
125                    flow_area = width*dcrit
126                    perimeter= 2.0*(width+dcrit)
127                else: # dcrit < height
128                    flow_area = width*dcrit
129                    perimeter= 2.0*dcrit+width
130                outlet_culvert_depth = dcrit
131                case = 'Inlet submerged Box Acts as Orifice'
132
133            dcrit = (Q**2/anuga.g/width**2)**0.333333
134            # May not need this .... check if same is done above
135            outlet_culvert_depth = dcrit
136            if outlet_culvert_depth > height:
137                outlet_culvert_depth = height  # Once again the pipe is flowing full not partfull
138                flow_area = width*height  # Cross sectional area of flow in the culvert
139                perimeter = 2*(width+height)
140                case = 'Inlet CTRL Outlet unsubmerged PIPE PART FULL'
141            else:
142                flow_area = width * outlet_culvert_depth
143                perimeter = width+2*outlet_culvert_depth
144                case = 'INLET CTRL Culvert is open channel flow we will for now assume critical depth'
145            # Initial Estimate of Flow for Outlet Control using energy slope
146            #( may need to include Culvert Bed Slope Comparison)
147            hyd_rad = flow_area/perimeter
148            culvert_velocity = math.sqrt(self.delta_total_energy/((self.sum_loss/2/anuga.g)+(self.manning**2*self.culvert_length)/hyd_rad**1.33333))
149            Q_outlet_tailwater = flow_area * culvert_velocity
150           
151           
152            if self.delta_total_energy < self.driving_energy:
153                # Calculate flows for outlet control
154
155                # Determine the depth at the outlet relative to the depth of flow in the Culvert
156                if self.outflow.get_enquiry_height() > height:        # The Outlet is Submerged
157                    outlet_culvert_depth=height
158                    flow_area=width*height       # Cross sectional area of flow in the culvert
159                    perimeter=2.0*(width+height)
160                    case = 'Outlet submerged'
161                else:   # Here really should use the Culvert Slope to calculate Actual Culvert Depth & Velocity
162                    dcrit = (Q**2/anuga.g/width**2)**0.333333
163                    outlet_culvert_depth=dcrit   # For purpose of calculation assume the outlet depth = Critical Depth
164                    if outlet_culvert_depth > height:
165                        outlet_culvert_depth=height
166                        flow_area=width*height
167                        perimeter=2.0*(width+height)
168                        case = 'Outlet is Flowing Full'
169                    else:
170                        flow_area=width*outlet_culvert_depth
171                        perimeter=(width+2.0*outlet_culvert_depth)
172                        case = 'Outlet is open channel flow'
173
174                hyd_rad = flow_area/perimeter
175
176
177
178                # Final Outlet control velocity using tail water
179                culvert_velocity = math.sqrt(self.delta_total_energy/((self.sum_loss/2/anuga.g)+(self.manning**2*self.culvert_length)/hyd_rad**1.33333))
180                Q_outlet_tailwater = flow_area * culvert_velocity
181
182                Q = min(Q, Q_outlet_tailwater)
183            else:
184                pass
185                #FIXME(Ole): What about inlet control?
186
187            culv_froude=math.sqrt(Q**2*flow_width/(anuga.g*flow_area**3))
188            if local_debug =='true':
189                anuga.log.critical('FLOW AREA = %s' % str(flow_area))
190                anuga.log.critical('PERIMETER = %s' % str(perimeter))
191                anuga.log.critical('Q final = %s' % str(Q))
192                anuga.log.critical('FROUDE = %s' % str(culv_froude))
193
194            # Determine momentum at the outlet
195            barrel_velocity = Q/(flow_area + anuga.velocity_protection/flow_area)
196
197        # END CODE BLOCK for DEPTH  > Required depth for CULVERT Flow
198
199        else: # self.inflow.get_enquiry_height() < 0.01:
200            Q = barrel_velocity = outlet_culvert_depth = 0.0
201
202        # Temporary flow limit
203        if barrel_velocity > self.max_velocity:
204            barrel_velocity = self.max_velocity
205            Q = flow_area * barrel_velocity
206
207        return Q, barrel_velocity, outlet_culvert_depth
208       
209       
210       
Note: See TracBrowser for help on using the repository browser.