Answer:
a)
The crack and connecting rod is used in the design of car.This mechanism is known as slider -crank mechanism.
Components:
1.Inlet tube
2. Wheel
3. Exhaust
4. Engine
5.Air tank
6.Pressure gauge
7.Stand
8. Gate valve
b)
The efficiency of air engine is less as compare to efficiency of electric engine and this is not ecofriendly because it produce green house gases.These gases affect the environment.
c)
it can run around 722 km when it is full charge.
Answer:
a)σ₁ = 265.2 MPa
b)σ₂ = -172.8 MPa
c)
d)Range = 438 MPa
Explanation:
Given that
Mean stress ,σm= 46.2 MPa
Stress amplitude ,σa= 219 MPa
Lets take
Maximum stress level = σ₁
Minimum stress level =σ₂
The mean stress given as


2 x 46.2 = σ₁ + σ₂
σ₁ + σ₂ = 92.4 MPa --------1
The amplitude stress given as


2 x 219 = σ₁ - σ₂
σ₁ - σ₂ = 438 MPa --------2
By adding the above equation
2 σ₁ = 530.4
σ₁ = 265.2 MPa
-σ₂ = 438 -265.2 MPa
σ₂ = -172.8 MPa
Stress ratio



Range = 265.2 MPa - ( -172.8 MPa)
Range = 438 MPa
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!!!