Answer:
Please check explanation for answer
Explanation:
Here, we are concerned with stating the advantages and disadvantages of using a 6 tube passes instead of a 2 tube passes of the same diameter:
<u>Advantages</u>
* By using a 6 tube passes diameter, we are increasing the surface area of the heat transfer surface
* As a result of increasing the heat transfer surface area, the rate of heat transfer automatically increases too
Thus, from the above, we can conclude that the heat transfer rate of a 6 tube passes is higher than that of a 2 tube passes of the same diameter.
<u>Disadvantages</u>
* They are larger in size and in weight when compared to a 2 tube passes of the same diameter and therefore does not find use in applications where space conservation is quite necessary.
* They are more expensive than the 2 tube passes of the same diameter and thus are primarily undesirable in terms of manufacturing costs
Answer:
Hence, the three effects of electric current are heating effect, magnetic effect and chemical effect.
Answer:
a) P = 86720 N
b) L = 131.2983 mm
Explanation:
σ = 271 MPa = 271*10⁶ Pa
E = 119 GPa = 119*10⁹ Pa
A = 320 mm² = (320 mm²)(1 m² / 10⁶ mm²) = 3.2*10⁻⁴ m²
a) P = ?
We can apply the equation
σ = P / A ⇒ P = σ*A = (271*10⁶ Pa)(3.2*10⁻⁴ m²) = 86720 N
b) L₀ = 131 mm = 0.131 m
We can get ΔL applying the following formula (Hooke's Law):
ΔL = (P*L₀) / (A*E) ⇒ ΔL = (86720 N*0.131 m) / (3.2*10⁻⁴ m²*119*10⁹ Pa)
⇒ ΔL = 2.9832*10⁻⁴ m = 0.2983 mm
Finally we obtain
L = L₀ + ΔL = 131 mm + 0.2983 mm = 131.2983 mm
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
Using the knowledge of computational language in python it is possible to write a code that writes a list and defines the arrange.
<h3>Writing code in python:</h3>
<em>def isSorted(lyst):</em>
<em>if len(lyst) >= 0 and len(lyst) < 2:</em>
<em>return True</em>
<em>else:</em>
<em>for i in range(len(lyst)-1):</em>
<em>if lyst[i] > lyst[i+1]:</em>
<em>return False</em>
<em>return True</em>
<em>def main():</em>
<em>lyst = []</em>
<em>print(isSorted(lyst))</em>
<em>lyst = [1]</em>
<em>print(isSorted(lyst))</em>
<em>lyst = list(range(10))</em>
<em>print(isSorted(lyst))</em>
<em>lyst[9] = 3</em>
<em>print(isSorted(lyst))</em>
<em>main()</em>
See more about python at brainly.com/question/18502436
#SPJ1