diff options
Diffstat (limited to '3718/CH2/EX2.4/Ex2_4.sce')
-rw-r--r-- | 3718/CH2/EX2.4/Ex2_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3718/CH2/EX2.4/Ex2_4.sce b/3718/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..c280d02f3 --- /dev/null +++ b/3718/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,15 @@ +//Chapter 2: Spectroscopy and Photochemistry
+//Problem: 4
+clc;
+
+//Declaration of Constant
+e = 4000 // Extinction coeff.,in dm cube per mol per cm
+
+// Variable
+x = 3 // Solution thickness,in cm
+
+// Solution
+A = log10(1 / 0.3) // Absorbance
+C = A / (e * x)
+
+mprintf("The concentration of the solution is %.2e mol per dm cube",C)
|