diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /623/CH2/EX2.1.15 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '623/CH2/EX2.1.15')
-rwxr-xr-x | 623/CH2/EX2.1.15/U2_C1_15.sce | 14 |
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);
|