Answer:
C IS THE ANSWER
Explanation:
HOPE IT HELPS :))))))))) <3
Answer:
2074.2 KW
Explanation:
<u>Determine power developed at steady state </u>
First step : Determine mass flow rate ( m )
m / Mmax = ( AV )₁ P₁ / RT₁ -------------------- ( 1 )
<em> where : ( AV )₁ = 8.2 kg/s, P₁ = 0.35 * 10^6 N/m^2, R = 8.314 N.M / kmol , </em>
<em> T₁ = 720 K . </em>
insert values into equation 1
m = 0.1871 kmol/s ( mix )
Next : calculate power developed at steady state ( using ideal gas tables to get the h values of the gases )
W( power developed at steady state )
W = m [ Yco2 ( h1 - h2 )co2
Attached below is the remaining part of the detailed solution
74 cycles it’s what u need
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!!!