summaryrefslogtreecommitdiff
path: root/3718/CH2/EX2.8/Ex2_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH2/EX2.8/Ex2_8.sce')
-rw-r--r--3718/CH2/EX2.8/Ex2_8.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3718/CH2/EX2.8/Ex2_8.sce b/3718/CH2/EX2.8/Ex2_8.sce
new file mode 100644
index 000000000..936bd285f
--- /dev/null
+++ b/3718/CH2/EX2.8/Ex2_8.sce
@@ -0,0 +1,14 @@
+//Chapter 2: Spectroscopy and Photochemistry
+//Problem: 8
+clc;
+
+//Declaration of Constant
+e = 8000 // Molar absorbtion coeff,in dm cube per mol per cm
+
+//Declaration of Variable
+l = 2.5 // Thickness of solution,in cm
+
+// Solution
+C = log10(1 / 0.3) / (e * l)
+
+mprintf("The concentration of Solution from Lambert-Beer Law is %.2e mol per dm cube",C)