diff options
Diffstat (limited to '3717/CH9/EX9.5/Ex9_5.sce')
-rw-r--r-- | 3717/CH9/EX9.5/Ex9_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3717/CH9/EX9.5/Ex9_5.sce b/3717/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..38ae647a0 --- /dev/null +++ b/3717/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,11 @@ +// Ex9_5 Page:187 (2014)
+clc;clear;
+lambda_ex = 4358.3; // Wavelength of the exciting radiation, angstrom
+lambda_R = 4768.5; // Wavelength of the Raman line, angstrom
+nu_prime = 1/lambda_ex*1e+08; // Wave number of the exciting radiation, per cm
+nu_prime_R = 1/lambda_R*1e+08; // Wave number of the Raman line, per cm
+nu = nu_prime - nu_prime_R; // Vibrational frequency of the sample, per cm
+printf("\nThe vibrational frequency of the sample = %4d per cm", ceil(nu));
+
+// Result
+// The vibrational frequency of the sample = 1974 per cm
\ No newline at end of file |