PLEASE HELP
NASA scientists have determined that the chance a single person would get hit by a piece of falling satellite is one in 3,200. What can you infer based on this probability?
A. Satellites that enter Earth’s atmosphere land mostly in the ocean.
B. NASA does a good job informing people of when satellites will enter the atmosphere.
C. Satellites that enter Earth’s atmosphere land mostly in unpopulated areas.
D. Much of a satellite is destroyed during the process of entering Earth’s atmosphere.
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
Answer:
COP(heat pump) = 2.66
COP(Theoretical maximum) = 14.65
Explanation:
Given:
Q(h) = 200 KW
W = 75 KW
Temperature (T1) = 293 K
Temperature (T2) = 273 K
Find:
COP(heat pump)
COP(Theoretical maximum)
Computation:
COP(heat pump) = Q(h) / W
COP(heat pump) = 200 / 75
COP(heat pump) = 2.66
COP(Theoretical maximum) = T1 / (T1 - T2)
COP(Theoretical maximum) = 293 / (293 - 273)
COP(Theoretical maximum) = 293 / 20
COP(Theoretical maximum) = 14.65
Answer:Antifreeze/coolant
Explanation: keeps your engine cool in warm weather and keeps it from freezing up in the winter. A 50-50 mix of full strength coolant and water generally protects to around -30 degrees Fahrenheit. Make sure you check with the supplier or your owner's manual for the correct formulation
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8