Answer:
Pressure = 11.38 psi
Force = 13.981 Ibf
Explanation:
Step by step solution is in the attached document.
Answer:
1200KJ
Explanation:
The heat dissipated in the rotor while coming down from its running speed to zero, is equal to three times its running kinetic energy.
P (rotor-loss) = 3 x K.E
P = 3 x 300 = 900 KJ
After coming to zero, the motor again goes back to running speed of 1175 rpm but in opposite direction. The KE in this case would be;
KE = 300 KJ
Since it is in opposite direction, it will also add up to rotor loss
P ( rotor loss ) = 900 + 300 = 1200 KJ
Answer:
A
Explanation:
He should get a job in engineering to see what it's like to work in the field.
Answer:
Explanation:
The python code to generate this is quite simple to run.
i hope you understand everything written here, you can as well try out other problems to understand better.
First to begin, we import the package;
Code:
import pandas as pd
import matplotlib.pyplot as plt
name = input('Enter name of the file: ')
op = input('Enter name of output file: ')
df = pd.read_csv(name)
df['Date'] = pd.to_datetime(df["Date"].apply(str))
plt.plot(df['Date'],df['Absent']/(df['Present']+df['Absent']+df['Released']),label="% Absent")
plt.legend(loc="upper right")
plt.xticks(rotation=20)
plt.savefig(op)
plt.show()
This should generate the data(plot) as seen in the uploaded screenshot.
thanks i hope this helps!!!
Answer:
The costs to run the dryer for one year are $ 9.03.
Explanation:
Given that the clothes dryer in my home has a power rating of 2250 Watts, and to dry one typical load of clothes the dryer will run for approximately 45 minutes, and in Ontario, the cost of electricity is $ 0.11 / kWh, to calculate the costs to run the dryer for one year the following calculation must be performed:
1 watt = 0.001 kilowatt
2250/45 = 50 watts per minute
45 x 365 = 16,425 / 60 = 273.75 hours of consumption
50 x 60 = 300 watt = 0.3 kw / h
0.3 x 273.75 = 82.125
82.125 x 0.11 = 9.03
Therefore, the costs to run the dryer for one year are $ 9.03.