summaryrefslogtreecommitdiff
path: root/3717/CH7/EX7.12/Ex7_12.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3717/CH7/EX7.12/Ex7_12.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3717/CH7/EX7.12/Ex7_12.sce')
-rw-r--r--3717/CH7/EX7.12/Ex7_12.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3717/CH7/EX7.12/Ex7_12.sce b/3717/CH7/EX7.12/Ex7_12.sce
new file mode 100644
index 000000000..dc3894dfd
--- /dev/null
+++ b/3717/CH7/EX7.12/Ex7_12.sce
@@ -0,0 +1,13 @@
+// Ex7_12 Page:141 (2014)
+clc;clear;
+E_K_alpha = 21.99; // The energy in silver for K_alpha X-ray, keV
+E_K_beta = 25.145; // The energy in silver for K_beta X-ray, keV
+EB_K = 25.514; // The binding energy of K electron in silver, keV
+E_L_alpha = E_K_beta - E_K_alpha; // The energy in silver for L_alpha X-ray, keV
+EB_L = -EB_K + E_K_alpha; // The binding energy of L electron in silver, keV
+printf("\nThe energy of the L_alpha X-ray = %5.3f keV", E_L_alpha);
+printf("\nThe binding energy of the L electron = %5.3f keV", EB_L);
+
+// Result
+// The energy of the L_alpha X-ray = 3.155 keV
+// The binding energy of the L electron = -3.524 keV \ No newline at end of file