Answer:
Q = 14.578 m³/s
Explanation:
Given
We use the Manning Equation as follows
Q = (1/n)*A*(∛R²)*(√S)
where
- Q = volumetric water flow rate passing through the stretch of channel (m³/s for S.I.)
-
A = cross-sectional area of flow perpendicular to the flow direction, (m² for S.I.)
-
S = bottom slope of channel, m/m (dimensionless) = 2.5% = 0.025
-
n = Manning roughness coefficient (empirical constant), dimensionless = 0.023
-
R = hydraulic radius = A/P (m for S.I.) where
:
-
A = cross-sectional area of flow as defined above,
-
P = wetted perimeter of cross-sectional flow area (m for S.I.)
we get A as follows
A = (B*h)/2
where
B = 5 m (the top width of the flowing channel)
h = (B/2)*(m) = (5 m/2)*(1/2) = 1.25 m (the deep)
A = (5 m*1.25 m/2) = 3.125 m²
then we find P
P = 2*√((B/2)²+h²) ⇒ P = 2*√((2.5 m)²+(1.25 m)²) = 5.59 m
⇒ R = A/P ⇒ R = 3.125 m²/5.59 m = 0.559 m
Substituting values into the Manning equation gives:
Q = (1/0.023)*(3.125 m²)*(∛(0.559 m)²)*(√0.025)
⇒ Q = 14.578 m³/s
Answer:
A
Explanation:
because Farmers in hilly areas grow crops on terraces built on the hillsides.
Answer:
• it charges banks more interest
• it sells more securities
• it decreases the money supply
In response to high inflation, the Fed charges banks more interests and pays the banks less interests. It also sells not securities.
Answer:
month = input("Input the month (e.g. January, February etc.): ")
day = int(input("Input the day: "))
if month in ('January', 'February', 'March'):
season = 'winter'
elif month in ('April', 'May', 'June'):
season = 'spring'
elif month in ('July', 'August', 'September'):
season = 'summer'
else:
season = 'autumn'
if (month == 'March') and (day > 19):
season = 'spring'
elif (month == 'June') and (day > 20):
season = 'summer'
elif (month == 'September') and (day > 21):
season = 'autumn'
elif (month == 'December') and (day > 20):
season = 'winter'
print("Season is",season)
Explanation: