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.12 | |
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.12')
-rwxr-xr-x | 1271/CH20/EX20.12/12.txt | 5 | ||||
-rwxr-xr-x | 1271/CH20/EX20.12/example20_12.sce | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/1271/CH20/EX20.12/12.txt b/1271/CH20/EX20.12/12.txt new file mode 100755 index 000000000..9c4c4d73e --- /dev/null +++ b/1271/CH20/EX20.12/12.txt @@ -0,0 +1,5 @@ + # PROBLEM 12 #
+Standard formula used
+ lambda_min = 12400/V
+
+ Excitation potential is 124 kV.
diff --git a/1271/CH20/EX20.12/example20_12.sce b/1271/CH20/EX20.12/example20_12.sce new file mode 100755 index 000000000..2f444d21a --- /dev/null +++ b/1271/CH20/EX20.12/example20_12.sce @@ -0,0 +1,9 @@ +clc +// Given that +lambda = 1e-11 // K-absorption limit for uranium in m +// Sample Problem 12 on page no. 20.10 +printf("\n # PROBLEM 12 # \n") +printf("Standard formula used \n ") +printf("lambda_min = 12400/V \n") +V = 12400e-10 / lambda +printf("\n Excitation potential is %d kV.",V/10^3) |