diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /509/CH7/EX7.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '509/CH7/EX7.3')
-rw-r--r-- | 509/CH7/EX7.3/7_3.sci | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/509/CH7/EX7.3/7_3.sci b/509/CH7/EX7.3/7_3.sci new file mode 100644 index 000000000..67ba83091 --- /dev/null +++ b/509/CH7/EX7.3/7_3.sci @@ -0,0 +1,23 @@ +//Chapter 7 Example 3//
+clc
+clear
+// useful energy=e1,energy in terms of joules=e//
+e1=190;// in MeV//
+e=e1*10^6*1.6*10^-19;
+printf("\n Energy in terms of joules = %.15f J\n",e);
+// number of fisions required to produce one joule=n//
+n=1/e;
+printf("\n No of fissions required = %.3f \n",n);
+// number of nuclei burnt during 1 hr per MW of power=n1,percent of neutrons absorbed=p //
+p=80;// in percent//
+n1=10^6*n*3600/(p/100);
+printf("\n Number of nuclei burnt during 1hr per MW of power = %.3f absorption/hr \n",n1);
+// Mass of U-235 consumed to produce 1MW of power=m,Avagadro number=A//
+A=6.023*10^23;
+m=235;// Atomic mass of uranium//
+m=n1*m/A;// this is for 1MW//
+m1=m*100// for 100MW//
+printf("\n Fuel Consumption to produce 100MW = %.4f g/hr\n",m1);
+
+
+
\ No newline at end of file |