summaryrefslogtreecommitdiff
path: root/1970/CH5/EX5.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1970/CH5/EX5.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1970/CH5/EX5.6')
-rwxr-xr-x1970/CH5/EX5.6/Ch05Exa6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1970/CH5/EX5.6/Ch05Exa6.sce b/1970/CH5/EX5.6/Ch05Exa6.sce
new file mode 100755
index 000000000..75fc456b4
--- /dev/null
+++ b/1970/CH5/EX5.6/Ch05Exa6.sce
@@ -0,0 +1,12 @@
+// Scilab code Exa5.6: : Page 204 (2011)
+clc; clear;
+Z_D = 82; // Atomic number of Po
+E_Po210 = 5.3; // Alpha-source for Po210, MeV
+E_Po214 = 7.7; // Alpha-source for Po214, MeV
+log_lambda_Po210 = -1*1.72*Z_D*E_Po210^(-1/2);
+log_lambda_Po214 = -1*1.72*Z_D*E_Po214^(-1/2);
+delta_OM_t = log_lambda_Po214 - log_lambda_Po210; // Difference in order of magnitude of life times of Po214 and Po210
+printf("\nThe disintegration constant increases by a factor of some 10^%2d", delta_OM_t);
+
+// Result
+// The disintegration constant increases by a factor of some 10^10 \ No newline at end of file