Answer:
a) 0.684
b) 0.90
Explanation:
Catalyst
EO + W → EG
<u>a) calculate the conversion exiting the first reactor </u>
CAo = 16.1 / 2 mol/dm^3
Given that there are two stream one contains 16.1 mol/dm^3 while the other contains 0.9 wt% catalyst
Vo = 7.24 dm^3/s
Vm = 800 gal = 3028 dm^3
hence Im = Vin/ Vo = (3028 dm^3) / (7.24dm^3/s) = 418.232 secs = 6.97 mins
next determine the value of conversion exiting the reactor ( Xai ) using the relation below
KIm = ------ ( 1 )
make Xai subject of the relation
Xai = KIm / 1 + KIm --- ( 2 )
<em>where : K = 0.311 , Im = 6.97 ( input values into equation 2 )</em>
Xai = 0.684
<u>B) calculate the conversion exiting the second reactor</u>
CA1 = CA0 ( 1 - Xai )
therefore CA1 = 2.5438 mol/dm^3
Vo = 7.24 dm^3/s
To determine the value of the conversion exiting the second reactor ( Xa2 ) we will use the relation below
XA2 = ( Xai + Im K ) / ( Im K + 1 ) ----- ( 3 )
<em> where : Xai = 0.684 , Im = 6.97, and K = 0.311 ( input values into equation 3 )</em>
XA2 = 0.90
<u />
<u />
<u />
Answer:
The frequency that the sampling system will generate in its output is 70 Hz
Explanation:
Given;
F = 190 Hz
Fs = 120 Hz
Output Frequency = F - nFs
When n = 1
Output Frequency = 190 - 120 = 70 Hz
Therefore, if a system samples a sinusoid of frequency 190 Hz at a rate of 120 Hz and writes the sampled signal to its output without further modification, the frequency that the sampling system will generate in its output is 70 Hz
Answer:
The spring is compressed by 0.275 meters.
Explanation:
For equilibrium of the gas and the piston the pressure exerted by the gas on the piston should be equal to the sum of weight of the piston and the force the spring exerts on the piston
Mathematically we can write
we know that
Now the force exerted by an spring compressed by a distance 'x' is given by
Using the above quatities in the above relation we get
Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}