diff options
Diffstat (limited to '1871/CH7/EX7.13/Ch07Ex13.sce')
-rwxr-xr-x | 1871/CH7/EX7.13/Ch07Ex13.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1871/CH7/EX7.13/Ch07Ex13.sce b/1871/CH7/EX7.13/Ch07Ex13.sce new file mode 100755 index 000000000..a5ca60b26 --- /dev/null +++ b/1871/CH7/EX7.13/Ch07Ex13.sce @@ -0,0 +1,12 @@ +// Scilab code Ex7.13: Pg:308 (2008)
+clc;clear;
+P = 2/1.6e-013; // Power to be produced, MeV/sec
+E_bar = 200; // Energy released per fission, MeV
+n = P/E_bar; // Required number of fissions per second
+// Since the number of atoms in 235gm of Uranium is 6.02e+023
+N = (6.02e+023/235)*500; // Number of atoms in 500 gm of U-235
+E = E_bar*N; // Total energy released in the complete fission of 500gm of uranium 235, MeV
+printf("\nThe total energy released in the complete fission of 500gm of uranium 235 = %4.2e MeV", E);
+
+// Result
+// The total energy released in the complete fission of 500gm of uranium 235 = 2.56e+026 MeV
\ No newline at end of file |