Answer:
The value of heat transferred watt per foot length Q = 54.78 Watt per foot length.
Explanation:
Diameter of pipe = 2 in = 0.0508 m
Steam temperature
= 300 F = 422.04 K
Duct temperature
= 70 F = 294.26 K
Emmisivity of surface 1 = 0.79
Emmisivity of surface 2 = 0.276
Net emmisivity of both surfaces ∈ = 0.25
Stefan volazman constant
= 5.67 ×

Heat transfer per foot length is given by
Q = ∈
A (
) ------ (1)
Put all the values in equation (1) , we get
Q = 0.25 × 5.67 ×
× 3.14 × 0.0508 × 1 × (
)
Q = 54.78 Watt per foot.
This is the value of heat transferred watt per foot length.
Answer:
true because BCD used 6 bits to represent a symbol .
Explanation:
mark me brainlist
Answer:
True
Explanation:
By definition of steady flow we have

where f(x,y,z,t) is any property of the system under consideration
=> f(x,y,z,t) = constant
Answer:
The correct answer is option 'B': Load is far from fulcrum and the effort is applied near the fulcrum
Explanation:
A lever works on the principle of balancing of torques. The torque about the fulcrum by the load should be equal to the torque by the applied effort. Since we know that the torque is proportional to both the force and the distance it is applied from the distance from the axis of rotation. A lever is used when we need to lift a heavy load by utilizing this effect of the lever arm.
A mechanical disadvantage occurs when we are not able to lift the weight easily due to the fact we apply effort near the fulcrum.
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!!!