summaryrefslogtreecommitdiff
path: root/1427/CH20/EX20.8/20_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH20/EX20.8/20_8.sce')
-rw-r--r--1427/CH20/EX20.8/20_8.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH20/EX20.8/20_8.sce b/1427/CH20/EX20.8/20_8.sce
new file mode 100644
index 000000000..7f7ca845c
--- /dev/null
+++ b/1427/CH20/EX20.8/20_8.sce
@@ -0,0 +1,9 @@
+//ques-20.8
+//Calculating binding energy per nucleon of Ca
+clc
+M=39.975;//atomic mass of Ca (in amu)
+mp=1.0078;//mass of proton (in amu)
+mn=1.0086;//mass of neutron (in amu)
+dm=20*mp+20*mn-M;
+BE=(dm*931)/40;
+printf("The binding energy per nucleon for Ca is %.3f Mev.",BE);