Answer:
γ
=0.01, P=248 kN
Explanation:
Given Data:
displacement = 2mm ;
height = 200mm ;
l = 400mm ;
w = 100 ;
G = 620 MPa = 620 N//mm²; 1MPa = 1N//mm²
a. Average Shear Strain:
The average shear strain can be determined by dividing the total displacement of plate by height
γ
= displacement / total height
= 2/200 = 0.01
b. Force P on upper plate:
Now, as we know that force per unit area equals to stress
τ = P/A
Also, τ = Gγ
By comapring both equations, we get
P/A = Gγ
------------ eq(1)
First we need to calculate total area,
A = l*w = 400 * 100= 4*10^4mm²
By putting the values in equation 1, we get
P/40000 = 620 * 0.01
P = 248000 N or 2.48 *10^5 N or 248 kN
Answer:
true
Explanation:
True, there are several types of polymers, thermoplastics, thermosets and elastomers.
Thermosets are characterized by having a reticulated structure, so they have low elasticity and cannot be stretched when heated.
Because of the above, thermosetting polymers burn when heated.
Answer:
98°C
Explanation:
Total surface area of cylindrical fin = πr² + 2πrl , r = 0.015m; l= 0.1m; π =22/7
22/7*(0.015)² + 22/7*0.015*0.1 = 7.07 X 10∧-4 + 47.1 X 10∧-4 = (54.17 X 10∧-4)m²
Temperature change, t = (50 - 25)°C = 25°C = 298K
Hence, Temperature = 150 X (54.17 X 10∧-4) X 298/123 = 242.14/124 = 2.00K =
∴ Temperature change = 2.00K
But temperature, T= (373 - 2)K = 371 K
In °C = (371 - 273)K = 98°C
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