Answer:
how are supposed to help when you can't do anything?
Answer:
The PFR is more efficient in the removal of the reactive compound as it has the higher conversion ratio.
Xₚբᵣ = 0.632
X꜀ₘբᵣ = 0.5
Xₚբᵣ > X꜀ₘբᵣ
Explanation:
From the reaction rate coefficient, it is evident the reaction is a first order reaction
Performance equation for a CMFR for a first order reaction is
kτ = (X)/(1 - X)
k = reaction rate constant = 0.05 /day
τ = Time constant or holding time = V/F₀
V = volume of reactor = 280 m³
F₀ = Flowrate into the reactor = 14 m³/day
X = conversion
k(V/F₀) = (X)/(1 - X)
0.05 × (280/14) = X/(1 - X)
1 = X/(1 - X)
X = 1 - X
2X = 1
X = 1/2 = 0.5
For the PFR
Performance equation for a first order reaction is given by
kτ = In [1/(1 - X)]
The parameters are the same as above,
0.05 × (280/14) = In (1/(1-X)
1 = In (1/(1-X))
e = 1/(1 - X)
2.718 = 1/(1 - X)
1 - X = 1/2.718
1 - X = 0.3679
X = 1 - 0.3679
X = 0.632
The PFR is evidently more efficient in the removal of the reactive compound as it has the higher conversion ratio.
Answer:
import pandas pd
def read_prices(tickers):
price_dict = {}
# Read ingthe ticker data for all the tickers
for ticker in tickers:
# Read data for one ticker using pandas.read_csv
# We assume no column names in csv file
ticker_data = pd.read_csv("./" + ticker + ".csv", names=['date', 'price', 'volume'])
# ticker_data is now a panda data frame
# Creating dictionary
# for the ticker
price_dict[ticker] = {}
for i in range(len(ticker_data)):
# Use pandas.iloc to access data
date = ticker_data.iloc[i]['date']
price = ticker_data.iloc[i]['price']
price_dict[ticker][date] = price
return price_dict
Answer:
I'm no engineer, but blue and purple are cool colors and white is every color so I'd go with orange