diff options
Diffstat (limited to '3717/CH19/EX19.4/Ex19_4.sce')
-rw-r--r-- | 3717/CH19/EX19.4/Ex19_4.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3717/CH19/EX19.4/Ex19_4.sce b/3717/CH19/EX19.4/Ex19_4.sce new file mode 100644 index 000000000..f03dfdf41 --- /dev/null +++ b/3717/CH19/EX19.4/Ex19_4.sce @@ -0,0 +1,10 @@ +// Ex19_4 Page:373 (2014)
+clc;clear;
+e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
+E = 200; // Energy released per fission, MeV
+P = 300e+006; // Power of the nuclear reactor, W
+n = P/(E*1e+006*e); // Number of fission reactions taking place per second
+printf("\nThe number of fission reactions taking place per second = %4.2e", n);
+
+// Result
+// The number of fission reactions taking place per second = 9.38e+018
\ No newline at end of file |