Answer:
M = 281.25 lb*ft
Explanation:
Given
W<em>man</em> = 150 lb
Weight per linear foot of the boat: q = 3 lb/ft
L = 15.00 m
M<em>max</em> = ?
Initially, we have to calculate the Buoyant Force per linear foot (due to the water exerts a uniform distributed load upward on the bottom of the boat):
∑ Fy = 0 (+↑) ⇒ q'*L - W - q*L = 0
⇒ q' = (W + q*L) / L
⇒ q' = (150 lb + 3 lb/ft*15 ft) / 15 ft
⇒ q' = 13 lb/ft (+↑)
The free body diagram of the boat is shown in the pic.
Then, we apply the following equation
q(x) = (13 - 3) = 10 (+↑)
V(x) = ∫q(x) dx = ∫10 dx = 10x (0 ≤ x ≤ 7.5)
M(x) = ∫10x dx = 5x² (0 ≤ x ≤ 7.5)
The maximum internal bending moment occurs when x = 7.5 ft
then
M(7.5) = 5(7.5)² = 281.25 lb*ft
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!!!
This statement is b which is true: hope this helped