Answer:
P=361.91 KN
Explanation:
given data:
brackets and head of the screw are made of material with T_fail=120 Mpa
safety factor is F.S=2.5
maximum value of force P=??
<em>solution:</em>
to find the shear stress
T_allow=T_fail/F.S
=120 Mpa/2.5
=48 Mpa
we know that,
V=P
<u>Area for shear head:</u>
A(head)=π×d×t
=π×0.04×0.075
=0.003×πm^2
<u>Area for plate:</u>
A(plate)=π×d×t
=π×0.08×0.03
=0.0024×πm^2
now we have to find shear stress for both head and plate
<u>For head:</u>
T_allow=V/A(head)
48 Mpa=P/0.003×π ..(V=P)
P =48 Mpa×0.003×π
=452.16 KN
<u>For plate:</u>
T_allow=V/A(plate)
48 Mpa=P/0.0024×π ..(V=P)
P =48 Mpa×0.0024×π
=361.91 KN
the boundary load is obtained as the minimum value of force P for all three cases. so the solution is
P=361.91 KN
note:
find the attached pic
dude thx for the points lol
Answer:
Wind energy is converted to Mechanical energy which is then converted in to electrical energy
Explanation:
In a wind mill the following energy conversions take place
a) Wind energy is converted into Mechanical energy (rotation of rotor blades)
b) Mechanical energy is converted into electrical energy (by using electric motor)
This electrical energy is then used for transmission through electric lines.
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration