summaryrefslogtreecommitdiff
path: root/1427/CH20/EX20.10/20_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH20/EX20.10/20_10.sce')
-rw-r--r--1427/CH20/EX20.10/20_10.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH20/EX20.10/20_10.sce b/1427/CH20/EX20.10/20_10.sce
new file mode 100644
index 000000000..c27583121
--- /dev/null
+++ b/1427/CH20/EX20.10/20_10.sce
@@ -0,0 +1,10 @@
+//ques-20.10
+//Calculating binding energy of alpha particles
+clc
+mp=1.00758;//mass of proton (in amu)
+mn=1.00897;//mass of neutron (in amu)
+M=4.0082;//atomic mass of He (in amu)
+dm=2*mp+2*mn-M;//mass defect
+BE1=dm*931;//BE (in Mev)
+BE2=BE1*10^6*1.6*10^-12;//BE (in ergs)
+printf("The binding energy of alpha particles is %.4f Mev or %.6f erg.",BE1,BE2);