Answer:
15.8
0.0944
Explanation:
L = 1.5
B = 1.0
Speed of water = 15cm
Temperature = 20⁰C
At 20⁰C
Specific weight = 9790
Kinematic viscosity v = 1.00x10^-4m²/s
Dynamic viscosity u = 1.00x10^-3
Density p = 998kg/m²
Reynolds number
= 0.15x1.5/1.00x10^-4
= 225000
S = 5
5x1.5/225000^1/2
= 0.0158
= 15.8mm
Resistance on one side of plate
F = 0.664x1x1.0x10^-3x0.15x225000^1/2
= 0.04724N
Total resistance
= 2N
= 2x0.04724
= 0.0944N
Answer:
Carnot heat pump
Explanation:
Carnot heat pump is an ideal heat pump in which all processes are reversible and that consume minimum amount of work to and produces maximum amount of heating effect compare to all real engine.And that is why COP of Carnot heat pump is more as compare to real heat pump.
All real heat pump are not perfectly reversible heat pump So this is also called irreversible heat pump .Due to irreversibility the COP of irreversible heat pump is always less than the COP of Carnot heat pump.
Answer:
what are simple machines?
Explanation:
it is 2020 let's be honest all
Answer:
(a) ------(3). (b)------(1) (c)-----(5) (d)------(2) ------ (e) -----4
Note: Kindly find an attached copy of the diagram associated with the solution to the question below.
Sources: the diagram to this question was researched from Quizlet
Explanation:
Solution
(1) Part (a)a waveform has a high frequency components compared to another waveform. the corresponding frequency components should be high.
So for the wave form a the corresponding frequency spectrum is (3)
(2) For part (b), waveform has three harmonics, the corresponding frequency spectrum is (1)
(3) The time domain waveform plot (c) is a sine wave but there exists a dc component.
Thus x[0] ≠0
For (c) the corresponding frequency spectrum is (5)
(4) For part (d) the corresponding frequency spectrum is (2)
(5) A sine wave is made of a single frequency only and its spectrum is a single point
For (e) the corresponding frequency spectrum is (4)
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)