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.13 | |
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.13')
-rwxr-xr-x | 1271/CH20/EX20.13/13.txt | 3 | ||||
-rwxr-xr-x | 1271/CH20/EX20.13/example20_13.sce | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/1271/CH20/EX20.13/13.txt b/1271/CH20/EX20.13/13.txt new file mode 100755 index 000000000..ae4204e7b --- /dev/null +++ b/1271/CH20/EX20.13/13.txt @@ -0,0 +1,3 @@ + # PROBLEM 13 #
+
+ the value of the ratio of h/e = 4.134667e-15 Jsec/C
\ No newline at end of file diff --git a/1271/CH20/EX20.13/example20_13.sce b/1271/CH20/EX20.13/example20_13.sce new file mode 100755 index 000000000..beb75fe72 --- /dev/null +++ b/1271/CH20/EX20.13/example20_13.sce @@ -0,0 +1,11 @@ +clc +// Given that +lambda = 1.4e-11 // K-absorption edge for lead in m +V = 88.6e3 // minimum voltage required for producing k-lines in V +c = 3e8 // speed of light in m/sec +// Sample Problem 13 on page no. 20.11 +printf("\n # PROBLEM 13 # \n") +printf("Standard formula used \n ") +printf(" h*c/Lambda = eV \n") +r = V * lambda / c +printf("\n The value of the ratio of h/e = %e Jsec/C.",r) |