diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1943/CH9/EX9.3/Ex9_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1943/CH9/EX9.3/Ex9_3.sce')
-rwxr-xr-x | 1943/CH9/EX9.3/Ex9_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1943/CH9/EX9.3/Ex9_3.sce b/1943/CH9/EX9.3/Ex9_3.sce new file mode 100755 index 000000000..2b55faea5 --- /dev/null +++ b/1943/CH9/EX9.3/Ex9_3.sce @@ -0,0 +1,18 @@ + +clc
+clear
+//Input data
+F=190;//Each fission of U-235 yeilds in MeV
+a=85;//Assuming the Neutrons absorbed by U-235 cause fission in percentage
+b=15;//Non fission capture to produce an isotope U-236 in percentage
+Q=3000;//The amount of thermal power produced in MW
+
+//Calculations
+E=F*1.60*10^-13;//Each fission yields a useful energy in J
+N=1/E;//Number of fissions required
+B=[(10^6)*(N*86400)]/(a/100);//One day operation of a reactor the number of U-235 nuclei burned is in absorptions per day
+M=(B*235)/(6.023*10^23);//Mass of U-235 consumed to produce one MW power in g/day
+M1=M*3;//Mass of U-235 consumed to produce 3000 MW power in g/day
+
+//Output
+printf('The fuel consumed of U-235 per day = %3.1f g/day ',M1)
|