summaryrefslogtreecommitdiff
path: root/1427/CH34/EX34.23/34_23.sce
blob: da8e8e1457dcdbf75083359d40eb75815f19115b (plain)
1
2
3
4
5
6
7
8
9
//ques-34.23
//Calculating quantum yield of a reaction
clc
c1=0.0506; c2=0.0394;//initial and final concentration of oxalic acid (in M)
q=8.81*10^8;//(in ergs)
w=245;//wavelength (in nm)
n=(c1-c2)/100;//moles of oxalic acid decomposed
QY=(n*1.196*10^15)/(q*w);
printf("The quantum yield of the reaction is %.3f.",QY);