Answer:
the overall heat transfer coefficient of this heat exchanger is 1855.8923 W/m²°C
Explanation:
Given:
d₁ = diameter of the tube = 1 cm = 0.01 m
d₂ = diameter of the shell = 2.5 cm = 0.025 m
Refrigerant-134a
20°C is the temperature of water
h₁ = convection heat transfer coefficient = 4100 W/m² K
Water flows at a rate of 0.3 kg/s
Question: Determine the overall heat transfer coefficient of this heat exchanger, Q = ?
First at all, you need to get the properties of water at 20°C in tables:
k = 0.598 W/m°C
v = 1.004x10⁻⁶m²/s
Pr = 7.01
ρ = 998 kg/m³
Now, you need to calculate the velocity of the water that flows through the shell:

It is necessary to get the Reynold's number:

Like the Reynold's number is greater than 10000, the regime is turbulent. Now, the Nusselt's number:

The overall heat transfer coefficient:

Here

Substituting values:

Answer:
The outer diameter of the spacers that yields the most economical and safe design is 25.03 mm
Explanation:
For steel bolt
Stress = 210 MPa or 210 N/mm2
Pressure = Stress* Area
Pbolt = 210 N/mm2 * 16^2 *(pi)/4
Pbolt = 210 N/mm2 * 200.96 mm^2 = 42201.6 N
For Brass spacer
Pressure = 42201.6 N
Area of Brass spacer = Pressure/Stress
Area of Brass spacer = 42201.6 N/145 N/mm^2 = 291.044 mm^2
Area of Brass spacer = (pi) (d^2 - 16^2)/4 = 291.044 mm^2
d^2 - 16^2 = 291.044 mm^2* 4/(pi) = 370.758
d^2 = 370.758 + 16^2
d^2 = 626.758
d = 25.03 mm
The outer diameter of the spacers that yields the most economical and safe design is 25.03 mm
Answer:
d. All of the above would require an EIS.
Explanation:
A document prepared with the aim of describing the impacts of suggested operations on the environment is an Environmental Impact Statement (EIS). There was a mistake. An Environmental Impact Statement (EIS) is therefore a report describing the environmental effects resulting from a current action. All of the activities above would have an effect on the environment and therefore must fill an EIS
Answer:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0