diff options
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) |