Technician is correct sorry if im wronghg
Answer:
0.245 m^3/s
Explanation:
Flow rate through pipe a is 0.4 m3/s Parallel pipes have a diameter D = 30 cm => r = 15 cm = 0.15 m Length of Pipe a = 1000m Length of Pipe b = 2650m Temperature = 15 degrees Va = V / A = (0.4m3/s) / (3.14 (0.15m)^2) = 5.66 m/s h = (f(LV^2)) / D2g (fa(LaVa^2)) / Da2g = (fb(LbVb^2)) / Da2g and Da = Db; fa = fb LaVa^2 = LbVb^2 => La/Lb = Vb^2/Va^2 Vd^2 = Va^2(La/Lb) => Vb = Va(La/Lb)^(1/2) Vb = 5.66 (1000/2650)^(1/2) => 5.66 x 0.6143 = 3.4769 m/s Vb = 3.4769 m/s V = AVb = 3.14(0.15)^2 x 3.4769 m/s = 0.245 m^3/s
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!!!