diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /446/CH13/EX13.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '446/CH13/EX13.2')
-rwxr-xr-x | 446/CH13/EX13.2/13_2.sce | 10 | ||||
-rwxr-xr-x | 446/CH13/EX13.2/13_2.txt | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/446/CH13/EX13.2/13_2.sce b/446/CH13/EX13.2/13_2.sce new file mode 100755 index 000000000..90ba69ee7 --- /dev/null +++ b/446/CH13/EX13.2/13_2.sce @@ -0,0 +1,10 @@ +clear
+clc
+disp('Exa-13.2')
+A=197; m=30*10^-3;phi=3*10^12; //given values and various constants taken in suitable units
+Ar=99*10^-24; Na=6.023*10^23
+R=(phi*Na*Ar*m/A); //rate or production of gold
+t=2.7*24*60 // time of decay
+Act=R*(0.693/t); //activity /sec
+ActCi=Act/(2.7*10^-4); // in terms of curie(Ci)
+printf('The activity is found out to be %.2e/sec i.e %.2e Ci',Act,ActCi);
diff --git a/446/CH13/EX13.2/13_2.txt b/446/CH13/EX13.2/13_2.txt new file mode 100755 index 000000000..e447b04a0 --- /dev/null +++ b/446/CH13/EX13.2/13_2.txt @@ -0,0 +1,3 @@ +
+ Exa-13.2
+The activity is found out to be 4.86e+006/sec i.e 1.80e+010 Ci
|