summaryrefslogtreecommitdiff
path: root/1427/CH35/EX35.24
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH35/EX35.24')
-rw-r--r--1427/CH35/EX35.24/35_24.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH35/EX35.24/35_24.sce b/1427/CH35/EX35.24/35_24.sce
new file mode 100644
index 000000000..056ea951e
--- /dev/null
+++ b/1427/CH35/EX35.24/35_24.sce
@@ -0,0 +1,9 @@
+//ques-35.24
+//Calculating wavelength at which anti Stokes line appear
+clc
+w1=4358*10^-10;//sample wavelength (in m)
+w2=4447*10^-10;//wavelength for Raman shift (in m)
+v_raman=(1/w1)-(1/w2);
+v_anti=(1/w1)+v_raman;
+w=10^10/v_anti;
+printf("The wavelength required is %.0f armstrong.",w);