summaryrefslogtreecommitdiff
path: root/623/CH2/EX2.1.15
diff options
context:
space:
mode:
Diffstat (limited to '623/CH2/EX2.1.15')
-rwxr-xr-x623/CH2/EX2.1.15/U2_C1_15.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/623/CH2/EX2.1.15/U2_C1_15.sce b/623/CH2/EX2.1.15/U2_C1_15.sce
new file mode 100755
index 000000000..50984c658
--- /dev/null
+++ b/623/CH2/EX2.1.15/U2_C1_15.sce
@@ -0,0 +1,14 @@
+//variable initialization
+lembda0=5000*10^-10; //Wavelength of radiation (meter)
+lembda=5050.5*10^-10; //Wavelength of Raman line (meter)
+
+//(a) Raman frequency
+v0=1/lembda0; //Wave number of radiation (1/meter)
+v=1/lembda; //Wave number of Raman line (1/meter)
+shift=v0-v; //Raman shift (1/meter)
+va=v0+shift; //Frequency of antistoke's line (1/meter)
+
+//(b) Position of the antistokes' line
+lembdaa=10^10/va; //Wavelength of antistoke's line (Å)
+
+printf("\n(a) Raman frequency = %.2e m-1\n(b) Wavelength of antistoke`s line = %.2f Å",va,lembdaa);