diff options
Diffstat (limited to '2939/CH4/EX4.14/Ex4_14.sce')
-rwxr-xr-x | 2939/CH4/EX4.14/Ex4_14.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2939/CH4/EX4.14/Ex4_14.sce b/2939/CH4/EX4.14/Ex4_14.sce new file mode 100755 index 000000000..1898ca4b2 --- /dev/null +++ b/2939/CH4/EX4.14/Ex4_14.sce @@ -0,0 +1,14 @@ +
+// Ex4_14
+clc;
+
+// Given:
+E0=1.7;// in MeV
+// Solution:
+// For E0<2.5 MeV; using Katz and Penfold empirical equation we have
+R1=412*((E0)^(1.265-0.0954*log(E0)));// mg/cm^2
+// Using feather's relation we have
+R2=530*E0-106;// mg/cm^2
+
+printf("The range in Al for beta radiation is %f mg/cm^2 using Katz and Penfold empirical equation and %f mg/cm^2 using feathers relation.",R1,R2)
+
|