diff options
Diffstat (limited to '2939/CH4/EX4.22/Ex4_22.sce')
-rwxr-xr-x | 2939/CH4/EX4.22/Ex4_22.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2939/CH4/EX4.22/Ex4_22.sce b/2939/CH4/EX4.22/Ex4_22.sce new file mode 100755 index 000000000..86a3ab947 --- /dev/null +++ b/2939/CH4/EX4.22/Ex4_22.sce @@ -0,0 +1,14 @@ +
+// Ex4_22
+clc;
+// Given:
+t=6.01;// in hours
+// Solution:
+ar=100/5;// activity ratio given that 5% of intial activity
+k=0.693/t;
+
+t1=(log(ar))/k;
+printf("The time required will be %f h",t1)
+
+
+
|