Answer:
It will be equivalent to 338.95 N-m
Explanation:
We have to convert 250 lb-ft to N-m
We know that 1 lb = 4.45 N
So foe converting from lb to N we have to multiply with 4.45
So 250 lb = 250×4.45 =125 N
And we know that 1 feet = 0.3048 meter
Now we have to convert 250 lb-ft to N-m
So 
So 250 lb-ft = 338.95 N-m
Answer:
There is 0.466 KW required to operate this air-conditioning system
Explanation:
<u>Step 1:</u> Data given
Heat transfer rate of the house = Ql = 755 kJ/min
House temperature = Th = 24°C = 24 +273 = 297 Kelvin
Outdoor temperature = To = 35 °C = 35 + 273 = 308 Kelvin
<u>Step 2: </u> Calculate the coefficient of performance o reversed carnot air-conditioner working between the specified temperature limits.
COPr,c = 1 / ((To/Th) - 1)
COPr,c = 1 /(( 308/297) - 1)
COPr,c = 1/ 0.037
COPr,c = 27
<u>Step 3:</u> The power input cna be given as followed:
Wnet,in = Ql / COPr,max
Wnet, in = 755 / 27
Wnet,in = 27.963 kJ/min
Win = 27.963 * 1 KW/60kJ/min = 0.466 KW
There is 0.466 KW required to operate this air-conditioning system
Answer:
Explanation:
Thermostatic expansion valve is mainly a throttling device commonly used in air conditioning systems and refrigerators.
It is an automatic valve that maintains proper flow of refrigerant in the evaporator according to the load inside the evaporator. When the load in the evaporator is higher the valve opens and allows the increase in flow of refrigerant and when the load reduces the valve closes a bit and reduces the flow of refrigerant. This process leads to higher efficiency of compressor as well as the whole refrigeration system. Thus TEV works to reduce the pressure of refrigerant from higher condenser pressure to the lower evaporator pressure. It also keeps the evaporator active.
Answer:
r = 1.922 mm
Explanation:
We are given;
Yield stress; σ = 250 MPa = 250 N/mm²
Force; F = 29 KN = 29000 N
Now, formula for yield stress is;
σ = F/A
A = F/σ
Where A is area = πr²
Thus;
r² = 2900/250π
r² = 3.6924
r = √3.6924
r = 1.922 mm
Answer:
# Initialize a dictionary with the keys
contestants = {"Darci Lynne":0, "Angelica Hale":0, "Angelina Green":0};
# Repeatedly prompt the user for a contestant name to vote for
while True:
# Prompting user for contestant name
cName = input("Enter contestant name to vote: ");
# Checking for Done
if cName.lower() == "done":
break;
# Checking in dictionary
if cName in contestants.keys():
# Updating vote value
contestants[cName] += 1
# New entry
else:
contestants[cName] = 1
# Printing header
print("\n%-20s %-15s\n" %("Contestant Name", "Votes Casted"))
# Printing results
for contestant in contestants:
print("%-23s %-15d" %(contestant, contestants[contestant]))