summaryrefslogtreecommitdiff
path: root/2939/CH4/EX4.27
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2939/CH4/EX4.27
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2939/CH4/EX4.27')
-rwxr-xr-x2939/CH4/EX4.27/Ex4_27.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2939/CH4/EX4.27/Ex4_27.sce b/2939/CH4/EX4.27/Ex4_27.sce
new file mode 100755
index 000000000..212a79297
--- /dev/null
+++ b/2939/CH4/EX4.27/Ex4_27.sce
@@ -0,0 +1,13 @@
+
+// Ex4_27
+clc;
+
+// Given:
+t=110;// in min
+a=10;//dpmg^-1
+// Solution:
+k=0.693/t;
+N=a/k;// atoms of F18
+mass=(N*18)/6.022*10^23;
+mass1=(N*18*10^20)/(6.022*10^23);// in 10^-20 grams
+printf("The no. of atoms produced is %f and its mass is %f*10^-20 grams",N,mass1)