summaryrefslogtreecommitdiff
path: root/623/CH27/EX5.5.19/U5_C5_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '623/CH27/EX5.5.19/U5_C5_19.sce')
-rwxr-xr-x623/CH27/EX5.5.19/U5_C5_19.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/623/CH27/EX5.5.19/U5_C5_19.sce b/623/CH27/EX5.5.19/U5_C5_19.sce
new file mode 100755
index 000000000..4aa796298
--- /dev/null
+++ b/623/CH27/EX5.5.19/U5_C5_19.sce
@@ -0,0 +1,12 @@
+//variable initialization
+vexc=4358*10^-10; //wavelength of exciting line (m)
+vsto=4458*10^-10; //wavelength of Stokes line (m)
+
+//calculation of wavelength of Anti-stokes line
+vbar_exc=1/vexc; //wave number of exciting line (m-1)
+vbar_sto=1/vsto; //wave number of Stokes line (m-1)
+delta_vbar=vbar_exc-vbar_sto; //Raman shift (m-1)
+vbar_antistoke=vbar_exc+delta_vbar; //Wave number of Anti-Stokes line (m-1)
+lembda_antistoke=(1/vbar_antistoke)*10^10; //Wavelength of Anti-Stokes line (Å)
+
+printf("\nwavelength of Anti-stokes line = %.1f Å",lembda_antistoke);