blob: 76e1d9ffc368c7e59c12a3622646c67dc140a430 (
plain)
1
2
3
4
5
6
7
8
9
|
//ques-16.8
//Calculating time required for 80 percent completion of a reaction
clc
a=1;//concentration (in mol/L)
x1=0.2;//percentage dissociation
x2=0.8;//percentage dissociation
t1=500;//time (in s)
t2=(x2/(a*(a-x2)))*((a*t1*(a-x1))/x1);
printf("Time required is %d s.",t2);
|