summaryrefslogtreecommitdiff
path: root/3363/CH9/EX9.8/Ex9_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3363/CH9/EX9.8/Ex9_8.sce')
-rwxr-xr-x3363/CH9/EX9.8/Ex9_8.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3363/CH9/EX9.8/Ex9_8.sce b/3363/CH9/EX9.8/Ex9_8.sce
new file mode 100755
index 000000000..deefe6bd3
--- /dev/null
+++ b/3363/CH9/EX9.8/Ex9_8.sce
@@ -0,0 +1,16 @@
+//Example 9.8, page 358
+clc
+//Energy of K shell
+z=26
+k=2
+E_k=13.6*(z-k)^2//in ev
+v=7.8*10^3//in V
+//for L shell
+l=10
+E_l=13.6*(z-l)^2//in ev
+h=E_k-E_l
+R_m=1.1*10^7
+x=R_m*(z-2)^2//x=1/lamda
+lambda=1/x
+printf("\n The wavelength is %e m",lambda)
+