<u>Solution and Explanation:</u>
Volume of gas stream = 1000 cfm (Cubic Feet per Minute)
Particulate loading = 400 gr/ft3 (Grain/cubic feet)
1 gr/ft3 = 0.00220462 lb/ft3
Total weight of particulate matter = 
Cyclone is to 80 % efficient
So particulate remaining = 
emissions from this stack be limited to = 10.0 lb/hr
Particles to be remaining after wet scrubber = 10.0 lb/hr
So particles to be removed = 685.7136- 10 = 675.7136
Efficiency = output multiply with 100/input = 98.542 %
Answer: B
Explanation:
One good way to improve your gas mileage is to accelerate smoothly and directly to a safe speed.
Hope this helps!
Answer:
lead dioxide,sulfate and lead acid
Answer: Partial pressures are 0.6 MPa for nitrogen gas and 0.4 MPa for carbon dioxide.
Explanation: <u>Dalton's</u> <u>Law</u> <u>of</u> <u>Partial</u> <u>Pressure</u> states when there is a mixture of gases the total pressure is the sum of the pressure of each individual gas:

The proportion of each individual gas in the total pressure is expressed in terms of <u>mole</u> <u>fraction</u>:
= moles of a gas / total number moles of gas
The rigid tank has total pressure of 1MPa.
molar mass = 14g/mol
mass in the tank = 2000g
number of moles in the tank:
= 142.85mols
molar mass = 44g/mol
mass in the tank = 4000g
number of moles in the tank:
= 90.91mols
Total number of moles: 142.85 + 90.91 = 233.76 mols
To calculate partial pressure:

For Nitrogen gas:

= 0.6
For Carbon Dioxide:



0.4
Partial pressures for N₂ and CO₂ in a rigid tank are 0.6MPa and 0.4MPa, respectively.
Answer:
Code in MATLab is given as below:
Explanation:
grade = input('Enter the grades as elements of a vector ');
x1 = length(grade);
fprintf('There are %5.2f grades\n',x1);
x2 = mean(grade);
fprintf('The average grade is %5.2f \n',x2);
x3=std(grade);
fprintf('The standard deviation is %5.2f \n',x3);
x4 = median(grade);
fprintf('The median grade is %5.2f \n',x4);