summaryrefslogtreecommitdiff
path: root/2939/CH7/EX7.1/Ex7_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2939/CH7/EX7.1/Ex7_1.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 '2939/CH7/EX7.1/Ex7_1.sce')
-rwxr-xr-x2939/CH7/EX7.1/Ex7_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2939/CH7/EX7.1/Ex7_1.sce b/2939/CH7/EX7.1/Ex7_1.sce
new file mode 100755
index 000000000..152345ed6
--- /dev/null
+++ b/2939/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,16 @@
+// Ex7_1
+
+clc;
+
+// Given:
+
+f=1.03;// fast fission factor
+n=1.32;// no. of fast neutrons generated per thermal radiations
+ref=0.89;// resonance escape factor
+tuf=0.87;// thermal utilization factor
+
+// Solution
+
+rf=f*n*ref*tuf;//reproduction factor
+
+printf("The reproduction factor for the reactor is = %f",rf)