summaryrefslogtreecommitdiff
path: root/1427/CH34/EX34.23/34_23.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH34/EX34.23/34_23.sce')
-rw-r--r--1427/CH34/EX34.23/34_23.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH34/EX34.23/34_23.sce b/1427/CH34/EX34.23/34_23.sce
new file mode 100644
index 000000000..da8e8e145
--- /dev/null
+++ b/1427/CH34/EX34.23/34_23.sce
@@ -0,0 +1,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);