summaryrefslogtreecommitdiff
path: root/1970/CH15/EX15.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1970/CH15/EX15.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/CH15/EX15.6')
-rwxr-xr-x1970/CH15/EX15.6/CH15Exa6.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1970/CH15/EX15.6/CH15Exa6.sce b/1970/CH15/EX15.6/CH15Exa6.sce
new file mode 100755
index 000000000..f35ad6ff0
--- /dev/null
+++ b/1970/CH15/EX15.6/CH15Exa6.sce
@@ -0,0 +1,14 @@
+// Scilab code Exa15.6 : : Page-654 (2011)
+clc; clear;
+r = 35; // Radius of the reactor, centi metre
+B_sqr = (%pi/r)^2; // Geometrical buckling, per square centi metre
+D = 0.220; // Diffusion coefficient, centi metre
+sigma_a_f = 0.057; // Rate of absorption of thermal neutrons
+v = 2.5; // Number of fast neutrons emitted
+tau = 50; // Age of the neutron
+sigma_f = 0.048; // Rate of fission
+sigma_a_c = -1/(1+tau*B_sqr)*(-v*sigma_f+sigma_a_f+B_sqr*D+tau*B_sqr*sigma_a_f); // Controlled cross section
+printf("\nThe required controlled cross section = %6.4f ", sigma_a_c);
+
+// Result
+// The required controlled cross section = 0.0273 \ No newline at end of file