summaryrefslogtreecommitdiff
path: root/1970/CH10/EX10.13/CH10Exa13.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1970/CH10/EX10.13/CH10Exa13.sce
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/CH10/EX10.13/CH10Exa13.sce')
-rwxr-xr-x1970/CH10/EX10.13/CH10Exa13.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1970/CH10/EX10.13/CH10Exa13.sce b/1970/CH10/EX10.13/CH10Exa13.sce
new file mode 100755
index 000000000..edb040784
--- /dev/null
+++ b/1970/CH10/EX10.13/CH10Exa13.sce
@@ -0,0 +1,15 @@
+// Scilab code Exa10.13 : : Page-459 (2011)
+clc; clear;
+h = 6.625e-34; // Planck's constant, joule sec
+m_n = 1.67e-27; // Mass of neutron, Kg
+E = 4.906; // Energy, joule
+w_y = 0.124; // radiation width, eV
+w_n = 0.007*E^(1/2); // Probability of elastic emission of neutron, eV
+I = 3; // Total angular momentum
+I_c = 2; // Total angular momentum in the compound state
+sigma = ((h^2)*(2*I_c+1)*w_y*w_n)*10^28/(2*%pi*m_n*E*1.602e-019*(2*I+1)*(w_y+w_n)^2); // Cross section, barns
+printf("\nThe cross section of neutron capture = %5.3e barns", sigma);
+
+// Result
+// The cross section of neutron capture = 3.755e+004 barns
+