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 /1271/CH20/EX20.16 | |
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 '1271/CH20/EX20.16')
-rwxr-xr-x | 1271/CH20/EX20.16/16.txt | 5 | ||||
-rwxr-xr-x | 1271/CH20/EX20.16/example20_16.sce | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/1271/CH20/EX20.16/16.txt b/1271/CH20/EX20.16/16.txt new file mode 100755 index 000000000..1f7710431 --- /dev/null +++ b/1271/CH20/EX20.16/16.txt @@ -0,0 +1,5 @@ + # PROBLEM 16 #
+Standard formula used
+ nu = a*(Z-b)^2 ........Moseley law
+
+ Wavelength of x-ray is 0.199796 Angstrom.
diff --git a/1271/CH20/EX20.16/example20_16.sce b/1271/CH20/EX20.16/example20_16.sce new file mode 100755 index 000000000..9fb1875f4 --- /dev/null +++ b/1271/CH20/EX20.16/example20_16.sce @@ -0,0 +1,13 @@ +clc +// Given that +Z = 79 // atomic no. of element +b = 1 // a constant +a = 2.468e15 // a constant in per sec +c = 3e8 // speed of light in m/sec +// Sample Problem 16 on page no. 20.12 +printf("\n # PROBLEM 16 # \n") +printf("Standard formula used \n ") +printf(" nu = a*(Z-b)^2 ........Moseley law \n") +f = a * (Z - b)^2 +lambda = c / f +printf("\n Wavelength of x-ray is %f Angstrom.",lambda*1e10) |