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 /1511/CH2/EX2.8 | |
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 '1511/CH2/EX2.8')
-rwxr-xr-x | 1511/CH2/EX2.8/ex2_8.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1511/CH2/EX2.8/ex2_8.sce b/1511/CH2/EX2.8/ex2_8.sce new file mode 100755 index 000000000..94f3510c8 --- /dev/null +++ b/1511/CH2/EX2.8/ex2_8.sce @@ -0,0 +1,8 @@ +// Example 2.8 page no-49
+clear
+clc
+L=1400
+E_diff=12400/L //eV
+del_E=2.15
+L2=12400/del_E
+printf("\nE2-E1=%.2f eV\n1850 A° line is from 6.71 eV to 0 eV\nTherefore, second photon must be from %.2f to 6.71 eV.\nLambda=%d A°.",E_diff,E_diff,L2)
|