summaryrefslogtreecommitdiff
path: root/3850/CH46/EX46.6/Ex46_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH46/EX46.6/Ex46_6.sce')
-rw-r--r--3850/CH46/EX46.6/Ex46_6.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH46/EX46.6/Ex46_6.sce b/3850/CH46/EX46.6/Ex46_6.sce
new file mode 100644
index 000000000..b4393f64c
--- /dev/null
+++ b/3850/CH46/EX46.6/Ex46_6.sce
@@ -0,0 +1,18 @@
+
+//To calculate the energy released in the process when a Nucleus breaks
+
+//Example 46.6
+
+clear;
+
+clc;
+
+A=240;//Mass Number for First Nucleus
+
+Be1=7.6;//Binding Energy in MeV per nucleon for A=120
+
+Be2=8.5;//Binding Energy in MeV per nucleon for A=240
+
+E=A*(Be2-Be1);///Energy released when a nucleus of A=240 breaks into two nuclei of nearle equal mass numbers
+
+printf("Energy released when a nucleus of A=240 breaks into two nuclei of nearly equal mass numbers = %.0f MeV",E);