Answer:
Heat transfer rate(Q)= 1.197kW
Power output(W)=68.803kW
Answer:
Net discharge per hour will be 3.5325
Explanation:
We have given internal diameter d = 25 mm
Time = 1 hour = 3600 sec
So radius
We know that area is given by
We know that discharge is given by , here A is area and V is velocity
So
So net discharge in 1 hour =
Answer:
5.328Ibm/hr
Explanation:
Through laboratory tests, thermodynamic tables were developed, these allow to know all the thermodynamic properties of a substance (entropy, enthalpy, pressure, specific volume, internal energy etc ..)
through prior knowledge of two other properties such as pressure and temperature.
for this case we can define the following equation for mass flow using the first law of thermodynamics
where
Q=capacity of the radiator =5000btu/hr
m = mass flow
then using thermodynamic tables we found entalpy in state 1 and 2
h1(x=0.97, p=16psia)=1123btu/lbm
h2(x=0, p=16psia)=184.5btu/lbm
solving
Answer:
15300 N
Explanation:
= Density of air at inlet
= Mass flow rate = 60 kg/s
= Inlet velocity = 225 m/s
= Density of gas at outlet =
= Inlet area
= Outlet area =
Since mass flow rate is the same in the inlet and outlet we have
Thrust is given by
The thrust generated is 15300 N.
Answer:
Check the explanation
Explanation:
class LanguageHelper:
language=set()
#Constructor
def __init__(self, words):
for w in words:
self.language.add(w)
def __contains__(self,query):
return query in self.language
def getSuggestionns(self,query):
matches = []
for string in self.language:
if string.lower().startswith(query) or query.lower().startswith(string) or query.lower() in string.lower():
matches.append(string)
return matches
lh = LanguageHelper(["how","Hi","What","Hisa"])
print('how' in lh)
print(lh.getSuggestionns('hi'))
===========================================
OUTPUT:-
==================
True
['Hisa', 'Hi']
====