diff options
Diffstat (limited to '1427/CH34/EX34.10/34_10.sce')
-rw-r--r-- | 1427/CH34/EX34.10/34_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1427/CH34/EX34.10/34_10.sce b/1427/CH34/EX34.10/34_10.sce new file mode 100644 index 000000000..6ecdc0b3b --- /dev/null +++ b/1427/CH34/EX34.10/34_10.sce @@ -0,0 +1,11 @@ +//ques-34.10
+//Calculating absorbance and molar absorption coefficient and percentage transmittancy
+clc
+ratio=100/19.2;//= Io/I
+l1=1; l2=10;//thickness of cell (in cm)
+C=5*10^-4;//concentration of cell (in M)
+A=log10(ratio);
+EC=A/(C*l1);
+//On solving, log10(tran) = EC*C*l2
+tran=56.2;
+printf("The absorbance is %.3f, molar absorption coefficient is %d M/cm and percentage transmittancy for 10cm thick cell is %.1f.",A,EC,tran);
|