Answer:
- the capacity of the pump reduces by 35%.
- the head gets reduced by 57%.
the power consumption by the pump is reduced by 72%
Explanation:
the pump capacity is related to the speed as speed is reduces by 35%
so new speed is (100 - 35) = 65% of orginal speed
speed Q ∝ N ⇒ Q1/Q2 = N1/N2
Q2 = (N2/N1)Q1
Q2 = (65/100)Q1
which means that the capacity of the pump is also reduces by 35%.
the head in a pump is related by
H ∝ N² ⇒ H1/H2 = N1²/N2²
H2 = (N2N1)²H1
H2 = (65/100)²H1 = 0.4225H1
so the head gets reduced by 1 - 0.4225 = 0.5775 which is 57%.
Now The power requirement of a pump is related as
P ∝ N³ ⇒ P1/P2 = N1³/N2³
P2 = (N2/N1)³P1
H2 = (65/100)²P1 = 0.274P1
So the reduction in power is 1 - 0.274 = 0.725 which is 72%
Therefore for a reduction of 35% of speed there is a reduction of 72% of the power consumption by the pump.
Answer:
- def median(l):
- if(len(l) == 0):
- return 0
- else:
- l.sort()
- if(len(l)%2 == 0):
- index = int(len(l)/2)
- mid = (l[index-1] + l[index]) / 2
- else:
- mid = l[len(l)//2]
- return mid
-
- def mode(l):
- if(len(l)==0):
- return 0
-
- mode = max(set(l), key=l.count)
- return mode
-
- def mean(l):
- if(len(l)==0):
- return 0
- sum = 0
- for x in l:
- sum += x
- mean = sum / len(l)
- return mean
-
- lst = [5, 7, 10, 11, 12, 12, 13, 15, 25, 30, 45, 61]
- print(mean(lst))
- print(median(lst))
- print(mode(lst))
Explanation:
Firstly, we create a median function (Line 1). This function will check if the the length of list is zero and also if it is an even number. If the length is zero (empty list), it return zero (Line 2-3). If it is an even number, it will calculate the median by summing up two middle index values and divide them by two (Line 6-8). Or if the length is an odd, it will simply take the middle index value and return it as output (Line 9-10).
In mode function, after checking the length of list, we use the max function to estimate the maximum count of the item in list (Line 17) and use it as mode.
In mean function, after checking the length of list, we create a sum variable and then use a loop to add the item of list to sum (Line 23-25). After the loop, divide sum by the length of list to get the mean (Line 26).
In the main program, we test the three functions using a sample list and we shall get
20.5
12.5
12
Answer:
Almost done
Explanation:
I am just finishing up my work
The weight of the specimen in SSD condition is 373.3 cc
<u>Explanation</u>:
a) Apparent specific gravity = 
Where,
A = mass of oven dried test sample in air = 1034 g
B = saturated surface test sample in air = 1048.9 g
C = apparent mass of saturated test sample in water = 975.6 g
apparent specific gravity =
= 
Apparent specific gravity = 2.88
b) Bulk specific gravity 

= 2.76
c) Bulk specific gravity (SSD):


= 2.80
d) Absorption% :


Absorption = 1.44 %
e) Bulk Volume :


= 
The workers went to bed hungry probably because they are hard workers and so didn’t want to eat because they didn’t want to take break┌(; ̄◇ ̄)┘