summaryrefslogtreecommitdiff
path: root/2939/CH4/EX4.16/Ex4_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '2939/CH4/EX4.16/Ex4_16.sce')
-rwxr-xr-x2939/CH4/EX4.16/Ex4_16.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2939/CH4/EX4.16/Ex4_16.sce b/2939/CH4/EX4.16/Ex4_16.sce
new file mode 100755
index 000000000..1777c7440
--- /dev/null
+++ b/2939/CH4/EX4.16/Ex4_16.sce
@@ -0,0 +1,19 @@
+
+// Ex4_16
+clc;
+
+// Given:
+m=4*10^-3;// in gms
+M=210;
+E=0.34;// in MeV
+// Solution:
+
+N=(m*6.022*10^23)/M;
+k=0.693/(5*24*3600);// in s^-1
+A=N*k;// in dis/s
+// Energy released at 0.34 MeV per dis/s will be
+E1=E*A;// in MeV/s
+E2=E1*1.6*10^-13;// watts
+
+printf("The rate of energy emission is %f W",E2)
+