From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1970/CH5/EX5.6/Ch05Exa6.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 1970/CH5/EX5.6/Ch05Exa6.sce (limited to '1970/CH5/EX5.6') 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 -- cgit