summaryrefslogtreecommitdiff
path: root/3850/CH46/EX46.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3850/CH46/EX46.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3850/CH46/EX46.6')
-rw-r--r--3850/CH46/EX46.6/EX46_6.txt2
-rw-r--r--3850/CH46/EX46.6/Ex46_6.sce18
2 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH46/EX46.6/EX46_6.txt b/3850/CH46/EX46.6/EX46_6.txt
new file mode 100644
index 000000000..45daaad98
--- /dev/null
+++ b/3850/CH46/EX46.6/EX46_6.txt
@@ -0,0 +1,2 @@
+
+ Energy released when a nucleus of A=240 breaks into two nuclei of nearly equal mass numbers = 216 MeV \ No newline at end of file
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);