diff options
Diffstat (limited to '3648/CH27/EX27.13')
-rw-r--r-- | 3648/CH27/EX27.13/Ex27_13.sce | 15 | ||||
-rw-r--r-- | 3648/CH27/EX27.13/Ex27_13.txt | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3648/CH27/EX27.13/Ex27_13.sce b/3648/CH27/EX27.13/Ex27_13.sce new file mode 100644 index 000000000..9285eda68 --- /dev/null +++ b/3648/CH27/EX27.13/Ex27_13.sce @@ -0,0 +1,15 @@ +//Example 27_13
+clc();
+clear;
+//To find the energy released in the reaction
+m1=141.91635 //Units in u
+m2=89.91972 //Units in u
+m3=4.03466 //Units in u
+n2=36 //Units in Constant
+n1=56 //Units in Constant
+n4=92 //units in constant
+m5=236.04564 //Units in u
+loss=m5-(m1+m2+m3)+n4-(n1+n2) //Units in u
+e1=931.5 //units n MeV
+energy=round(e1*loss) //units in MeV
+printf("The energy released in the reaction E=%d MeV",energy)
diff --git a/3648/CH27/EX27.13/Ex27_13.txt b/3648/CH27/EX27.13/Ex27_13.txt new file mode 100644 index 000000000..5f0f7f393 --- /dev/null +++ b/3648/CH27/EX27.13/Ex27_13.txt @@ -0,0 +1 @@ +The energy released in the reaction E=163 MeV
\ No newline at end of file |