diff options
Diffstat (limited to '2939/CH4/EX4.34/Ex4_34.sce')
-rwxr-xr-x | 2939/CH4/EX4.34/Ex4_34.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2939/CH4/EX4.34/Ex4_34.sce b/2939/CH4/EX4.34/Ex4_34.sce new file mode 100755 index 000000000..504684b34 --- /dev/null +++ b/2939/CH4/EX4.34/Ex4_34.sce @@ -0,0 +1,20 @@ +// Ex4_34
+clc;
+
+//Given:
+Ax0 = 2000; //dps
+//Solution:
+//part a
+ky = 0.693/10;
+kx = 0.693/288;
+// general equation connecting Ax and Ay is
+ Ax12 = (ky * Ax0 * (0.5^(1/24) - 0.5^(1.2)))/ (ky - kx);
+
+printf("\n Activity due to La(140) at the end of 12 hrs will be %f dps",Ax12);
+//part b
+ky = 0.693/10;
+kx = 0.693/288;
+// general equation connecting Ax and Ay is
+ Ax24 = (ky * Ax0 * (0.5^(2) - 0.5^(57.6)))/ (ky - kx);
+
+printf("\n Activity due to La(140) at the end of 24 d will be %f dps",Ax24);
|