Anda di halaman 1dari 3

/**********DETERMINATION OF RATE CONSTANT OF REACTION*******/ #include<stdio.h> #include<conio.h> #include<math.

h> main() Find the new rate constant at 310K if the rate constant is 7 M -1s-1 at 370K, Activation Energy is 900kJ/mol { float T1,T2,R=8.314; float K1,K2,A,Ea=900kJ/mol; reaction Ea,A are same*/ clrscr(); printf(\n TEMPERATURE DEPENDENCE OF RATE CONSTANT IN POLYMER INDUSTRY\n);/*vinyl chloride to poly vinyl chloride*/ printf(\n CHAITANYA REDDY KOLLI\n160109802026\n CHEMICAL ENGINEERING(4/4)\n CAPILAB C-BATCH\Ncbit hyd.\n\n); printf(NOMENCLATURE:\n); printf(K=rate constant\nEa=activation energy\nR=universal gas constant\nA=frequency factor\nT=temperature\n); printf(FORMULA:\nK=A*exp(-Ea/(R*T))); printf(INPUT:\n enter the values of temperatures ); scanf(%f%f,&T1,&T2); printf(enter the value of rate constant at T1);/*at T1 the value of rate constant is 7(m*s)~-1*/ scanf(%f,&K1); ln(K1/K2)=-Ea/R((1/T1)-(1/T2));/*K=A*exp(-Ea/(R*T))*/ printf(OUTPUT:\n); printf(the rate constant at new temp T2 is %f,K2); /*for this particular

getch(); } /***** TEMPERATURE DEPENDENCE OF RATE CONSTANT IN POLYMER INDUSTRY*********/ CHAITANYA REDDY KOLLI 160109802026 CHEMICAL ENGINEERING(4/4) CAPILAB C-BATCH CBIT HYD.

NOMENCLATURE: K=rate constant Ea=activation energy R=universal gas constant A=frequency factor T=temperature

FORMULA: K=A*exp(-Ea/(R*T)) ln(K1/K2)=-Ea/R((1/T1)-(1/T2))

INPUT: T1=370K,T2=310K; K1=7 M^-1*s^`-1;

OUTPUT: K2=1.788*10^(-24)m*S^-1

Anda mungkin juga menyukai